Searched refs:pRGB (Results 1 – 1 of 1) sorted by relevance
/cts/tests/camera/src/android/hardware/camera2/cts/rs/ |
D | RawConverter.java | 406 private float[/*3*/] applyColorspace(float[/*3*/] pRGB) { in applyColorspace() argument 407 pRGB[0] = clamp(pRGB[0], 0.f, mNeutralPoint[0]); in applyColorspace() 408 pRGB[1] = clamp(pRGB[1], 0.f, mNeutralPoint[1]); in applyColorspace() 409 pRGB[2] = clamp(pRGB[2], 0.f, mNeutralPoint[2]); in applyColorspace() 411 matrixMultiply(mSensorToIntermediate, pRGB); in applyColorspace() 412 tonemap(pRGB); in applyColorspace() 413 matrixMultiply(mIntermediateToSRGB, pRGB); in applyColorspace() 415 pRGB[0] = clamp(pRGB[0], 0.f, 1.f); in applyColorspace() 416 pRGB[1] = clamp(pRGB[1], 0.f, 1.f); in applyColorspace() 417 pRGB[2] = clamp(pRGB[2], 0.f, 1.f); in applyColorspace() [all …]
|