mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-07-22 15:31:41 +00:00
Tidy up handling of windowing data, make it a bit more type safe
This commit is contained in:
@@ -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); }
|
||||
|
||||
Reference in New Issue
Block a user