mirror of
https://github.com/rustdesk/qemu-display.git
synced 2025-07-01 07:15:52 +00:00
Use 'cargo xtask codegen' to regenerate Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
11 lines
183 B
GLSL
11 lines
183 B
GLSL
|
|
#version 130
|
|
|
|
uniform sampler2D tex_unit;
|
|
in mediump vec2 ex_tex_coord;
|
|
out mediump vec4 out_frag_color;
|
|
|
|
void main(void) {
|
|
out_frag_color = texture(tex_unit, ex_tex_coord);
|
|
}
|