Re: [Mesa-dev] [PATCH 5/5] i965: Add support for ARB_copy_image

2014-08-01 Thread Jason Ekstrand
On Fri, Aug 1, 2014 at 7:21 AM, Neil Roberts wrote: > Jason Ekstrand writes: > > > This, together with the meta path, provides a almost-complete > > implemetation of ARB_copy_image. The only case that won't work is if > > one of the textures is compressed and has a pitch greater than > > INT16_M

Re: [Mesa-dev] [PATCH 5/5] i965: Add support for ARB_copy_image

2014-08-01 Thread Neil Roberts
Jason Ekstrand writes: > This, together with the meta path, provides a almost-complete > implemetation of ARB_copy_image. The only case that won't work is if > one of the textures is compressed and has a pitch greater than > INT16_MAX. I think that's good enough to justify turning on the > extens

Re: [Mesa-dev] [PATCH 5/5] i965: Add support for ARB_copy_image

2014-08-01 Thread Juha-Pekka Heikkila
On 31.07.2014 21:28, Jason Ekstrand wrote: > This, together with the meta path, provides a almost-complete implemetation > of ARB_copy_image. The only case that won't work is if one of the textures > is compressed and has a pitch greater than INT16_MAX. I think that's good > enough to justify tur

[Mesa-dev] [PATCH 5/5] i965: Add support for ARB_copy_image

2014-07-31 Thread Jason Ekstrand
This, together with the meta path, provides a almost-complete implemetation of ARB_copy_image. The only case that won't work is if one of the textures is compressed and has a pitch greater than INT16_MAX. I think that's good enough to justify turning on the extension. Signed-off-by: Jason Ekstra