From 61cc31062e7f711f8c7882d95acaf25430fc6fd7 Mon Sep 17 00:00:00 2001 From: Jake Turner Date: Sat, 27 Sep 2025 08:36:11 +0100 Subject: [PATCH] Change D3D12_Shader_Debug_Zoo test to exercise thread local global mem --- util/test/demos/d3d12/d3d12_shader_debug_zoo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/test/demos/d3d12/d3d12_shader_debug_zoo.cpp b/util/test/demos/d3d12/d3d12_shader_debug_zoo.cpp index 5814b0cbc..69c8cb2fa 100644 --- a/util/test/demos/d3d12/d3d12_shader_debug_zoo.cpp +++ b/util/test/demos/d3d12/d3d12_shader_debug_zoo.cpp @@ -1000,7 +1000,7 @@ float4 main(v2f IN) : SV_Target0 // idx = 0 int idx = intval - IN.tri - 7; int prev = gInt; - gInt += (idx+1); + gInt += (idx+1) + IN.s.x + IN.s.y; gIntArray[idx] = gInt; return float4(prev, gInt, gIntArray[idx], gIntArray[idx+1]); }