diff options
Diffstat (limited to 'engine/xe_render_system.cpp')
-rw-r--r-- | engine/xe_render_system.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/xe_render_system.cpp b/engine/xe_render_system.cpp index b7cce7a..cdfe3cb 100644 --- a/engine/xe_render_system.cpp +++ b/engine/xe_render_system.cpp @@ -130,7 +130,7 @@ void RenderSystem::createPipeline(VkRenderPass renderPass, std::string vert, std assert(pipelineLayout != nullptr && "Cannot create pipeline before pipeline layout"); PipelineConfigInfo pipelineConfig{}; - Pipeline::defaultPipelineConfigInfo(pipelineConfig); + Pipeline::defaultPipelineConfigInfo(pipelineConfig, xeDevice); if (cullingEnabled) { pipelineConfig.rasterizationInfo.cullMode = VK_CULL_MODE_BACK_BIT; } |