aeon-199x/shaders/composite.vsh

9 lines
141 B
V Shell
Raw Normal View History

2023-05-06 03:41:40 -04:00
#version 120
varying vec2 texcoord;
void main() {
gl_Position = ftransform();
texcoord = (gl_TextureMatrix[0] * gl_MultiTexCoord0).xy;
}