From 644f74105a90ea34ed1a74aeee60fbe9ffd19afc Mon Sep 17 00:00:00 2001
From: Sebastian Gaida <gaida@ca-digit.com>
Date: Mon, 3 May 2021 13:59:44 +0200
Subject: [PATCH] [#7] change glfw calls to CoreManager calls

---
 src/vkcv/Context.cpp | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/vkcv/Context.cpp b/src/vkcv/Context.cpp
index e4950161..e79c2c82 100644
--- a/src/vkcv/Context.cpp
+++ b/src/vkcv/Context.cpp
@@ -1,5 +1,5 @@
 #include "Context.hpp"
-
+#include "CoreManager.hpp"
 
 namespace vkcv {
 
@@ -10,10 +10,11 @@ namespace vkcv {
 	Context::~Context() {
 		m_device.destroy();
 		m_instance.destroy();
+		vkcv::terminateGLFW();
 	}
 
 	Context Context::create(const char* applicationName, uint32_t applicationVersion, uint32_t queueCount, std::vector<vk::QueueFlagBits> queueFlags, std::vector<const char*> instanceExtensions, std::vector<const char*> deviceExtensions) {
-		glfwInit();
+		vkcv::initGLFW();
 
 		// check for layer support
 		uint32_t layerCount = 0;
-- 
GitLab