py-imgui-redux 3.4.0__tar.gz → 4.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/CMakeLists.txt +3 -2
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/PKG-INFO +5 -4
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/build/py_imgui_redux.egg-info/SOURCES.txt +23 -66
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/pyproject.toml +4 -4
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/setup.py +3 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/.gitignore +13 -3
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_allegro5.cpp +88 -48
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_allegro5.h +5 -1
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_android.cpp +1 -1
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_android.h +1 -1
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_dx10.cpp +94 -48
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_dx10.h +5 -1
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_dx11.cpp +95 -49
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_dx11.h +5 -1
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_dx12.cpp +223 -117
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_dx12.h +9 -4
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_dx9.cpp +84 -30
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_dx9.h +5 -1
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_glfw.cpp +130 -49
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_glfw.h +7 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_glut.cpp +1 -1
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_metal.h +9 -5
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_metal.mm +117 -61
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_opengl2.cpp +73 -48
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_opengl2.h +5 -3
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_opengl3.cpp +134 -64
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_opengl3.h +5 -3
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_opengl3_loader.h +7 -1
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_osx.h +2 -1
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_osx.mm +14 -10
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_sdl2.cpp +129 -47
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_sdl2.h +5 -1
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_sdl3.cpp +98 -44
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_sdl3.h +1 -1
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_sdlgpu3.cpp +170 -124
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_sdlgpu3.h +8 -5
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_sdlrenderer2.cpp +81 -59
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_sdlrenderer2.h +6 -4
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_sdlrenderer3.cpp +80 -59
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_sdlrenderer3.h +6 -4
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_vulkan.cpp +392 -213
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_vulkan.h +15 -13
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_wgpu.cpp +148 -96
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_wgpu.h +5 -1
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_win32.cpp +58 -29
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_win32.h +1 -1
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/imconfig.h +5 -2
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/imgui.cpp +1381 -546
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/imgui.h +636 -260
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/imgui_demo.cpp +3170 -2783
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/imgui_draw.cpp +2349 -881
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/imgui_internal.h +391 -99
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/imgui_tables.cpp +98 -40
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/imgui_widgets.cpp +351 -149
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/imstb_textedit.h +50 -31
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/imstb_truetype.h +2 -2
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/misc/fonts/binary_to_compressed_c.cpp +2 -2
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/misc/freetype/README.md +5 -13
- py_imgui_redux-4.0.1/third-party/imgui/misc/freetype/imgui_freetype.cpp +751 -0
- py_imgui_redux-4.0.1/third-party/imgui/misc/freetype/imgui_freetype.h +83 -0
- py_imgui_redux-4.0.1/third-party/imnodes/CMakeLists.txt +107 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imnodes/example/color_node_editor.cpp +4 -6
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imnodes/example/main.cpp +1 -1
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imnodes/example/multi_editor.cpp +1 -1
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imnodes/example/save_load.cpp +1 -1
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imnodes/imnodes.cpp +4 -7
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imnodes/imnodes_internal.h +3 -2
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/implot/implot.cpp +14 -1
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/implot/implot.h +5 -1
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/implot/implot_demo.cpp +8 -1
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/implot/implot_items.cpp +6 -2
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/.appveyor.yml +1 -1
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/.clang-tidy +3 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/.codespell-ignore-lines +11 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/.gitignore +7 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/.pre-commit-config.yaml +17 -23
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/CMakeLists.txt +112 -62
- py_imgui_redux-4.0.1/third-party/pybind11/CMakePresets.json +93 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/README.rst +51 -16
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/attr.h +40 -8
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/buffer_info.h +14 -14
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/cast.h +548 -29
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/chrono.h +4 -1
- py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/conduit/README.txt +15 -0
- py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/conduit/pybind11_conduit_v1.h +116 -0
- py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/conduit/pybind11_platform_abi_id.h +87 -0
- py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/conduit/wrap_include_python_h.h +72 -0
- py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/critical_section.h +56 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/detail/class.h +169 -94
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/detail/common.h +225 -182
- py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/detail/cpp_conduit.h +75 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/detail/descr.h +55 -0
- py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/detail/dynamic_raw_ptr_cast_if_possible.h +39 -0
- py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/detail/exception_translation.h +71 -0
- py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/detail/function_record_pyobject.h +208 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/detail/init.h +113 -9
- py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/detail/internals.h +786 -0
- py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/detail/native_enum_data.h +209 -0
- py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/detail/pybind11_namespace_macros.h +82 -0
- py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/detail/struct_smart_holder.h +378 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/detail/type_caster_base.h +506 -133
- py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/detail/using_smart_holder.h +22 -0
- py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/detail/value_and_holder.h +90 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/eigen/matrix.h +19 -10
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/eigen/tensor.h +15 -11
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/embed.h +50 -46
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/eval.h +11 -6
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/functional.h +58 -49
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/gil.h +34 -82
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/gil_safe_call_once.h +12 -1
- py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/gil_simple.h +37 -0
- py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/native_enum.h +67 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/numpy.h +272 -93
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/pybind11.h +882 -261
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/pytypes.h +127 -21
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/stl/filesystem.h +23 -25
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/stl.h +277 -59
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/stl_bind.h +42 -7
- py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/subinterpreter.h +305 -0
- py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/trampoline_self_life_support.h +65 -0
- py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/typing.h +298 -0
- py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/warnings.h +75 -0
- py_imgui_redux-4.0.1/third-party/pybind11/noxfile.py +151 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/pybind11/__init__.py +4 -2
- py_imgui_redux-4.0.1/third-party/pybind11/pybind11/__main__.py +97 -0
- py_imgui_redux-4.0.1/third-party/pybind11/pybind11/_version.py +34 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/pybind11/commands.py +2 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/pybind11/setup_helpers.py +17 -17
- py_imgui_redux-4.0.1/third-party/pybind11/pyproject.toml +183 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/tools/FindPythonLibsNew.cmake +12 -2
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/tools/codespell_ignore_lines_from_errors.py +3 -2
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/tools/libsize.py +2 -0
- py_imgui_redux-4.0.1/third-party/pybind11/tools/make_changelog.py +115 -0
- py_imgui_redux-4.0.1/third-party/pybind11/tools/make_global.py +33 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/tools/pybind11Common.cmake +81 -58
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/tools/pybind11Config.cmake.in +10 -3
- py_imgui_redux-4.0.1/third-party/pybind11/tools/pybind11GuessPythonExtSuffix.cmake +86 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/tools/pybind11NewTools.cmake +112 -70
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/tools/pybind11Tools.cmake +17 -39
- py_imgui_redux-4.0.1/third-party/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake +161 -0
- py_imgui_redux-3.4.0/source/inc/bind-imgui/glfw-modules.h +0 -39
- py_imgui_redux-3.4.0/source/inc/bind-imgui/imgui-modules.h +0 -43
- py_imgui_redux-3.4.0/source/inc/bind-imgui/imnodes-modules.h +0 -18
- py_imgui_redux-3.4.0/source/inc/bind-imgui/implot-modules.h +0 -25
- py_imgui_redux-3.4.0/source/inc/bind-imgui/texture.h +0 -21
- py_imgui_redux-3.4.0/source/inc/binder/bind-modules.h +0 -15
- py_imgui_redux-3.4.0/source/inc/binder/enum-utility.h +0 -27
- py_imgui_redux-3.4.0/source/inc/binder/list-wrapper.h +0 -54
- py_imgui_redux-3.4.0/source/inc/binder/numpy.h +0 -5
- py_imgui_redux-3.4.0/source/inc/binder/struct-utility.h +0 -10
- py_imgui_redux-3.4.0/source/inc/binder/wraps.h +0 -134
- py_imgui_redux-3.4.0/source/src/bind-imgui.cpp +0 -22
- py_imgui_redux-3.4.0/source/src/binder/enum-utility.cpp +0 -37
- py_imgui_redux-3.4.0/source/src/binder/wraps.cpp +0 -169
- py_imgui_redux-3.4.0/source/src/glfw/bind-glfw.cpp +0 -20
- py_imgui_redux-3.4.0/source/src/glfw/callbacks.cpp +0 -249
- py_imgui_redux-3.4.0/source/src/glfw/constants.cpp +0 -331
- py_imgui_redux-3.4.0/source/src/glfw/context.cpp +0 -58
- py_imgui_redux-3.4.0/source/src/glfw/input.cpp +0 -61
- py_imgui_redux-3.4.0/source/src/glfw/joystick.cpp +0 -71
- py_imgui_redux-3.4.0/source/src/glfw/monitors.cpp +0 -105
- py_imgui_redux-3.4.0/source/src/glfw/structs.cpp +0 -82
- py_imgui_redux-3.4.0/source/src/glfw/windows.cpp +0 -168
- py_imgui_redux-3.4.0/source/src/imgui-core/bind-backends/glfw.cpp +0 -239
- py_imgui_redux-3.4.0/source/src/imgui-core/bind-backends/opengl3.cpp +0 -18
- py_imgui_redux-3.4.0/source/src/imgui-core/bind-imgui-core.cpp +0 -40
- py_imgui_redux-3.4.0/source/src/imgui-core/modules/cursor-layout.cpp +0 -28
- py_imgui_redux-3.4.0/source/src/imgui-core/modules/demos.cpp +0 -81
- py_imgui_redux-3.4.0/source/src/imgui-core/modules/drawlist.cpp +0 -352
- py_imgui_redux-3.4.0/source/src/imgui-core/modules/im-windows.cpp +0 -149
- py_imgui_redux-3.4.0/source/src/imgui-core/modules/imgui-context.cpp +0 -24
- py_imgui_redux-3.4.0/source/src/imgui-core/modules/imgui-enums.cpp +0 -712
- py_imgui_redux-3.4.0/source/src/imgui-core/modules/imgui-structs.cpp +0 -491
- py_imgui_redux-3.4.0/source/src/imgui-core/modules/stacks.cpp +0 -67
- py_imgui_redux-3.4.0/source/src/imgui-core/modules/styles.cpp +0 -35
- py_imgui_redux-3.4.0/source/src/imgui-core/modules/widgets/colors.cpp +0 -90
- py_imgui_redux-3.4.0/source/src/imgui-core/modules/widgets/drag-inputs.cpp +0 -334
- py_imgui_redux-3.4.0/source/src/imgui-core/modules/widgets/images.cpp +0 -166
- py_imgui_redux-3.4.0/source/src/imgui-core/modules/widgets/input.cpp +0 -243
- py_imgui_redux-3.4.0/source/src/imgui-core/modules/widgets/main.cpp +0 -462
- py_imgui_redux-3.4.0/source/src/imgui-core/modules/widgets/multi-select.cpp +0 -17
- py_imgui_redux-3.4.0/source/src/imgui-core/modules/widgets/slide-inputs.cpp +0 -268
- py_imgui_redux-3.4.0/source/src/imgui-core/modules/widgets/tables.cpp +0 -40
- py_imgui_redux-3.4.0/source/src/imgui-core/modules/widgets/tabs.cpp +0 -27
- py_imgui_redux-3.4.0/source/src/imgui-core/modules/widgets/text.cpp +0 -74
- py_imgui_redux-3.4.0/source/src/imgui-core/modules/widgets/tree.cpp +0 -55
- py_imgui_redux-3.4.0/source/src/imnodes/bind-imnodes.cpp +0 -12
- py_imgui_redux-3.4.0/source/src/imnodes/modules/imnodes-context.cpp +0 -364
- py_imgui_redux-3.4.0/source/src/imnodes/modules/imnodes-enums.cpp +0 -80
- py_imgui_redux-3.4.0/source/src/imnodes/modules/imnodes-structs.cpp +0 -105
- py_imgui_redux-3.4.0/source/src/implot/bind-implot.cpp +0 -24
- py_imgui_redux-3.4.0/source/src/implot/modules/implot-colormap.cpp +0 -83
- py_imgui_redux-3.4.0/source/src/implot/modules/implot-context.cpp +0 -76
- py_imgui_redux-3.4.0/source/src/implot/modules/implot-enums.cpp +0 -275
- py_imgui_redux-3.4.0/source/src/implot/modules/implot-misc.cpp +0 -66
- py_imgui_redux-3.4.0/source/src/implot/modules/implot-plotting.cpp +0 -1374
- py_imgui_redux-3.4.0/source/src/implot/modules/implot-setup-funcs.cpp +0 -160
- py_imgui_redux-3.4.0/source/src/implot/modules/implot-structs.cpp +0 -111
- py_imgui_redux-3.4.0/source/src/implot/modules/implot-tools.cpp +0 -147
- py_imgui_redux-3.4.0/source/src/implot/modules/implot-utils.cpp +0 -171
- py_imgui_redux-3.4.0/third-party/imgui/misc/freetype/imgui_freetype.cpp +0 -969
- py_imgui_redux-3.4.0/third-party/imgui/misc/freetype/imgui_freetype.h +0 -58
- py_imgui_redux-3.4.0/third-party/imnodes/CMakeLists.txt +0 -80
- py_imgui_redux-3.4.0/third-party/pybind11/MANIFEST.in +0 -6
- py_imgui_redux-3.4.0/third-party/pybind11/include/pybind11/detail/internals.h +0 -667
- py_imgui_redux-3.4.0/third-party/pybind11/include/pybind11/typing.h +0 -125
- py_imgui_redux-3.4.0/third-party/pybind11/noxfile.py +0 -107
- py_imgui_redux-3.4.0/third-party/pybind11/pybind11/__main__.py +0 -62
- py_imgui_redux-3.4.0/third-party/pybind11/pybind11/_version.py +0 -12
- py_imgui_redux-3.4.0/third-party/pybind11/pyproject.toml +0 -95
- py_imgui_redux-3.4.0/third-party/pybind11/setup.cfg +0 -43
- py_imgui_redux-3.4.0/third-party/pybind11/setup.py +0 -150
- py_imgui_redux-3.4.0/third-party/pybind11/tools/make_changelog.py +0 -90
- py_imgui_redux-3.4.0/third-party/pybind11/tools/pyproject.toml +0 -3
- py_imgui_redux-3.4.0/third-party/pybind11/tools/setup_global.py.in +0 -63
- py_imgui_redux-3.4.0/third-party/pybind11/tools/setup_main.py.in +0 -44
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/LICENSE +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/MANIFEST.in +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/README.md +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/pybind11_stubgen.py +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/setup.cfg +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/CMakeLists.txt +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glad/include/KHR/khrplatform.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glad/include/glad/gl.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glad/src/gl.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/.appveyor.yml +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/.editorconfig +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/.git +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/.gitattributes +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/.gitignore +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/.mailmap +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/CMake/GenerateMappings.cmake +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/CMake/Info.plist.in +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/CMake/cmake_uninstall.cmake.in +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/CMake/glfw3.pc.in +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/CMake/glfw3Config.cmake.in +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/CMake/i686-w64-mingw32-clang.cmake +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/CMake/i686-w64-mingw32.cmake +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/CMake/modules/FindEpollShim.cmake +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/CMake/modules/FindOSMesa.cmake +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/CMake/x86_64-w64-mingw32-clang.cmake +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/CMake/x86_64-w64-mingw32.cmake +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/CMakeLists.txt +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/CONTRIBUTORS.md +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/LICENSE.md +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/README.md +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/deps/getopt.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/deps/getopt.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/deps/glad/gl.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/deps/glad/gles2.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/deps/glad/vulkan.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/deps/linmath.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/deps/mingw/_mingw_dxhelper.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/deps/mingw/dinput.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/deps/mingw/xinput.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/deps/nuklear.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/deps/nuklear_glfw_gl2.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/deps/stb_image_write.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/deps/tinycthread.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/deps/tinycthread.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/deps/wayland/fractional-scale-v1.xml +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/deps/wayland/idle-inhibit-unstable-v1.xml +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/deps/wayland/pointer-constraints-unstable-v1.xml +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/deps/wayland/relative-pointer-unstable-v1.xml +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/deps/wayland/viewporter.xml +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/deps/wayland/wayland.xml +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/deps/wayland/xdg-activation-v1.xml +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/deps/wayland/xdg-decoration-unstable-v1.xml +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/deps/wayland/xdg-shell.xml +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/examples/CMakeLists.txt +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/examples/boing.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/examples/gears.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/examples/glfw.icns +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/examples/glfw.ico +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/examples/glfw.rc +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/examples/heightmap.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/examples/offscreen.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/examples/particles.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/examples/sharing.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/examples/splitview.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/examples/triangle-opengl.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/examples/triangle-opengles.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/examples/wave.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/examples/windows.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/include/GLFW/glfw3.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/include/GLFW/glfw3native.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/CMakeLists.txt +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/cocoa_init.m +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/cocoa_joystick.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/cocoa_joystick.m +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/cocoa_monitor.m +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/cocoa_platform.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/cocoa_time.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/cocoa_time.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/cocoa_window.m +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/context.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/egl_context.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/glfw.rc.in +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/glx_context.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/init.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/input.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/internal.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/linux_joystick.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/linux_joystick.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/mappings.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/mappings.h.in +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/monitor.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/nsgl_context.m +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/null_init.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/null_joystick.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/null_joystick.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/null_monitor.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/null_platform.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/null_window.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/osmesa_context.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/platform.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/platform.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/posix_module.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/posix_poll.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/posix_poll.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/posix_thread.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/posix_thread.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/posix_time.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/posix_time.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/vulkan.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/wgl_context.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/win32_init.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/win32_joystick.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/win32_joystick.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/win32_module.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/win32_monitor.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/win32_platform.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/win32_thread.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/win32_thread.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/win32_time.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/win32_time.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/win32_window.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/window.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/wl_init.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/wl_monitor.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/wl_platform.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/wl_window.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/x11_init.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/x11_monitor.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/x11_platform.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/x11_window.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/xkb_unicode.c +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/glfw/src/xkb_unicode.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imconfig/bind-imconfig.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/.editorconfig +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/.git +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/.gitattributes +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/LICENSE.txt +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_glut.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_sdlgpu3_shaders.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/sdlgpu3/build_instructions.txt +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/sdlgpu3/shader.frag +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/sdlgpu3/shader.vert +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/vulkan/build_instructions.txt +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/vulkan/generate_spv.sh +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/vulkan/glsl_shader.frag +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/vulkan/glsl_shader.vert +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/imstb_rectpack.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/misc/README.txt +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/misc/cpp/README.txt +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/misc/cpp/imgui_stdlib.cpp +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/misc/cpp/imgui_stdlib.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/misc/debuggers/README.txt +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/misc/debuggers/imgui.gdb +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/misc/debuggers/imgui.natstepfilter +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/misc/debuggers/imgui.natvis +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/misc/fonts/Cousine-Regular.ttf +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/misc/fonts/DroidSans.ttf +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/misc/fonts/Karla-Regular.ttf +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/misc/fonts/ProggyClean.ttf +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/misc/fonts/ProggyTiny.ttf +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/misc/fonts/Roboto-Medium.ttf +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/misc/single_file/imgui_single_file.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imnodes/.clang-format +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imnodes/.clang-tidy +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imnodes/.git +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imnodes/.gitignore +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imnodes/.gitmodules +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imnodes/LICENSE.md +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imnodes/README.md +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imnodes/example/graph.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imnodes/example/hello.cpp +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imnodes/example/node_editor.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imnodes/img/imnodes.gif +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imnodes/imnodes.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imnodes/vcpkg.json +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/implot/.git +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/implot/LICENSE +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/implot/README.md +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/implot/TODO.md +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/implot/implot_internal.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/.clang-format +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/.cmake-format.yaml +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/.git +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/.gitattributes +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/.readthedocs.yml +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/LICENSE +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/SECURITY.md +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/common.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/complex.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/detail/typeid.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/eigen/common.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/eigen.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/iostream.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/operators.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/options.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/type_caster_pyobject_ptr.h +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/pybind11/py.typed +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/tools/FindCatch.cmake +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/tools/FindEigen3.cmake +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/tools/JoinPaths.cmake +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/tools/check-style.sh +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/tools/cmake_uninstall.cmake.in +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/pybind11/tools/pybind11.pc.in +0 -0
- {py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/stb/stb_image.h +0 -0
|
@@ -4,6 +4,7 @@ project(imgui)
|
|
|
4
4
|
|
|
5
5
|
set(CMAKE_DEBUG_POSTFIX, "-d")
|
|
6
6
|
set(Python_FIND_REGISTRY NEVER)
|
|
7
|
+
set(CMAKE_CXX_STANDARD 17)
|
|
7
8
|
#set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake)
|
|
8
9
|
|
|
9
10
|
if(${MSVC})
|
|
@@ -22,9 +23,9 @@ set(PYBIND11_NOPYTHON ON)
|
|
|
22
23
|
|
|
23
24
|
add_subdirectory(third-party)
|
|
24
25
|
|
|
25
|
-
set(INCLUDE_DIR
|
|
26
|
+
set(INCLUDE_DIR py-imgui-redux/inc)
|
|
26
27
|
|
|
27
|
-
set(IMGUI_ROOT
|
|
28
|
+
set(IMGUI_ROOT py-imgui-redux/src)
|
|
28
29
|
|
|
29
30
|
set(IMGUI_CORE_ROOT ${IMGUI_ROOT}/imgui-core)
|
|
30
31
|
set(IMGUI_MOD ${IMGUI_CORE_ROOT}/modules)
|
|
@@ -1,20 +1,21 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: py-imgui-redux
|
|
3
|
-
Version:
|
|
3
|
+
Version: 4.0.1
|
|
4
4
|
Summary: A python wrapper for DearImGUI and popular extensions
|
|
5
5
|
Author: Alagyn
|
|
6
|
+
License-Expression: MIT
|
|
6
7
|
Project-URL: Homepage, https://github.com/alagyn/py-imgui-redux
|
|
7
8
|
Project-URL: Bug Tracker, https://github.com/alagyn/py-imgui-redux/issues
|
|
8
9
|
Classifier: Programming Language :: Python :: 3
|
|
9
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
11
11
|
Classifier: Development Status :: 5 - Production/Stable
|
|
12
12
|
Classifier: Intended Audience :: Developers
|
|
13
13
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
14
14
|
Classifier: Topic :: Software Development :: User Interfaces
|
|
15
|
-
Requires-Python: >=3.
|
|
15
|
+
Requires-Python: >=3.9
|
|
16
16
|
Description-Content-Type: text/markdown
|
|
17
17
|
License-File: LICENSE
|
|
18
|
+
Dynamic: license-file
|
|
18
19
|
|
|
19
20
|
<img src="https://github.com/alagyn/py-imgui-redux/blob/main/docs/pyimgui-logo-512.png?raw=true" width="256" align="right"/>
|
|
20
21
|
|
|
@@ -5,66 +5,6 @@ README.md
|
|
|
5
5
|
pybind11_stubgen.py
|
|
6
6
|
pyproject.toml
|
|
7
7
|
setup.py
|
|
8
|
-
source/inc/bind-imgui/glfw-modules.h
|
|
9
|
-
source/inc/bind-imgui/imgui-modules.h
|
|
10
|
-
source/inc/bind-imgui/imnodes-modules.h
|
|
11
|
-
source/inc/bind-imgui/implot-modules.h
|
|
12
|
-
source/inc/bind-imgui/texture.h
|
|
13
|
-
source/inc/binder/bind-modules.h
|
|
14
|
-
source/inc/binder/enum-utility.h
|
|
15
|
-
source/inc/binder/list-wrapper.h
|
|
16
|
-
source/inc/binder/numpy.h
|
|
17
|
-
source/inc/binder/struct-utility.h
|
|
18
|
-
source/inc/binder/wraps.h
|
|
19
|
-
source/src/bind-imgui.cpp
|
|
20
|
-
source/src/binder/enum-utility.cpp
|
|
21
|
-
source/src/binder/wraps.cpp
|
|
22
|
-
source/src/glfw/bind-glfw.cpp
|
|
23
|
-
source/src/glfw/callbacks.cpp
|
|
24
|
-
source/src/glfw/constants.cpp
|
|
25
|
-
source/src/glfw/context.cpp
|
|
26
|
-
source/src/glfw/input.cpp
|
|
27
|
-
source/src/glfw/joystick.cpp
|
|
28
|
-
source/src/glfw/monitors.cpp
|
|
29
|
-
source/src/glfw/structs.cpp
|
|
30
|
-
source/src/glfw/windows.cpp
|
|
31
|
-
source/src/imgui-core/bind-imgui-core.cpp
|
|
32
|
-
source/src/imgui-core/bind-backends/glfw.cpp
|
|
33
|
-
source/src/imgui-core/bind-backends/opengl3.cpp
|
|
34
|
-
source/src/imgui-core/modules/cursor-layout.cpp
|
|
35
|
-
source/src/imgui-core/modules/demos.cpp
|
|
36
|
-
source/src/imgui-core/modules/drawlist.cpp
|
|
37
|
-
source/src/imgui-core/modules/im-windows.cpp
|
|
38
|
-
source/src/imgui-core/modules/imgui-context.cpp
|
|
39
|
-
source/src/imgui-core/modules/imgui-enums.cpp
|
|
40
|
-
source/src/imgui-core/modules/imgui-structs.cpp
|
|
41
|
-
source/src/imgui-core/modules/stacks.cpp
|
|
42
|
-
source/src/imgui-core/modules/styles.cpp
|
|
43
|
-
source/src/imgui-core/modules/widgets/colors.cpp
|
|
44
|
-
source/src/imgui-core/modules/widgets/drag-inputs.cpp
|
|
45
|
-
source/src/imgui-core/modules/widgets/images.cpp
|
|
46
|
-
source/src/imgui-core/modules/widgets/input.cpp
|
|
47
|
-
source/src/imgui-core/modules/widgets/main.cpp
|
|
48
|
-
source/src/imgui-core/modules/widgets/multi-select.cpp
|
|
49
|
-
source/src/imgui-core/modules/widgets/slide-inputs.cpp
|
|
50
|
-
source/src/imgui-core/modules/widgets/tables.cpp
|
|
51
|
-
source/src/imgui-core/modules/widgets/tabs.cpp
|
|
52
|
-
source/src/imgui-core/modules/widgets/text.cpp
|
|
53
|
-
source/src/imgui-core/modules/widgets/tree.cpp
|
|
54
|
-
source/src/imnodes/bind-imnodes.cpp
|
|
55
|
-
source/src/imnodes/modules/imnodes-context.cpp
|
|
56
|
-
source/src/imnodes/modules/imnodes-enums.cpp
|
|
57
|
-
source/src/imnodes/modules/imnodes-structs.cpp
|
|
58
|
-
source/src/implot/bind-implot.cpp
|
|
59
|
-
source/src/implot/modules/implot-colormap.cpp
|
|
60
|
-
source/src/implot/modules/implot-context.cpp
|
|
61
|
-
source/src/implot/modules/implot-enums.cpp
|
|
62
|
-
source/src/implot/modules/implot-misc.cpp
|
|
63
|
-
source/src/implot/modules/implot-plotting.cpp
|
|
64
|
-
source/src/implot/modules/implot-setup-funcs.cpp
|
|
65
|
-
source/src/implot/modules/implot-structs.cpp
|
|
66
|
-
source/src/implot/modules/implot-tools.cpp
|
|
67
|
-
source/src/implot/modules/implot-utils.cpp
|
|
68
8
|
third-party/CMakeLists.txt
|
|
69
9
|
third-party/glad/include/KHR/khrplatform.h
|
|
70
10
|
third-party/glad/include/glad/gl.h
|
|
@@ -317,27 +257,28 @@ third-party/pybind11/.gitignore
|
|
|
317
257
|
third-party/pybind11/.pre-commit-config.yaml
|
|
318
258
|
third-party/pybind11/.readthedocs.yml
|
|
319
259
|
third-party/pybind11/CMakeLists.txt
|
|
260
|
+
third-party/pybind11/CMakePresets.json
|
|
320
261
|
third-party/pybind11/LICENSE
|
|
321
|
-
third-party/pybind11/MANIFEST.in
|
|
322
262
|
third-party/pybind11/README.rst
|
|
323
263
|
third-party/pybind11/SECURITY.md
|
|
324
264
|
third-party/pybind11/noxfile.py
|
|
325
265
|
third-party/pybind11/pyproject.toml
|
|
326
|
-
third-party/pybind11/setup.cfg
|
|
327
|
-
third-party/pybind11/setup.py
|
|
328
266
|
third-party/pybind11/include/pybind11/attr.h
|
|
329
267
|
third-party/pybind11/include/pybind11/buffer_info.h
|
|
330
268
|
third-party/pybind11/include/pybind11/cast.h
|
|
331
269
|
third-party/pybind11/include/pybind11/chrono.h
|
|
332
270
|
third-party/pybind11/include/pybind11/common.h
|
|
333
271
|
third-party/pybind11/include/pybind11/complex.h
|
|
272
|
+
third-party/pybind11/include/pybind11/critical_section.h
|
|
334
273
|
third-party/pybind11/include/pybind11/eigen.h
|
|
335
274
|
third-party/pybind11/include/pybind11/embed.h
|
|
336
275
|
third-party/pybind11/include/pybind11/eval.h
|
|
337
276
|
third-party/pybind11/include/pybind11/functional.h
|
|
338
277
|
third-party/pybind11/include/pybind11/gil.h
|
|
339
278
|
third-party/pybind11/include/pybind11/gil_safe_call_once.h
|
|
279
|
+
third-party/pybind11/include/pybind11/gil_simple.h
|
|
340
280
|
third-party/pybind11/include/pybind11/iostream.h
|
|
281
|
+
third-party/pybind11/include/pybind11/native_enum.h
|
|
341
282
|
third-party/pybind11/include/pybind11/numpy.h
|
|
342
283
|
third-party/pybind11/include/pybind11/operators.h
|
|
343
284
|
third-party/pybind11/include/pybind11/options.h
|
|
@@ -345,15 +286,31 @@ third-party/pybind11/include/pybind11/pybind11.h
|
|
|
345
286
|
third-party/pybind11/include/pybind11/pytypes.h
|
|
346
287
|
third-party/pybind11/include/pybind11/stl.h
|
|
347
288
|
third-party/pybind11/include/pybind11/stl_bind.h
|
|
289
|
+
third-party/pybind11/include/pybind11/subinterpreter.h
|
|
290
|
+
third-party/pybind11/include/pybind11/trampoline_self_life_support.h
|
|
348
291
|
third-party/pybind11/include/pybind11/type_caster_pyobject_ptr.h
|
|
349
292
|
third-party/pybind11/include/pybind11/typing.h
|
|
293
|
+
third-party/pybind11/include/pybind11/warnings.h
|
|
294
|
+
third-party/pybind11/include/pybind11/conduit/README.txt
|
|
295
|
+
third-party/pybind11/include/pybind11/conduit/pybind11_conduit_v1.h
|
|
296
|
+
third-party/pybind11/include/pybind11/conduit/pybind11_platform_abi_id.h
|
|
297
|
+
third-party/pybind11/include/pybind11/conduit/wrap_include_python_h.h
|
|
350
298
|
third-party/pybind11/include/pybind11/detail/class.h
|
|
351
299
|
third-party/pybind11/include/pybind11/detail/common.h
|
|
300
|
+
third-party/pybind11/include/pybind11/detail/cpp_conduit.h
|
|
352
301
|
third-party/pybind11/include/pybind11/detail/descr.h
|
|
302
|
+
third-party/pybind11/include/pybind11/detail/dynamic_raw_ptr_cast_if_possible.h
|
|
303
|
+
third-party/pybind11/include/pybind11/detail/exception_translation.h
|
|
304
|
+
third-party/pybind11/include/pybind11/detail/function_record_pyobject.h
|
|
353
305
|
third-party/pybind11/include/pybind11/detail/init.h
|
|
354
306
|
third-party/pybind11/include/pybind11/detail/internals.h
|
|
307
|
+
third-party/pybind11/include/pybind11/detail/native_enum_data.h
|
|
308
|
+
third-party/pybind11/include/pybind11/detail/pybind11_namespace_macros.h
|
|
309
|
+
third-party/pybind11/include/pybind11/detail/struct_smart_holder.h
|
|
355
310
|
third-party/pybind11/include/pybind11/detail/type_caster_base.h
|
|
356
311
|
third-party/pybind11/include/pybind11/detail/typeid.h
|
|
312
|
+
third-party/pybind11/include/pybind11/detail/using_smart_holder.h
|
|
313
|
+
third-party/pybind11/include/pybind11/detail/value_and_holder.h
|
|
357
314
|
third-party/pybind11/include/pybind11/eigen/common.h
|
|
358
315
|
third-party/pybind11/include/pybind11/eigen/matrix.h
|
|
359
316
|
third-party/pybind11/include/pybind11/eigen/tensor.h
|
|
@@ -373,12 +330,12 @@ third-party/pybind11/tools/cmake_uninstall.cmake.in
|
|
|
373
330
|
third-party/pybind11/tools/codespell_ignore_lines_from_errors.py
|
|
374
331
|
third-party/pybind11/tools/libsize.py
|
|
375
332
|
third-party/pybind11/tools/make_changelog.py
|
|
333
|
+
third-party/pybind11/tools/make_global.py
|
|
376
334
|
third-party/pybind11/tools/pybind11.pc.in
|
|
377
335
|
third-party/pybind11/tools/pybind11Common.cmake
|
|
378
336
|
third-party/pybind11/tools/pybind11Config.cmake.in
|
|
337
|
+
third-party/pybind11/tools/pybind11GuessPythonExtSuffix.cmake
|
|
379
338
|
third-party/pybind11/tools/pybind11NewTools.cmake
|
|
380
339
|
third-party/pybind11/tools/pybind11Tools.cmake
|
|
381
|
-
third-party/pybind11/tools/
|
|
382
|
-
third-party/pybind11/tools/setup_global.py.in
|
|
383
|
-
third-party/pybind11/tools/setup_main.py.in
|
|
340
|
+
third-party/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake
|
|
384
341
|
third-party/stb/stb_image.h
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
[build-system]
|
|
2
|
-
requires = ["setuptools>=
|
|
2
|
+
requires = ["setuptools>=80.9.0", "wheel", "cmake>=3.25"]
|
|
3
3
|
build-backend = "setuptools.build_meta"
|
|
4
4
|
|
|
5
5
|
[tool.distutils.egg_info]
|
|
@@ -7,14 +7,14 @@ egg_base = "build"
|
|
|
7
7
|
|
|
8
8
|
[project]
|
|
9
9
|
name = "py-imgui-redux"
|
|
10
|
-
version = "
|
|
10
|
+
version = "4.0.1"
|
|
11
11
|
authors = [{ name = "Alagyn" }]
|
|
12
12
|
description = "A python wrapper for DearImGUI and popular extensions"
|
|
13
13
|
readme = "README.md"
|
|
14
|
-
requires-python = ">=3.
|
|
14
|
+
requires-python = ">=3.9"
|
|
15
|
+
license = "MIT"
|
|
15
16
|
classifiers = [
|
|
16
17
|
"Programming Language :: Python :: 3",
|
|
17
|
-
"License :: OSI Approved :: MIT License",
|
|
18
18
|
"Operating System :: OS Independent",
|
|
19
19
|
"Development Status :: 5 - Production/Stable",
|
|
20
20
|
"Intended Audience :: Developers",
|
|
@@ -29,12 +29,14 @@ ipch
|
|
|
29
29
|
## Getting files created in JSON/Schemas/Catalog/ from a VS2022 update
|
|
30
30
|
JSON/
|
|
31
31
|
|
|
32
|
-
## Commonly used CMake directories
|
|
32
|
+
## Commonly used CMake directories & CMake CPM cache
|
|
33
33
|
build*/
|
|
34
|
+
.cache
|
|
34
35
|
|
|
35
|
-
## Xcode artifacts
|
|
36
|
+
## Xcode & macOS artifacts
|
|
36
37
|
project.xcworkspace
|
|
37
38
|
xcuserdata
|
|
39
|
+
examples/*/*.dSYM
|
|
38
40
|
|
|
39
41
|
## Emscripten artifacts
|
|
40
42
|
examples/*.o.tmp
|
|
@@ -53,12 +55,20 @@ cmake-build-*
|
|
|
53
55
|
.vscode
|
|
54
56
|
|
|
55
57
|
## Unix executables from our example Makefiles
|
|
58
|
+
examples/example_apple_metal/example_apple_metal
|
|
59
|
+
examples/example_apple_opengl2/example_apple_opengl2
|
|
56
60
|
examples/example_glfw_metal/example_glfw_metal
|
|
57
61
|
examples/example_glfw_opengl2/example_glfw_opengl2
|
|
58
62
|
examples/example_glfw_opengl3/example_glfw_opengl3
|
|
63
|
+
examples/example_glfw_vulkan/example_glfw_vulkan
|
|
59
64
|
examples/example_glut_opengl2/example_glut_opengl2
|
|
60
65
|
examples/example_null/example_null
|
|
61
66
|
examples/example_sdl2_metal/example_sdl2_metal
|
|
62
67
|
examples/example_sdl2_opengl2/example_sdl2_opengl2
|
|
63
68
|
examples/example_sdl2_opengl3/example_sdl2_opengl3
|
|
64
|
-
examples/
|
|
69
|
+
examples/example_sdl2_sdlrenderer2/example_sdl2_sdlrenderer2
|
|
70
|
+
examples/example_sdl2_vulkan/example_sdl2_vulkan
|
|
71
|
+
examples/example_sdl3_opengl3/example_sdl3_opengl3
|
|
72
|
+
examples/example_sdl3_sdlgpu3/example_sdl3_sdlgpu3
|
|
73
|
+
examples/example_sdl3_sdlrenderer3/example_sdl3_sdlrenderer3
|
|
74
|
+
examples/example_sdl3_vulkan/example_sdl3_vulkan
|
{py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_allegro5.cpp
RENAMED
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
// (Info: Allegro 5 is a cross-platform general purpose library for handling windows, inputs, graphics, etc.)
|
|
3
3
|
|
|
4
4
|
// Implemented features:
|
|
5
|
-
// [X] Renderer: User texture binding. Use 'ALLEGRO_BITMAP*' as
|
|
5
|
+
// [X] Renderer: User texture binding. Use 'ALLEGRO_BITMAP*' as texture identifier. Read the FAQ about ImTextureID/ImTextureRef!
|
|
6
|
+
// [X] Renderer: Texture updates support for dynamic font atlas (ImGuiBackendFlags_RendererHasTextures).
|
|
6
7
|
// [X] Platform: Keyboard support. Since 1.87 we are using the io.AddKeyEvent() function. Pass ImGuiKey values to all key functions e.g. ImGui::IsKeyPressed(ImGuiKey_Space). [Legacy ALLEGRO_KEY_* values are obsolete since 1.87 and not supported since 1.91.5]
|
|
7
8
|
// [X] Platform: Clipboard support (from Allegro 5.1.12).
|
|
8
9
|
// [X] Platform: Mouse cursor shape and visibility (ImGuiBackendFlags_HasMouseCursors). Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'.
|
|
@@ -20,6 +21,9 @@
|
|
|
20
21
|
|
|
21
22
|
// CHANGELOG
|
|
22
23
|
// (minor and older changes stripped away, please see git history for details)
|
|
24
|
+
// 2025-07-07: Fixed texture update broken on some platforms where ALLEGRO_LOCK_WRITEONLY needed all texels to be rewritten.
|
|
25
|
+
// 2025-06-11: Added support for ImGuiBackendFlags_RendererHasTextures, for dynamic font atlas. Removed ImGui_ImplSDLGPU3_CreateFontsTexture() and ImGui_ImplSDLGPU3_DestroyFontsTexture().
|
|
26
|
+
// 2025-02-18: Added ImGuiMouseCursor_Wait and ImGuiMouseCursor_Progress mouse cursor support.
|
|
23
27
|
// 2025-01-06: Avoid calling al_set_mouse_cursor() repeatedly since it appears to leak on on X11 (#8256).
|
|
24
28
|
// 2024-08-22: moved some OS/backend related function pointers from ImGuiIO to ImGuiPlatformIO:
|
|
25
29
|
// - io.GetClipboardTextFn -> platform_io.Platform_GetClipboardTextFn
|
|
@@ -136,6 +140,13 @@ void ImGui_ImplAllegro5_RenderDrawData(ImDrawData* draw_data)
|
|
|
136
140
|
if (draw_data->DisplaySize.x <= 0.0f || draw_data->DisplaySize.y <= 0.0f)
|
|
137
141
|
return;
|
|
138
142
|
|
|
143
|
+
// Catch up with texture updates. Most of the times, the list will have 1 element with an OK status, aka nothing to do.
|
|
144
|
+
// (This almost always points to ImGui::GetPlatformIO().Textures[] but is part of ImDrawData to allow overriding or disabling texture updates).
|
|
145
|
+
if (draw_data->Textures != nullptr)
|
|
146
|
+
for (ImTextureData* tex : *draw_data->Textures)
|
|
147
|
+
if (tex->Status != ImTextureStatus_OK)
|
|
148
|
+
ImGui_ImplAllegro5_UpdateTexture(tex);
|
|
149
|
+
|
|
139
150
|
// Backup Allegro state that will be modified
|
|
140
151
|
ImGui_ImplAllegro5_Data* bd = ImGui_ImplAllegro5_GetBackendData();
|
|
141
152
|
ALLEGRO_TRANSFORM last_transform = *al_get_current_transform();
|
|
@@ -231,43 +242,7 @@ void ImGui_ImplAllegro5_RenderDrawData(ImDrawData* draw_data)
|
|
|
231
242
|
|
|
232
243
|
bool ImGui_ImplAllegro5_CreateDeviceObjects()
|
|
233
244
|
{
|
|
234
|
-
// Build texture atlas
|
|
235
245
|
ImGui_ImplAllegro5_Data* bd = ImGui_ImplAllegro5_GetBackendData();
|
|
236
|
-
ImGuiIO& io = ImGui::GetIO();
|
|
237
|
-
unsigned char* pixels;
|
|
238
|
-
int width, height;
|
|
239
|
-
io.Fonts->GetTexDataAsRGBA32(&pixels, &width, &height);
|
|
240
|
-
|
|
241
|
-
// Create texture
|
|
242
|
-
// (Bilinear sampling is required by default. Set 'io.Fonts->Flags |= ImFontAtlasFlags_NoBakedLines' or 'style.AntiAliasedLinesUseTex = false' to allow point/nearest sampling)
|
|
243
|
-
int flags = al_get_new_bitmap_flags();
|
|
244
|
-
int fmt = al_get_new_bitmap_format();
|
|
245
|
-
al_set_new_bitmap_flags(ALLEGRO_MEMORY_BITMAP | ALLEGRO_MIN_LINEAR | ALLEGRO_MAG_LINEAR);
|
|
246
|
-
al_set_new_bitmap_format(ALLEGRO_PIXEL_FORMAT_ABGR_8888_LE);
|
|
247
|
-
ALLEGRO_BITMAP* img = al_create_bitmap(width, height);
|
|
248
|
-
al_set_new_bitmap_flags(flags);
|
|
249
|
-
al_set_new_bitmap_format(fmt);
|
|
250
|
-
if (!img)
|
|
251
|
-
return false;
|
|
252
|
-
|
|
253
|
-
ALLEGRO_LOCKED_REGION* locked_img = al_lock_bitmap(img, al_get_bitmap_format(img), ALLEGRO_LOCK_WRITEONLY);
|
|
254
|
-
if (!locked_img)
|
|
255
|
-
{
|
|
256
|
-
al_destroy_bitmap(img);
|
|
257
|
-
return false;
|
|
258
|
-
}
|
|
259
|
-
memcpy(locked_img->data, pixels, sizeof(int) * width * height);
|
|
260
|
-
al_unlock_bitmap(img);
|
|
261
|
-
|
|
262
|
-
// Convert software texture to hardware texture.
|
|
263
|
-
ALLEGRO_BITMAP* cloned_img = al_clone_bitmap(img);
|
|
264
|
-
al_destroy_bitmap(img);
|
|
265
|
-
if (!cloned_img)
|
|
266
|
-
return false;
|
|
267
|
-
|
|
268
|
-
// Store our identifier
|
|
269
|
-
io.Fonts->SetTexID((ImTextureID)(intptr_t)cloned_img);
|
|
270
|
-
bd->Texture = cloned_img;
|
|
271
246
|
|
|
272
247
|
// Create an invisible mouse cursor
|
|
273
248
|
// Because al_hide_mouse_cursor() seems to mess up with the actual inputs..
|
|
@@ -278,16 +253,79 @@ bool ImGui_ImplAllegro5_CreateDeviceObjects()
|
|
|
278
253
|
return true;
|
|
279
254
|
}
|
|
280
255
|
|
|
281
|
-
void
|
|
256
|
+
void ImGui_ImplAllegro5_UpdateTexture(ImTextureData* tex)
|
|
282
257
|
{
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
258
|
+
if (tex->Status == ImTextureStatus_WantCreate)
|
|
259
|
+
{
|
|
260
|
+
// Create and upload new texture to graphics system
|
|
261
|
+
//IMGUI_DEBUG_LOG("UpdateTexture #%03d: WantCreate %dx%d\n", tex->UniqueID, tex->Width, tex->Height);
|
|
262
|
+
IM_ASSERT(tex->TexID == ImTextureID_Invalid && tex->BackendUserData == nullptr);
|
|
263
|
+
IM_ASSERT(tex->Format == ImTextureFormat_RGBA32);
|
|
264
|
+
|
|
265
|
+
// Create texture
|
|
266
|
+
// (Bilinear sampling is required by default. Set 'io.Fonts->Flags |= ImFontAtlasFlags_NoBakedLines' or 'style.AntiAliasedLinesUseTex = false' to allow point/nearest sampling)
|
|
267
|
+
const int new_bitmap_flags = al_get_new_bitmap_flags();
|
|
268
|
+
int new_bitmap_format = al_get_new_bitmap_format();
|
|
269
|
+
al_set_new_bitmap_flags(ALLEGRO_MEMORY_BITMAP | ALLEGRO_MIN_LINEAR | ALLEGRO_MAG_LINEAR);
|
|
270
|
+
al_set_new_bitmap_format(ALLEGRO_PIXEL_FORMAT_ABGR_8888_LE);
|
|
271
|
+
ALLEGRO_BITMAP* cpu_bitmap = al_create_bitmap(tex->Width, tex->Height);
|
|
272
|
+
al_set_new_bitmap_flags(new_bitmap_flags);
|
|
273
|
+
al_set_new_bitmap_format(new_bitmap_format);
|
|
274
|
+
IM_ASSERT(cpu_bitmap != nullptr && "Backend failed to create texture!");
|
|
275
|
+
|
|
276
|
+
// Upload pixels
|
|
277
|
+
ALLEGRO_LOCKED_REGION* locked_region = al_lock_bitmap(cpu_bitmap, al_get_bitmap_format(cpu_bitmap), ALLEGRO_LOCK_WRITEONLY);
|
|
278
|
+
IM_ASSERT(locked_region != nullptr && "Backend failed to create texture!");
|
|
279
|
+
memcpy(locked_region->data, tex->GetPixels(), tex->GetSizeInBytes());
|
|
280
|
+
al_unlock_bitmap(cpu_bitmap);
|
|
281
|
+
|
|
282
|
+
// Convert software texture to hardware texture.
|
|
283
|
+
ALLEGRO_BITMAP* gpu_bitmap = al_clone_bitmap(cpu_bitmap);
|
|
284
|
+
al_destroy_bitmap(cpu_bitmap);
|
|
285
|
+
IM_ASSERT(gpu_bitmap != nullptr && "Backend failed to create texture!");
|
|
286
|
+
|
|
287
|
+
// Store identifiers
|
|
288
|
+
tex->SetTexID((ImTextureID)(intptr_t)gpu_bitmap);
|
|
289
|
+
tex->SetStatus(ImTextureStatus_OK);
|
|
290
|
+
}
|
|
291
|
+
else if (tex->Status == ImTextureStatus_WantUpdates)
|
|
292
|
+
{
|
|
293
|
+
// Update selected blocks. We only ever write to textures regions which have never been used before!
|
|
294
|
+
// This backend choose to use tex->Updates[] but you can use tex->UpdateRect to upload a single region.
|
|
295
|
+
ImTextureRect r = tex->UpdateRect; // Bounding box encompassing all individual updates
|
|
296
|
+
ALLEGRO_BITMAP* gpu_bitmap = (ALLEGRO_BITMAP*)(intptr_t)tex->TexID;
|
|
297
|
+
ALLEGRO_LOCKED_REGION* locked_region = al_lock_bitmap_region(gpu_bitmap, r.x, r.y, r.w, r.h, al_get_bitmap_format(gpu_bitmap), ALLEGRO_LOCK_WRITEONLY);
|
|
298
|
+
IM_ASSERT(locked_region && "Backend failed to update texture!");
|
|
299
|
+
for (int y = 0; y < r.h; y++)
|
|
300
|
+
memcpy((unsigned char*)locked_region->data + locked_region->pitch * y, tex->GetPixelsAt(r.x, r.y + y), r.w * tex->BytesPerPixel); // dst, src, block pitch
|
|
301
|
+
al_unlock_bitmap(gpu_bitmap);
|
|
302
|
+
tex->SetStatus(ImTextureStatus_OK);
|
|
303
|
+
}
|
|
304
|
+
else if (tex->Status == ImTextureStatus_WantDestroy)
|
|
286
305
|
{
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
306
|
+
ALLEGRO_BITMAP* backend_tex = (ALLEGRO_BITMAP*)(intptr_t)tex->TexID;
|
|
307
|
+
if (backend_tex)
|
|
308
|
+
al_destroy_bitmap(backend_tex);
|
|
309
|
+
|
|
310
|
+
// Clear identifiers and mark as destroyed (in order to allow e.g. calling InvalidateDeviceObjects while running)
|
|
311
|
+
tex->SetTexID(ImTextureID_Invalid);
|
|
312
|
+
tex->SetStatus(ImTextureStatus_Destroyed);
|
|
290
313
|
}
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
void ImGui_ImplAllegro5_InvalidateDeviceObjects()
|
|
317
|
+
{
|
|
318
|
+
ImGui_ImplAllegro5_Data* bd = ImGui_ImplAllegro5_GetBackendData();
|
|
319
|
+
|
|
320
|
+
// Destroy all textures
|
|
321
|
+
for (ImTextureData* tex : ImGui::GetPlatformIO().Textures)
|
|
322
|
+
if (tex->RefCount == 1)
|
|
323
|
+
{
|
|
324
|
+
tex->SetStatus(ImTextureStatus_WantDestroy);
|
|
325
|
+
ImGui_ImplAllegro5_UpdateTexture(tex);
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
// Destroy mouse cursor
|
|
291
329
|
if (bd->MouseCursorInvisible)
|
|
292
330
|
{
|
|
293
331
|
al_destroy_mouse_cursor(bd->MouseCursorInvisible);
|
|
@@ -438,6 +476,7 @@ bool ImGui_ImplAllegro5_Init(ALLEGRO_DISPLAY* display)
|
|
|
438
476
|
io.BackendPlatformUserData = (void*)bd;
|
|
439
477
|
io.BackendPlatformName = io.BackendRendererName = "imgui_impl_allegro5";
|
|
440
478
|
io.BackendFlags |= ImGuiBackendFlags_HasMouseCursors; // We can honor GetMouseCursor() values (optional)
|
|
479
|
+
io.BackendFlags |= ImGuiBackendFlags_RendererHasTextures; // We can honor ImGuiPlatformIO::Textures[] requests during render.
|
|
441
480
|
|
|
442
481
|
bd->Display = display;
|
|
443
482
|
bd->LastCursor = ALLEGRO_SYSTEM_MOUSE_CURSOR_NONE;
|
|
@@ -477,7 +516,7 @@ void ImGui_ImplAllegro5_Shutdown()
|
|
|
477
516
|
|
|
478
517
|
io.BackendPlatformName = io.BackendRendererName = nullptr;
|
|
479
518
|
io.BackendPlatformUserData = nullptr;
|
|
480
|
-
io.BackendFlags &= ~ImGuiBackendFlags_HasMouseCursors;
|
|
519
|
+
io.BackendFlags &= ~(ImGuiBackendFlags_HasMouseCursors | ImGuiBackendFlags_RendererHasTextures);
|
|
481
520
|
IM_DELETE(bd);
|
|
482
521
|
}
|
|
483
522
|
|
|
@@ -594,6 +633,8 @@ static void ImGui_ImplAllegro5_UpdateMouseCursor()
|
|
|
594
633
|
case ImGuiMouseCursor_ResizeEW: cursor_id = ALLEGRO_SYSTEM_MOUSE_CURSOR_RESIZE_E; break;
|
|
595
634
|
case ImGuiMouseCursor_ResizeNESW: cursor_id = ALLEGRO_SYSTEM_MOUSE_CURSOR_RESIZE_NE; break;
|
|
596
635
|
case ImGuiMouseCursor_ResizeNWSE: cursor_id = ALLEGRO_SYSTEM_MOUSE_CURSOR_RESIZE_NW; break;
|
|
636
|
+
case ImGuiMouseCursor_Wait: cursor_id = ALLEGRO_SYSTEM_MOUSE_CURSOR_BUSY; break;
|
|
637
|
+
case ImGuiMouseCursor_Progress: cursor_id = ALLEGRO_SYSTEM_MOUSE_CURSOR_PROGRESS; break;
|
|
597
638
|
case ImGuiMouseCursor_NotAllowed: cursor_id = ALLEGRO_SYSTEM_MOUSE_CURSOR_UNAVAILABLE; break;
|
|
598
639
|
}
|
|
599
640
|
al_set_system_mouse_cursor(bd->Display, cursor_id);
|
|
@@ -605,12 +646,11 @@ void ImGui_ImplAllegro5_NewFrame()
|
|
|
605
646
|
ImGui_ImplAllegro5_Data* bd = ImGui_ImplAllegro5_GetBackendData();
|
|
606
647
|
IM_ASSERT(bd != nullptr && "Context or backend not initialized! Did you call ImGui_ImplAllegro5_Init()?");
|
|
607
648
|
|
|
608
|
-
if (!bd->
|
|
649
|
+
if (!bd->MouseCursorInvisible)
|
|
609
650
|
ImGui_ImplAllegro5_CreateDeviceObjects();
|
|
610
651
|
|
|
611
|
-
ImGuiIO& io = ImGui::GetIO();
|
|
612
|
-
|
|
613
652
|
// Setup display size (every frame to accommodate for window resizing)
|
|
653
|
+
ImGuiIO& io = ImGui::GetIO();
|
|
614
654
|
int w, h;
|
|
615
655
|
w = al_get_display_width(bd->Display);
|
|
616
656
|
h = al_get_display_height(bd->Display);
|
{py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_allegro5.h
RENAMED
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
// (Info: Allegro 5 is a cross-platform general purpose library for handling windows, inputs, graphics, etc.)
|
|
3
3
|
|
|
4
4
|
// Implemented features:
|
|
5
|
-
// [X] Renderer: User texture binding. Use 'ALLEGRO_BITMAP*' as
|
|
5
|
+
// [X] Renderer: User texture binding. Use 'ALLEGRO_BITMAP*' as texture identifier. Read the FAQ about ImTextureID/ImTextureRef!
|
|
6
|
+
// [X] Renderer: Texture updates support for dynamic font atlas (ImGuiBackendFlags_RendererHasTextures).
|
|
6
7
|
// [X] Platform: Keyboard support. Since 1.87 we are using the io.AddKeyEvent() function. Pass ImGuiKey values to all key functions e.g. ImGui::IsKeyPressed(ImGuiKey_Space). [Legacy ALLEGRO_KEY_* values are obsolete since 1.87 and not supported since 1.91.5]
|
|
7
8
|
// [X] Platform: Clipboard support (from Allegro 5.1.12).
|
|
8
9
|
// [X] Platform: Mouse cursor shape and visibility (ImGuiBackendFlags_HasMouseCursors). Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'.
|
|
@@ -36,4 +37,7 @@ IMGUI_IMPL_API bool ImGui_ImplAllegro5_ProcessEvent(ALLEGRO_EVENT* event);
|
|
|
36
37
|
IMGUI_IMPL_API bool ImGui_ImplAllegro5_CreateDeviceObjects();
|
|
37
38
|
IMGUI_IMPL_API void ImGui_ImplAllegro5_InvalidateDeviceObjects();
|
|
38
39
|
|
|
40
|
+
// (Advanced) Use e.g. if you need to precisely control the timing of texture updates (e.g. for staged rendering), by setting ImDrawData::Textures = NULL to handle this manually.
|
|
41
|
+
IMGUI_IMPL_API void ImGui_ImplAllegro5_UpdateTexture(ImTextureData* tex);
|
|
42
|
+
|
|
39
43
|
#endif // #ifndef IMGUI_DISABLE
|
{py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_android.cpp
RENAMED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
// [X] Platform: Mouse support. Can discriminate Mouse/TouchScreen/Pen.
|
|
7
7
|
// Missing features or Issues:
|
|
8
8
|
// [ ] Platform: Clipboard support.
|
|
9
|
-
// [ ] Platform: Gamepad support.
|
|
9
|
+
// [ ] Platform: Gamepad support.
|
|
10
10
|
// [ ] Platform: Mouse cursor shape and visibility (ImGuiBackendFlags_HasMouseCursors). Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'. FIXME: Check if this is even possible with Android.
|
|
11
11
|
// Important:
|
|
12
12
|
// - Consider using SDL or GLFW backend on Android, which will be more full-featured than this.
|
{py_imgui_redux-3.4.0 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_android.h
RENAMED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
// [X] Platform: Mouse support. Can discriminate Mouse/TouchScreen/Pen.
|
|
7
7
|
// Missing features or Issues:
|
|
8
8
|
// [ ] Platform: Clipboard support.
|
|
9
|
-
// [ ] Platform: Gamepad support.
|
|
9
|
+
// [ ] Platform: Gamepad support.
|
|
10
10
|
// [ ] Platform: Mouse cursor shape and visibility (ImGuiBackendFlags_HasMouseCursors). Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'. FIXME: Check if this is even possible with Android.
|
|
11
11
|
// Important:
|
|
12
12
|
// - Consider using SDL or GLFW backend on Android, which will be more full-featured than this.
|