summaryrefslogtreecommitdiff
path: root/tests/compute/cast-zero-to-struct.slang
diff options
context:
space:
mode:
Diffstat (limited to 'tests/compute/cast-zero-to-struct.slang')
-rw-r--r--tests/compute/cast-zero-to-struct.slang2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/compute/cast-zero-to-struct.slang b/tests/compute/cast-zero-to-struct.slang
index 41bc299e5..ec3dd6472 100644
--- a/tests/compute/cast-zero-to-struct.slang
+++ b/tests/compute/cast-zero-to-struct.slang
@@ -25,7 +25,7 @@ int test(int val)
return t.x + t.y*16;
}
-//TEST_INPUT: ubuffer(data=[0 0 0 0], stride=4):dxbinding(0),glbinding(0),out,name=gOutputBuffer
+//TEST_INPUT: ubuffer(data=[0 0 0 0], stride=4):out,name=gOutputBuffer
RWStructuredBuffer<int> gOutputBuffer;
[numthreads(4, 1, 1)]