11 lines
135 B
GLSL
11 lines
135 B
GLSL
|
|
in vec2 texCoord_interp;
|
|
out vec4 fragColor;
|
|
|
|
uniform sampler2D image;
|
|
|
|
void main()
|
|
{
|
|
fragColor = texture(image, texCoord_interp);
|
|
}
|