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