This commit is contained in:
Ryan Oldenburg 2021-02-08 21:24:20 -06:00
parent c765a3323c
commit 6fd7df9b23

View file

@ -116,6 +116,10 @@ proc applyOpacity*(mask: Mask, opacity: float32) =
## Multiplies the values of the mask by opacity.
let opacity = round(255 * opacity).uint16
if opacity == 0:
mask.fill(0)
return
var i: int
when defined(amd64) and not defined(pixieNoSimd):
let