py-imgui-redux 3.4.1__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.
Files changed (360) hide show
  1. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/CMakeLists.txt +1 -0
  2. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/PKG-INFO +5 -4
  3. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/build/py_imgui_redux.egg-info/SOURCES.txt +23 -6
  4. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/pyproject.toml +4 -4
  5. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/setup.py +3 -0
  6. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/.gitignore +13 -3
  7. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_allegro5.cpp +88 -48
  8. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_allegro5.h +5 -1
  9. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_android.cpp +1 -1
  10. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_android.h +1 -1
  11. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_dx10.cpp +94 -48
  12. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_dx10.h +5 -1
  13. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_dx11.cpp +95 -49
  14. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_dx11.h +5 -1
  15. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_dx12.cpp +223 -117
  16. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_dx12.h +9 -4
  17. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_dx9.cpp +84 -30
  18. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_dx9.h +5 -1
  19. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_glfw.cpp +130 -49
  20. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_glfw.h +7 -0
  21. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_glut.cpp +1 -1
  22. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_metal.h +9 -5
  23. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_metal.mm +117 -61
  24. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_opengl2.cpp +73 -48
  25. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_opengl2.h +5 -3
  26. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_opengl3.cpp +134 -64
  27. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_opengl3.h +5 -3
  28. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_opengl3_loader.h +7 -1
  29. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_osx.h +2 -1
  30. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_osx.mm +14 -10
  31. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_sdl2.cpp +129 -47
  32. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_sdl2.h +5 -1
  33. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_sdl3.cpp +98 -44
  34. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_sdl3.h +1 -1
  35. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_sdlgpu3.cpp +170 -124
  36. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_sdlgpu3.h +8 -5
  37. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_sdlrenderer2.cpp +81 -59
  38. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_sdlrenderer2.h +6 -4
  39. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_sdlrenderer3.cpp +80 -59
  40. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_sdlrenderer3.h +6 -4
  41. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_vulkan.cpp +392 -213
  42. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_vulkan.h +15 -13
  43. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_wgpu.cpp +148 -96
  44. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_wgpu.h +5 -1
  45. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_win32.cpp +58 -29
  46. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_win32.h +1 -1
  47. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/imconfig.h +5 -2
  48. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/imgui.cpp +1381 -546
  49. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/imgui.h +636 -260
  50. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/imgui_demo.cpp +3170 -2783
  51. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/imgui_draw.cpp +2349 -881
  52. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/imgui_internal.h +391 -99
  53. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/imgui_tables.cpp +98 -40
  54. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/imgui_widgets.cpp +351 -149
  55. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/imstb_textedit.h +50 -31
  56. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/imstb_truetype.h +2 -2
  57. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/misc/fonts/binary_to_compressed_c.cpp +2 -2
  58. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/misc/freetype/README.md +5 -13
  59. py_imgui_redux-4.0.1/third-party/imgui/misc/freetype/imgui_freetype.cpp +751 -0
  60. py_imgui_redux-4.0.1/third-party/imgui/misc/freetype/imgui_freetype.h +83 -0
  61. py_imgui_redux-4.0.1/third-party/imnodes/CMakeLists.txt +107 -0
  62. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imnodes/example/color_node_editor.cpp +4 -6
  63. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imnodes/example/main.cpp +1 -1
  64. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imnodes/example/multi_editor.cpp +1 -1
  65. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imnodes/example/save_load.cpp +1 -1
  66. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imnodes/imnodes.cpp +4 -7
  67. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imnodes/imnodes_internal.h +3 -2
  68. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/implot/implot.cpp +14 -1
  69. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/implot/implot.h +5 -1
  70. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/implot/implot_demo.cpp +8 -1
  71. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/implot/implot_items.cpp +6 -2
  72. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/.appveyor.yml +1 -1
  73. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/.clang-tidy +3 -0
  74. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/.codespell-ignore-lines +11 -0
  75. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/.gitignore +7 -0
  76. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/.pre-commit-config.yaml +17 -23
  77. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/CMakeLists.txt +112 -62
  78. py_imgui_redux-4.0.1/third-party/pybind11/CMakePresets.json +93 -0
  79. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/README.rst +51 -16
  80. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/attr.h +40 -8
  81. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/buffer_info.h +14 -14
  82. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/cast.h +548 -29
  83. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/chrono.h +4 -1
  84. py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/conduit/README.txt +15 -0
  85. py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/conduit/pybind11_conduit_v1.h +116 -0
  86. py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/conduit/pybind11_platform_abi_id.h +87 -0
  87. py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/conduit/wrap_include_python_h.h +72 -0
  88. py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/critical_section.h +56 -0
  89. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/detail/class.h +169 -94
  90. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/detail/common.h +225 -182
  91. py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/detail/cpp_conduit.h +75 -0
  92. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/detail/descr.h +55 -0
  93. py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/detail/dynamic_raw_ptr_cast_if_possible.h +39 -0
  94. py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/detail/exception_translation.h +71 -0
  95. py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/detail/function_record_pyobject.h +208 -0
  96. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/detail/init.h +113 -9
  97. py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/detail/internals.h +786 -0
  98. py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/detail/native_enum_data.h +209 -0
  99. py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/detail/pybind11_namespace_macros.h +82 -0
  100. py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/detail/struct_smart_holder.h +378 -0
  101. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/detail/type_caster_base.h +506 -133
  102. py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/detail/using_smart_holder.h +22 -0
  103. py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/detail/value_and_holder.h +90 -0
  104. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/eigen/matrix.h +19 -10
  105. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/eigen/tensor.h +15 -11
  106. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/embed.h +50 -46
  107. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/eval.h +11 -6
  108. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/functional.h +58 -49
  109. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/gil.h +34 -82
  110. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/gil_safe_call_once.h +12 -1
  111. py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/gil_simple.h +37 -0
  112. py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/native_enum.h +67 -0
  113. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/numpy.h +272 -93
  114. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/pybind11.h +882 -261
  115. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/pytypes.h +127 -21
  116. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/stl/filesystem.h +23 -25
  117. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/stl.h +277 -59
  118. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/stl_bind.h +42 -7
  119. py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/subinterpreter.h +305 -0
  120. py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/trampoline_self_life_support.h +65 -0
  121. py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/typing.h +298 -0
  122. py_imgui_redux-4.0.1/third-party/pybind11/include/pybind11/warnings.h +75 -0
  123. py_imgui_redux-4.0.1/third-party/pybind11/noxfile.py +151 -0
  124. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/pybind11/__init__.py +4 -2
  125. py_imgui_redux-4.0.1/third-party/pybind11/pybind11/__main__.py +97 -0
  126. py_imgui_redux-4.0.1/third-party/pybind11/pybind11/_version.py +34 -0
  127. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/pybind11/commands.py +2 -0
  128. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/pybind11/setup_helpers.py +17 -17
  129. py_imgui_redux-4.0.1/third-party/pybind11/pyproject.toml +183 -0
  130. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/tools/FindPythonLibsNew.cmake +12 -2
  131. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/tools/codespell_ignore_lines_from_errors.py +3 -2
  132. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/tools/libsize.py +2 -0
  133. py_imgui_redux-4.0.1/third-party/pybind11/tools/make_changelog.py +115 -0
  134. py_imgui_redux-4.0.1/third-party/pybind11/tools/make_global.py +33 -0
  135. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/tools/pybind11Common.cmake +81 -58
  136. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/tools/pybind11Config.cmake.in +10 -3
  137. py_imgui_redux-4.0.1/third-party/pybind11/tools/pybind11GuessPythonExtSuffix.cmake +86 -0
  138. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/tools/pybind11NewTools.cmake +112 -70
  139. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/tools/pybind11Tools.cmake +17 -39
  140. py_imgui_redux-4.0.1/third-party/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake +161 -0
  141. py_imgui_redux-3.4.1/third-party/imgui/misc/freetype/imgui_freetype.cpp +0 -969
  142. py_imgui_redux-3.4.1/third-party/imgui/misc/freetype/imgui_freetype.h +0 -58
  143. py_imgui_redux-3.4.1/third-party/imnodes/CMakeLists.txt +0 -80
  144. py_imgui_redux-3.4.1/third-party/pybind11/MANIFEST.in +0 -6
  145. py_imgui_redux-3.4.1/third-party/pybind11/include/pybind11/detail/internals.h +0 -667
  146. py_imgui_redux-3.4.1/third-party/pybind11/include/pybind11/typing.h +0 -125
  147. py_imgui_redux-3.4.1/third-party/pybind11/noxfile.py +0 -107
  148. py_imgui_redux-3.4.1/third-party/pybind11/pybind11/__main__.py +0 -62
  149. py_imgui_redux-3.4.1/third-party/pybind11/pybind11/_version.py +0 -12
  150. py_imgui_redux-3.4.1/third-party/pybind11/pyproject.toml +0 -95
  151. py_imgui_redux-3.4.1/third-party/pybind11/setup.cfg +0 -43
  152. py_imgui_redux-3.4.1/third-party/pybind11/setup.py +0 -150
  153. py_imgui_redux-3.4.1/third-party/pybind11/tools/make_changelog.py +0 -90
  154. py_imgui_redux-3.4.1/third-party/pybind11/tools/pyproject.toml +0 -3
  155. py_imgui_redux-3.4.1/third-party/pybind11/tools/setup_global.py.in +0 -63
  156. py_imgui_redux-3.4.1/third-party/pybind11/tools/setup_main.py.in +0 -44
  157. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/LICENSE +0 -0
  158. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/MANIFEST.in +0 -0
  159. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/README.md +0 -0
  160. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/pybind11_stubgen.py +0 -0
  161. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/setup.cfg +0 -0
  162. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/CMakeLists.txt +0 -0
  163. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glad/include/KHR/khrplatform.h +0 -0
  164. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glad/include/glad/gl.h +0 -0
  165. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glad/src/gl.c +0 -0
  166. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/.appveyor.yml +0 -0
  167. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/.editorconfig +0 -0
  168. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/.git +0 -0
  169. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/.gitattributes +0 -0
  170. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/.gitignore +0 -0
  171. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/.mailmap +0 -0
  172. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/CMake/GenerateMappings.cmake +0 -0
  173. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/CMake/Info.plist.in +0 -0
  174. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/CMake/cmake_uninstall.cmake.in +0 -0
  175. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/CMake/glfw3.pc.in +0 -0
  176. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/CMake/glfw3Config.cmake.in +0 -0
  177. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/CMake/i686-w64-mingw32-clang.cmake +0 -0
  178. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/CMake/i686-w64-mingw32.cmake +0 -0
  179. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/CMake/modules/FindEpollShim.cmake +0 -0
  180. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/CMake/modules/FindOSMesa.cmake +0 -0
  181. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/CMake/x86_64-w64-mingw32-clang.cmake +0 -0
  182. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/CMake/x86_64-w64-mingw32.cmake +0 -0
  183. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/CMakeLists.txt +0 -0
  184. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/CONTRIBUTORS.md +0 -0
  185. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/LICENSE.md +0 -0
  186. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/README.md +0 -0
  187. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/deps/getopt.c +0 -0
  188. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/deps/getopt.h +0 -0
  189. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/deps/glad/gl.h +0 -0
  190. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/deps/glad/gles2.h +0 -0
  191. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/deps/glad/vulkan.h +0 -0
  192. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/deps/linmath.h +0 -0
  193. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/deps/mingw/_mingw_dxhelper.h +0 -0
  194. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/deps/mingw/dinput.h +0 -0
  195. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/deps/mingw/xinput.h +0 -0
  196. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/deps/nuklear.h +0 -0
  197. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/deps/nuklear_glfw_gl2.h +0 -0
  198. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/deps/stb_image_write.h +0 -0
  199. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/deps/tinycthread.c +0 -0
  200. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/deps/tinycthread.h +0 -0
  201. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/deps/wayland/fractional-scale-v1.xml +0 -0
  202. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/deps/wayland/idle-inhibit-unstable-v1.xml +0 -0
  203. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/deps/wayland/pointer-constraints-unstable-v1.xml +0 -0
  204. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/deps/wayland/relative-pointer-unstable-v1.xml +0 -0
  205. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/deps/wayland/viewporter.xml +0 -0
  206. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/deps/wayland/wayland.xml +0 -0
  207. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/deps/wayland/xdg-activation-v1.xml +0 -0
  208. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/deps/wayland/xdg-decoration-unstable-v1.xml +0 -0
  209. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/deps/wayland/xdg-shell.xml +0 -0
  210. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/examples/CMakeLists.txt +0 -0
  211. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/examples/boing.c +0 -0
  212. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/examples/gears.c +0 -0
  213. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/examples/glfw.icns +0 -0
  214. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/examples/glfw.ico +0 -0
  215. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/examples/glfw.rc +0 -0
  216. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/examples/heightmap.c +0 -0
  217. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/examples/offscreen.c +0 -0
  218. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/examples/particles.c +0 -0
  219. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/examples/sharing.c +0 -0
  220. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/examples/splitview.c +0 -0
  221. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/examples/triangle-opengl.c +0 -0
  222. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/examples/triangle-opengles.c +0 -0
  223. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/examples/wave.c +0 -0
  224. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/examples/windows.c +0 -0
  225. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/include/GLFW/glfw3.h +0 -0
  226. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/include/GLFW/glfw3native.h +0 -0
  227. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/CMakeLists.txt +0 -0
  228. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/cocoa_init.m +0 -0
  229. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/cocoa_joystick.h +0 -0
  230. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/cocoa_joystick.m +0 -0
  231. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/cocoa_monitor.m +0 -0
  232. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/cocoa_platform.h +0 -0
  233. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/cocoa_time.c +0 -0
  234. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/cocoa_time.h +0 -0
  235. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/cocoa_window.m +0 -0
  236. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/context.c +0 -0
  237. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/egl_context.c +0 -0
  238. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/glfw.rc.in +0 -0
  239. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/glx_context.c +0 -0
  240. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/init.c +0 -0
  241. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/input.c +0 -0
  242. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/internal.h +0 -0
  243. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/linux_joystick.c +0 -0
  244. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/linux_joystick.h +0 -0
  245. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/mappings.h +0 -0
  246. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/mappings.h.in +0 -0
  247. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/monitor.c +0 -0
  248. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/nsgl_context.m +0 -0
  249. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/null_init.c +0 -0
  250. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/null_joystick.c +0 -0
  251. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/null_joystick.h +0 -0
  252. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/null_monitor.c +0 -0
  253. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/null_platform.h +0 -0
  254. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/null_window.c +0 -0
  255. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/osmesa_context.c +0 -0
  256. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/platform.c +0 -0
  257. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/platform.h +0 -0
  258. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/posix_module.c +0 -0
  259. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/posix_poll.c +0 -0
  260. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/posix_poll.h +0 -0
  261. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/posix_thread.c +0 -0
  262. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/posix_thread.h +0 -0
  263. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/posix_time.c +0 -0
  264. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/posix_time.h +0 -0
  265. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/vulkan.c +0 -0
  266. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/wgl_context.c +0 -0
  267. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/win32_init.c +0 -0
  268. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/win32_joystick.c +0 -0
  269. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/win32_joystick.h +0 -0
  270. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/win32_module.c +0 -0
  271. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/win32_monitor.c +0 -0
  272. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/win32_platform.h +0 -0
  273. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/win32_thread.c +0 -0
  274. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/win32_thread.h +0 -0
  275. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/win32_time.c +0 -0
  276. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/win32_time.h +0 -0
  277. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/win32_window.c +0 -0
  278. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/window.c +0 -0
  279. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/wl_init.c +0 -0
  280. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/wl_monitor.c +0 -0
  281. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/wl_platform.h +0 -0
  282. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/wl_window.c +0 -0
  283. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/x11_init.c +0 -0
  284. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/x11_monitor.c +0 -0
  285. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/x11_platform.h +0 -0
  286. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/x11_window.c +0 -0
  287. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/xkb_unicode.c +0 -0
  288. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/glfw/src/xkb_unicode.h +0 -0
  289. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imconfig/bind-imconfig.h +0 -0
  290. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/.editorconfig +0 -0
  291. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/.git +0 -0
  292. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/.gitattributes +0 -0
  293. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/LICENSE.txt +0 -0
  294. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_glut.h +0 -0
  295. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/imgui_impl_sdlgpu3_shaders.h +0 -0
  296. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/sdlgpu3/build_instructions.txt +0 -0
  297. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/sdlgpu3/shader.frag +0 -0
  298. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/sdlgpu3/shader.vert +0 -0
  299. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/vulkan/build_instructions.txt +0 -0
  300. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/vulkan/generate_spv.sh +0 -0
  301. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/vulkan/glsl_shader.frag +0 -0
  302. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/backends/vulkan/glsl_shader.vert +0 -0
  303. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/imstb_rectpack.h +0 -0
  304. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/misc/README.txt +0 -0
  305. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/misc/cpp/README.txt +0 -0
  306. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/misc/cpp/imgui_stdlib.cpp +0 -0
  307. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/misc/cpp/imgui_stdlib.h +0 -0
  308. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/misc/debuggers/README.txt +0 -0
  309. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/misc/debuggers/imgui.gdb +0 -0
  310. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/misc/debuggers/imgui.natstepfilter +0 -0
  311. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/misc/debuggers/imgui.natvis +0 -0
  312. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/misc/fonts/Cousine-Regular.ttf +0 -0
  313. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/misc/fonts/DroidSans.ttf +0 -0
  314. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/misc/fonts/Karla-Regular.ttf +0 -0
  315. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/misc/fonts/ProggyClean.ttf +0 -0
  316. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/misc/fonts/ProggyTiny.ttf +0 -0
  317. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/misc/fonts/Roboto-Medium.ttf +0 -0
  318. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imgui/misc/single_file/imgui_single_file.h +0 -0
  319. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imnodes/.clang-format +0 -0
  320. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imnodes/.clang-tidy +0 -0
  321. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imnodes/.git +0 -0
  322. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imnodes/.gitignore +0 -0
  323. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imnodes/.gitmodules +0 -0
  324. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imnodes/LICENSE.md +0 -0
  325. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imnodes/README.md +0 -0
  326. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imnodes/example/graph.h +0 -0
  327. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imnodes/example/hello.cpp +0 -0
  328. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imnodes/example/node_editor.h +0 -0
  329. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imnodes/img/imnodes.gif +0 -0
  330. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imnodes/imnodes.h +0 -0
  331. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/imnodes/vcpkg.json +0 -0
  332. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/implot/.git +0 -0
  333. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/implot/LICENSE +0 -0
  334. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/implot/README.md +0 -0
  335. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/implot/TODO.md +0 -0
  336. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/implot/implot_internal.h +0 -0
  337. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/.clang-format +0 -0
  338. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/.cmake-format.yaml +0 -0
  339. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/.git +0 -0
  340. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/.gitattributes +0 -0
  341. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/.readthedocs.yml +0 -0
  342. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/LICENSE +0 -0
  343. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/SECURITY.md +0 -0
  344. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/common.h +0 -0
  345. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/complex.h +0 -0
  346. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/detail/typeid.h +0 -0
  347. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/eigen/common.h +0 -0
  348. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/eigen.h +0 -0
  349. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/iostream.h +0 -0
  350. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/operators.h +0 -0
  351. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/options.h +0 -0
  352. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/include/pybind11/type_caster_pyobject_ptr.h +0 -0
  353. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/pybind11/py.typed +0 -0
  354. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/tools/FindCatch.cmake +0 -0
  355. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/tools/FindEigen3.cmake +0 -0
  356. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/tools/JoinPaths.cmake +0 -0
  357. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/tools/check-style.sh +0 -0
  358. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/tools/cmake_uninstall.cmake.in +0 -0
  359. {py_imgui_redux-3.4.1 → py_imgui_redux-4.0.1}/third-party/pybind11/tools/pybind11.pc.in +0 -0
  360. {py_imgui_redux-3.4.1 → 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})
