Fix typo
This commit is contained in:
@@ -1,5 +1,4 @@
|
|||||||
function(FilterPlatformPaths sourcesVar)
|
function(FilterPlatformPaths sourcesVar)
|
||||||
|
|
||||||
if (IOS)
|
if (IOS)
|
||||||
list(FILTER ${sourcesVar} EXCLUDE REGEX ".*GLFW.*")
|
list(FILTER ${sourcesVar} EXCLUDE REGEX ".*GLFW.*")
|
||||||
list(FILTER ${sourcesVar} EXCLUDE REGEX ".*[\\/]Host[\\/]MacOS[\\/].*")
|
list(FILTER ${sourcesVar} EXCLUDE REGEX ".*[\\/]Host[\\/]MacOS[\\/].*")
|
||||||
@@ -8,7 +7,7 @@ function(FilterPlatformPaths sourcesVar)
|
|||||||
list(FILTER ${sourcesVar} EXCLUDE REGEX ".*[\\/]AR[\\/]Provider[\\/]ArKit[\\/].*")
|
list(FILTER ${sourcesVar} EXCLUDE REGEX ".*[\\/]AR[\\/]Provider[\\/]ArKit[\\/].*")
|
||||||
endif ()
|
endif ()
|
||||||
if (NOT APPLE)
|
if (NOT APPLE)
|
||||||
list(FILTER ${sourcesVar} EXCLUDE REGEX ".*[\\/]Host[\\/]Apple[\\/].*")
|
list(FILTER ${sourcesVar} EXCLUDE REGEX ".*[\\/]Host[\\/]Apple[\\/].*")
|
||||||
endif ()
|
endif ()
|
||||||
if (NOT LINUX)
|
if (NOT LINUX)
|
||||||
list(FILTER ${sourcesVar} EXCLUDE REGEX ".*[\\/]Host[\\/]Linux[\\/].*")
|
list(FILTER ${sourcesVar} EXCLUDE REGEX ".*[\\/]Host[\\/]Linux[\\/].*")
|
||||||
|
|||||||
@@ -52,7 +52,7 @@ namespace OpenVulkano::AR
|
|||||||
public:
|
public:
|
||||||
ArSessionCapabilities() = default;
|
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)
|
: type(type), sessionType(sessionType), uncompressed(uncompressed), depthSupported(depthSupported), supportsExposureLocking(supportsExposureLocking), supportsWhitebalanceLocking(supportsWhitebalanceLocking), hasFlashlight(hasFlash)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user