mirror of
https://github.com/Drezil/imgui.git
synced 2025-08-10 14:03:15 +02:00
Examples + Viewport: GLFW: context wasn't set when using multiple windows. (#2392)
This commit is contained in:
@ -603,7 +603,10 @@ static void ImGui_ImplGlfw_SwapBuffers(ImGuiViewport* viewport, void*)
|
|||||||
{
|
{
|
||||||
ImGuiViewportDataGlfw* data = (ImGuiViewportDataGlfw*)viewport->PlatformUserData;
|
ImGuiViewportDataGlfw* data = (ImGuiViewportDataGlfw*)viewport->PlatformUserData;
|
||||||
if (g_ClientApi == GlfwClientApi_OpenGL)
|
if (g_ClientApi == GlfwClientApi_OpenGL)
|
||||||
|
{
|
||||||
|
glfwMakeContextCurrent(data->Window);
|
||||||
glfwSwapBuffers(data->Window);
|
glfwSwapBuffers(data->Window);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------------
|
||||||
|
Reference in New Issue
Block a user