Grafika2023/PlanetCreator/cw 6/shaders/blur.vert

11 lines
196 B
GLSL
Raw Permalink Normal View History

2024-02-08 10:10:49 +01:00
#version 330 core
layout (location = 0) in vec3 aPos;
layout (location = 1) in vec2 aTexCoords;
out vec2 TexCoords;
void main()
{
TexCoords = aTexCoords;
gl_Position = vec4(aPos, 1.0);
}