* A couple UI handles ( from UI ) * user camera and disk permission * exposure and sensitivity SeekBars * takePhoto button */
| 128 | * takePhoto button |
| 129 | */ |
| 130 | void notifyCameraPermission(JNIEnv*, jclass, jboolean permission) { |
| 131 | std::thread permissionHandler(&CameraEngine::OnCameraPermission, |
| 132 | GetAppEngine(), permission); |
| 133 | permissionHandler.detach(); |
| 134 | } |
| 135 | |
| 136 | void TakePhoto(JNIEnv*, jclass) { |
| 137 | std::thread takePhotoHandler(&CameraEngine::OnTakePhoto, GetAppEngine()); |
nothing calls this directly
no test coverage detected