11 lines
165 B
GLSL
11 lines
165 B
GLSL
#version 320 es
|
|
out mediump vec4 FragColor;
|
|
|
|
in mediump vec2 TexCoord;
|
|
|
|
uniform sampler2D ourTexture;
|
|
|
|
void main()
|
|
{
|
|
FragColor = texture(ourTexture, TexCoord);
|
|
} |