Skip to content
Snippets Groups Projects
Commit 3cf26d26 authored by Sebastian Gaida's avatar Sebastian Gaida
Browse files

[#16][Fix] removed context out of swapchain constructor

parent 0e4d5e8a
No related branches found
No related tags found
4 merge requests!12Resolve "Swapchain Class",!7Resolve "Shader Program Class",!5Resolve "Pipeline State Object",!4Resolve "Renderpass Class"
Pipeline #24733 passed
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment