interface DrawableFrameProcessor {
    frameProcessor: ((frame) => void);
    offscreenTextures: ISharedValue<SkImage[]>;
    previewOrientation: ISharedValue<Orientation>;
    type: "drawable-skia";
}

Properties

frameProcessor: ((frame) => void)

Type declaration

    • (frame): void
    • Parameters

      Returns void

offscreenTextures: ISharedValue<SkImage[]>
previewOrientation: ISharedValue<Orientation>
type: "drawable-skia"