charles-lunarg / vk-bootstrap

Vulkan Bootstrapping Iibrary
MIT License
820 stars 82 forks source link

Determine if any debug utils utility features could be added #180

Closed charles-lunarg closed 11 months ago

charles-lunarg commented 2 years ago

Currently, vk-bootstrap creates & destroys the debug utils messenger, but it doesn't offer any direct support for naming objects and whatnot. It would be nice to have a 'here is a ready made answer on how to use debug utils'.

charles-lunarg commented 11 months ago

This is not worth adding - especially since these functions require that the extension is supported so adding the debug functions directly to the Device object not only bloats the struct but could cause unexpected crashes (if the function is NULL) or if checking for nullptr first, causes the functions to do nothing which is potentially confusing.