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

[#16] added context to window create

parent 54cf3b45
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"
......@@ -19,7 +19,7 @@ namespace vkcv {
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();
width = std::max(width, 1);
height = std::max(height, 1);
......
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