diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2025-03-04 13:44:30 -0500 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2025-03-04 14:04:17 -0500 |
| commit | 78ca2865441df428228d158796c346e1df75d302 (patch) | |
| tree | ebcbea508c88162c99fd3fa217aae79cc9440217 /src/font.hpp | |
| parent | 3ca179e53bb4840a88c95e26b7eb11b36e1830dd (diff) | |
pke: ui draws on screen as expected
Diffstat (limited to 'src/font.hpp')
| -rw-r--r-- | src/font.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/font.hpp b/src/font.hpp index 86d53cc..3fff4ed 100644 --- a/src/font.hpp +++ b/src/font.hpp @@ -69,7 +69,6 @@ struct FontTypeSpacing { double underline_thickness; }; struct FontType : public Entity_Base { - uint64_t last_graphics_resize_index; pk_cstr title; AssetHandle fontTextureAssetHandle; AssetHandle glyphDetailsAssetHandle; @@ -90,6 +89,7 @@ struct FontType : public Entity_Base { VkImageView textureImageView = VK_NULL_HANDLE; VkDescriptorPool vkDescriptorPool = VK_NULL_HANDLE; VkDescriptorSet vkDescriptorSet = VK_NULL_HANDLE; + bool should_update_instance_buffer; } gr; struct FontTypeBindings { BufferBindingDetails vertexBD; |
