12 lines
139 B
GLSL
12 lines
139 B
GLSL
#version 330 core
|
|
|
|
out vec4 fragColor;
|
|
|
|
in vec2 texCoord;
|
|
|
|
uniform sampler2D tex;
|
|
|
|
void main()
|
|
{
|
|
fragColor = texture(tex, texCoord);
|
|
}
|