mirror of
https://github.com/xemu-project/xemu.git
synced 2025-01-30 08:32:08 +00:00
cd2bc889e5
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Max Reitz <mreitz@redhat.com>
11 lines
180 B
GLSL
11 lines
180 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);
|
|
}
|