From 4daf12644a0436aca6ff3535b62de5154b52b092 Mon Sep 17 00:00:00 2001 From: Georg Hagen Date: Sat, 3 Aug 2024 11:37:54 +0200 Subject: [PATCH] Fix typo --- cmake/Filter.cmake | 3 +-- openVulkanoCpp/AR/ArSession.hpp | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/cmake/Filter.cmake b/cmake/Filter.cmake index d030112..cb942a4 100644 --- a/cmake/Filter.cmake +++ b/cmake/Filter.cmake @@ -1,5 +1,4 @@ function(FilterPlatformPaths sourcesVar) - if (IOS) list(FILTER ${sourcesVar} EXCLUDE REGEX ".*GLFW.*") list(FILTER ${sourcesVar} EXCLUDE REGEX ".*[\\/]Host[\\/]MacOS[\\/].*") @@ -8,7 +7,7 @@ function(FilterPlatformPaths sourcesVar) list(FILTER ${sourcesVar} EXCLUDE REGEX ".*[\\/]AR[\\/]Provider[\\/]ArKit[\\/].*") endif () if (NOT APPLE) - list(FILTER ${sourcesVar} EXCLUDE REGEX ".*[\\/]Host[\\/]Apple[\\/].*") + list(FILTER ${sourcesVar} EXCLUDE REGEX ".*[\\/]Host[\\/]Apple[\\/].*") endif () if (NOT LINUX) list(FILTER ${sourcesVar} EXCLUDE REGEX ".*[\\/]Host[\\/]Linux[\\/].*") diff --git a/openVulkanoCpp/AR/ArSession.hpp b/openVulkanoCpp/AR/ArSession.hpp index fc32621..1cf1101 100644 --- a/openVulkanoCpp/AR/ArSession.hpp +++ b/openVulkanoCpp/AR/ArSession.hpp @@ -52,7 +52,7 @@ namespace OpenVulkano::AR public: ArSessionCapabilities() = default; - ArSessionCapabilities(const ArType type, const ArSessionType sessionType, const bool uncompressed, const bool depthSupported, const bool supportsExposureLocking, const bool suppoertWhitebalanceLocking, const bool hasFlash) + ArSessionCapabilities(const ArType type, const ArSessionType sessionType, const bool uncompressed, const bool depthSupported, const bool supportsExposureLocking, const bool supportsWhitebalanceLocking, const bool hasFlash) : type(type), sessionType(sessionType), uncompressed(uncompressed), depthSupported(depthSupported), supportsExposureLocking(supportsExposureLocking), supportsWhitebalanceLocking(supportsWhitebalanceLocking), hasFlashlight(hasFlash) {}