summaryrefslogtreecommitdiff
path: root/src/components-vk.hpp
diff options
context:
space:
mode:
authorJonathan Bradley <jcb@pikum.xyz>2025-02-28 22:33:58 -0500
committerJonathan Bradley <jcb@pikum.xyz>2025-02-28 22:33:58 -0500
commit37347bf7811a5fa42c98e2a19adfee15252ee479 (patch)
tree70fe178ad777f52404f51b90c06b8d14ef101276 /src/components-vk.hpp
parent85bbecbdebf4f096418aea1cd4f9616f9d97e451 (diff)
pke: checkpoint: vk renames + first-pass ui
Renamed pipeline and descriptor names to be more self-descriptive. UI work is not done, and will not record. Needs vulkan items created (buffers).
Diffstat (limited to 'src/components-vk.hpp')
-rw-r--r--src/components-vk.hpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/components-vk.hpp b/src/components-vk.hpp
new file mode 100644
index 0000000..f81462a
--- /dev/null
+++ b/src/components-vk.hpp
@@ -0,0 +1,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 */