summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2011-11-01 12:28:47 +0000
committerJosé Fonseca <jfonseca@vmware.com>2011-11-01 12:28:47 +0000
commita1b737d72f1fec1d967255f4f87b5208a857c87f (patch)
treecc3e096368329d40a38ed109b3024411137aecd5
parent0cbb49aff59f7a671d153d9baa70aa78b07da538 (diff)
llvmpipe: Re-advertise support for stencil formats...
"no fetch_rgba_float for uint formats" => "llvmpipe does not support uint formats" "stencil == uint" => "llvmpipe does not support stencil"
-rw-r--r--src/gallium/drivers/llvmpipe/lp_screen.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_screen.c b/src/gallium/drivers/llvmpipe/lp_screen.c
index daf149138df..fb5d13815ca 100644
--- a/src/gallium/drivers/llvmpipe/lp_screen.c
+++ b/src/gallium/drivers/llvmpipe/lp_screen.c
@@ -287,14 +287,15 @@ llvmpipe_is_format_supported( struct pipe_screen *_screen,
return FALSE;
}
- /* llvmpipe doesn't support pure integer yet */
- if (util_format_is_pure_integer(format)) {
+ /*
+ * Everything can be supported by u_format.
+ */
+
+ if (format_desc->colorspace != UTIL_FORMAT_COLORSPACE_ZS &&
+ !format_desc->fetch_rgba_float) {
return FALSE;
}
- /*
- * Everything else should be supported by u_format.
- */
return TRUE;
}