Sign in
skia
/
skia
/
7e33d95f4f881f7d304ea81db39d20be4dab4416
/
.
/
resources
/
sksl
/
shared
/
MultipleAssignments.sksl
blob: 9ccf82158bca0f647b68d36e85290ae1ed4f7587 [
file
] [
log
] [
blame
]
half4 main
(
float2 coords
)
{
float
x
;
float
y
;
x
=
y
=
1
;
half a
,
b
,
c
;
a
=
b
=
c
=
0
;
return
half4
(
a
*
b
,
x
,
c
,
y
);
}