Re: [Mesa-dev] [PATCH] i965: Fix glCompressedTexSubImage2D offsets for ETC textures.

2013-01-03 Thread Ian Romanick
On 01/02/2013 11:25 AM, Paul Berry wrote: On 2 January 2013 10:55, Ian Romanick mailto:i...@freedesktop.org>> wrote: On 12/29/2012 11:50 AM, Paul Berry wrote: This patch fixes intel_miptree_unmap_etc() (which decompresses ETC textures to linear) to pay attention to map->x an

Re: [Mesa-dev] [PATCH] i965: Fix glCompressedTexSubImage2D offsets for ETC textures.

2013-01-03 Thread Eric Anholt
Paul Berry writes: > This patch fixes intel_miptree_unmap_etc() (which decompresses ETC > textures to linear) to pay attention to map->x and map->y when writing > to the destination image. Previously these values were ignored, > causing the xoffset and yoffset parameters passed to > glCompressed

Re: [Mesa-dev] [PATCH] i965: Fix glCompressedTexSubImage2D offsets for ETC textures.

2013-01-02 Thread Paul Berry
On 2 January 2013 10:55, Ian Romanick wrote: > On 12/29/2012 11:50 AM, Paul Berry wrote: > >> This patch fixes intel_miptree_unmap_etc() (which decompresses ETC >> textures to linear) to pay attention to map->x and map->y when writing >> to the destination image. Previously these values were ign

Re: [Mesa-dev] [PATCH] i965: Fix glCompressedTexSubImage2D offsets for ETC textures.

2013-01-02 Thread Ian Romanick
On 12/29/2012 11:50 AM, Paul Berry wrote: This patch fixes intel_miptree_unmap_etc() (which decompresses ETC textures to linear) to pay attention to map->x and map->y when writing to the destination image. Previously these values were ignored, causing the xoffset and yoffset parameters passed to

[Mesa-dev] [PATCH] i965: Fix glCompressedTexSubImage2D offsets for ETC textures.

2012-12-29 Thread Paul Berry
This patch fixes intel_miptree_unmap_etc() (which decompresses ETC textures to linear) to pay attention to map->x and map->y when writing to the destination image. Previously these values were ignored, causing the xoffset and yoffset parameters passed to glCompressedTexSubImage2D() to be ignored.