mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-19 21:39:57 +00:00
7 lines
111 B
GLSL
7 lines
111 B
GLSL
|
|
uniform mat4 projMat;
|
|
attribute vec2 position;
|
|
|
|
void main(){
|
|
gl_Position = projMat * vec4(position, 0, 1);
|
|
}
|