Lines Matching refs:photoOutput
42 let photoOutput: camera.PhotoOutput | undefined = undefined;
44 photoOutput = cameraManager.createPhotoOutput(photoProfilesArray[0]);
49 return photoOutput;
56 function isDeferredImageDeliverySupported(photoOutput: camera.PhotoOutput): boolean {
58 if (photoOutput !== null) {
59 …isSupported = photoOutput.isDeferredImageDeliverySupported(camera.DeferredDeliveryImageType.PHOTO);
69 function EnableDeferredPhotoAbility(photoOutput: camera.PhotoOutput): void {
70 photoOutput.deferImageDelivery(camera.DeferredDeliveryImageType.PHOTO);
77 function isDeferredImageDeliveryEnabled(photoOutput: camera.PhotoOutput): boolean {
79 if (photoOutput !== null) {
80 … isEnabled = photoOutput.isDeferredImageDeliveryEnabled(camera.DeferredDeliveryImageType.PHOTO);
96 function onPhotoOutputDeferredPhotoProxyAvailable(photoOutput: camera.PhotoOutput): void {
97 …photoOutput.on('deferredPhotoProxyAvailable', (err: BusinessError, proxyObj: camera.DeferredPhotoP…