Sign in
qemu
/
qemu
/
b637a61c6f27f8023905223314fe18819540162f
/
.
/
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
);
}