11 Dec
2023
11 Dec
'23
6:10 p.m.
Esme Povirk (@madewokherd) commented about dlls/gdiplus/gdiplus_private.h:
+ RedEyeCorrectionEffect, + ColorMatrixEffect, + ColorLUTEffect, + BrightnessContrastEffect, + HueSaturationLightnessEffect, + ColorBalanceEffect, + LevelsEffect, + ColorCurveEffect, +} EffectType; + +typedef struct GpEffect{ + INT auxdatasize; + void *auxdata; + BOOL useauxdata; + EffectType type; +} GpEffect; The useauxdata field seems redundant. We could use size == 0 or data == NULL.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/4661#note_55726