1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
matabstrix/data/shaders/vertex.glsl

12 lines
177 B
GLSL

attribute vec4 position;
attribute vec2 tex_coord;
varying vec2 f_tex_coord;
uniform mat4 mvp;
void main(void) {
gl_Position = mvp * position;
f_tex_coord = tex_coord;
}