1
1
Fork 0
mirror of https://github.com/griffi-gh/hUI.git synced 2025-04-07 08:26:27 -05:00
hUI/hui-glium/shaders/fragment.300es.frag

14 lines
224 B
GLSL

#version 300 es
precision highp float;
precision highp sampler2D;
out vec4 out_color;
in vec4 vtx_color;
in vec2 vtx_uv;
uniform sampler2D tex;
void main() {
out_color = texture(tex, vtx_uv) * vtx_color;
}