diff options
author | Cooper Yuan <[email protected]> | 2009-09-25 15:15:20 +0800 |
---|---|---|
committer | Cooper Yuan <[email protected]> | 2009-09-25 15:15:20 +0800 |
commit | 16a6ca9b2bd4f91aad69d4a5d36402e70a46bd37 (patch) | |
tree | 31d3ea2ac6d01d84366534ec01fe95f9475f2d22 | |
parent | 5a1e25afac8eac5df1c0c9d3165b9812f54909a6 (diff) |
r300g: add texture format for xvmc
-rw-r--r-- | src/gallium/drivers/r300/r300_texture.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_texture.h b/src/gallium/drivers/r300/r300_texture.h index 3109af5baca..697669147d8 100644 --- a/src/gallium/drivers/r300/r300_texture.h +++ b/src/gallium/drivers/r300/r300_texture.h @@ -72,6 +72,9 @@ static INLINE uint32_t r300_translate_texformat(enum pipe_format format) /* W24_FP */ case PIPE_FORMAT_Z24S8_UNORM: return R300_EASY_TX_FORMAT(X, X, X, X, W24_FP); + /* Z5_Y6_X5 */ + case PIPE_FORMAT_R16_SNORM: + return R300_EASY_TX_FORMAT(X, X, X, X, Z5Y6X5); default: debug_printf("r300: Implementation error: " "Got unsupported texture format %s in %s\n", |