rtengine/shader/cell_vert.glsl
2023-12-10 23:09:19 +01:00

7 lines
95 B
GLSL

#version 450
#pragma shader_stage(vertex)
void main() {
gl_Position = vec4(0, 0, 0, 1);
}