mkxp-sunshine/shader/minimal.vert
2026-05-09 20:28:10 +04:00

7 lines
111 B
GLSL

uniform mat4 projMat;
attribute vec2 position;
void main(){
gl_Position = projMat * vec4(position, 0, 1);
}