7 lines
95 B
GLSL
7 lines
95 B
GLSL
#version 450
|
|
#pragma shader_stage(vertex)
|
|
|
|
void main() {
|
|
gl_Position = vec4(0, 0, 0, 1);
|
|
}
|