summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/openkode/shaders/frag.glslf
blob: ed360fea3d8a6d47d46d5c18b9c1c33f9f1682db (plain)
1
2
3
4
5
6
7
8
uniform sampler2D tex_samp;

varying vec2 texcoord_var;

void main(void)
{
    gl_FragColor = texture2D(tex_samp, texcoord_var);
}