Fixed a function name in MismatchedNumbers.sksl

DSLParser caught a duplicate function name in here that SkSLParser
wasn't reporting.

Change-Id: I428c7ec64d1b625d9d12c6b7acdb23b52a0d7b89
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/443241
Reviewed-by: John Stiles <johnstiles@google.com>
Commit-Queue: Ethan Nicholas <ethannicholas@google.com>
This commit is contained in:
Ethan Nicholas 2021-08-29 15:03:44 -04:00 committed by SkCQ
parent 29104528cc
commit 36e4df71b5

View File

@ -30,7 +30,7 @@ void u_eq_float_literal_disallowed() { u = 1.0; }
void i_eq_u_disallowed() { i = u; }
void i_eq_f_disallowed() { i = f; }
float f_eq_i_disallowed() { f = i; }
float f_eq_i_disallowed() { f = u; }
float f_eq_u_disallowed() { f = u; }
void u_eq_i_disallowed() { u = i; }
void u_eq_f_disallowed() { u = f; }
void i_plus_float_literal_disallowed() { i + 1.0; }