diff options
author | Marek Olšák <[email protected]> | 2011-04-26 02:24:47 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2011-04-29 11:31:55 +0200 |
commit | de9f55437ab7110dd79ebebaac543d35493380ce (patch) | |
tree | 30af0b98db47852f4097d80053a696231f75e3ab /src/gallium/drivers/r600 | |
parent | 349184be36e59f49309b8c1f371d99efceaf6d5f (diff) |
r600g: trivially implement EXT_texture_shared_exponent
Nothing else needed.
Diffstat (limited to 'src/gallium/drivers/r600')
-rw-r--r-- | src/gallium/drivers/r600/r600_texture.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/r600_texture.c b/src/gallium/drivers/r600/r600_texture.c index eb696b73ee8..b22eb7bbdeb 100644 --- a/src/gallium/drivers/r600/r600_texture.c +++ b/src/gallium/drivers/r600/r600_texture.c @@ -930,6 +930,11 @@ uint32_t r600_translate_texformat(struct pipe_screen *screen, } } + if (format == PIPE_FORMAT_R9G9B9E5_FLOAT) { + result = FMT_5_9_9_9_SHAREDEXP; + goto out_word4; + } + for (i = 0; i < desc->nr_channels; i++) { if (desc->channel[i].type == UTIL_FORMAT_TYPE_SIGNED) { |