Sign in
android
/
platform
/
hardware
/
google
/
gfxstream
/
03e2dffc99f3be583d5c8fa35cbce62f5781ad96
/
.
/
guest
/
mesa
/
src
/
vulkan
/
overlay-layer
/
overlay.frag
blob: 313a888041009b40a853788d88d5b037b4c4ad0d [
file
] [
log
] [
blame
]
#version 450 core
layout
(
location
=
0
)
out
vec4 fColor
;
layout
(
set
=
0
,
binding
=
0
)
uniform sampler2D sTexture
;
layout
(
location
=
0
)
in
struct
{
vec4
Color
;
vec2 UV
;
}
In
;
void
main
()
{
fColor
=
In
.
Color
*
texture
(
sTexture
,
In
.
UV
.
st
);
}