engineer-thesis-WUT/Engine/engine/Shaders/vertexShaderUpsideDown.vs

6 lines
123 B
Plaintext
Raw Normal View History

2023-01-27 21:29:04 +01:00
#version 330 core
layout (location = 0) in vec3 aPos;
void main()
{
gl_Position = vec4(aPos.x, -aPos.y, aPos.z, 1.0);
}