From 0bb9ba1e8a49e945530b8a7d733ba26aa57b3279 Mon Sep 17 00:00:00 2001 From: Marc Rousavy Date: Tue, 6 Jul 2021 16:59:09 +0200 Subject: [PATCH] docs: Remove outdated "use-cases" docs --- src/CameraProps.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/CameraProps.ts b/src/CameraProps.ts index e797c39..4524e73 100644 --- a/src/CameraProps.ts +++ b/src/CameraProps.ts @@ -37,14 +37,12 @@ export interface CameraProps extends ViewProps { //#region Use-cases /** * Enables **photo capture** with the `takePhoto` function (see ["Taking Photos"](https://mrousavy.github.io/react-native-vision-camera/docs/guides/capturing#taking-photos)) - * - * Note: This occupies a use-case. (See ["Use-cases"](https://mrousavy.github.io/react-native-vision-camera/docs/guides/devices#use-cases)) */ photo?: boolean; /** * Enables **video capture** with the `startRecording` function (see ["Recording Videos"](https://mrousavy.github.io/react-native-vision-camera/docs/guides/capturing/#recording-videos)) * - * Note: This occupies a use-case. (See ["Use-cases"](https://mrousavy.github.io/react-native-vision-camera/docs/guides/devices#use-cases)) + * Note: If you want to use `video` and `frameProcessor` simultaneously, make sure [`supportsParallelVideoProcessing`](https://mrousavy.github.io/react-native-vision-camera/docs/guides/devices#the-supportsparallelvideoprocessing-prop) is `true`. */ video?: boolean; /** @@ -164,7 +162,7 @@ export interface CameraProps extends ViewProps { * * > See [the Frame Processors documentation](https://mrousavy.github.io/react-native-vision-camera/docs/guides/frame-processors) for more information * - * Note: This occupies a use-case. (See ["Use-cases"](https://mrousavy.github.io/react-native-vision-camera/docs/guides/devices#use-cases)) + * Note: If you want to use `video` and `frameProcessor` simultaneously, make sure [`supportsParallelVideoProcessing`](https://mrousavy.github.io/react-native-vision-camera/docs/guides/devices#the-supportsparallelvideoprocessing-prop) is `true`. * * @example * ```tsx