LookingGlass/client/renderers/EGL/shader/cursor_rgb.frag

12 lines
137 B
GLSL
Raw Normal View History

#version 300 es
in highp vec2 uv;
out highp vec4 color;
uniform sampler2D sampler1;
void main()
{
color = texture(sampler1, uv);
}