92748af1a5
This drastically reduces the number of functions which we allow to be inlined. If this change does not hurt our performance, it will allow us to trivially remove hundreds of LOC. All current data leads us to believe that it may affect the Mali 400 but is highly unlikely to change results on any other device in the tree. More info: http://go/optimization-in-sksl-inliner Change-Id: Ia6b706742ce5407453e0e697b6c1f9201084c0e8 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/384858 Auto-Submit: John Stiles <johnstiles@google.com> Commit-Queue: John Stiles <johnstiles@google.com> Reviewed-by: Brian Osman <brianosman@google.com> Reviewed-by: Ethan Nicholas <ethannicholas@google.com>
28 lines
804 B
GLSL
28 lines
804 B
GLSL
|
|
out vec4 sk_FragColor;
|
|
uniform vec4 colorGreen;
|
|
uniform vec4 colorRed;
|
|
bool test_float() {
|
|
const float one = 1.0;
|
|
float two = 2.0;
|
|
vec4 result;
|
|
result.x = 1.0;
|
|
result.y = 1.0;
|
|
result.z = float(-vec4(two) == vec4(-two, vec3(-two)) ? 1 : 0);
|
|
result.w = float(vec2(1.0, -2.0) == -vec2(one - two, two) ? 1 : 0);
|
|
return bool(((result.x * result.y) * result.z) * result.w);
|
|
}
|
|
bool test_int() {
|
|
int one = 1;
|
|
const int two = 2;
|
|
ivec4 result;
|
|
result.x = 1;
|
|
result.y = 1;
|
|
result.z = int(-ivec4(two) == ivec4(-2, ivec3(-2)) ? 1 : 0);
|
|
result.w = int(-ivec2(-one, one + one) == -ivec2(one - two, two) ? 1 : 0);
|
|
return bool(((result.x * result.y) * result.z) * result.w);
|
|
}
|
|
vec4 main() {
|
|
return test_float() && test_int() ? colorGreen : colorRed;
|
|
}
|