mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 22:49:13 +02:00
radv/gfx10: disable TC-compat HTILE for multisampled D32_SFLOAT format
For some reasons D32_SFLOAT is also affected on GFX10, it works fine with previous generations. This fixes some dEQP-VK.renderpass2.depth_stencil_resolve.*. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
This commit is contained in:
parent
a01770b9c8
commit
f3dfdd4091
1 changed files with 5 additions and 2 deletions
|
|
@ -83,9 +83,12 @@ radv_use_tc_compat_htile_for_image(struct radv_device *device,
|
|||
return false;
|
||||
|
||||
/* FIXME: for some reason TC compat with 2/4/8 samples breaks some cts
|
||||
* tests - disable for now */
|
||||
* tests - disable for now. On GFX10 D32_SFLOAT is affected as well.
|
||||
*/
|
||||
if (pCreateInfo->samples >= 2 &&
|
||||
pCreateInfo->format == VK_FORMAT_D32_SFLOAT_S8_UINT)
|
||||
(pCreateInfo->format == VK_FORMAT_D32_SFLOAT_S8_UINT ||
|
||||
(pCreateInfo->format == VK_FORMAT_D32_SFLOAT &&
|
||||
device->physical_device->rad_info.chip_class == GFX10)))
|
||||
return false;
|
||||
|
||||
/* GFX9 supports both 32-bit and 16-bit depth surfaces, while GFX8 only
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue