diff options
author | Brian Paul <[email protected]> | 2010-02-23 18:56:24 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-02-23 18:57:18 -0700 |
commit | 0e7c22ff3c8532dad35a08f8b350be78383bfb0d (patch) | |
tree | f3dc3f1d8223fdcd7115fc520185af95b6c11a36 /src/gallium | |
parent | a84575cdc0c8193b2c7858734e2ec6b1ec4511b2 (diff) |
llvmpipe: Z16 format is not supported
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_screen.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_screen.c b/src/gallium/drivers/llvmpipe/lp_screen.c index 1cd3ea9a840..ad5a484959d 100644 --- a/src/gallium/drivers/llvmpipe/lp_screen.c +++ b/src/gallium/drivers/llvmpipe/lp_screen.c @@ -233,6 +233,10 @@ llvmpipe_is_format_supported( struct pipe_screen *_screen, format_desc->colorspace != UTIL_FORMAT_COLORSPACE_SRGB && format_desc->colorspace != UTIL_FORMAT_COLORSPACE_ZS) return FALSE; + + /* not supported yet */ + if (format == PIPE_FORMAT_Z16_UNORM) + return FALSE; } return TRUE; |