Sign in
skia
/
skia
/
e8ab6e172d07e8d0f04e1fdf17f1202a4547359a
/
.
/
resources
/
sksl
/
intrinsics
/
SampleLod.sksl
blob: 11705010b089fad18e9f3f4d74114941c69b9817 [
file
] [
log
] [
blame
]
layout
(
binding
=
0
)
sampler2D t
;
void
main
()
{
half4 c
=
sampleLod
(
t
,
half2
(
0
),
0
);
sk_FragColor
=
c
*
sampleLod
(
t
,
half3
(
1
),
0
);
}