Home
last modified time | relevance | path

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

/hardware/google/camera/devices/EmulatedCamera/hwl/
DEmulatedSensor.cpp104 const int32_t EmulatedSensor::kSaturationPoint = kFixedBitPrecision * 255; member in android::EmulatedSensor
139 gamma_table_.resize(kSaturationPoint + 1); in EmulatedSensor()
140 for (int32_t i = 0; i <= kSaturationPoint; i++) { in EmulatedSensor()
141 gamma_table_[i] = ApplysRGBGamma(i, kSaturationPoint); in EmulatedSensor()
1448 r_count = r_count < kSaturationPoint ? r_count : kSaturationPoint; in CaptureYUV420()
1450 g_count = g_count < kSaturationPoint ? g_count : kSaturationPoint; in CaptureYUV420()
1452 b_count = b_count < kSaturationPoint ? b_count : kSaturationPoint; in CaptureYUV420()
DEmulatedSensor.h291 static const int32_t kSaturationPoint; variable