mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-07-04 23:55:17 +02:00
5 lines
111 B
GLSL
5 lines
111 B
GLSL
|
|
uniform mat4 projMat;
|
|
attribute vec2 position;
|
|
|
|
void main() { gl_Position = projMat * vec4(position, 0, 1); }
|