actually much faster
This commit is contained in:
parent
9ea66864b1
commit
01fd4eed6d
1 changed files with 5 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
## Blending modes.
|
||||
import chroma, math
|
||||
import chroma, math, common
|
||||
|
||||
when defined(amd64) and not defined(pixieNoSimd):
|
||||
import nimsimd/sse2
|
||||
|
@ -384,8 +384,10 @@ proc hardLight(backdrop, source: uint32): uint8 {.inline.} =
|
|||
screen(backdrop, 2 * source - 255)
|
||||
|
||||
proc blendNormal(backdrop, source: ColorRGBA): ColorRGBA =
|
||||
result = source
|
||||
result = alphaFix(backdrop, source, result)
|
||||
blendNormalPremultiplied(
|
||||
backdrop.toPremultipliedAlpha(),
|
||||
source.toPremultipliedAlpha()
|
||||
).toStraightAlpha()
|
||||
|
||||
proc blendDarken(backdrop, source: ColorRGBA): ColorRGBA =
|
||||
result.r = min(backdrop.r, source.r)
|
||||
|
|
Loading…
Reference in a new issue