diff options
author | Dave Airlie <[email protected]> | 2010-11-22 08:11:03 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2011-09-05 19:08:17 +0100 |
commit | 797bb0eb47d23099180133175d8dac8d97e58837 (patch) | |
tree | 7f0d9836f26f9c393a22630ea12b86eabae97703 /src/gallium/include | |
parent | 4a468de2d78fc5a9e6de40a9dae09669ec556fc5 (diff) |
gallium: add missing formats for ARB_vertex_type_2_10_10_10_rev
This just reorgs one define in csv file, and adds all the new formats
that are needed for this extension.
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/gallium/include')
-rw-r--r-- | src/gallium/include/pipe/p_format.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gallium/include/pipe/p_format.h b/src/gallium/include/pipe/p_format.h index 3e5f45733eb..3d1c9975384 100644 --- a/src/gallium/include/pipe/p_format.h +++ b/src/gallium/include/pipe/p_format.h @@ -244,6 +244,13 @@ enum pipe_format { PIPE_FORMAT_R8A8_UNORM = 170, PIPE_FORMAT_A8R8_UNORM = 171, + PIPE_FORMAT_R10G10B10A2_SSCALED = 172, + PIPE_FORMAT_R10G10B10A2_SNORM = 173, + + PIPE_FORMAT_B10G10R10A2_USCALED = 174, + PIPE_FORMAT_B10G10R10A2_SSCALED = 175, + PIPE_FORMAT_B10G10R10A2_SNORM = 176, + PIPE_FORMAT_COUNT }; |