Replace raw arrays with std::array<>
This commit is contained in:
@@ -82,7 +82,7 @@ float logBase(float base, float num) {
|
||||
return log(num) / log(base);
|
||||
}
|
||||
|
||||
bool RawImageSource::getFilmNegativeExponents (Coord2D spotA, Coord2D spotB, int tran, const FilmNegativeParams ¤tParams, float newExps[3])
|
||||
bool RawImageSource::getFilmNegativeExponents(Coord2D spotA, Coord2D spotB, int tran, const FilmNegativeParams ¤tParams, std::array<float, 3>& newExps)
|
||||
{
|
||||
float clearVals[3], denseVals[3];
|
||||
|
||||
@@ -317,4 +317,4 @@ void RawImageSource::filmNegativeProcess(const procparams::FilmNegativeParams &p
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user