diff --git a/core/test/processing/core/PImageTest.java b/core/test/processing/core/PImageTest.java index ea5116e85..5e46a8ba6 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();