File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -4814,7 +4814,7 @@ ImGuiIO& ImGui::GetIO()
4814
4814
}
4815
4815
4816
4816
// This variant exists to facilitate backends experimenting with multi-threaded parallel context. (#8069, #6293, #5856)
4817
- ImGuiIO& ImGui::GetIOEx (ImGuiContext* ctx)
4817
+ ImGuiIO& ImGui::GetIO (ImGuiContext* ctx)
4818
4818
{
4819
4819
IM_ASSERT(ctx != NULL);
4820
4820
return ctx->IO;
@@ -4826,6 +4826,13 @@ ImGuiPlatformIO& ImGui::GetPlatformIO()
4826
4826
return GImGui->PlatformIO;
4827
4827
}
4828
4828
4829
+ // This variant exists to facilitate backends experimenting with multi-threaded parallel context. (#8069, #6293, #5856)
4830
+ ImGuiPlatformIO& ImGui::GetPlatformIO(ImGuiContext* ctx)
4831
+ {
4832
+ IM_ASSERT(ctx != NULL;
4833
+ return ctx->PlatformIO;
4834
+ }
4835
+
4829
4836
// Pass this to your backend rendering function! Valid after Render() and until the next call to NewFrame()
4830
4837
ImDrawData* ImGui::GetDrawData()
4831
4838
{
Original file line number Diff line number Diff line change @@ -2980,7 +2980,8 @@ namespace ImGui
2980
2980
// If this ever crashes because g.CurrentWindow is NULL, it means that either:
2981
2981
// - ImGui::NewFrame() has never been called, which is illegal.
2982
2982
// - You are calling ImGui functions after ImGui::EndFrame()/ImGui::Render() and before the next ImGui::NewFrame(), which is also illegal.
2983
- IMGUI_API ImGuiIO& GetIOEx (ImGuiContext* ctx);
2983
+ IMGUI_API ImGuiIO& GetIO (ImGuiContext* ctx);
2984
+ IMGUI_API ImGuiPlatformIO& GetPlatformIO (ImGuiContext* ctx);
2984
2985
inline ImGuiWindow* GetCurrentWindowRead () { ImGuiContext& g = *GImGui; return g.CurrentWindow ; }
2985
2986
inline ImGuiWindow* GetCurrentWindow () { ImGuiContext& g = *GImGui; g.CurrentWindow ->WriteAccessed = true ; return g.CurrentWindow ; }
2986
2987
IMGUI_API ImGuiWindow* FindWindowByID (ImGuiID id);
You can’t perform that action at this time.
0 commit comments