@@ -1,20 +1,21 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: py-imgui-redux
3
- Version: 3.4.1
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.7
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
 
@@ -257,27 +257,28 @@ third-party/pybind11/.gitignore
257
257
  third-party/pybind11/.pre-commit-config.yaml
258
258
  third-party/pybind11/.readthedocs.yml
259
259
  third-party/pybind11/CMakeLists.txt
260
+ third-party/pybind11/CMakePresets.json
260
261
  third-party/pybind11/LICENSE
261
- third-party/pybind11/MANIFEST.in
262
262
  third-party/pybind11/README.rst
263
263
  third-party/pybind11/SECURITY.md
264
264
  third-party/pybind11/noxfile.py
265
265
  third-party/pybind11/pyproject.toml
266
- third-party/pybind11/setup.cfg
267
- third-party/pybind11/setup.py
268
266
  third-party/pybind11/include/pybind11/attr.h
269
267
  third-party/pybind11/include/pybind11/buffer_info.h
270
268
  third-party/pybind11/include/pybind11/cast.h
271
269
  third-party/pybind11/include/pybind11/chrono.h
272
270
  third-party/pybind11/include/pybind11/common.h
273
271
  third-party/pybind11/include/pybind11/complex.h
272
+ third-party/pybind11/include/pybind11/critical_section.h
274
273
  third-party/pybind11/include/pybind11/eigen.h
