Module: Mesa Branch: master Commit: 122ca27a48400fe2efe790ecf46e91b9c9b88108 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=122ca27a48400fe2efe790ecf46e91b9c9b88108
Author: Charmaine Lee <[email protected]> Date: Mon Jun 12 15:56:17 2017 -0700 svga: fix the default devcap for SVGA3D_Z_D24S8_INT The default devcap for format SVGA3D_Z_D24S8_INT in HWv8 when its devcap is not explicitly advertised should be set to zero to match the default value in the device. Tested with MTT piglit in HW version 8. Reviewed-by: Neha Bhende <[email protected]> --- src/gallium/drivers/svga/svga_format.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/gallium/drivers/svga/svga_format.c b/src/gallium/drivers/svga/svga_format.c index 7b06a16c3f..8c73a623e1 100644 --- a/src/gallium/drivers/svga/svga_format.c +++ b/src/gallium/drivers/svga/svga_format.c @@ -1618,10 +1618,7 @@ static const struct format_cap format_cap_table[] = { SVGA3D_Z_D24S8_INT, SVGA3D_DEVCAP_SURFACEFMT_Z_D24S8_INT, 1, 1, 4, - SVGA3DFORMAT_OP_TEXTURE | - SVGA3DFORMAT_OP_CUBETEXTURE | - SVGA3DFORMAT_OP_VOLUMETEXTURE | - SVGA3DFORMAT_OP_ZSTENCIL + 0 }, { "SVGA3D_YV12", _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
