Skip to content
Snippets Groups Projects
Verified Commit 80ff3da6 authored by Tobias Frisch's avatar Tobias Frisch
Browse files

[#7] fixed some compiler warnings

parent 644f7410
No related branches found
No related tags found
1 merge request!2Resolve "Context Functionality"
This commit is part of merge request !2. Comments created here will be created in the context of that merge request.
...@@ -17,11 +17,12 @@ namespace vkcv { ...@@ -17,11 +17,12 @@ namespace vkcv {
vkcv::initGLFW(); vkcv::initGLFW();
// check for layer support // check for layer support
uint32_t layerCount = 0;
vk::enumerateInstanceLayerProperties(&layerCount, nullptr); const std::vector<vk::LayerProperties>& layerProperties = vk::enumerateInstanceLayerProperties();
std::vector<vk::LayerProperties> layerProperties(layerCount);
vk::enumerateInstanceLayerProperties(&layerCount, layerProperties.data());
std::vector<const char*> supportedLayers; std::vector<const char*> supportedLayers;
supportedLayers.reserve(layerProperties.size());
for (auto& elem : layerProperties) { for (auto& elem : layerProperties) {
supportedLayers.push_back(elem.layerName); supportedLayers.push_back(elem.layerName);
} }
...@@ -29,20 +30,24 @@ namespace vkcv { ...@@ -29,20 +30,24 @@ namespace vkcv {
// if in debug mode, check if validation layers are supported. Enable them if supported // if in debug mode, check if validation layers are supported. Enable them if supported
#if _DEBUG #if _DEBUG
std::vector<const char*> validationLayers = { std::vector<const char*> validationLayers = {
"VK_LAYER_KHRONOS_validation" "VK_LAYER_KHRONOS_validation"
}; };
if (!Context::checkSupport(supportedLayers, validationLayers)) { if (!Context::checkSupport(supportedLayers, validationLayers)) {
throw std::runtime_error("Validation layers requested but not available!"); throw std::runtime_error("Validation layers requested but not available!");
} }
#endif #endif
// check for extension support // check for extension support
std::vector<vk::ExtensionProperties> instanceExtensionProperties = vk::enumerateInstanceExtensionProperties(); std::vector<vk::ExtensionProperties> instanceExtensionProperties = vk::enumerateInstanceExtensionProperties();
std::vector<const char*> supportedExtensions; std::vector<const char*> supportedExtensions;
supportedExtensions.reserve(instanceExtensionProperties.size());
for (auto& elem : instanceExtensionProperties) { for (auto& elem : instanceExtensionProperties) {
supportedExtensions.push_back(elem.extensionName); supportedExtensions.push_back(elem.extensionName);
} }
if (!checkSupport(supportedExtensions, instanceExtensions)) { if (!checkSupport(supportedExtensions, instanceExtensions)) {
throw std::runtime_error("The requested instance extensions are not supported!"); throw std::runtime_error("The requested instance extensions are not supported!");
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment