Files
OpenGL-FreeType-Integration…/text.v.glsl
2024-02-15 19:08:03 -05:00

9 lines
124 B
GLSL

attribute vec4 coord;
varying vec2 texpos;
void main(void) {
gl_Position = vec4(coord.xy, 0, 1);
texpos = coord.zw;
}