diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2023-11-07 16:32:51 -0500 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2023-11-15 13:23:41 -0500 |
| commit | bdcaefc871fe8efcfa3920109e8a52d6a194955d (patch) | |
| tree | cabc444b7acc6d7ca97341798466c5d3d68ad526 /src/window.hpp | |
| parent | 546e179d6095d07342b9b8f29f3b20eaaf3cf274 (diff) | |
display debug box for hovered entity
Diffstat (limited to 'src/window.hpp')
| -rw-r--r-- | src/window.hpp | 4 |
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; }; |
