Sign in
skia
/
skia
/
1d910efd245866af7dd9285419a179312ba69b47
/
.
/
resources
/
sksl
/
shared
/
SwizzleScalar.sksl
blob: e42f3de01b9e8839fe4f118702b78472fa13b567 [
file
] [
log
] [
blame
]
uniform half unknownInput
;
// 1
half4 main
(
float2 coords
)
{
half4 h4
=
unknownInput
.
xxxx
;
h4
=
unknownInput
.
xx01
;
h4
=
unknownInput
.
0x10
;
h4
=
unknownInput
.
0x0x
;
return
h4
;
}