Sign in
android
/
platform
/
hardware
/
google
/
gfxstream
/
591c818d647f31766ca7e54f96088ba73e6c026b
/
.
/
common
/
detector
/
shaders
/
blit_texture.frag
blob: 4e1af09dc11fdf2aa85f94b3d69867f76668afff [
file
] [
log
] [
blame
]
#version 460
layout
(
set
=
0
,
binding
=
0
)
uniform sampler2D uTexture
;
layout
(
location
=
0
)
noperspective
in
vec2 iUV
;
layout
(
location
=
0
)
out
vec4 oColor
;
void
main
()
{
oColor
=
texture
(
uTexture
,
iUV
);
}