Vulkan/Surface: Remove MIR support

This commit is contained in:
Lynix
2020-04-13 15:12:19 +02:00
parent 75241ed8f0
commit 7447875753
5 changed files with 40 additions and 82 deletions

View File

@@ -78,12 +78,12 @@ namespace Nz
return m_lastErrorCode;
}
inline bool Instance::IsExtensionLoaded(const std::string& extensionName)
inline bool Instance::IsExtensionLoaded(const std::string& extensionName) const
{
return m_loadedExtensions.count(extensionName) > 0;
}
inline bool Instance::IsLayerLoaded(const std::string& layerName)
inline bool Instance::IsLayerLoaded(const std::string& layerName) const
{
return m_loadedLayers.count(layerName) > 0;
}