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
parent 3d613a2ac4
commit 22225af994

View File

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