summaryrefslogtreecommitdiff
path: root/tests/reflection/thread-group-size.comp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/reflection/thread-group-size.comp')
-rw-r--r--tests/reflection/thread-group-size.comp18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/reflection/thread-group-size.comp b/tests/reflection/thread-group-size.comp
deleted file mode 100644
index ff29490a5..000000000
--- a/tests/reflection/thread-group-size.comp
+++ /dev/null
@@ -1,18 +0,0 @@
-//TEST:REFLECTION:-no-checking -target glsl
-
-// Confirm that we provide reflection data for the `local_size_*` attributes
-
-layout(local_size_x = 3) in;
-
-layout(local_size_y = 5, local_size_z = 7) in;
-
-buffer B
-{
- float b[];
-};
-
-void main()
-{
- uint tid = gl_GlobalInvocationID.x;
- b[tid] = b[tid + 1] + 1.0f;
-} \ No newline at end of file