Module: Mesa Branch: master Commit: 967b21df6a9b23bfe9f3324c3e41133e41417e94 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=967b21df6a9b23bfe9f3324c3e41133e41417e94
Author: Marek Olšák <[email protected]> Date: Mon Jan 28 21:13:18 2013 +0100 mesa: fill in Z32_FLOAT_X24S8 in _mesa_format_matches_format_and_type Reviewed-by: Brian Paul <[email protected]> --- src/mesa/main/formats.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) 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: _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
