4c412bce4c
This reverts commite497a08065
. Reason for revert: Pinpoint disagrees Original change's description: > Reland "Remove inliner from IR generation stage." > > This reverts commit941fc7174f
. > > Reason for revert: performance now seems to be roughly equal or better > (~1%) over several trials. > Nanobench: http://screen/A8e8sojaXBgbMgF > > Original change's description: > > Revert "Remove inliner from IR generation stage." > > > > This reverts commit21d7778cb5
. > > > > Reason for revert: Pinpoint absolutely hates this change > > > > Original change's description: > > > Remove inliner from IR generation stage. > > > > > > There is no need to inline code during IR generation, as the optimizer > > > can now handle this. > > > > > > Change-Id: If272bfb98e945a75ec91fb4aa026e5631ac51b5b > > > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/315971 > > > Commit-Queue: John Stiles <johnstiles@google.com> > > > Commit-Queue: Brian Osman <brianosman@google.com> > > > Reviewed-by: Brian Osman <brianosman@google.com> > > > Auto-Submit: John Stiles <johnstiles@google.com> > > > > TBR=brianosman@google.com,ethannicholas@google.com,johnstiles@google.com > > > > Change-Id: I62c235415bcdc92a088e2a7f9c3d7dbf7e1bf669 > > No-Presubmit: true > > No-Tree-Checks: true > > No-Try: true > > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/317976 > > Reviewed-by: John Stiles <johnstiles@google.com> > > Commit-Queue: John Stiles <johnstiles@google.com> > > TBR=brianosman@google.com,ethannicholas@google.com,johnstiles@google.com > > Change-Id: I6189806c678283188f4b67ee61e5886f88c2d6fc > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/324891 > Reviewed-by: John Stiles <johnstiles@google.com> > Reviewed-by: Ethan Nicholas <ethannicholas@google.com> > Commit-Queue: Ethan Nicholas <ethannicholas@google.com> > Auto-Submit: John Stiles <johnstiles@google.com> TBR=brianosman@google.com,ethannicholas@google.com,johnstiles@google.com Change-Id: I79149467565f22f53b8c28868dd53b80f3421137 No-Presubmit: true No-Tree-Checks: true No-Try: true Reviewed-on: https://skia-review.googlesource.com/c/skia/+/325626 Reviewed-by: John Stiles <johnstiles@google.com> Commit-Queue: John Stiles <johnstiles@google.com> Auto-Submit: John Stiles <johnstiles@google.com>
79 lines
1.1 KiB
GLSL
79 lines
1.1 KiB
GLSL
|
|
uniform vec4 color;
|
|
vec4 main() {
|
|
float _3_fma;
|
|
{
|
|
float _4_0_mul;
|
|
{
|
|
_4_0_mul = color.x * color.y;
|
|
}
|
|
|
|
float _5_1_add;
|
|
{
|
|
float _6_2_c = _4_0_mul + color.z;
|
|
_5_1_add = _6_2_c;
|
|
}
|
|
|
|
_3_fma = _5_1_add;
|
|
|
|
}
|
|
|
|
float a = _3_fma;
|
|
|
|
float _7_fma;
|
|
{
|
|
float _8_0_mul;
|
|
{
|
|
_8_0_mul = color.y * color.z;
|
|
}
|
|
|
|
float _9_1_add;
|
|
{
|
|
float _10_2_c = _8_0_mul + color.w;
|
|
_9_1_add = _10_2_c;
|
|
}
|
|
|
|
_7_fma = _9_1_add;
|
|
|
|
}
|
|
|
|
float b = _7_fma;
|
|
|
|
float _11_fma;
|
|
{
|
|
float _12_0_mul;
|
|
{
|
|
_12_0_mul = color.z * color.w;
|
|
}
|
|
|
|
float _13_1_add;
|
|
{
|
|
float _14_2_c = _12_0_mul + color.x;
|
|
_13_1_add = _14_2_c;
|
|
}
|
|
|
|
_11_fma = _13_1_add;
|
|
|
|
}
|
|
|
|
float c = _11_fma;
|
|
|
|
float _15_mul;
|
|
{
|
|
_15_mul = c * c;
|
|
}
|
|
|
|
float _16_mul;
|
|
{
|
|
_16_mul = b * c;
|
|
}
|
|
|
|
float _17_mul;
|
|
{
|
|
_17_mul = a * _16_mul;
|
|
}
|
|
|
|
return vec4(a, b, _15_mul, _17_mul);
|
|
|
|
}
|