Re: [Mesa-dev] gallium: conditional rendering and glBlitFramebuffer

2014-05-04 Thread Marek Olšák
Yes, you are right, a boolean flag would be simpler. Marek On Sun, May 4, 2014 at 6:06 PM, Roland Scheidegger wrote: > Why would you need the whole query? A boolean if it should honor the > currently set render condition sounds simpler and good enough to me. > > Roland > > Am 04.05.2014 13:17, s

Re: [Mesa-dev] gallium: conditional rendering and glBlitFramebuffer

2014-05-04 Thread Roland Scheidegger
Why would you need the whole query? A boolean if it should honor the currently set render condition sounds simpler and good enough to me. Roland Am 04.05.2014 13:17, schrieb Marek Olšák: > I think the plan was to add "struct pipe_query *render_condition" to > pipe_blit_info. The value of NULL wou

Re: [Mesa-dev] gallium: conditional rendering and glBlitFramebuffer

2014-05-04 Thread Marek Olšák
I think the plan was to add "struct pipe_query *render_condition" to pipe_blit_info. The value of NULL would mean the conditional rendering is disabled. Marek On Sat, May 3, 2014 at 10:42 AM, Ilia Mirkin wrote: > Hello, > > I've noticed that nv50 fails the latest version of the conditional > ren

[Mesa-dev] gallium: conditional rendering and glBlitFramebuffer

2014-05-03 Thread Ilia Mirkin
Hello, I've noticed that nv50 fails the latest version of the conditional rendering tests with glBlitFramebuffer. After looking at the changes to the test, I just adjusted the nouveau blit code to not turn off the current query. That fixed the failing test, but then the copyteximage/etc tests star