275
274
  third-party/pybind11/include/pybind11/embed.h
276
275
  third-party/pybind11/include/pybind11/eval.h
277
276
  third-party/pybind11/include/pybind11/functional.h
278
277
  third-party/pybind11/include/pybind11/gil.h
279
278
  third-party/pybind11/include/pybind11/gil_safe_call_once.h
279
+ third-party/pybind11/include/pybind11/gil_simple.h
280
280
  third-party/pybind11/include/pybind11/iostream.h
281
+ third-party/pybind11/include/pybind11/native_enum.h
281
282
  third-party/pybind11/include/pybind11/numpy.h
282
283
  third-party/pybind11/include/pybind11/operators.h
283
284
  third-party/pybind11/include/pybind11/options.h
@@ -285,15 +286,31 @@ third-party/pybind11/include/pybind11/pybind11.h
285
286
  third-party/pybind11/include/pybind11/pytypes.h
286
287
  third-party/pybind11/include/pybind11/stl.h
287
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
288
291
  third-party/pybind11/include/pybind11/type_caster_pyobject_ptr.h
289
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
290
298
  third-party/pybind11/include/pybind11/detail/class.h
291
299
  third-party/pybind11/include/pybind11/detail/common.h
300
+ third-party/pybind11/include/pybind11/detail/cpp_conduit.h
292
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
293
305
  third-party/pybind11/include/pybind11/detail/init.h
