Remove timing code

This commit is contained in:
Ingo Weyrich 2020-09-14 19:32:50 +02:00
parent 1ed9444e3e
commit 49937a589f
2 changed files with 1 additions and 7 deletions

View File

@ -24,14 +24,12 @@
#include "rawimagesource.h"
#include "rt_math.h"
#define BENCHMARK
#include "StopWatch.h"
using namespace rtengine;
void RawImageSource::bayer_bilinear_demosaic(const float* const * blend, const array2D<float> &rawData, array2D<float> &red, array2D<float> &green, array2D<float> &blue)
{
BENCHFUN
#ifdef _OPENMP
#pragma omp parallel for
#endif

View File

@ -33,9 +33,6 @@
#include "../rtgui/options.h"
#define BENCHMARK
#include "StopWatch.h"
using namespace std;
namespace rtengine
@ -43,7 +40,6 @@ namespace rtengine
void RawImageSource::dual_demosaic_RT(bool isBayer, const procparams::RAWParams &raw, int winw, int winh, const array2D<float> &rawData, array2D<float> &red, array2D<float> &green, array2D<float> &blue, double &contrast, bool autoContrast)
{
BENCHFUN
if (contrast == 0.0 && !autoContrast) {
// contrast == 0.0 means only first demosaicer will be used