76013704ad
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>
12 lines
306 B
Plaintext
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);
|
|
}
|