| 134 | } |
| 135 | |
| 136 | void TakePhoto(JNIEnv*, jclass) { |
| 137 | std::thread takePhotoHandler(&CameraEngine::OnTakePhoto, GetAppEngine()); |
| 138 | takePhotoHandler.detach(); |
| 139 | } |
| 140 | |
| 141 | void OnExposureChanged(JNIEnv*, jobject, jlong exposurePercent) { |
| 142 | GetAppEngine()->OnCameraParameterChanged(ACAMERA_SENSOR_EXPOSURE_TIME, |
nothing calls this directly
no test coverage detected