osb/assets/opensb/rendering/effects/basic.vert
2024-08-21 19:24:55 -07:00

8 lines
103 B
GLSL

#version 140
in vec2 vertexPosition;
void main() {
gl_Position = vec4(vertexPosition, 0.0, 1.0);
}