summaryrefslogtreecommitdiff
path: root/tests/python_build/fixtures/glsl/compute.glsl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/python_build/fixtures/glsl/compute.glsl')
-rw-r--r--tests/python_build/fixtures/glsl/compute.glsl12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/python_build/fixtures/glsl/compute.glsl b/tests/python_build/fixtures/glsl/compute.glsl
new file mode 100644
index 0000000000..e81f48d463
--- /dev/null
+++ b/tests/python_build/fixtures/glsl/compute.glsl
@@ -0,0 +1,12 @@
+#[compute]
+
+#version 450
+
+#VERSION_DEFINES
+
+
+#include "_included.glsl"
+
+void main() {
+ vec3 static_light = vec3(0, 1, 0);
+}