From 8ea057ff96dd52576aeb5db16d75bfe4a140ca9d Mon Sep 17 00:00:00 2001 From: erik Date: Thu, 3 Nov 2011 13:18:43 -0600 Subject: [PATCH] fixed highlight_power functionality difference between cuburn and smoulder --- cuburn/code/filtering.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cuburn/code/filtering.py b/cuburn/code/filtering.py index 65ec52b..965b1e5 100644 --- a/cuburn/code/filtering.py +++ b/cuburn/code/filtering.py @@ -37,11 +37,10 @@ void colorclip(float4 *pixbuf, float gamma, float vibrancy, float highpow, if (maxa > 1.0f && highpow >= 0.0f) { float lsratio = powf(newls / ls, highpow); - pix.x *= newls; pix.y *= newls; pix.z *= newls; - maxc *= newls; + //maxc *= newls; // Reduce saturation (according to the HSV model) by proportionally // increasing the values of the other colors.