Skip to content
Snippets Groups Projects

Resolve "Shader Program Class"

Merged Mark Oliver Mints requested to merge 10-shader-program-class into develop
1 file
+ 1
2
Compare changes
  • Side-by-side
  • Inline
  • 3cf26d26
    [#16][Fix] removed context out of swapchain constructor · 3cf26d26
    Sebastian Gaida authored
@@ -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;
Loading