skia2/tests/sksl/shared/OperatorsES3.glsl
John Stiles 2ff8f86205 Run the SkSL Operators test as a Runtime Effect.
The test has been split into an ES2 version and ES3 version; the ES2
side omits unsupported integer ops like << >> & | ^ %.

Change-Id: Iba16d469a477809b17a823b1c68ae8937624c68e
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/362616
Reviewed-by: Ethan Nicholas <ethannicholas@google.com>
Commit-Queue: John Stiles <johnstiles@google.com>
2021-02-01 17:21:33 +00:00

30 lines
569 B
GLSL

out vec4 sk_FragColor;
uniform vec4 colorGreen;
uniform vec4 colorRed;
vec4 main() {
float x = 1.0;
float y = 2.0;
int z = 3;
x = 2.0;
y = 0.5;
z = 8;
bool c = sqrt(2.0) > 2.0;
bool d = true ^^ c;
bool e = c;
x += 12.0;
x -= 12.0;
x *= (y /= 10.0);
z |= 0;
z &= -1;
z ^= 0;
z >>= 2;
z <<= 4;
z %= 5;
x = float((vec2(sqrt(1.0)) , 6));
y = ((float(c) * float(d)) * float(e) , 6.0);
z = int((vec2(sqrt(1.0)) , 6));
return (x == 6.0 && y == 6.0) && z == 6 ? colorGreen : colorRed;
}