Files
NixOS-configs/modules/wallpaper-engine/shaders/brushpreview.vert
2025-02-07 17:04:43 -06:00

13 lines
251 B
GLSL

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