ecsgame/Shaders/default-fragment.fs

11 lines
165 B
Forth
Raw Normal View History

#version 320 es
out mediump vec4 FragColor;
2020-01-14 13:14:33 +01:00
in mediump vec2 TexCoord;
uniform sampler2D ourTexture;
void main()
{
2020-01-14 13:14:33 +01:00
FragColor = texture(ourTexture, TexCoord);
}