From f05354dc790a8fe1e3f9d80611ba1067f119bd3b Mon Sep 17 00:00:00 2001 From: Ryan Oldenburg Date: Sat, 30 Jan 2021 16:25:02 -0600 Subject: [PATCH] Revert "working int impl" This reverts commit 74fcf2a9f25694c2b546ee090000f75f5de0bdef. --- src/pixie/blends.nim | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/src/pixie/blends.nim b/src/pixie/blends.nim index 3037594..9ba66f0 100644 --- a/src/pixie/blends.nim +++ b/src/pixie/blends.nim @@ -554,6 +554,13 @@ proc blendHardLight(backdrop, source: ColorRGBA): ColorRGBA = result = result.toStraightAlpha() 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): let vb = mm_setr_ps(backdrop.r.float32, backdrop.g.float32, backdrop.b.float32, 0) @@ -570,16 +577,6 @@ proc blendSoftLight(backdrop, source: ColorRGBA): ColorRGBA = result = alphaFix(backdrop, source, vb, vs, vm) else: 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 = let