thorvg/inc
Hermet Park 5131a8ba92 renderer: support Trintone SceneEffect
The Tritone effect maps the scene's shadows, midtones, and highlights
to three specific colors, allowing for more complex and artistic color grading.

Applied Tritone Formula:
if (L < 0.5) Result = (1 - 2L) * Shadow + 2L * Midtone
else Result = (1 - 2(L - 0.5)) * Midtone + (2(L - 0.5)) * Highlight
Where the L is Luminance.

issue: https://github.com/thorvg/thorvg/issues/2718
2024-12-20 00:38:15 +01:00
..
meson.build build: Override dependency for use as subproject 2024-09-30 16:44:21 +09:00
thorvg.h renderer: support Trintone SceneEffect 2024-12-20 00:38:15 +01:00