vblanco20-1 / vulkan-guide

Introductory guide to vulkan.
https://vkguide.dev/
MIT License
909 stars 205 forks source link

Optional chapter that explains how to initialize that Vulkan boilerplate the “manual” way #70

Closed zheng95z closed 1 year ago

zheng95z commented 2 years ago

The introduction section said that

Vk Bootstrap Abstracts a big amount of boilerplate that Vulkan has when setting up. Most of that code is written once and never touched again, so we will skip most of it using this library. This library simplifies instance creation, swapchain creation, and extension loading. It will be removed from the project eventually in an optional chapter that explains how to initialize that Vulkan boilerplate the “manual” way.

I now want to remove vk-bootstrap library, and I'm wondering where can I find such an "optional chapter" concerning initializing the Vulkan boilerplate the manual way?

BTW, a great tutorial!

vblanco20-1 commented 1 year ago

I dont think such a chapter is necesary as vulkan-tutorial already spends half of the tutorial explaining that code. If one wants information on how to remove vkbootstrap, can just follow the starting chapters of it.