Skip to content
Snippets Groups Projects

Resolve "Swapchain Class"

Merged Ghost User requested to merge 16-swapchain-class into develop
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -19,7 +19,7 @@ namespace vkcv {
@@ -19,7 +19,7 @@ namespace vkcv {
vkcv::terminateGLFW();
vkcv::terminateGLFW();
}
}
Window Window::create(const char *windowTitle, int width, int height, bool resizable) {
Window Window::create(const vkcv::Context& context ,const char *windowTitle, int width, int height, bool resizable) {
vkcv::initGLFW();
vkcv::initGLFW();
width = std::max(width, 1);
width = std::max(width, 1);
height = std::max(height, 1);
height = std::max(height, 1);
Loading