03b57a7d27
* Use clang-format * Create .clang-format * Update .clang-format * Update .clang-format * Update .clang-format * Only search in cpp dirs * Update clang-format.sh * Update .clang-format * Update .clang-format * Update .clang-format * Format C++ code! * Use version 16 * Update clang-format.sh * Remove Shaders.ts * fix: Lint Swift
23 lines
429 B
Objective-C
23 lines
429 B
Objective-C
//
|
|
// CameraBridge.h
|
|
// mrousavy
|
|
//
|
|
// Created by Marc Rousavy on 09.11.20.
|
|
// Copyright © 2020 mrousavy. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import <React/RCTFPSGraph.h>
|
|
#import <React/RCTLog.h>
|
|
#import <React/RCTUIManager.h>
|
|
#import <React/RCTViewManager.h>
|
|
|
|
#if VISION_CAMERA_ENABLE_FRAME_PROCESSORS
|
|
#import "Frame.h"
|
|
#import "FrameProcessor.h"
|
|
#import "VisionCameraProxy.h"
|
|
#endif
|