From 95452815428f9df6e1cdab9bb8104ad92f5ea154 Mon Sep 17 00:00:00 2001 From: Joshua Ashton Date: Fri, 16 Sep 2022 06:51:51 +0000 Subject: [PATCH] [d3d11] Store private refs for VB + IB bindings --- src/d3d11/d3d11_context_state.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/d3d11/d3d11_context_state.h b/src/d3d11/d3d11_context_state.h index 8e7a2136..e8b2deff 100644 --- a/src/d3d11/d3d11_context_state.h +++ b/src/d3d11/d3d11_context_state.h @@ -145,15 +145,15 @@ namespace dxvk { * input layout, and the dynamic primitive topology. */ struct D3D11VertexBufferBinding { - Com buffer = nullptr; - UINT offset = 0; - UINT stride = 0; + Com buffer = nullptr; + UINT offset = 0; + UINT stride = 0; }; struct D3D11IndexBufferBinding { - Com buffer = nullptr; - UINT offset = 0; - DXGI_FORMAT format = DXGI_FORMAT_UNKNOWN; + Com buffer = nullptr; + UINT offset = 0; + DXGI_FORMAT format = DXGI_FORMAT_UNKNOWN; }; struct D3D11ContextStateIA {