Solved Is VK_EXT_debug_utils available?

I am trying to enable the Vulkan debug utils extension, but the result from vkCreateInstance is '-7', which translates to:

VK_ERROR_EXTENSION_NOT_PRESENT

It there something I have to install and link additionally, apart from the vulkan loader?

I've managed to find the vulkan-extension-layer package, though I cannot find any similarly named *.so file;
 
It was a bug; I looked at the vulkan samples and couldn't find anything in their CMakeLists regarding any additional libraries, or whatnot required.
I was trying to request an empty string as an extension. For anyone interested I am linking the loader, the validation layers and pthread.
 
Back
Top