From 9a9977472c7a45932de6cdb0c1d246d7441679a5 Mon Sep 17 00:00:00 2001 From: Rofli Souza Date: Mon, 20 Apr 2026 15:37:11 -0300 Subject: [PATCH 1/2] fix: expose ImGui context setter --- cimplot3d.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/cimplot3d.cpp b/cimplot3d.cpp index edb5980..dda7eef 100644 --- a/cimplot3d.cpp +++ b/cimplot3d.cpp @@ -6,6 +6,11 @@ #include "cimplot3d.h" +CIMGUI_API void ImPlot3D_SetImGuiContext(ImGuiContext* ctx) +{ + return ImGui::SetCurrentContext(ctx); +} + static inline ImPlot3DPoint ConvertToCPP_ImPlot3DPoint(const ImPlot3DPoint_c& src) { @@ -956,4 +961,3 @@ CIMGUI_API ImPlot3DStyle* ImPlot3DStyle_ImPlot3DStyle_Plot3DStyle(const ImPlot3D } - From cdb1a1e39b40bad388d17b1735b9d4979b84db52 Mon Sep 17 00:00:00 2001 From: Rofli Souza Date: Mon, 20 Apr 2026 16:04:47 -0300 Subject: [PATCH 2/2] chore: ignore local build output --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..84c048a --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/build/