removed misplaced omp statement which led to increased processing time for HL blend mode on Windows, no Issue

This commit is contained in:
Ingo
2014-12-11 14:23:06 +01:00
parent 5aca9f3371
commit 6d3b3e2821

View File

@@ -2784,8 +2784,6 @@ void RawImageSource::HLRecovery_blend(float* rin, float* gin, float* bin, int wi
const float fixpt = fixthresh*minpt;
const float desatpt = satthresh*maxave+(1-satthresh)*maxval;
#pragma omp parallel for
for (int col=0; col<width; col++) {
float rgb[ColorCount], cam[2][ColorCount], lab[2][ColorCount], sum[2], chratio, lratio=0;
float L,C,H,Lfrac;