summaryrefslogtreecommitdiff
path: root/engine/xe_render_system.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'engine/xe_render_system.hpp')
-rw-r--r--engine/xe_render_system.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engine/xe_render_system.hpp b/engine/xe_render_system.hpp
index e0915dd..bbf96f8 100644
--- a/engine/xe_render_system.hpp
+++ b/engine/xe_render_system.hpp
@@ -124,6 +124,7 @@ class RenderSystem {
private:
+ void createDescriptorPool();
void createDescriptorSetLayout();
void createUniformBuffers();
void createDescriptorSets();
@@ -148,7 +149,7 @@ class RenderSystem {
VkPipelineLayout pipelineLayout;
std::unique_ptr<Pipeline> xePipeline;
- std::unique_ptr<DescriptorPool> &xeDescriptorPool;
+ std::unique_ptr<DescriptorPool> xeDescriptorPool;
std::unique_ptr<DescriptorSetLayout> xeDescriptorSetLayout;
};