Engine API for fetching win32 HWND.

This commit is contained in:
Pieter-Jan Briers
2021-07-05 09:05:59 +02:00
parent 75de717b4e
commit d74b22a4e8
6 changed files with 33 additions and 2 deletions

View File

@@ -5551,5 +5551,10 @@ namespace OpenToolkit.GraphicsLibraryFramework
{
return glfwGetX11Window(window);
}
public static unsafe IntPtr GetWin32Window(Window* window)
{
return glfwGetWin32Window(window);
}
}
}