aa34554a99
ANGLE fails to compile shaders otherwise. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
10 lines
179 B
GLSL
10 lines
179 B
GLSL
#version 300 es
|
|
|
|
uniform sampler2D image;
|
|
in mediump vec2 ex_tex_coord;
|
|
out mediump vec4 out_frag_color;
|
|
|
|
void main(void) {
|
|
out_frag_color = texture(image, ex_tex_coord);
|
|
}
|