diff options
| author | Thomas Hellstrom <thomas-at-tungstengraphics-dot-com> | 2009-01-20 11:13:38 +0100 | 
|---|---|---|
| committer | Thomas Hellstrom <thomas-at-tungstengraphics-dot-com> | 2009-01-20 11:13:38 +0100 | 
| commit | 7374285f07b673dcba1d1f47dd987c8ba7037bad (patch) | |
| tree | d8c79b7dd28b3bfefa9e3d45460c264e1fa875b6 /src | |
| parent | 5c84a1032c13a75b95e40bd316495b3351b324e1 (diff) | |
Fix store texel for argb4444.
Diffstat (limited to 'src')
| -rw-r--r-- | src/mesa/main/texformat_tmp.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/texformat_tmp.h b/src/mesa/main/texformat_tmp.h index 673b715950..5f0c674d4f 100644 --- a/src/mesa/main/texformat_tmp.h +++ b/src/mesa/main/texformat_tmp.h @@ -848,7 +848,7 @@ static void store_texel_argb4444(struct gl_texture_image *texImage,  {     const GLubyte *rgba = (const GLubyte *) texel;     GLushort *dst = TEXEL_ADDR(GLushort, texImage, i, j, k, 1); -   *dst = PACK_COLOR_4444(rgba[RCOMP], rgba[GCOMP], rgba[BCOMP], rgba[ACOMP]); +   *dst = PACK_COLOR_4444(rgba[ACOMP], rgba[RCOMP], rgba[GCOMP], rgba[BCOMP]);  }  #endif  | 
