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

@@ -8,7 +8,7 @@
#include "ArSessionPlayback.hpp"
#include "Base/BlockProfiler.hpp"
namespace openVulkanoCpp::AR::Playback
namespace OpenVulkano::AR::Playback
{
ArFramePlayback::ArFramePlayback(const std::shared_ptr<ArSessionPlayback>& session, ArPlaybackReader& frameReader)
: ArFrame(session, frameReader.GetNextFrameId())

View File

@@ -9,7 +9,7 @@
#include "AR/ArFrame.hpp"
#include "ArPlaybackReader.hpp"
namespace openVulkanoCpp::AR::Playback
namespace OpenVulkano::AR::Playback
{
class ArSessionPlayback;

View File

@@ -9,7 +9,7 @@
#if __has_include("turbojpeg.h")
#include <turbojpeg.h>
namespace openVulkanoCpp::AR::Playback
namespace OpenVulkano::AR::Playback
{
ColorImg ArPlaybackReader::ReadColorImage()
{
@@ -44,7 +44,7 @@ namespace openVulkanoCpp::AR::Playback
#define STB_IMAGE_IMPLEMENTATION
#include <stb_image.h>
namespace openVulkanoCpp::AR::Playback
namespace OpenVulkano::AR::Playback
{
ColorImg ArPlaybackReader::ReadColorImage()
{

View File

@@ -12,7 +12,7 @@
#include <string>
#include <fstream>
namespace openVulkanoCpp::AR::Playback
namespace OpenVulkano::AR::Playback
{
struct DepthImage
{

View File

@@ -9,7 +9,7 @@
#include "Base/Logger.hpp"
#include <filesystem>
namespace openVulkanoCpp::AR::Playback
namespace OpenVulkano::AR::Playback
{
ArSessionPlayback::ArSessionPlayback(const std::string& recordingPath, bool autoAdvance)
: ArSession(ArSessionMetadata(recordingPath)), recordingPath(recordingPath), autoAdvance(autoAdvance), playbackReader(recordingPath)

View File

@@ -10,7 +10,7 @@
#include "ArPlaybackReader.hpp"
#include "Math/Timestamp.hpp"
namespace openVulkanoCpp::AR::Playback
namespace OpenVulkano::AR::Playback
{
class ArSessionPlayback final : public ArSession, public std::enable_shared_from_this<ArSessionPlayback>
{