diff options
Diffstat (limited to 'tests/python_build/fixtures/rd_glsl/compute.glsl')
-rw-r--r-- | tests/python_build/fixtures/rd_glsl/compute.glsl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/python_build/fixtures/rd_glsl/compute.glsl b/tests/python_build/fixtures/rd_glsl/compute.glsl new file mode 100644 index 0000000000..66fbbeb401 --- /dev/null +++ b/tests/python_build/fixtures/rd_glsl/compute.glsl @@ -0,0 +1,13 @@ +#[compute] + +#version 450 + +#VERSION_DEFINES + +#define BLOCK_SIZE 8 + +#include "_included.glsl" + +void main() { + uint t = BLOCK_SIZE + 1; +} |