skia2/tests/sksl/errors/OverflowIntLiteral.sksl
John Stiles 76013704ad Add unit tests for overflowing int and uint literal limits.
At present, we do not report any error; the values wrap silently.

Change-Id: I8c435cfdd81f6c2e5fd87e9c39c708138bf4ec82
Bug: skia:10932
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/333676
Auto-Submit: John Stiles <johnstiles@google.com>
Commit-Queue: Ethan Nicholas <ethannicholas@google.com>
Reviewed-by: Ethan Nicholas <ethannicholas@google.com>
2020-11-11 16:11:15 +00:00

12 lines
306 B
Plaintext

int intMin = -2147483648;
int intMinMinusOne = -2147483649;
int intMax = 2147483647;
int intMaxPlusOne = 2147483648;
void main() {
sk_FragColor.x = half(intMin);
sk_FragColor.x = half(intMax);
sk_FragColor.x = half(intMinMinusOne);
sk_FragColor.x = half(intMaxPlusOne);
}