blob: f81462a03d0c9d334af79afb1fef00ea0fb26417 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef PKE_COMPONENTS_VK_HPP
#define PKE_COMPONENTS_VK_HPP
#include <vulkan/vulkan_core.h>
struct BufferBindingDetails {
VkBuffer buffer = VK_NULL_HANDLE;
uint32_t firstBinding = 0;
uint32_t bindingCount = 0;
VkDeviceSize offsets[1] = {0};
};
#endif /* PKE_COMPONENTS_VK_HPP */
|