diff options
author | Corbin Simpson <[email protected]> | 2009-06-27 11:58:00 -0700 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-06-27 12:07:59 -0700 |
commit | 928a5684177fdb6cd013949348aee6078dd305c0 (patch) | |
tree | 1f53d05fd7da5a742a89821d4a995b856c2b6998 /src/gallium/drivers/r300/r300_reg.h | |
parent | f150e05afcbce73ff8422ffef2ce02536f691f2c (diff) |
r300g: YCbCr and sRGB textures.
Diffstat (limited to 'src/gallium/drivers/r300/r300_reg.h')
-rw-r--r-- | src/gallium/drivers/r300/r300_reg.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_reg.h b/src/gallium/drivers/r300/r300_reg.h index e57535fe9e1..79c778f9543 100644 --- a/src/gallium/drivers/r300/r300_reg.h +++ b/src/gallium/drivers/r300/r300_reg.h @@ -1565,7 +1565,8 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. # define R300_TX_FORMAT_CONST_Z (4<<5) # define R300_TX_FORMAT_CONST_W (8<<5) -# define R300_TX_FORMAT_YUV_MODE 0x00800000 +# define R300_TX_FORMAT_GAMMA (1 << 21) +# define R300_TX_FORMAT_YUV_TO_RGB (1 << 22) #define R300_TX_FORMAT2_0 0x4500 /* obvious missing in gap */ # define R300_TX_PITCHMASK_SHIFT 0 |