Re: [Mesa-dev] [PATCH] i965: Don't _swrast_BlitFramebuffer when doing CopyTexSubImage.

2014-05-12 Thread Chris Forbes
Reviewed-by: Chris Forbes On Tue, May 13, 2014 at 4:36 AM, Eric Anholt wrote: > Kenneth Graunke writes: > >> The point of copytexsubimage_using_blit_framebuffer is to use a hardware >> accelerated BlitFramebuffer path. If that fails, we shouldn't do a >> swrast blit---we should try our CTSI fa

Re: [Mesa-dev] [PATCH] i965: Don't _swrast_BlitFramebuffer when doing CopyTexSubImage.

2014-05-12 Thread Eric Anholt
Kenneth Graunke writes: > The point of copytexsubimage_using_blit_framebuffer is to use a hardware > accelerated BlitFramebuffer path. If that fails, we shouldn't do a > swrast blit---we should try our CTSI fallback code. > > This is especially important for i965 and GLES, where we don't even >

[Mesa-dev] [PATCH] i965: Don't _swrast_BlitFramebuffer when doing CopyTexSubImage.

2014-05-11 Thread Kenneth Graunke
The point of copytexsubimage_using_blit_framebuffer is to use a hardware accelerated BlitFramebuffer path. If that fails, we shouldn't do a swrast blit---we should try our CTSI fallback code. This is especially important for i965 and GLES, where we don't even create a swrast context. Bugzilla: h