294
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
295
310
  third-party/pybind11/include/pybind11/detail/type_caster_base.h
296
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
297
314
  third-party/pybind11/include/pybind11/eigen/common.h
298
315
  third-party/pybind11/include/pybind11/eigen/matrix.h
299
316
  third-party/pybind11/include/pybind11/eigen/tensor.h
@@ -313,12 +330,12 @@ third-party/pybind11/tools/cmake_uninstall.cmake.in
313
330
  third-party/pybind11/tools/codespell_ignore_lines_from_errors.py
314
331
  third-party/pybind11/tools/libsize.py
315
332
  third-party/pybind11/tools/make_changelog.py
333
+ third-party/pybind11/tools/make_global.py
316
334
  third-party/pybind11/tools/pybind11.pc.in
317
335
  third-party/pybind11/tools/pybind11Common.cmake
318
336
  third-party/pybind11/tools/pybind11Config.cmake.in
337
+ third-party/pybind11/tools/pybind11GuessPythonExtSuffix.cmake
319
338
  third-party/pybind11/tools/pybind11NewTools.cmake
320
339
  third-party/pybind11/tools/pybind11Tools.cmake
321
- third-party/pybind11/tools/pyproject.toml
322
- third-party/pybind11/tools/setup_global.py.in
323
- third-party/pybind11/tools/setup_main.py.in
340
+ third-party/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake
324
341
  third-party/stb/stb_image.h
