Removed unused functions

This commit is contained in:
saschawillems 2016-12-25 10:10:22 +01:00
parent 2e5af6a9fb
commit be1bcffd8f
3 changed files with 3 additions and 42 deletions

View file

@ -308,7 +308,7 @@ namespace vk
deviceCreateInfo.pEnabledFeatures = &enabledFeatures;
// Enable the debug marker extension if it is present (likely meaning a debugging tool is present)
if (vkTools::checkDeviceExtensionPresent(physicalDevice, VK_EXT_DEBUG_MARKER_EXTENSION_NAME))
if (extensionSupported(VK_EXT_DEBUG_MARKER_EXTENSION_NAME))
{
deviceExtensions.push_back(VK_EXT_DEBUG_MARKER_EXTENSION_NAME);
enableDebugMarkers = true;