Skip to content
Snippets Groups Projects
Verified Commit e77fb594 authored by Tobias Frisch's avatar Tobias Frisch
Browse files

[#96] Fixed compiler error because of naive renaming

parent 685dc4e9
No related branches found
No related tags found
1 merge request!97Resolve "Dokumentation vervollständigen"
Pipeline #27269 passed
......@@ -75,9 +75,9 @@ namespace vkcv::gui {
* Constructor of a new instance for ImGui management.
*
* @param[in,out] core Valid Core instance of the framework
* @param[in,out] window Valid Window instance of the framework
* @param[in,out] windowHandle Valid Window handle of the framework
*/
GUI(Core& core, WindowHandle& window);
GUI(Core& core, WindowHandle& windowHandle);
GUI(const GUI& other) = delete;
GUI(GUI&& other) = delete;
......
......@@ -18,8 +18,8 @@ namespace vkcv::gui {
vkcv_log(LogLevel::ERROR, "ImGui has a problem with Vulkan! (%s)", vk::to_string(result).c_str());
}
GUI::GUI(Core& core, WindowHandle& window) :
m_windowHandle(window),
GUI::GUI(Core& core, WindowHandle& windowHandle) :
m_windowHandle(windowHandle),
m_core(core),
m_context(m_core.getContext()),
m_gui_context(nullptr) {
......
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