llvmpipe: Z16 format is not supported

This commit is contained in:
Brian Paul
2010-02-23 18:56:24 -07:00
parent a84575cdc0
commit 0e7c22ff3c
+4
View File
@@ -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;