renamed to CreateSwapchainRenderTarget from CreateSwapchainRT

This commit is contained in:
2021-12-15 19:59:28 +08:00
parent 87293f778c
commit 14b9369739
3 changed files with 3 additions and 3 deletions

View File

@@ -75,7 +75,7 @@ bool GPUDevice::Resize(const VkExtent2D &extent)
if(!CreateSwapchain(attr->surface_caps.currentExtent))
return(false);
swapchainRT=CreateSwapchainRT();
swapchainRT=CreateSwapchainRenderTarget();
return(true);
}