Open delaneyj opened 5 years ago
Also vk.ExtDebugReportExtensionName
exists but have to add +"\x00"
to makes it null terminated to use in vk.InstanceCreateInfo.PpEnabledExtensionNames
. I this is know from the demos but curious why its a special case.
I can create instance with debug_utils
using \x00 - however many of the debug utils datastructures arent present.
vk.DebugUtilsMessengerCreateInfo is not present while vk.DebugReportCallbackCreateInfo exists forcing the usage of debug_report
. Any idea why its missing?
@shravanshetty1 I moved on to doing stuff directly in C to avoid the disconnect :(
Was going through the [Vulkan tutorial]() and noticed
debug_report
work via your demos butdebug_utils
used by the tutorial is not. The spec saysSince its is deprecated can we get support for
debug_utils
?