summaryrefslogtreecommitdiff
path: root/tests/bugs
diff options
context:
space:
mode:
authorArielG-NV <159081215+ArielG-NV@users.noreply.github.com>2024-04-19 23:18:40 -0400
committerGitHub <noreply@github.com>2024-04-19 20:18:40 -0700
commitf9bcad35562c1f08638e6d3eb397d370d7d2f8f8 (patch)
tree4e2a993689209bd5b597263922af03cb87d07c3d /tests/bugs
parent2da28c50d9c3699692eccde4b86d0b8d2323e55c (diff)
Initial pass to add capability declarations to stdlib intrinsics. (#3912)
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);
}