issue in vulkanexamplebase.cpp debugUtil (part2)
Closed this issue · 2 comments
bioorg commented
Hello, I am sorry for posting similar issues again
in base/vulkanexamplebase.cpp
line 111
VkDebugUtilsMessengerCreateInfoEXT debugUtilsMessengerCI{};
This should be
VkDebugUtilsMessengerCreateInfoEXT debugUtilsMessengerCI{VK_STRUCTURE_TYPE_DEBUG_UTILS_MESSENGER_CREATE_INFO_EXT};
However, this source does not generate any errors with the line 111 unmodified
Thank you
SaschaWillems commented
The sType is set in the function that's called two lines below.
bioorg commented
Oh, sorry again.
Have a nice day, Sascha