llvmpipe: llvmpipe doesn't support pure integers yet.

Should fix: https://bugs.freedesktop.org/show_bug.cgi?id=42240

Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
Dave Airlie 2011-10-26 15:50:47 +02:00
parent 344039d81d
commit d404f60693
2 changed files with 8 additions and 0 deletions

View File

@ -287,6 +287,11 @@ llvmpipe_is_format_supported( struct pipe_screen *_screen,
return FALSE;
}
/* llvmpipe doesn't support pure integer yet */
if (util_format_is_pure_integer(format)) {
return FALSE;
}
/*
* Everything else should be supported by u_format.
*/

View File

@ -345,6 +345,9 @@ test_all(struct gallivm_state *gallivm, unsigned verbose, FILE *fp)
continue;
}
if (util_format_is_pure_integer(format))
continue;
if (format_desc->layout == UTIL_FORMAT_LAYOUT_S3TC &&
!util_format_s3tc_enabled) {
continue;