From a6957aa20b2403e4d6831d2483ec42dee13d2a35 Mon Sep 17 00:00:00 2001 From: khuntvidisha13 Date: Tue, 3 Mar 2026 21:16:06 +0530 Subject: [PATCH] Add OVERLAY, HARD_LIGHT, SOFT_LIGHT blend modes to PImageTest --- core/test/processing/core/PImageTest.java | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/core/test/processing/core/PImageTest.java b/core/test/processing/core/PImageTest.java index ea5116e85f..5e46a8ba66 100644 --- a/core/test/processing/core/PImageTest.java +++ b/core/test/processing/core/PImageTest.java @@ -231,11 +231,12 @@ public void testAllBlendModesExactMatchStaticHelper() { img1.updatePixels(); img2.updatePixels(); - int[] modes = { - PConstants.BLEND, PConstants.ADD, PConstants.SUBTRACT, PConstants.LIGHTEST, - PConstants.DARKEST, PConstants.DIFFERENCE, PConstants.EXCLUSION, - PConstants.MULTIPLY, PConstants.SCREEN, PConstants.REPLACE - }; + int[] modes = { + PConstants.BLEND, PConstants.ADD, PConstants.SUBTRACT, PConstants.LIGHTEST, + PConstants.DARKEST, PConstants.DIFFERENCE, PConstants.EXCLUSION, + PConstants.MULTIPLY, PConstants.SCREEN, PConstants.REPLACE, + PConstants.OVERLAY, PConstants.HARD_LIGHT, PConstants.SOFT_LIGHT + }; for (int mode : modes) { PImage out = img1.copy();