removed RenderPass params at RTSwapchain's construct function

This commit is contained in:
2025-01-26 13:36:15 +08:00
parent ffaa038f99
commit 2576675265
3 changed files with 4 additions and 4 deletions

View File

@@ -93,7 +93,7 @@ class RTSwapchain:public RenderTarget
public:
RTSwapchain(VkDevice dev,Swapchain *sc,DeviceQueue *q,Semaphore *rcs,Semaphore *pcs,RenderPass *rp);
RTSwapchain(VkDevice dev,Swapchain *sc,DeviceQueue *q,Semaphore *rcs,Semaphore *pcs);
~RTSwapchain();
uint32_t GetColorCount () override {return 1;}