mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 12:23:53 -06:00

ANGLE fails to compile shaders otherwise. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
9 lines
179 B
GLSL
9 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);
|
|
}
|