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
34 lines
752 B
Objective-C
34 lines
752 B
Objective-C
//
|
|
// FrameProcessorContext.h
|
|
// VisionCamera
|
|
//
|
|
// Created by Marc Rousavy on 13.07.23.
|
|
// Copyright © 2023 mrousavy. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#import "Frame.h"
|
|
#import <AVFoundation/AVFoundation.h>
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#ifdef __cplusplus
|
|
#import "FrameHostObject.h"
|
|
#import "WKTJsiWorklet.h"
|
|
#import <jsi/jsi.h>
|
|
#import <memory.h>
|
|
#endif
|
|
|
|
@interface FrameProcessor : NSObject
|
|
|
|
#ifdef __cplusplus
|
|
- (instancetype _Nonnull)initWithWorklet:(std::shared_ptr<RNWorklet::JsiWorklet>)worklet
|
|
context:(std::shared_ptr<RNWorklet::JsiWorkletContext>)context;
|
|
|
|
- (void)callWithFrameHostObject:(std::shared_ptr<FrameHostObject>)frameHostObject;
|
|
#endif
|
|
|
|
- (void)call:(Frame* _Nonnull)frame;
|
|
|
|
@end
|