diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-07-26 11:18:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-26 11:18:01 +0200 |
commit | 9856c8fda45c080886603515320faec4858d46dd (patch) | |
tree | 12f2082979e41fc102d3a21596f5a8c7c5f4c350 /modules/arkit/arkit_session_delegate.h | |
parent | 44c90e66d07f87ef5d0fb7c7f5e6a0b2a35c7e0c (diff) | |
parent | bf257adbf5808cfe3b0f9399442d8acd1e218760 (diff) |
Merge pull request #40434 from naithar/feature/ios-moltenVK
[iOS] Basic Vulkan/Metal Support
Diffstat (limited to 'modules/arkit/arkit_session_delegate.h')
-rw-r--r-- | modules/arkit/arkit_session_delegate.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/arkit/arkit_session_delegate.h b/modules/arkit/arkit_session_delegate.h index 158b80a60a..df98bf506e 100644 --- a/modules/arkit/arkit_session_delegate.h +++ b/modules/arkit/arkit_session_delegate.h @@ -42,9 +42,9 @@ class ARKitInterface; @property(nonatomic) ARKitInterface *arkit_interface; -- (void)session:(ARSession *)session didAddAnchors:(NSArray<ARAnchor *> *)anchors; -- (void)session:(ARSession *)session didRemoveAnchors:(NSArray<ARAnchor *> *)anchors; -- (void)session:(ARSession *)session didUpdateAnchors:(NSArray<ARAnchor *> *)anchors; +- (void)session:(ARSession *)session didAddAnchors:(NSArray<ARAnchor *> *)anchors API_AVAILABLE(ios(11.0)); +- (void)session:(ARSession *)session didRemoveAnchors:(NSArray<ARAnchor *> *)anchors API_AVAILABLE(ios(11.0)); +- (void)session:(ARSession *)session didUpdateAnchors:(NSArray<ARAnchor *> *)anchors API_AVAILABLE(ios(11.0)); @end #endif /* !ARKIT_SESSION_DELEGATE_H */ |