2020-01-30 08:15:10 +00:00
|
|
|
# Vk-Bootstrap
|
|
|
|
|
2020-02-04 03:51:52 +00:00
|
|
|
A Vulkan utility library meant to jump start a Vulkan Application
|
2020-01-30 08:15:10 +00:00
|
|
|
|
|
|
|
This library simplifies the tedious process of:
|
|
|
|
|
|
|
|
* Instance Creation
|
|
|
|
* Physical Device Selection
|
|
|
|
* Device Creation
|
|
|
|
* Getting Queues
|
|
|
|
* Swapchain Creation
|
|
|
|
|
2020-02-04 03:51:52 +00:00
|
|
|
It also adds several conveniences for:
|
2020-02-04 03:34:46 +00:00
|
|
|
|
|
|
|
* enabling validation layers
|
|
|
|
* setting up a debug callback
|
|
|
|
* selecting a gpu based on a small set of common criteria
|
|
|
|
|
2020-01-30 08:15:10 +00:00
|
|
|
## Example
|
|
|
|
|
|
|
|
```cpp
|
|
|
|
|
2020-02-04 03:51:52 +00:00
|
|
|
#include "VkBootstrap.h"
|
|
|
|
|
|
|
|
void device_init()
|
|
|
|
{
|
|
|
|
vkb::InstanceBuilder builder;
|
|
|
|
builder.setup_validation_layers()
|
|
|
|
.set_app_name ("example")
|
|
|
|
.set_default_debug_messenger ();
|
|
|
|
auto inst_ret = builder.build();
|
|
|
|
if (!inst_ret.has_value()) {
|
|
|
|
// error
|
|
|
|
}
|
|
|
|
vkb::Instance inst = inst_ret.value();
|
|
|
|
|
|
|
|
vkb::PhysicalDeviceSelector selector{ inst };
|
|
|
|
selector.set_surface (/* from user created window*/)
|
|
|
|
.set_minimum_version (1, 0)
|
|
|
|
.require_dedicated_transfer_queue();
|
|
|
|
auto phys_ret = selector.select ();
|
|
|
|
if (!phys_ret.has_value()) {
|
|
|
|
// error
|
|
|
|
}
|
|
|
|
vkb::PhysicalDevice physical_device = phys_ret.value();
|
|
|
|
|
|
|
|
vkb::DeviceBuilder device_builder{ physical_device };
|
|
|
|
auto dev_ret = device_builder.build ();
|
|
|
|
if (!dev_ret.has_value()){
|
|
|
|
// error
|
|
|
|
}
|
|
|
|
vkb::Device device = dev_ret.value();
|
|
|
|
|
2020-02-17 20:43:58 +00:00
|
|
|
auto graphics_queue_ret = vkb::get_graphics_queue(device);
|
2020-02-17 20:13:09 +00:00
|
|
|
if (!graphics_queue_ret.has_value()){
|
|
|
|
//error
|
|
|
|
}
|
|
|
|
VkQueue graphics_queue = graphics_queue_ret.value();
|
2020-01-30 08:15:10 +00:00
|
|
|
}
|
2020-02-04 03:34:46 +00:00
|
|
|
|
2020-02-04 03:51:52 +00:00
|
|
|
```
|
|
|
|
|
2020-02-04 03:54:03 +00:00
|
|
|
## Using this library
|
2020-02-04 03:51:52 +00:00
|
|
|
|
2020-02-04 03:54:03 +00:00
|
|
|
#### Simple
|
2020-02-04 03:51:52 +00:00
|
|
|
|
2020-02-04 03:54:03 +00:00
|
|
|
Copy the `src/VkBootstrap.h` and `src/VkBootstrap.cpp` into your project
|
|
|
|
|
|
|
|
#### With git-submodule + CMake
|
|
|
|
|
|
|
|
add this project as a git-submodule
|
2020-02-04 03:51:52 +00:00
|
|
|
|
|
|
|
```bash
|
|
|
|
git submodule add https://github.com/charles-lunarg/vk-bootstrap
|
|
|
|
```
|
|
|
|
|
|
|
|
Then add the project with cmake
|
2020-02-04 03:34:46 +00:00
|
|
|
|
2020-02-04 03:51:52 +00:00
|
|
|
```cmake
|
|
|
|
add_subdirectory(vk-bootstrap)
|
2020-01-30 08:15:10 +00:00
|
|
|
```
|
|
|
|
|
2020-02-04 03:51:52 +00:00
|
|
|
## Manually Building
|
2020-01-30 08:15:10 +00:00
|
|
|
|
2020-01-30 09:01:49 +00:00
|
|
|
```bash
|
|
|
|
git clone https://github.com/charles-lunarg/vk-bootstrap
|
|
|
|
cd vk-bootstrap
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake ..
|
|
|
|
```
|
|
|
|
|
2020-02-04 03:54:03 +00:00
|
|
|
To test, glfw and Catch2 are needed and automatically included using git submodules.
|
2020-01-30 09:01:49 +00:00
|
|
|
|
|
|
|
In the project directory, run
|
|
|
|
|
|
|
|
```bash
|
|
|
|
git submodule update --init
|
|
|
|
```
|
|
|
|
|
|
|
|
to get the required dependencies for testing setup.
|
|
|
|
|
|
|
|
Then return to the build directory and enable tests with `VK_BOOTSTRAP_TEST`
|
|
|
|
|
|
|
|
```bash
|
|
|
|
cmake ../path/to/vk-bootstrap/ -DVK_BOOTSTRAP_TEST=ON
|
|
|
|
```
|
|
|
|
|
2020-02-04 03:34:46 +00:00
|
|
|
## Todo's
|
2020-01-30 09:01:49 +00:00
|
|
|
|
2020-02-04 03:34:46 +00:00
|
|
|
* Package library to be usable
|
|
|
|
* More examples
|
|
|
|
* Testing
|
|
|
|
* Documenting API
|
|
|
|
* Fleshing out device configuration
|