mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
Add Display-pipeline as member variables
This commit is contained in:
parent
89f3eb3a87
commit
6ebbd80286
2 changed files with 4 additions and 1 deletions
|
@ -88,6 +88,9 @@ class RendererVK final : public Renderer {
|
|||
vk::RenderPass getRenderPass(vk::Format colorFormat, std::optional<vk::Format> depthFormat);
|
||||
vk::RenderPass getRenderPass(PICA::ColorFmt colorFormat, std::optional<PICA::DepthFmt> depthFormat);
|
||||
|
||||
vk::UniquePipeline displayPipeline;
|
||||
vk::UniquePipelineLayout displayPipelineLayout;
|
||||
|
||||
// Recreate the swapchain, possibly re-using the old one in the case of a resize
|
||||
vk::Result recreateSwapchain(vk::SurfaceKHR surface, vk::Extent2D swapchainExtent);
|
||||
|
||||
|
|
|
@ -1102,7 +1102,7 @@ void RendererVK::initGraphicsContext(SDL_Window* window) {
|
|||
|
||||
vk::RenderPass screenTextureRenderPass = getRenderPass(screenTextureInfo.format, {});
|
||||
|
||||
auto [pipeline, pipelineLayout] = createGraphicsPipeline(
|
||||
std::tie(displayPipeline, displayPipelineLayout) = createGraphicsPipeline(
|
||||
device.get(), {}, {}, displayVertexShaderModule.get(), displayFragmentShaderModule.get(), {}, {}, screenTextureRenderPass
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue