summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/llvmpipe
diff options
context:
space:
mode:
authorRoland Scheidegger <[email protected]>2013-05-16 18:33:21 +0200
committerRoland Scheidegger <[email protected]>2013-05-18 00:32:45 +0200
commitf6beb4c6b647b0d5077c7abd6c99cdaba6e0c112 (patch)
tree94b7b564411aaa1165b3aa07fae0748d5849ad54 /src/gallium/drivers/llvmpipe
parent070a9afb5476b58a2824fac5c94bbe4f78a2d8b9 (diff)
llvmpipe: enable z32s8x24 format
Now that we can handle it both for sampling and as depth/stencil enable it. Passes nearly all additional piglit tests which are now performed, with two exceptions (one being a framebuffer blit which fails for all other formats including stencil too as we don't support stencil blits, the other reporting a unexpected GL error so doesn't look to be llvmpipe's fault).
Diffstat (limited to 'src/gallium/drivers/llvmpipe')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_screen.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_screen.c b/src/gallium/drivers/llvmpipe/lp_screen.c
index 04493529f91..073d7519184 100644
--- a/src/gallium/drivers/llvmpipe/lp_screen.c
+++ b/src/gallium/drivers/llvmpipe/lp_screen.c
@@ -363,12 +363,6 @@ llvmpipe_is_format_supported( struct pipe_screen *_screen,
return FALSE;
}
- /* TODO: Support Z32_FLOAT_S8X24_UINT. See lp_bld_depth.c. */
- if (format_desc->colorspace == UTIL_FORMAT_COLORSPACE_ZS &&
- format_desc->block.bits > 32) {
- return FALSE;
- }
-
if (bind & PIPE_BIND_DEPTH_STENCIL) {
if (format_desc->layout != UTIL_FORMAT_LAYOUT_PLAIN)
return FALSE;