From 2807cce15f54fc50fbc12cdedc87f6794e18e1ac Mon Sep 17 00:00:00 2001 From: Ryan Oldenburg Date: Mon, 8 Feb 2021 17:41:21 -0600 Subject: [PATCH] f --- src/pixie/images.nim | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pixie/images.nim b/src/pixie/images.nim index 0c4da5b..b6e955d 100644 --- a/src/pixie/images.nim +++ b/src/pixie/images.nim @@ -291,7 +291,9 @@ proc getRgbaSmooth*(image: Image, x, y: float32): ColorRGBA = lerp(bottomMix, topMix, diffY) -proc drawCorrect*(a: Image, b: Image | Mask, mat = mat3(), blendMode = bmMask) = +proc drawCorrect( + a: Image, b: Image | Mask, mat = mat3(), blendMode = bmNormal +) = ## Draws one image onto another using matrix with color blending. when type(b) is Image: let blender = blendMode.blender()