mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-15 23:52:35 +00:00
9 lines
164 B
GLSL
9 lines
164 B
GLSL
# version 330
|
|
|
|
layout(location = 0) in vec3 vert;
|
|
uniform vec3 position;
|
|
|
|
void main() {
|
|
// projection * view * model *
|
|
gl_Position = vec4(vert+position, 1.0);
|
|
} |