a65441b3c4
These need to change because type coercion in SkSL is about to become more strict in a followup CL; we are disallowing expressions that mix ints and floats without a cast. Change-Id: I0f6c3cba53fb67078f447345338262c153236c51 Bug: skia:11164 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/353102 Reviewed-by: Ethan Nicholas <ethannicholas@google.com> Commit-Queue: John Stiles <johnstiles@google.com> Auto-Submit: John Stiles <johnstiles@google.com>
25 lines
541 B
Plaintext
25 lines
541 B
Plaintext
void main() {
|
|
float x = 1, y = 2;
|
|
int z = 3;
|
|
x = x - x + y * x * x * (y - x);
|
|
y = x / y / x;
|
|
z = (z / 2 % 3 << 4) >> 2 << 1;
|
|
bool b = (x > 4) == x < 2 || 2 >= sqrt(2) && y <= x;
|
|
bool c = sqrt(2) > 2;
|
|
bool d = b ^^ c;
|
|
bool e = b && c;
|
|
bool f = b || c;
|
|
x += 12;
|
|
x -= 12;
|
|
x *= y /= 10;
|
|
z |= 0;
|
|
z &= -1;
|
|
z ^= 0;
|
|
z >>= 2;
|
|
z <<= 4;
|
|
z %= 5;
|
|
x = (float2(sqrt(1)), 6);
|
|
y = (float(b) * float(c) * float(d) * float(e) * float(f), 6.0);
|
|
z = (float2(sqrt(1)), 6);
|
|
}
|