Re: [Mesa-dev] [PATCH] i965: Add GPU BLIT of texture image to PBO in Intel driver

2014-03-04 Thread Jon Ashburn
On 02/28/2014 12:56 PM, Ian Romanick wrote: On 02/28/2014 08:08 AM, Jon Ashburn wrote: Add Intel driver hook for glGetTexImage to accelerate the case of reading texture image into a PBO. This case gets huge performance gains by using GPU BLIT directly to PBO rather than GPU BLIT to temporary

Re: [Mesa-dev] [PATCH] i965: Add GPU BLIT of texture image to PBO in Intel driver

2014-02-28 Thread Ian Romanick
On 02/28/2014 08:08 AM, Jon Ashburn wrote: Add Intel driver hook for glGetTexImage to accelerate the case of reading texture image into a PBO. This case gets huge performance gains by using GPU BLIT directly to PBO rather than GPU BLIT to temporary texture followed by memcpy. No regressions on

[Mesa-dev] [PATCH] i965: Add GPU BLIT of texture image to PBO in Intel driver

2014-02-28 Thread Jon Ashburn
Add Intel driver hook for glGetTexImage to accelerate the case of reading texture image into a PBO. This case gets huge performance gains by using GPU BLIT directly to PBO rather than GPU BLIT to temporary texture followed by memcpy. No regressions on Piglit tests with Intel driver. Performance