Re: [Mesa-dev] [PATCH 3/6] meta: Add functionality to do _mesa_meta_BlitFrameBuffer() using glsl

2012-12-18 Thread Ian Romanick
On 12/17/2012 07:33 PM, Anuj Phogat wrote: This patch rewrites _mesa_meta_BlitFrameBuffer() function to add support for blitting with GLSL/GLSL ES shaders. These changes were required to support glBlitFrameBuffer() in gles3. This patch, along with other patches in this series, make 16 failing fra

[Mesa-dev] [PATCH 3/6] meta: Add functionality to do _mesa_meta_BlitFrameBuffer() using glsl

2012-12-17 Thread Anuj Phogat
This patch rewrites _mesa_meta_BlitFrameBuffer() function to add support for blitting with GLSL/GLSL ES shaders. These changes were required to support glBlitFrameBuffer() in gles3. This patch, along with other patches in this series, make 16 failing framebuffer_blit test cases in gles3 conformance

Re: [Mesa-dev] [PATCH 3/6] meta: Add functionality to do _mesa_meta_BlitFrameBuffer() using glsl

2012-12-17 Thread Anuj Phogat
On Wed, Dec 12, 2012 at 3:25 PM, Anuj Phogat wrote: > This is required by glBlitFrameBuffer() in gles3. This patch, along with > other patches in this series, make failing framebuffer_blit test cases in > gles3 conformancen pass. > I noticed few bugs in my glsl implementation of glBlitFrameBuffer(

[Mesa-dev] [PATCH 3/6] meta: Add functionality to do _mesa_meta_BlitFrameBuffer() using glsl

2012-12-12 Thread Anuj Phogat
This is required by glBlitFrameBuffer() in gles3. This patch, along with other patches in this series, make failing framebuffer_blit test cases in gles3 conformancen pass. Signed-off-by: Anuj Phogat --- src/mesa/drivers/common/meta.c | 313 +++- 1 files chang