mirror of
https://github.com/SangeloDev/SangeFault.git
synced 2024-11-10 07:32:43 +00:00
a50683c84e
basically starting over... this is gonna be fun!
14 lines
254 B
GLSL
14 lines
254 B
GLSL
#version 150
|
|
|
|
in vec4 Position;
|
|
|
|
uniform mat4 ProjMat;
|
|
uniform vec2 OutSize;
|
|
|
|
out vec2 texCoord;
|
|
|
|
void main() {
|
|
vec4 outPos = ProjMat * vec4(Position.xy, 0.0, 1.0);
|
|
gl_Position = vec4(outPos.xy, 0.2, 1.0);
|
|
texCoord = Position.xy / OutSize;
|
|
}
|