mirror of
https://github.com/SangeloDev/SangeFault.git
synced 2024-11-10 07:32:43 +00:00
16 lines
219 B
V Shell
16 lines
219 B
V Shell
|
#version 150
|
||
|
|
||
|
in vec3 Position;
|
||
|
in vec2 UV0;
|
||
|
|
||
|
uniform mat4 ModelViewMat;
|
||
|
uniform mat4 ProjMat;
|
||
|
|
||
|
out vec2 texCoord0;
|
||
|
|
||
|
void main() {
|
||
|
gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0);
|
||
|
|
||
|
texCoord0 = UV0;
|
||
|
}
|