Re: [Mesa-dev] [PATCH] i965: add XRGB to fast texture upload

2013-10-13 Thread Courtney Goeltzenleuchter
On Sun, Oct 13, 2013 at 1:41 PM, Ian Romanick wrote: > On 10/11/2013 10:16 AM, Courtney Goeltzenleuchter wrote: > > MESA_FORMAT_XRGB is equivalent to MESA_FORMAT_ARGB in terms > > of storage on the device, so okay to use this optimized copy routine. > > --- > > src/mesa/drivers/dri/i965/

Re: [Mesa-dev] [PATCH] i965: add XRGB to fast texture upload

2013-10-13 Thread Ian Romanick
On 10/11/2013 10:16 AM, Courtney Goeltzenleuchter wrote: > MESA_FORMAT_XRGB is equivalent to MESA_FORMAT_ARGB in terms > of storage on the device, so okay to use this optimized copy routine. > --- > src/mesa/drivers/dri/i965/intel_tex_subimage.c | 3 ++- > 1 file changed, 2 insertions(+),

Re: [Mesa-dev] [PATCH] i965: add XRGB to fast texture upload

2013-10-11 Thread Chad Versace
On 10/11/2013 10:16 AM, Courtney Goeltzenleuchter wrote: MESA_FORMAT_XRGB is equivalent to MESA_FORMAT_ARGB in terms of storage on the device, so okay to use this optimized copy routine. --- src/mesa/drivers/dri/i965/intel_tex_subimage.c | 3 ++- 1 file changed, 2 insertions(+), 1 dele

Re: [Mesa-dev] [PATCH] i965: add XRGB to fast texture upload

2013-10-11 Thread Kenneth Graunke
On 10/11/2013 10:16 AM, Courtney Goeltzenleuchter wrote: > MESA_FORMAT_XRGB is equivalent to MESA_FORMAT_ARGB in terms > of storage on the device, so okay to use this optimized copy routine. > --- > src/mesa/drivers/dri/i965/intel_tex_subimage.c | 3 ++- > 1 file changed, 2 insertions(+),

[Mesa-dev] [PATCH] i965: add XRGB to fast texture upload

2013-10-11 Thread Courtney Goeltzenleuchter
MESA_FORMAT_XRGB is equivalent to MESA_FORMAT_ARGB in terms of storage on the device, so okay to use this optimized copy routine. --- src/mesa/drivers/dri/i965/intel_tex_subimage.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mesa/drivers/dri/i965/intel_tex_sub