diff options
author | Brian Paul <[email protected]> | 2010-02-24 10:47:58 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-02-24 10:47:58 -0700 |
commit | f8978f186ec38b3f9021d0c96fed11d10157face (patch) | |
tree | 052be600bc2335ac83ec6bb235c85fc7a570ba90 /src | |
parent | ba929471989f9670fba80fc786ed9b4e7f8185c8 (diff) |
llvmpipe: SRGB textures not supported yet
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_screen.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_screen.c b/src/gallium/drivers/llvmpipe/lp_screen.c index 89869faeb92..f84ede675b3 100644 --- a/src/gallium/drivers/llvmpipe/lp_screen.c +++ b/src/gallium/drivers/llvmpipe/lp_screen.c @@ -226,7 +226,6 @@ llvmpipe_is_format_supported( struct pipe_screen *_screen, return FALSE; if(format_desc->colorspace != UTIL_FORMAT_COLORSPACE_RGB && - format_desc->colorspace != UTIL_FORMAT_COLORSPACE_SRGB && format_desc->colorspace != UTIL_FORMAT_COLORSPACE_ZS) return FALSE; |