Home
last modified time | relevance | path

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

/hardware/google/camera/devices/EmulatedCamera/hwl/
DEmulatedSensor.cpp103 const int32_t EmulatedSensor::kSaturationPoint = kFixedBitPrecision * 255; member in android::EmulatedSensor
138 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()
DEmulatedSensor.h270 static const int32_t kSaturationPoint; variable