https://bugs.kde.org/show_bug.cgi?id=404080

--- Comment #13 from reptilli...@live.com ---
I got my computer overheating issue fixed, so I can test changes.

For Rebecca Breu, as you know how to compile and edit code by copy and pasting
as well as having a computer where this bug can be reproduced (I can't
reproduce it). Can you confirm this change works?

template<class T>
inline T cfColorBurnLogarithmic(T src, T dst) {
    using namespace Arithmetic;
    //Also known as Darken from EffectBank/Illusions.hu. IFS Illusions had used
this blending mode.

    qreal fsrc = scale<qreal>(src);
    qreal fdst = scale<qreal>(dst);

    if (fdst == unitValue<T>()) {
    return scale<T>(log2(abs(1.0 + fsrc/inv(.999999)/8)));
    }  

    return scale<T>(log2(abs(1.0 + fsrc/inv(fdst)/8))); 
}

If it does work, I'll submit a patch on phabricator.

The changes I have made is to remove abs inside, and then wrap the absolute
next to log2 to force everything to go to positive. And yes, it does compile.

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to