working int impl
This commit is contained in:
parent
8a32512567
commit
74fcf2a9f2
1 changed files with 10 additions and 7 deletions
|
@ -554,13 +554,6 @@ proc blendHardLight(backdrop, source: ColorRGBA): ColorRGBA =
|
||||||
result = result.toStraightAlpha()
|
result = result.toStraightAlpha()
|
||||||
|
|
||||||
proc blendSoftLight(backdrop, source: ColorRGBA): ColorRGBA =
|
proc blendSoftLight(backdrop, source: ColorRGBA): ColorRGBA =
|
||||||
# proc softLight(backdrop, source: int32): uint8 {.inline.} =
|
|
||||||
# ## Pegtop
|
|
||||||
# (
|
|
||||||
# ((255 - 2 * source) * backdrop ^ 2) div 255 ^ 2 +
|
|
||||||
# (2 * source * backdrop) div 255
|
|
||||||
# ).uint8
|
|
||||||
|
|
||||||
when defined(amd64) and not defined(pixieNoSimd):
|
when defined(amd64) and not defined(pixieNoSimd):
|
||||||
let
|
let
|
||||||
vb = mm_setr_ps(backdrop.r.float32, backdrop.g.float32, backdrop.b.float32, 0)
|
vb = mm_setr_ps(backdrop.r.float32, backdrop.g.float32, backdrop.b.float32, 0)
|
||||||
|
@ -577,6 +570,16 @@ proc blendSoftLight(backdrop, source: ColorRGBA): ColorRGBA =
|
||||||
result = alphaFix(backdrop, source, vb, vs, vm)
|
result = alphaFix(backdrop, source, vb, vs, vm)
|
||||||
else:
|
else:
|
||||||
blendSoftLightFloats(backdrop.color, source.color).rgba
|
blendSoftLightFloats(backdrop.color, source.color).rgba
|
||||||
|
# proc softLight(backdrop, source: int32): uint8 {.inline.} =
|
||||||
|
# ## Pegtop
|
||||||
|
# (
|
||||||
|
# ((255 - 2 * source) * (backdrop ^ 2)) div (255 ^ 2) +
|
||||||
|
# (2 * source * backdrop) div 255
|
||||||
|
# ).uint8
|
||||||
|
# result.r = softLight(backdrop.r.int32, source.r.int32)
|
||||||
|
# result.g = softLight(backdrop.g.int32, source.g.int32)
|
||||||
|
# result.b = softLight(backdrop.b.int32, source.b.int32)
|
||||||
|
# result = alphaFix(backdrop, source, result)
|
||||||
|
|
||||||
proc blendDifference(backdrop, source: ColorRGBA): ColorRGBA =
|
proc blendDifference(backdrop, source: ColorRGBA): ColorRGBA =
|
||||||
let
|
let
|
||||||
|
|
Loading…
Reference in a new issue