From 967b21df6a9b23bfe9f3324c3e41133e41417e94 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Mon, 28 Jan 2013 21:13:18 +0100 Subject: [PATCH] mesa: fill in Z32_FLOAT_X24S8 in _mesa_format_matches_format_and_type Reviewed-by: Brian Paul --- src/mesa/main/formats.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mesa/main/formats.c b/src/mesa/main/formats.c index 423e883..4598d65 100644 --- a/src/mesa/main/formats.c +++ b/src/mesa/main/formats.c @@ -3352,7 +3352,8 @@ _mesa_format_matches_format_and_type(gl_format gl_format, return format == GL_DEPTH_COMPONENT && type == GL_FLOAT && !swapBytes; case MESA_FORMAT_Z32_FLOAT_X24S8: - return GL_FALSE; + return format == GL_DEPTH_STENCIL && + type == GL_FLOAT_32_UNSIGNED_INT_24_8_REV && !swapBytes; case MESA_FORMAT_XRGB4444_UNORM: case MESA_FORMAT_XRGB1555_UNORM: -- 2.7.4