From 122ca27a48400fe2efe790ecf46e91b9c9b88108 Mon Sep 17 00:00:00 2001 From: Charmaine Lee Date: Mon, 12 Jun 2017 15:56:17 -0700 Subject: 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 --- src/gallium/drivers/svga/svga_format.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/gallium/drivers') 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", -- cgit v1.2.3