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