mirror of
https://github.com/godotengine/godot.git
synced 2024-12-27 11:24:59 +08:00
14 lines
135 B
GLSL
14 lines
135 B
GLSL
#[compute]
|
|
|
|
#version 450
|
|
|
|
#VERSION_DEFINES
|
|
|
|
#define BLOCK_SIZE 8
|
|
|
|
#include "_included.glsl"
|
|
|
|
void main() {
|
|
uint t = BLOCK_SIZE + 1;
|
|
}
|