Searched refs:kSaturationPoint (Results 1 – 2 of 2) sorted by relevance
103 const int32_t EmulatedSensor::kSaturationPoint = kFixedBitPrecision * 255; member in android::EmulatedSensor138 gamma_table_.resize(kSaturationPoint + 1); in EmulatedSensor()139 for (int32_t i = 0; i <= kSaturationPoint; i++) { in EmulatedSensor()140 gamma_table_[i] = ApplysRGBGamma(i, kSaturationPoint); in EmulatedSensor()1052 r_count = r_count < kSaturationPoint ? r_count : kSaturationPoint; in CaptureYUV420()1054 g_count = g_count < kSaturationPoint ? g_count : kSaturationPoint; in CaptureYUV420()1056 b_count = b_count < kSaturationPoint ? b_count : kSaturationPoint; in CaptureYUV420()
270 static const int32_t kSaturationPoint; variable