From d3261ed52741e6b9d9310ecf237dfa47f94b1620 Mon Sep 17 00:00:00 2001 From: Oliver Duis Date: Thu, 21 Apr 2011 09:02:26 +0200 Subject: [PATCH] Removed Jacques patch, as Hombres patch provided the real fix --- rtengine/iplab2rgb.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/rtengine/iplab2rgb.cc b/rtengine/iplab2rgb.cc index 29e575850..46f4ddea2 100644 --- a/rtengine/iplab2rgb.cc +++ b/rtengine/iplab2rgb.cc @@ -125,12 +125,9 @@ void ImProcFunctions::lab2rgb (LabImage* lab, Image8* image) { xyz2srgb(x_,y_,z_,R,G,B); /* copy RGB */ - #pragma omp critical - { image->data[ix++] = (int)gamma2curve[(R)] >> 8; image->data[ix++] = (int)gamma2curve[(G)] >> 8; image->data[ix++] = (int)gamma2curve[(B)] >> 8; - } } } }