Sign in
qemu
/
qemu
/
7650c8fe520c67c3b36f6962c4ad990f56ad40b8
/
.
/
ui
/
shader
/
texture-blit.frag
blob: bfa202c22b0146a0ed5c042b493b13e9c070cf89 [
file
] [
log
] [
blame
]
#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
);
}