diff options
Diffstat (limited to 'src/window.hpp')
| -rw-r--r-- | src/window.hpp | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/src/window.hpp b/src/window.hpp index 48da3c9..de1a2ac 100644 --- a/src/window.hpp +++ b/src/window.hpp @@ -66,21 +66,27 @@ extern DebugHitbox pkeDebugHitbox; struct ImplementedPKVK { struct ImplementedDescrSetLayouts { struct ImplementedDescrSetLayoutsByName { - VkDescriptorSetLayout texture; - VkDescriptorSetLayout glyph; + // 0 bindings + VkDescriptorSetLayout base; + // 1 binding, texture sampler + VkDescriptorSetLayout txtr; + // 2 bindings, ubo + texture sampler + VkDescriptorSetLayout ubo_txtr; } named; } descr_layouts; struct ImplementedPipelineLayouts { struct ImplementedPipelineLayoutsByName { - VkPipelineLayout texture; - VkPipelineLayout glyph; + VkPipelineLayout base; + VkPipelineLayout txtr; + VkPipelineLayout ubo_txtr; } named; } pipe_layouts; struct ImplementedPipelines { struct ImplementedPipelinesByName { - VkPipeline texture; - VkPipeline texture_wireframe; - VkPipeline glyph; + VkPipeline entity_standard; + VkPipeline entity_wireframe; + VkPipeline font_glyph; + VkPipeline ui_base; } named; } pipelines; }; |
