summaryrefslogtreecommitdiff
path: root/tests/spirv/nested-entrypoint.slang
diff options
context:
space:
mode:
Diffstat (limited to 'tests/spirv/nested-entrypoint.slang')
-rw-r--r--tests/spirv/nested-entrypoint.slang19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/spirv/nested-entrypoint.slang b/tests/spirv/nested-entrypoint.slang
new file mode 100644
index 000000000..28e9b9c4a
--- /dev/null
+++ b/tests/spirv/nested-entrypoint.slang
@@ -0,0 +1,19 @@
+//TEST:SIMPLE(filecheck=CHECK): -target spirv -fvk-use-entrypoint-name
+
+// CHECK: OpEntryPoint
+
+RWStructuredBuffer<int> output;
+
+[shader("compute")]
+[numthreads(1,1,1)]
+void innerMain(int id : SV_DispatchThreadID)
+{
+ output[id] = id;
+}
+
+[shader("compute")]
+[numthreads(1,1,1)]
+void outerMain(int id : SV_DispatchThreadID)
+{
+ innerMain(id);
+} \ No newline at end of file