mirror of
https://github.com/Ed94/DuctTaped_GL.git
synced 2024-11-10 04:24:52 -08:00
14 lines
172 B
GLSL
14 lines
172 B
GLSL
|
#version 330 core
|
||
|
|
||
|
layout (location = 0) in vec3 aPos;
|
||
|
|
||
|
|
||
|
|
||
|
uniform mat4 ScreenSpaceTransform;
|
||
|
|
||
|
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_Position = ScreenSpaceTransform * vec4(aPos, 1.0);
|
||
|
}
|