Sign in
skia
/
skia
/
1d910efd245866af7dd9285419a179312ba69b47
/
.
/
resources
/
sksl
/
shared
/
SwizzleScalarBool.sksl
blob: 03d182ea14d885ba38ad29f5a8074c6fca03774c [
file
] [
log
] [
blame
]
uniform half unknownInput
;
// 1
half4 main
(
float2 coords
)
{
bool
b
=
bool
(
unknownInput
);
bool4 b4
=
b
.
xxxx
;
b4
=
b
.
xx01
;
b4
=
b
.
0x10
;
b4
=
b
.
0x0x
;
return
half4
(
b4
);
}