diff options
author | Bas Nieuwenhuizen <[email protected]> | 2019-01-26 03:18:05 +0100 |
---|---|---|
committer | Bas Nieuwenhuizen <[email protected]> | 2019-02-20 23:24:31 +0000 |
commit | 688f5e456ae7f1aa0a4bddbbe184535ee392f9f2 (patch) | |
tree | 37331aae5160faee9ffc606c24bfadd02c31341a | |
parent | 9f7e0523ce64a9d8e81ab07639cc27871e3b9d38 (diff) |
radv: Disable depth clamping even without EXT_depth_range_unrestricted.
Reviewed-by: Samuel Pitoiset <[email protected]>
-rw-r--r-- | src/amd/vulkan/radv_pipeline.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/amd/vulkan/radv_pipeline.c b/src/amd/vulkan/radv_pipeline.c index 810bbd98752..f0a5fef3923 100644 --- a/src/amd/vulkan/radv_pipeline.c +++ b/src/amd/vulkan/radv_pipeline.c @@ -2657,8 +2657,7 @@ radv_pipeline_generate_depth_stencil_state(struct radeon_cmdbuf *ctx_cs, db_render_override |= S_02800C_FORCE_HIS_ENABLE0(V_02800C_FORCE_DISABLE) | S_02800C_FORCE_HIS_ENABLE1(V_02800C_FORCE_DISABLE); - if (pipeline->device->enabled_extensions.EXT_depth_range_unrestricted && - !pCreateInfo->pRasterizationState->depthClampEnable && + if (!pCreateInfo->pRasterizationState->depthClampEnable && ps->info.info.ps.writes_z) { /* From VK_EXT_depth_range_unrestricted spec: * |