From 718a8707f3cca2d4f1bb8eb9e8099686a5d64ff1 Mon Sep 17 00:00:00 2001 From: Ryan Oldenburg Date: Thu, 28 Jan 2021 20:59:37 -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 32b63fa..2bbb44c 100644 --- a/src/pixie/images.nim +++ b/src/pixie/images.nim @@ -512,7 +512,7 @@ proc shift*(image: Image, offset: Vec2) = image.fill(rgba(0, 0, 0, 0)) # Reset this for being drawn to. image.draw(copy, offset, bmOverwrite) # Draw copy into image. -proc spread(image: Image, spread: float32) = +proc spread*(image: Image, spread: float32) = ## Grows the image as a mask by spread. if spread == 0: return @@ -539,6 +539,8 @@ proc shadow*( mask: Image, offset: Vec2, spread, blur: float32, color: ColorRGBA ): Image = ## Create a shadow of the image with the offset, spread and blur. + # TODO: copying is bad here due to this being slow already, + # we're doing it tho to avoid mutating param and returning new Image. let copy = mask.copy() if offset != vec2(0, 0): copy.shift(offset)