Home
last modified time | relevance | path

Searched refs:mToneMapCoeffs (Results 1 – 1 of 1) sorted by relevance

/cts/tests/camera/src/android/hardware/camera2/cts/rs/
DRawConverter.java232 float[/*4*/] mToneMapCoeffs; field in RawConverter.ConverterKernel
295 mToneMapCoeffs = toneMapCoeffs; in set_toneMapCoeffs()
468 min = (float) Math.pow(min, 3.f) * mToneMapCoeffs[0] in tonemap()
469 + (float) Math.pow(min, 2.f) * mToneMapCoeffs[1] in tonemap()
470 + (float) /*Math.pow(min, 1.f)*/min * mToneMapCoeffs[2] in tonemap()
471 + (float) /*Math.pow(min, 0.f)*/1.0 * mToneMapCoeffs[3]; in tonemap()
473 max = (float) Math.pow(max, 3.f) * mToneMapCoeffs[0] in tonemap()
474 + (float) Math.pow(max, 2.f) * mToneMapCoeffs[1] in tonemap()
475 + (float) /*Math.pow(max, 1.f)*/max * mToneMapCoeffs[2] in tonemap()
476 + (float) /*Math.pow(max, 0.f)*/1.0 * mToneMapCoeffs[3]; in tonemap()