summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/glslang/src/Test/vulkan.comp
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/glslang/src/Test/vulkan.comp')
-rw-r--r--chromium/third_party/glslang/src/Test/vulkan.comp12
1 files changed, 12 insertions, 0 deletions
diff --git a/chromium/third_party/glslang/src/Test/vulkan.comp b/chromium/third_party/glslang/src/Test/vulkan.comp
new file mode 100644
index 00000000000..fe5637492ca
--- /dev/null
+++ b/chromium/third_party/glslang/src/Test/vulkan.comp
@@ -0,0 +1,12 @@
+#version 450
+
+layout(local_size_x_id = 18, local_size_z_id = 19) in;
+layout(local_size_x = 32, local_size_y = 32) in;
+layout(local_size_z_id = 14) in; // ERROR, can't change this
+
+void main()
+{
+ gl_WorkGroupSize;
+}
+
+layout(local_size_y_id = 19) in; // ERROR, already used: TODO not yet reported