From fc3cf3e8225f60874e182521f1ad01db5c331fea Mon Sep 17 00:00:00 2001 From: Philip Rebohle Date: Sun, 23 Feb 2025 13:34:11 +0100 Subject: [PATCH] [d3d11] Properly initialize minUav counter And also use it when resetting UAV bindings. Fixes a small oversight that didn't affect correctness. --- src/d3d11/d3d11_context_state.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/d3d11/d3d11_context_state.h b/src/d3d11/d3d11_context_state.h index 6886dd99d..a25ea0a4a 100644 --- a/src/d3d11/d3d11_context_state.h +++ b/src/d3d11/d3d11_context_state.h @@ -199,11 +199,11 @@ namespace dxvk { UINT stencilRef = D3D11_DEFAULT_STENCIL_REFERENCE; UINT maxRtv = 0u; - UINT minUav = 0u; + UINT minUav = D3D11_1_UAV_SLOT_COUNT; UINT maxUav = 0u; void reset() { - for (uint32_t i = 0; i < maxUav; i++) + for (uint32_t i = minUav; i < maxUav; i++) uavs[i] = nullptr; for (uint32_t i = 0; i < maxRtv; i++) @@ -221,8 +221,9 @@ namespace dxvk { sampleMask = D3D11_DEFAULT_SAMPLE_MASK; stencilRef = D3D11_DEFAULT_STENCIL_REFERENCE; - maxRtv = 0; - maxUav = 0; + maxRtv = 0u; + minUav = D3D11_1_UAV_SLOT_COUNT; + maxUav = 0u; } };