Skip to content

Commit

Permalink
Remove redundant GetMainViewport decl in imgui.h (#3801, #3800)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamkewley authored Feb 11, 2021
1 parent 239d098 commit 7180e9a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion imgui.h
Original file line number Diff line number Diff line change
Expand Up @@ -905,7 +905,6 @@ namespace ImGui
// Read comments around the ImGuiPlatformIO structure for more details.
// Note: You may use GetWindowViewport() to get the current viewport of the current window.
IMGUI_API ImGuiPlatformIO& GetPlatformIO(); // platform/renderer functions, for backend to setup + viewports list.
IMGUI_API ImGuiViewport* GetMainViewport(); // return primary/default viewport. In the future in "no main platform window" mode we will direct this to primary monitor.
IMGUI_API void UpdatePlatformWindows(); // call in main loop. will call CreateWindow/ResizeWindow/etc. platform functions for each secondary viewport, and DestroyWindow for each inactive viewport.
IMGUI_API void RenderPlatformWindowsDefault(void* platform_render_arg = NULL, void* renderer_render_arg = NULL); // call in main loop. will call RenderWindow/SwapBuffers platform functions for each secondary viewport which doesn't have the ImGuiViewportFlags_Minimized flag set. May be reimplemented by user for custom rendering needs.
IMGUI_API void DestroyPlatformWindows(); // call DestroyWindow platform functions for all viewports. call from backend Shutdown() if you need to close platform windows before imgui shutdown. otherwise will be called by DestroyContext().
Expand Down

0 comments on commit 7180e9a

Please sign in to comment.