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