xref
: /
third_party
/
skia
/
resources
/
sksl
/
errors
/
ArgumentCountMismatch.sksl
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
only in
/third_party/skia/resources/sksl/errors/
1
float foo(float x) {
2
return x * x;
3
}
4
5
void main() {
6
float x = foo(1, 2);
7
}
8