diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-08-24 13:17:08 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-08-24 18:08:23 -0600 |
commit | 59e7bfa1de77ab03ca174bdf82fe33ab36050ce7 (patch) | |
tree | 2f3eed29f2e83a82fa8a137930d16a0a3bf2ea70 /src/mesa/pipe/p_defines.h | |
parent | 4fd7bc00f06a98e1db2ad886a13566f19895e3c0 (diff) |
Add support for more surface types in sp_surface.c
replace PIPE_FORMAT_U_L8_A8 with PIPE_FORMAT_U_A8_L8
Diffstat (limited to 'src/mesa/pipe/p_defines.h')
-rw-r--r-- | src/mesa/pipe/p_defines.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/pipe/p_defines.h b/src/mesa/pipe/p_defines.h index 636711938c..c1164c5c08 100644 --- a/src/mesa/pipe/p_defines.h +++ b/src/mesa/pipe/p_defines.h @@ -178,7 +178,7 @@ #define PIPE_FORMAT_U_L8 6 /**< ubyte luminance */ #define PIPE_FORMAT_U_A8 7 /**< ubyte alpha */ #define PIPE_FORMAT_U_I8 8 /**< ubyte intensity */ -#define PIPE_FORMAT_U_L8_A8 9 /**< ubyte luminance, alpha */ +#define PIPE_FORMAT_U_A8_L8 9 /**< ubyte alpha, luminance */ #define PIPE_FORMAT_S_R16_G16_B16_A16 10 /**< signed 16-bit RGBA (accum) */ #define PIPE_FORMAT_YCBCR 11 #define PIPE_FORMAT_YCBCR_REV 12 |