imgui-bindings 0.1.17-aarch64-linux → 1.0.0-aarch64-linux
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.
- checksums.yaml +4 -4
- data/ChangeLog +10 -0
- data/LICENSE.txt +1 -1
- data/README.md +22 -27
- data/lib/imgui.aarch64.so +0 -0
- data/lib/imgui.rb +11386 -4679
- data/lib/imgui_impl_docking_opengl3.rb +638 -0
- data/lib/imgui_impl_docking_raylib.rb +4 -0
- data/lib/imgui_impl_docking_sdl3.rb +1129 -0
- data/lib/imgui_impl_docking_sdl3renderer.rb +259 -0
- data/lib/imgui_impl_opengl3.rb +302 -200
- data/lib/imgui_impl_raylib.rb +345 -11
- data/lib/imgui_impl_sdl3.rb +599 -0
- data/lib/imgui_impl_sdl3renderer.rb +254 -0
- metadata +26 -13
- data/lib/imgui_impl_glfw.rb +0 -511
- data/lib/imgui_impl_opengl2.rb +0 -212
- data/lib/imgui_impl_sdl2.rb +0 -409
- data/lib/imgui_impl_sdlrenderer.rb +0 -200
- data/lib/imgui_internal.rb +0 -49
- data/lib/imnodes.aarch64.so +0 -0
- data/lib/imnodes.rb +0 -161
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: be88fd10d85cff738a5d2dad62f8e36d930a3320aec2698b5e7858df7f59de31
|
|
4
|
+
data.tar.gz: 42fa022cab76df02dfee1dbf6d5a224aee7bfbbee48e716372281fde76c59075
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 164001f9439e5f8f11eee9d573bbf509e16d4a5368aeada15a14bbb3d059646283de06cdef41fb27954da752734f38900b176b489abb3b854b548c730fe4a5b2
|
|
7
|
+
data.tar.gz: 65cc64dd5888fd03ff34482cbfa09cce0a432fbb9e16d3c7dcc9bb4f48d25527ab2ac930ca137ac4d83f0c8a188ab61982e223e8b4fce17c69e86610faf23c55
|
data/ChangeLog
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
2026-04-26 vaiorabbit <http://twitter.com/vaiorabbit>
|
|
2
|
+
|
|
3
|
+
* ImGui v1.92.7-docking
|
|
4
|
+
* Ruby ImGui bindings now uses Dear Bindings ( https://github.com/dearimgui/dear_bindings ) to generate codes
|
|
5
|
+
* Removed ImNodes
|
|
6
|
+
|
|
7
|
+
2025-04-29 vaiorabbit <http://twitter.com/vaiorabbit>
|
|
8
|
+
|
|
9
|
+
* ImGui v1.91.9b
|
|
10
|
+
|
|
1
11
|
2025-02-02 vaiorabbit <http://twitter.com/vaiorabbit>
|
|
2
12
|
|
|
3
13
|
* ImGui v1.91.8-WIP
|
data/LICENSE.txt
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
Ruby-ImGui : Yet another ImGui wrapper for Ruby
|
|
2
|
-
Copyright (c) 2019-
|
|
2
|
+
Copyright (c) 2019-2026 vaiorabbit <http://twitter.com/vaiorabbit>
|
|
3
3
|
|
|
4
4
|
This software is provided 'as-is', without any express or implied
|
|
5
5
|
warranty. In no event will the authors be held liable for any damages
|
data/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# Yet another ImGui wrapper for Ruby #
|
|
4
4
|
|
|
5
5
|
* Created : 2019-01-05
|
|
6
|
-
* Last modified :
|
|
6
|
+
* Last modified : 2026-04-26
|
|
7
7
|
|
|
8
8
|
<img src="https://raw.githubusercontent.com/vaiorabbit/ruby-imgui/master/doc/jpfont_test.png" width="250">
|
|
9
9
|
|
|
@@ -12,21 +12,18 @@
|
|
|
12
12
|
* Ruby interpreter
|
|
13
13
|
* Tested on:
|
|
14
14
|
* [Windows] https://rubyinstaller.org/downloads/ Ruby+Devkit
|
|
15
|
-
* ruby
|
|
16
|
-
|
|
17
|
-
* ruby 3.3.3 (2024-06-12 revision f1c7b6f435) [arm64-darwin23]
|
|
18
|
-
* [Linux]
|
|
19
|
-
* ruby 3.2.0 (2022-12-25 revision a528908271) [aarch64-linux]
|
|
15
|
+
* ruby 4.0.2 (2026-03-17 revision d3da9fec82) +PRISM [x64-mingw-ucrt]
|
|
16
|
+
|
|
20
17
|
* Ruby Gems
|
|
21
18
|
* opengl-bindings2
|
|
22
19
|
* gem install opengl-bindings2
|
|
20
|
+
* sdl3-bindings
|
|
21
|
+
* gem install sdl3-bindings
|
|
23
22
|
* ffi
|
|
24
23
|
* gem install ffi
|
|
25
24
|
* Compiler
|
|
26
25
|
* Tested on:
|
|
27
|
-
* [Windows] gcc (
|
|
28
|
-
* [macOS] Apple clang version 15.0.0 (clang-1500.3.9.4)
|
|
29
|
-
* [Linux] gcc (Debian 10.2.1-6) 10.2.1 20210110
|
|
26
|
+
* [Windows] gcc (Rev13, Built by MSYS2 project) 15.2.0
|
|
30
27
|
* CMake https://cmake.org/download/
|
|
31
28
|
|
|
32
29
|
<details>
|
|
@@ -35,12 +32,14 @@
|
|
|
35
32
|
* Ruby interpreter
|
|
36
33
|
* Tested on:
|
|
37
34
|
* [Windows] https://rubyinstaller.org/downloads/ Ruby+Devkit
|
|
35
|
+
* ruby 3.4.1 (2024-12-25 revision 48d4efcb85) +PRISM [x64-mingw-ucrt]
|
|
38
36
|
* ruby 3.2.0 (2022-12-25 revision a528908271) [x64-mingw-ucrt]
|
|
39
37
|
* ruby 3.1.2p20 (2022-04-12 revision 4491bb740a) [x64-mingw-ucrt]
|
|
40
38
|
* ruby 3.0.2p107 (2021-07-07 revision 0db68f0233) [x64-mingw32]
|
|
41
39
|
* ruby 3.0.0p0 (2020-12-25 revision 95aff21468) [x64-mingw32]
|
|
42
40
|
* ruby 2.7.1p83 (2020-03-31 revision a0c7c23c9c) [x64-mingw32]
|
|
43
41
|
* [macOS]
|
|
42
|
+
* ruby 3.3.3 (2024-06-12 revision f1c7b6f435) [arm64-darwin23]
|
|
44
43
|
* ruby 3.3.0 (2023-12-25 revision 5124f9ac75) [arm64-darwin23]
|
|
45
44
|
* ruby 3.2.1 (2023-02-08 revision 31819e82c8) [arm64-darwin22]
|
|
46
45
|
* ruby 3.2.0 (2022-12-25 revision a528908271) [arm64-darwin21]
|
|
@@ -52,53 +51,49 @@
|
|
|
52
51
|
* ruby 3.0.0p0 (2020-12-25 revision 95aff21468) [arm64-darwin20]
|
|
53
52
|
* ruby 2.7.0p0 (2019-12-25 revision 647ee6f091) [x86_64-darwin19]
|
|
54
53
|
* ruby 2.6.0p0 (2018-12-25 revision 66547) [x86_64-darwin18]
|
|
54
|
+
* [Linux]
|
|
55
|
+
* ruby 3.2.0 (2022-12-25 revision a528908271) [aarch64-linux]
|
|
55
56
|
|
|
56
57
|
* Compiler
|
|
57
58
|
* Tested on:
|
|
59
|
+
* [Windows] gcc (Rev2, Built by MSYS2 project) 14.2.0
|
|
58
60
|
* [Windows] gcc (Rev7, Built by MSYS2 project) 12.2.0
|
|
59
61
|
* [Windows] gcc (Rev10, Built by MSYS2 project) 11.2.0
|
|
60
62
|
* [Windows] gcc (Rev1, Built by MSYS2 project) 8.2.1 20181214
|
|
63
|
+
* [macOS] Apple clang version 15.0.0 (clang-1500.3.9.4)
|
|
61
64
|
* [macOS] Apple clang version 14.0.0 (clang-1400.0.29.202), Target: arm64-apple-darwin22.2.0
|
|
62
65
|
* [macOS] clang (Apple clang version 13.1.6 (clang-1316.0.21.2.5), Target: arm64-apple-darwin21.5.0)
|
|
63
66
|
* [macOS] clang (Apple clang version 12.0.5 (clang-1205.0.22.11), Target: arm64-apple-darwin20.6.0)
|
|
67
|
+
* [Linux] gcc (Debian 10.2.1-6) 10.2.1 20210110
|
|
64
68
|
</details>
|
|
65
69
|
|
|
66
70
|
## Setting up and run sample ##
|
|
67
71
|
|
|
68
72
|
1. Install pre-built binaries
|
|
69
73
|
* $ gem install imgui-bindings
|
|
70
|
-
2. Get
|
|
71
|
-
* put dylib/dll/so into
|
|
72
|
-
|
|
73
|
-
* cd
|
|
74
|
-
* ruby
|
|
75
|
-
* ruby test_sld2_opengl2.rb (SDL2)
|
|
74
|
+
2. Get SDL3
|
|
75
|
+
* put dylib/dll/so into examples/
|
|
76
|
+
3. Run test.rb
|
|
77
|
+
* cd example/
|
|
78
|
+
* ruby test_docking_sdl3_opengl3.rb
|
|
76
79
|
|
|
77
80
|
## Building binaries ##
|
|
78
81
|
|
|
79
|
-
|
|
80
|
-
* git submodule update --recursive --remote
|
|
81
|
-
2. Update cimgui.c and cimgui.h
|
|
82
|
-
* $ cd imgui_dll/cimgui/generator
|
|
83
|
-
* $ luajit ./generator.lua clang ""
|
|
84
|
-
3. Build library
|
|
85
|
-
* Use build_imgui_macos.sh, etc.
|
|
82
|
+
* Use dll/build_imgui_windows.cmd, etc.
|
|
86
83
|
|
|
87
84
|
## License ##
|
|
88
85
|
|
|
89
86
|
All shared libraries found in `lib` directory are built on top of these products and are available under the terms of the MIT License.
|
|
90
|
-
* cimgui ( https://github.com/cimgui/cimgui )
|
|
91
|
-
* https://github.com/cimgui/cimgui/blob/master/LICENSE
|
|
92
87
|
* Dear ImGui ( https://github.com/ocornut/imgui )
|
|
93
88
|
* https://github.com/ocornut/imgui/blob/master/LICENSE.txt
|
|
94
|
-
*
|
|
95
|
-
* https://github.com/
|
|
89
|
+
* Dear Bindings ( https://github.com/dearimgui/dear_bindings )
|
|
90
|
+
* https://github.com/dearimgui/dear_bindings/blob/main/LICENSE.txt
|
|
96
91
|
|
|
97
92
|
All ruby codes here are available under the terms of the zlib/libpng License ( http://opensource.org/licenses/Zlib ).
|
|
98
93
|
|
|
99
94
|
```
|
|
100
95
|
Ruby-Imgui : Yet another ImGui wrapper for Ruby
|
|
101
|
-
Copyright (c) 2019-
|
|
96
|
+
Copyright (c) 2019-2026 vaiorabbit <http://twitter.com/vaiorabbit>
|
|
102
97
|
|
|
103
98
|
This software is provided 'as-is', without any express or implied
|
|
104
99
|
warranty. In no event will the authors be held liable for any damages
|
data/lib/imgui.aarch64.so
CHANGED
|
Binary file
|