@@ -1,5 +1,5 @@
1
1
  [build-system]
2
- requires = ["setuptools>=68.0.0", "wheel", "cmake>=3.25"]
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 = "3.4.1"
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.7"
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",
@@ -120,6 +120,9 @@ class InstallCMakeLibs(install_lib):
120
120
  except KeyError:
121
121
  oldPath = ""
122
122
 
123
+ log(f"Directory contents:")
124
+ log(os.listdir(bin_dir))
125
+
123
126
  if IS_WINDOWS:
124
127
  newPath = f"{bin_dir};" + oldPath
125
128
 
@@ -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/example_sdl2_sdlrenderer/example_sdl2_sdlrenderer
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
@@ -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 ImTextureID. Read the FAQ about ImTextureID!
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 ImGui_ImplAllegro5_InvalidateDeviceObjects()
256
+ void ImGui_ImplAllegro5_UpdateTexture(ImTextureData* tex)
282
257
  {
283
- ImGuiIO& io = ImGui::GetIO();
284
- ImGui_ImplAllegro5_Data* bd = ImGui_ImplAllegro5_GetBackendData();
285
- if (bd->Texture)
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
- io.Fonts->SetTexID(0);
288
- al_destroy_bitmap(bd->Texture);
289
- bd->Texture = nullptr;
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->Texture)
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);
@@ -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 ImTextureID. Read the FAQ about ImTextureID!
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
@@ -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. Enable with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'.
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.
@@ -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. Enable with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'.
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.