diff --git a/docs/relnotes/new_features.txt b/docs/relnotes/new_features.txt index df62c43805d..4245fe3c16e 100644 --- a/docs/relnotes/new_features.txt +++ b/docs/relnotes/new_features.txt @@ -49,3 +49,4 @@ VK_KHR_shader_integer_dot_product on pvr VK_EXT_descriptor_heap on RADV (with 'export RADV_EXPERIMENTAL=heap') fullDrawIndexUint32 on pvr multiDrawIndirect on pvr +depthBiasClamp on pvr diff --git a/src/imagination/vulkan/pvr_physical_device.c b/src/imagination/vulkan/pvr_physical_device.c index 13f1c424be7..57a3ffc7b91 100644 --- a/src/imagination/vulkan/pvr_physical_device.c +++ b/src/imagination/vulkan/pvr_physical_device.c @@ -225,7 +225,7 @@ static void pvr_physical_device_get_supported_features( .multiDrawIndirect = true, .drawIndirectFirstInstance = true, .depthClamp = false, - .depthBiasClamp = false, + .depthBiasClamp = true, .fillModeNonSolid = false, .depthBounds = false, .wideLines = false,