Change namespace name
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
|
||||
#import <ARKit/ARFrame.h>
|
||||
|
||||
namespace openVulkanoCpp::AR::ArKit
|
||||
namespace OpenVulkano::AR::ArKit
|
||||
{
|
||||
class ArSessionArKitInternal;
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
#import <ARKit/ARPointCloud.h>
|
||||
#import <CoreVideo/CoreVideo.h>
|
||||
|
||||
namespace openVulkanoCpp::AR::ArKit
|
||||
namespace OpenVulkano::AR::ArKit
|
||||
{
|
||||
namespace
|
||||
{
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
#include "ArSessionArKitInternal.h"
|
||||
|
||||
@interface ArKitDelegate : NSObject <ARSessionDelegate>
|
||||
- (id)initWithFrameHandler:(openVulkanoCpp::AR::ArKit::ArSessionArKitInternal*)session;
|
||||
- (id)initWithFrameHandler:(OpenVulkano::AR::ArKit::ArSessionArKitInternal*)session;
|
||||
- (void)session:(ARSession *)session didUpdateFrame:(ARFrame *)frame;
|
||||
- (void)sessionWasInterrupted:(ARSession *)session;
|
||||
- (void)sessionInterruptionEnded:(ARSession *)session;
|
||||
|
||||
@@ -8,10 +8,10 @@
|
||||
|
||||
@implementation ArKitDelegate
|
||||
{
|
||||
openVulkanoCpp::AR::ArKit::ArSessionArKitInternal* m_arSession;
|
||||
OpenVulkano::AR::ArKit::ArSessionArKitInternal* m_arSession;
|
||||
}
|
||||
|
||||
- (id)initWithFrameHandler:(openVulkanoCpp::AR::ArKit::ArSessionArKitInternal*)session
|
||||
- (id)initWithFrameHandler:(OpenVulkano::AR::ArKit::ArSessionArKitInternal*)session
|
||||
{
|
||||
m_arSession = session;
|
||||
return self;
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
// Define the class of the native AR session to be used
|
||||
#define NATIVE_AR_SESSION_CLASS ArKit::ArSessionArKit
|
||||
|
||||
namespace openVulkanoCpp::AR::ArKit
|
||||
namespace OpenVulkano::AR::ArKit
|
||||
{
|
||||
/**
|
||||
* This is just a helper intermediate class.
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
#include "ArSessionArKit.h"
|
||||
#include "ArSessionArKitInternal.h"
|
||||
|
||||
namespace openVulkanoCpp::AR::ArKit
|
||||
namespace OpenVulkano::AR::ArKit
|
||||
{
|
||||
namespace
|
||||
{
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
|
||||
@class ArKitDelegate;
|
||||
|
||||
namespace openVulkanoCpp::AR::ArKit
|
||||
namespace OpenVulkano::AR::ArKit
|
||||
{
|
||||
class ArSessionArKitInternal final : public ArSessionArKit, public std::enable_shared_from_this<ArSessionArKitInternal>
|
||||
{
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
|
||||
#define VALIDATE_SESSION(s) if(s != m_arSession) { Logger::AR->warn("ARSession does not match."); return; }
|
||||
|
||||
namespace openVulkanoCpp::AR::ArKit
|
||||
namespace OpenVulkano::AR::ArKit
|
||||
{
|
||||
namespace
|
||||
{
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
#import <ARKit/ARCamera.h>
|
||||
|
||||
namespace openVulkanoCpp::AR::ArKit
|
||||
namespace OpenVulkano::AR::ArKit
|
||||
{
|
||||
inline ArTrackingState GetArTrackingState(ARCamera* camera)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user