Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
skia
/
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
);
}