|
@@ -4814,7 +4814,7 @@ ImGuiIO& ImGui::GetIO()
|
|
|
}
|
|
|
|
|
|
// This variant exists to facilitate backends experimenting with multi-threaded parallel context. (#8069, #6293, #5856)
|
|
|
-ImGuiIO& ImGui::GetIOEx(ImGuiContext* ctx)
|
|
|
+ImGuiIO& ImGui::GetIO(ImGuiContext* ctx)
|
|
|
{
|
|
|
IM_ASSERT(ctx != NULL);
|
|
|
return ctx->IO;
|
|
@@ -4826,6 +4826,13 @@ ImGuiPlatformIO& ImGui::GetPlatformIO()
|
|
|
return GImGui->PlatformIO;
|
|
|
}
|
|
|
|
|
|
+// This variant exists to facilitate backends experimenting with multi-threaded parallel context. (#8069, #6293, #5856)
|
|
|
+ImGuiPlatformIO& ImGui::GetPlatformIO(ImGuiContext* ctx)
|
|
|
+{
|
|
|
+ IM_ASSERT(ctx != NULL;
|
|
|
+ return ctx->PlatformIO;
|
|
|
+}
|
|
|
+
|
|
|
// Pass this to your backend rendering function! Valid after Render() and until the next call to NewFrame()
|
|
|
ImDrawData* ImGui::GetDrawData()
|
|
|
{
|