Home
last modified time | relevance | path

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

/hardware/google/camera/devices/EmulatedCamera/hwl/
DEmulatedSensor.cpp109 const int32_t EmulatedSensor::kSaturationPoint = kFixedBitPrecision * 255; member in android::EmulatedSensor
144 gamma_table_.resize(kSaturationPoint + 1); in EmulatedSensor()
145 for (int32_t i = 0; i <= kSaturationPoint; i++) { in EmulatedSensor()
146 gamma_table_[i] = ApplysRGBGamma(i, kSaturationPoint); in EmulatedSensor()
1546 r_count = r_count < kSaturationPoint ? r_count : kSaturationPoint; in CaptureYUV420()
1548 g_count = g_count < kSaturationPoint ? g_count : kSaturationPoint; in CaptureYUV420()
1550 b_count = b_count < kSaturationPoint ? b_count : kSaturationPoint; in CaptureYUV420()
DEmulatedSensor.h316 static const int32_t kSaturationPoint; variable