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

Kenneth Graunke kenneth at whitecape.org
Fri Oct 11 20:20:35 CEST 2013


On 10/11/2013 10:16 AM, Courtney Goeltzenleuchter wrote:
> MESA_FORMAT_XRGB8888 is equivalent to MESA_FORMAT_ARGB8888 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_subimage.c b/src/mesa/drivers/dri/i965/intel_tex_subimage.c
> index 5cfdbd9..4aec05d 100644
> --- a/src/mesa/drivers/dri/i965/intel_tex_subimage.c
> +++ b/src/mesa/drivers/dri/i965/intel_tex_subimage.c
> @@ -564,7 +564,8 @@ intel_texsubimage_tiled_memcpy(struct gl_context * ctx,
>         (texImage->TexFormat == MESA_FORMAT_A8 && format == GL_ALPHA)) {
>        cpp = 1;
>        mem_copy = memcpy;
> -   } else if (texImage->TexFormat == MESA_FORMAT_ARGB8888) {
> +   } else if ((texImage->TexFormat == MESA_FORMAT_ARGB8888) ||
> +	      (texImage->TexFormat == MESA_FORMAT_XRGB8888)) {
>        cpp = 4;
>        if (format == GL_BGRA) {
>           mem_copy = memcpy;
> 

Looks good to me.  Thanks Courtney!

Reviewed-by: Kenneth Graunke <kenneth at whitecape.org>


More information about the mesa-dev mailing list