Change namespace name

This commit is contained in:
2023-10-03 19:52:23 +02:00
parent 7538c82772
commit e0f24153d3
208 changed files with 246 additions and 246 deletions

View File

@@ -10,7 +10,7 @@
#import <ARKit/ARFrame.h>
namespace openVulkanoCpp::AR::ArKit
namespace OpenVulkano::AR::ArKit
{
class ArSessionArKitInternal;

View File

@@ -14,7 +14,7 @@
#import <ARKit/ARPointCloud.h>
#import <CoreVideo/CoreVideo.h>
namespace openVulkanoCpp::AR::ArKit
namespace OpenVulkano::AR::ArKit
{
namespace
{

View File

@@ -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;

View File

@@ -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;

View File

@@ -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.

View File

@@ -7,7 +7,7 @@
#include "ArSessionArKit.h"
#include "ArSessionArKitInternal.h"
namespace openVulkanoCpp::AR::ArKit
namespace OpenVulkano::AR::ArKit
{
namespace
{

View File

@@ -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>
{

View File

@@ -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
{

View File

@@ -10,7 +10,7 @@
#import <ARKit/ARCamera.h>
namespace openVulkanoCpp::AR::ArKit
namespace OpenVulkano::AR::ArKit
{
inline ArTrackingState GetArTrackingState(ARCamera* camera)
{