Feature/supports focus (#72)
* Add `supportsFocus` prop to CameraDevice * Add true-depth camera again * Revert "Add true-depth camera again" This reverts commit 5814b8ca7a15b3273ff29498144bb352619a4c1d.
This commit is contained in:
@@ -220,15 +220,20 @@ export interface CameraDevice {
|
||||
* Whether this camera device supports low light boost.
|
||||
*/
|
||||
supportsLowLightBoost: boolean;
|
||||
|
||||
// TODO: supportsDepthCapture
|
||||
// /**
|
||||
// * Whether this camera supports taking photos with depth data
|
||||
// */
|
||||
// supportsDepthCapture: boolean;
|
||||
// TODO: supportsRawCapture
|
||||
// /**
|
||||
// * Whether this camera supports taking photos in RAW format
|
||||
// */
|
||||
// supportsRawCapture: boolean;
|
||||
/**
|
||||
* Whether this camera supports taking photos with depth data.
|
||||
*
|
||||
* **! Work in Progress !**
|
||||
*/
|
||||
supportsDepthCapture: boolean;
|
||||
/**
|
||||
* Whether this camera supports taking photos in RAW format
|
||||
*
|
||||
* **! Work in Progress !**
|
||||
*/
|
||||
supportsRawCapture: boolean;
|
||||
/**
|
||||
* Specifies whether this device supports focussing ({@linkcode Camera.focus | Camera.focus(...)})
|
||||
*/
|
||||
supportsFocus: boolean;
|
||||
}
|
||||
|
Reference in New Issue
Block a user