mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-19 12:48:30 +02:00
pvr: re-enable depthBiasClamp
Partial revert of a22ad99bdd ("pvr: set device features/props/extensions to
Vulkan 1.0 minimums (unless implemented)"), as this optional feature is fully
implemented already.
Tested with:
dEQP-VK.*depth_bias*
dEQP-VK.*bias_clamp*
Signed-off-by: Frank Binns <frank.binns@imgtec.com>
Reviewed-by: Simon Perretta <simon.perretta@imgtec.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/40890>
This commit is contained in:
parent
50b06b888f
commit
ffce80d242
2 changed files with 2 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue