skia2/tests/sksl/shared/Octal.glsl
John Stiles e10839f998 Add basic unit test for octal parsing support.
This is required by the ES2 standard: http://screen/Qysv4fPW5r5LA9e
This actually already worked fine because `strtoull` natively recognizes
octal values without any work on our part. However, we lacked a test.

Change-Id: I3033de899918abe99c63a9b7b79bd4c3374ee315
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/471716
Commit-Queue: John Stiles <johnstiles@google.com>
Auto-Submit: John Stiles <johnstiles@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
2021-11-16 13:49:41 +00:00

12 lines
281 B
GLSL

out vec4 sk_FragColor;
uniform vec4 colorGreen;
uniform vec4 colorRed;
vec4 main() {
int i1 = 1;
int i2 = 342391;
int i3 = 2000000000;
int i4 = -2000000000;
return ((i1 == 1 && i2 == 342391) && i3 == 2000000000) && i4 == -2000000000 ? colorGreen : colorRed;
}