7 lines
83 B
GLSL
7 lines
83 B
GLSL
#version 330 core
|
|
|
|
in vec3 pos;
|
|
|
|
void main() {
|
|
gl_Position = vec4(pos, 1.0f);
|
|
} |