mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-03-28 14:56:22 +01:00
8 lines
112 B
GLSL
8 lines
112 B
GLSL
|
|
uniform mat4 projMat;
|
|
attribute vec2 position;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = projMat * vec4(position, 0, 1);
|
|
}
|