summaryrefslogtreecommitdiff
path: root/tests/pipeline/rasterization
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pipeline/rasterization')
-rw-r--r--tests/pipeline/rasterization/fragment-shader-interlock.slang4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/pipeline/rasterization/fragment-shader-interlock.slang b/tests/pipeline/rasterization/fragment-shader-interlock.slang
index 66597a9a8..7215629a2 100644
--- a/tests/pipeline/rasterization/fragment-shader-interlock.slang
+++ b/tests/pipeline/rasterization/fragment-shader-interlock.slang
@@ -13,8 +13,8 @@ void main(
{
beginInvocationInterlock();
- result = texture[coords.xy];
- texture[coords.xy] = result + coords;
+ result = texture[uint2(coords.xy)];
+ texture[uint2(coords.xy)] = result + coords;
endInvocationInterlock();
}