Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
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);
|
|
}
|