summaryrefslogtreecommitdiff
path: root/tests/bugs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs')
-rw-r--r--tests/bugs/gh-3429.slang2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bugs/gh-3429.slang b/tests/bugs/gh-3429.slang
index e4eda5b38..c9b49e5f4 100644
--- a/tests/bugs/gh-3429.slang
+++ b/tests/bugs/gh-3429.slang
@@ -50,6 +50,6 @@ void computeMain()
// CHECK: loadDataConditionFalse
float v = getDataDependingOnCondition(gPushConstants.bufferHasOnlyOneElement);
- int2 pixelIndex = int2(DispatchRaysIndex().xy);
+ int2 pixelIndex = int2(0);
gResultImage[pixelIndex] = float4(v, v, v, 1.0);
}