Tidy up handling of windowing data, make it a bit more type safe

This commit is contained in:
baldurk
2018-01-01 17:31:19 +00:00
parent b8bd99a24a
commit 6572cd97f5
40 changed files with 268 additions and 235 deletions
+2 -2
View File
@@ -74,9 +74,9 @@ public:
{
return m_Proxy->GetSupportedWindowSystems();
}
uint64_t MakeOutputWindow(WindowingSystem system, void *data, bool depth)
uint64_t MakeOutputWindow(WindowingData window, bool depth)
{
return m_Proxy->MakeOutputWindow(system, data, depth);
return m_Proxy->MakeOutputWindow(window, depth);
}
void DestroyOutputWindow(uint64_t id) { m_Proxy->DestroyOutputWindow(id); }
bool CheckResizeOutputWindow(uint64_t id) { return m_Proxy->CheckResizeOutputWindow(id); }