From 8155698ed656ff1f37f5dd9f19c8fd7a054c9d39 Mon Sep 17 00:00:00 2001 From: Alberto Griggio Date: Sun, 25 Feb 2018 21:21:49 +0100 Subject: [PATCH] removed one further clipping place --- rtengine/rawimagesource.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rtengine/rawimagesource.cc b/rtengine/rawimagesource.cc index aef4447ce..fc7e086ed 100644 --- a/rtengine/rawimagesource.cc +++ b/rtengine/rawimagesource.cc @@ -3877,9 +3877,9 @@ lab2ProphotoRgbD50(float L, float A, float B, float& r, float& g, float& b) r = prophoto_xyz[0][0] * X + prophoto_xyz[0][1] * Y + prophoto_xyz[0][2] * Z; g = prophoto_xyz[1][0] * X + prophoto_xyz[1][1] * Y + prophoto_xyz[1][2] * Z; b = prophoto_xyz[2][0] * X + prophoto_xyz[2][1] * Y + prophoto_xyz[2][2] * Z; - r = CLIP01(r); - g = CLIP01(g); - b = CLIP01(b); + // r = CLIP01(r); + // g = CLIP01(g); + // b = CLIP01(b); } // Converts raw image including ICC input profile to working space - floating point version