Files
NixOS-configs/modules/wallpaper-engine/shaders/error.vert
2025-04-29 13:39:02 -05:00

13 lines
251 B
GLSL

uniform mat4 g_ModelViewProjectionMatrix;
attribute vec3 a_Position;
attribute vec2 a_TexCoord;
varying vec2 v_TexCoord;
void main() {
gl_Position = mul(vec4(a_Position, 1.0), g_ModelViewProjectionMatrix);
v_TexCoord = a_TexCoord;
}