summaryrefslogtreecommitdiffstats
path: root/tests/compute/interface-static-method.slang
diff options
context:
space:
mode:
Diffstat (limited to 'tests/compute/interface-static-method.slang')
-rw-r--r--tests/compute/interface-static-method.slang2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/compute/interface-static-method.slang b/tests/compute/interface-static-method.slang
index d526f7c47..05224bdea 100644
--- a/tests/compute/interface-static-method.slang
+++ b/tests/compute/interface-static-method.slang
@@ -50,7 +50,7 @@ int test(int val)
RWStructuredBuffer<int> outputBuffer;
[numthreads(4, 1, 1)]
-void computeMain(uint3 dispatchThreadID : SV_DispatchThreadID)
+void computeMain(int3 dispatchThreadID : SV_DispatchThreadID)
{
int tid = dispatchThreadID.x;
outputBuffer[tid] = test(tid);