summaryrefslogtreecommitdiff
path: root/tests/glsl-intrinsic/atomic/atomicCounterTestMultiple.slang
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2025-03-06 14:26:34 -0800
committerGitHub <noreply@github.com>2025-03-06 14:26:34 -0800
commit4485cf3eaf142cfd5f8470e86739acc67d4e12ea (patch)
treec6ce220dfe5f3ab25ea558f2512f3761c9565c69 /tests/glsl-intrinsic/atomic/atomicCounterTestMultiple.slang
parent55dd2deaff82bbdb72e125ba4b350030b7e5f427 (diff)
Update SPIRV-Tools and fix new validation errors. (#6511)
* Update SPIRV-Tools and fix new validation errors. * Implement pointers for glsl target. * Reworked packStorage/unpackStorage code gen to operate on pointers rather than values.
Diffstat (limited to 'tests/glsl-intrinsic/atomic/atomicCounterTestMultiple.slang')
-rw-r--r--tests/glsl-intrinsic/atomic/atomicCounterTestMultiple.slang10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/glsl-intrinsic/atomic/atomicCounterTestMultiple.slang b/tests/glsl-intrinsic/atomic/atomicCounterTestMultiple.slang
index e6a3ae7e9..714ddd571 100644
--- a/tests/glsl-intrinsic/atomic/atomicCounterTestMultiple.slang
+++ b/tests/glsl-intrinsic/atomic/atomicCounterTestMultiple.slang
@@ -20,15 +20,15 @@ void computeMain()
{
outputBuffer.data[0] = true
-// CHECK_GLSL: one_0._data_0[3]
+// CHECK_GLSL: one_0._data_{{.*}}[3]
&& atomicCounter(one) == 0
-// CHECK_GLSL: one_0._data_0[4]
+// CHECK_GLSL: one_0._data_{{.*}}[4]
&& atomicCounter(two) == 0
-// CHECK_GLSL: one_0._data_0[1]
+// CHECK_GLSL: one_0._data_{{.*}}[1]
&& atomicCounter(three) == 0
-// CHECK_GLSL: one_0._data_0[2]
+// CHECK_GLSL: one_0._data_{{.*}}[2]
&& atomicCounter(four) == 0
-// CHECK_GLSL: five_0._data_1[0]
+// CHECK_GLSL: five_0._data_{{.*}}[0]
&& atomicCounter(five) == 0
;