When color management is disabled, the fragment shader was still first ensuring straight alpha and then immediately just going back to pre-multiplied. This is near-impossible for a shader compiler to optimize out, I guess because of the if-statement to handle division by zero. Having view alpha applied in between certainly didn't make it easier. That causes extra fragment computations that are unnecessary. In the issue report this was found to cause a notable performance regression. Fix the performance regression by introducing special-case paths for when straight alpha is not needed. This skips the unnecessary computations. Fixes: https://gitlab.freedesktop.org/wayland/weston/-/issues/623 Fixes:dev9a6a4e7032
Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.com> (cherry picked from commit6234cb98d1
) Dropped SHADER_COLOR_MAPPING_IDENTITY as that is not available in weston 10.0.
parent
f7c5fa175e
commit
f31de214d9
Loading…
Reference in new issue