summaryrefslogtreecommitdiff
path: root/src/window.hpp
diff options
context:
space:
mode:
authorJonathan Bradley <jcb@pikum.xyz>2023-11-07 16:32:51 -0500
committerJonathan Bradley <jcb@pikum.xyz>2023-11-15 13:23:41 -0500
commitbdcaefc871fe8efcfa3920109e8a52d6a194955d (patch)
treecabc444b7acc6d7ca97341798466c5d3d68ad526 /src/window.hpp
parent546e179d6095d07342b9b8f29f3b20eaaf3cf274 (diff)
display debug box for hovered entity
Diffstat (limited to 'src/window.hpp')
-rw-r--r--src/window.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/window.hpp b/src/window.hpp
index 5f640f9..7f42766 100644
--- a/src/window.hpp
+++ b/src/window.hpp
@@ -68,6 +68,10 @@ struct DebugHitbox {
VkBuffer normalsBuffer;
VkBuffer uvBuffer;
VkBuffer indexBuffer;
+ VkBuffer instanceBuffer = VK_NULL_HANDLE;
+ uint32_t indexCount = 0;
+ uint32_t instanceCount = 1;
+ uint32_t instanceStartingIndex = 0;
VkDescriptorPool vkDescriptorPool;
VkDescriptorSet *vkDescriptorSets = nullptr;
};