11 lines
139 B
GLSL
11 lines
139 B
GLSL
#version 430 core
|
|
in vec2 gTexPos;
|
|
out vec4 fColor;
|
|
|
|
uniform sampler2D aTexture;
|
|
|
|
void main()
|
|
{
|
|
fColor = texture(aTexture, gTexPos);
|
|
}
|