Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
skia
/
resources
/
sksl
/
shared
/
SwizzleScalarInt.sksl
blob: 0c945ee734e2603c7f47ea8bc576a725b29a6f27 [
file
] [
log
] [
blame
]
uniform half unknownInput
;
// 1
half4 main
(
float2 coords
)
{
int
i
=
int
(
unknownInput
);
int4 i4
=
i
.
xxxx
;
i4
=
i
.
xx01
;
i4
=
i
.
0x10
;
i4
=
i
.
0x0x
;
return
half4
(
i4
);
}