Sign in
skia
/
skia
/
7e33d95f4f881f7d304ea81db39d20be4dab4416
/
.
/
resources
/
sksl
/
errors
/
InvalidOutParams.sksl
blob: 6194db826b77bd79fe9a626a5b91b33bcd1ae597 [
file
] [
log
] [
blame
]
void
inc1
(
out
float
x
)
{
x
++;
}
void
inc4
(
out
float4 x
)
{
x
+=
half4
(
1
);
}
void
test_a
()
{
inc1
(
0
);
}
void
test_b
()
{
inc4
(
float4
(
0
));
}
void
test_c
()
{
inc1
(
sqrt
(
1
));
}