10 lines
133 B
GLSL
10 lines
133 B
GLSL
out vec4 outputColor;
|
|
|
|
in vec2 texCoord;
|
|
|
|
uniform sampler2D texture0;
|
|
|
|
void main()
|
|
{
|
|
outputColor = texture(texture0, texCoord);
|
|
} |