diff --git a/include/vkcv/SwapChain.hpp b/include/vkcv/SwapChain.hpp index e56866ff6a1802e3c2df0fb44e1c7ccaef656192..15633badd4c6a3aef9766049317f3f5c8382bab8 100644 --- a/include/vkcv/SwapChain.hpp +++ b/include/vkcv/SwapChain.hpp @@ -17,11 +17,10 @@ namespace vkcv { * glfw is not initialized in this class because ist must be sure that there exists a context first * glfw is already initialized by the window class * @param surface used by the swapchain - * @param context of the application * @param swapchain to show images in the window * @param format */ - SwapChain(vk::SurfaceKHR surface, const vkcv::Context &context, vk::SwapchainKHR swapchain, vk::SurfaceFormatKHR format); + SwapChain(vk::SurfaceKHR surface, vk::SwapchainKHR swapchain, vk::SurfaceFormatKHR format); public: SwapChain(const SwapChain &other) = default;