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