1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00
Files
godot/tests/python_build/fixtures/rd_glsl/compute.glsl
2022-08-19 20:32:13 +09:00

14 lines
135 B
GLSL

#[compute]
#version 450
#VERSION_DEFINES
#define BLOCK_SIZE 8
#include "_included.glsl"
void main() {
uint t = BLOCK_SIZE + 1;
}