Skip to content

Commit

Permalink
update imgui submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
pthom committed Jul 7, 2024
1 parent 64777fc commit 30784ee
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion external/imgui
Submodule imgui updated 65 files
+1 −1 .github/FUNDING.yml
+2 −2 .github/workflows/build.yml
+3 −1 .gitignore
+6 −4 backends/imgui_impl_allegro5.cpp
+2 −0 backends/imgui_impl_android.cpp
+2 −1 backends/imgui_impl_dx10.cpp
+2 −1 backends/imgui_impl_dx11.cpp
+2 −1 backends/imgui_impl_dx12.cpp
+2 −1 backends/imgui_impl_dx9.cpp
+15 −2 backends/imgui_impl_glfw.cpp
+1 −0 backends/imgui_impl_glut.cpp
+5 −3 backends/imgui_impl_metal.mm
+5 −1 backends/imgui_impl_opengl2.cpp
+28 −24 backends/imgui_impl_opengl3.cpp
+3 −3 backends/imgui_impl_opengl3.h
+110 −16 backends/imgui_impl_opengl3_loader.h
+8 −5 backends/imgui_impl_osx.mm
+24 −8 backends/imgui_impl_sdl2.cpp
+129 −91 backends/imgui_impl_sdl3.cpp
+2 −1 backends/imgui_impl_sdl3.h
+21 −23 backends/imgui_impl_sdlrenderer2.cpp
+1 −1 backends/imgui_impl_sdlrenderer2.h
+45 −24 backends/imgui_impl_sdlrenderer3.cpp
+1 −1 backends/imgui_impl_sdlrenderer3.h
+47 −23 backends/imgui_impl_vulkan.cpp
+11 −5 backends/imgui_impl_vulkan.h
+2 −1 backends/imgui_impl_wgpu.cpp
+1 −1 backends/imgui_impl_wgpu.h
+67 −35 backends/imgui_impl_win32.cpp
+2 −2 docs/BACKENDS.md
+396 −11 docs/CHANGELOG.txt
+4 −4 docs/EXAMPLES.md
+38 −6 docs/FAQ.md
+8 −8 docs/README.md
+8 −10 docs/TODO.txt
+1 −1 examples/example_android_opengl3/main.cpp
+24 −17 examples/example_glfw_vulkan/main.cpp
+100 −0 examples/example_glfw_wgpu/CMakeLists.txt
+0 −0 examples/example_glfw_wgpu/Makefile.emscripten
+2 −2 examples/example_glfw_wgpu/README.md
+84 −18 examples/example_glfw_wgpu/main.cpp
+5 −1 examples/example_glfw_wgpu/web/index.html
+2 −1 examples/example_sdl2_sdlrenderer2/main.cpp
+24 −17 examples/example_sdl2_vulkan/main.cpp
+3 −3 examples/example_sdl3_opengl3/Makefile
+0 −3 examples/example_sdl3_opengl3/main.cpp
+3 −3 examples/example_sdl3_sdlrenderer3/Makefile
+5 −6 examples/example_sdl3_sdlrenderer3/main.cpp
+14 −2 examples/example_win32_directx10/main.cpp
+13 −2 examples/example_win32_directx11/main.cpp
+15 −2 examples/example_win32_directx12/main.cpp
+18 −4 examples/example_win32_directx9/main.cpp
+20 −0 examples/imgui_examples.sln
+1 −1 examples/libs/usynergy/uSynergy.h
+4 −0 imconfig.h
+1,024 −560 imgui.cpp
+283 −170 imgui.h
+368 −147 imgui_demo.cpp
+43 −30 imgui_draw.cpp
+254 −206 imgui_internal.h
+121 −52 imgui_tables.cpp
+295 −136 imgui_widgets.cpp
+1 −1 imstb_textedit.h
+1 −1 imstb_truetype.h
+2 −2 misc/freetype/imgui_freetype.cpp
4 changes: 2 additions & 2 deletions src/hello_imgui/doc_params.md
Original file line number Diff line number Diff line change
Expand Up @@ -1135,7 +1135,7 @@ struct DockingSplit
// `direction`: *ImGuiDir_*
// (enum with ImGuiDir_Down, ImGuiDir_Down, ImGuiDir_Left, ImGuiDir_Right)*
// Direction where this dock space should be created.
ImGuiDir_ direction;
ImGuiDir direction;

// `ratio`: _float, default=0.25f_.
// Ratio of the initialDock size that should be used by the new dock space.
Expand All @@ -1148,7 +1148,7 @@ struct DockingSplit

// Constructor
DockingSplit(const DockSpaceName& initialDock_ = "", const DockSpaceName& newDock_ = "",
ImGuiDir_ direction_ = ImGuiDir_Down, float ratio_ = 0.25f,
ImGuiDir direction_ = ImGuiDir_Down, float ratio_ = 0.25f,
ImGuiDockNodeFlags nodeFlags_ = ImGuiDockNodeFlags_None)
: initialDock(initialDock_), newDock(newDock_), direction(direction_), ratio(ratio_), nodeFlags(nodeFlags_) {}
};
Expand Down
4 changes: 2 additions & 2 deletions src/hello_imgui/docking_params.h
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ struct DockingSplit
// `direction`: *ImGuiDir_*
// (enum with ImGuiDir_Down, ImGuiDir_Down, ImGuiDir_Left, ImGuiDir_Right)*
// Direction where this dock space should be created.
ImGuiDir_ direction;
ImGuiDir direction;

// `ratio`: _float, default=0.25f_.
// Ratio of the initialDock size that should be used by the new dock space.
Expand All @@ -195,7 +195,7 @@ struct DockingSplit

// Constructor
DockingSplit(const DockSpaceName& initialDock_ = "", const DockSpaceName& newDock_ = "",
ImGuiDir_ direction_ = ImGuiDir_Down, float ratio_ = 0.25f,
ImGuiDir direction_ = ImGuiDir_Down, float ratio_ = 0.25f,
ImGuiDockNodeFlags nodeFlags_ = ImGuiDockNodeFlags_None)
: initialDock(initialDock_), newDock(newDock_), direction(direction_), ratio(ratio_), nodeFlags(nodeFlags_) {}
};
Expand Down

0 comments on commit 30784ee

Please sign in to comment.