LibGfx: Reorder CompositingAndBlendingOperator values

This change aligns blending operator values with the constants in
`SVGFEBlendElement`.
This commit is contained in:
Tim Ledbetter 2025-08-06 11:33:56 +01:00 committed by Jelle Raaijmakers
commit 22225af994
Notes: github-actions[bot] 2025-08-06 13:22:29 +00:00

View file

@ -8,13 +8,14 @@
namespace Gfx { namespace Gfx {
// The values of this enum should match the constants in SVGFEBlendELement.idl
enum class CompositingAndBlendingOperator { enum class CompositingAndBlendingOperator {
Normal, Normal = 1,
Multiply, Multiply,
Screen, Screen,
Overlay,
Darken, Darken,
Lighten, Lighten,
Overlay,
ColorDodge, ColorDodge,
ColorBurn, ColorBurn,
HardLight, HardLight,