Files
LookingGlass/client/renderers/EGL/shader/downscale_linear.frag

16 lines
246 B
GLSL

#version 300 es
#extension GL_OES_EGL_image_external_essl3 : enable
precision highp float;
precision highp int;
in vec2 fragCoord;
out vec4 fragColor;
uniform sampler2D sampler1;
void main()
{
fragColor = texture(sampler1, fragCoord);
}