This commit is contained in:
Ryan Oldenburg 2020-12-09 02:31:30 -06:00
parent cdadfd1cdd
commit c18f0d5f3e
2 changed files with 1 additions and 7 deletions

View file

@ -326,21 +326,18 @@ proc blendNormal(a, b: ColorRGBA): ColorRGBA =
result.g = b.g
result.b = b.b
result = alphaFix(a, b, result)
# blendNormalFloats(a.color, b.color).rgba
proc blendDarken(a, b: ColorRGBA): ColorRGBA =
result.r = min(a.r, b.r)
result.g = min(a.g, b.g)
result.b = min(a.b, b.b)
result = alphaFix(a, b, result)
# blendDarkenFloats(a.color, b.color).rgba
proc blendMultiply(a, b: ColorRGBA): ColorRGBA =
result.r = ((a.r.uint32 * b.r.uint32) div 255).uint8
result.g = ((a.g.uint32 * b.g.uint32) div 255).uint8
result.b = ((a.b.uint32 * b.b.uint32) div 255).uint8
result = alphaFix(a, b, result)
# blendMultiplyFloats(a.color, b.color).rgba
proc blendLinearBurn(a, b: ColorRGBA): ColorRGBA =
result.r = max(0, a.r.int32 + b.r.int32 - 255).uint8

View file

@ -351,10 +351,7 @@ proc spread*(image: Image, spread: float32) =
image[x, y] = rgba(0, 0, 0, maxAlpha)
proc shadow*(
mask: Image,
offset: Vec2,
spread, blur: float32,
color: ColorRGBA
mask: Image, offset: Vec2, spread, blur: float32, color: ColorRGBA
): Image =
## Create a shadow of the image with the offset, spread and blur.
var shadow = mask