imgui-bindings 0.0.2.rc1 → 0.0.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d7b45550f223f0cedd9d8f543e6d25bcc4988ab0bc59df341c527d0e0907f9a5
4
- data.tar.gz: 4e48bb054f108f73e12777761a9d0b6eada3782ba76e437aaa9d848b69736294
3
+ metadata.gz: 5bbd987161848c4f790e55cfffd04dfb2ae144186f451b278b4d1eb2e77d69d5
4
+ data.tar.gz: c4ef36ccc46ec591c516374e69224ca54e08a8b9131f39d95c1cc1f250a64ba7
5
5
  SHA512:
6
- metadata.gz: 238d51745983ded557d6d6e84effcbf70c18f7684e398e456cb168f85bde9ed10f16118b0dee60eb5b32773310edb2915681620221caf360f62e12dd9c298327
7
- data.tar.gz: 1798e2c878227420b20cafa91ec98e4d272bdce78b7c4be2cc08f9b52b46fe9d73c60c508af88ed99a137f6e054f6af97f70640eb8ff48c6c0a4bea82ee9c333
6
+ metadata.gz: c485d9548d2a35387cee22080ea30d6f19f16ad240dbffc0c0922e4d16d1f96847078388ce1506569b378bf7e48bd6f3f180bdc1b706240e7e0a3ef5bada8607
7
+ data.tar.gz: 596bb4901a35014d5688d539c7c87671652a95e9317db863268ae83f9d4fab062612da9549eca3e26e715c8bdfc80179ffabc4afab8136e83d535105924d66b6
data/ChangeLog CHANGED
@@ -1,268 +1,286 @@
1
- 2022-01-08 vaiorabbit <http://twitter.com/vaiorabbit>
2
-
3
- * imgui_impl_raylib.rb: Added. Use this with Ruby raylib-bindings ( https://github.com/vaiorabbit/raylib-bindings )
4
-
5
- 2022-01-07 vaiorabbit <http://twitter.com/vaiorabbit>
6
-
7
- * Use opengl-bindings2
8
-
9
- 2022-01-01 vaiorabbit <http://twitter.com/vaiorabbit>
10
-
11
- * imgui-bindings.gemspec: Added
12
-
13
- 2021-12-31 vaiorabbit <http://twitter.com/vaiorabbit>
14
-
15
- * Added setup_dll.rb etc. for automatic library loading
16
- * Changed generator output paths
17
- * (Windows) Build binary with the latest ImGui
18
-
19
- 2021-12-26 vaiorabbit <http://twitter.com/vaiorabbit>
20
-
21
- * (macOS) ImGui 1.86
22
- * imgui_impl_sdlrenderer.rb, sample/test_sdl2_sdlrenderer.rb: Temporary fix to render correctly
23
-
24
- 2021-12-15 vaiorabbit <http://twitter.com/vaiorabbit>
25
-
26
- * imgui_impl_sdlrenderer.rb, sample/test_sdl2_sdlrenderer.rb: Added
27
-
28
- 2021-12-09 vaiorabbit <http://twitter.com/vaiorabbit>
29
-
30
- * (macOS) ImGui 1.86 WIP
31
-
32
- 2021-10-16 vaiorabbit <http://twitter.com/vaiorabbit>
33
-
34
- * (macOS) ImGui 1.85
35
- * basic_usage.rb: Added ImGuiDemo::StackToolWindow
36
-
37
- 2021-09-05 vaiorabbit <http://twitter.com/vaiorabbit>
38
-
39
- * (macOS) ImGui 1.84.2
40
-
41
- 2021-08-22 vaiorabbit <http://twitter.com/vaiorabbit>
42
-
43
- * (macOS) ImGui 1.84.1
44
-
45
- 2021-08-07 vaiorabbit <http://twitter.com/vaiorabbit>
46
-
47
- * imgui_impl_sdl2.rb: Applied https://github.com/ocornut/imgui/commit/1cdd110eb41830ed3c852eade976a066946b7071 (See https://github.com/ocornut/imgui/pull/2696#issuecomment-889336981 )
48
- * imgui_impl_glfw.rb: Applied https://github.com/ocornut/imgui/commit/044fd0cd2d976b31962689afa73c9824a6a08146 (See https://github.com/ocornut/imgui/pull/2696#issuecomment-889336981 )
49
-
50
- 2021-07-05 vaiorabbit <http://twitter.com/vaiorabbit>
51
-
52
- * imgui_impl_sdl2.rb: Partially applied changes in https://github.com/ocornut/imgui/commit/6792e1a3e08c30c6e9015cf51658d14f7872b10b https://github.com/ocornut/imgui/blob/6792e1a3e08c30c6e9015cf51658d14f7872b10b/backends/imgui_impl_sdl.cpp
53
-
54
- 2021-06-21 vaiorabbit <http://twitter.com/vaiorabbit>
55
-
56
- * imgui_impl_opengl3.rb: Applied changes in https://github.com/ocornut/imgui/pull/4244
57
-
58
- 2021-06-20 vaiorabbit <http://twitter.com/vaiorabbit>
59
-
60
- * (Windows) ImGui 1.83
61
- * (macOS) ImGui 1.83
62
- * (macOS) Build script now generates ARM64 binary
63
- * Added reference comments of arguments and return value
64
- * Several APIs now contain underscore in its name due to cimgui change (e.g. GetColorU32Col -> GetColorU32_Col)
65
- * (Experimental) Added overload functions (e.g.: ImGui::Combo, ImGui::MenuItem)
66
-
67
- 2021-03-27 vaiorabbit <http://twitter.com/vaiorabbit>
68
-
69
- * (Windows) ImGui 1.82
70
-
71
- 2021-03-21 vaiorabbit <http://twitter.com/vaiorabbit>
72
-
73
- * (macOS) ImGui 1.82
74
-
75
- 2021-02-20 vaiorabbit <http://twitter.com/vaiorabbit>
76
-
77
- * Applied https://github.com/ocornut/imgui/commit/bda12e5fdd829e44e01a25aac015e156f3dad761
78
-
79
- 2021-02-12 vaiorabbit <http://twitter.com/vaiorabbit>
80
-
81
- * (Windows) ImGui 1.81
82
-
83
- 2021-02-11 vaiorabbit <http://twitter.com/vaiorabbit>
84
-
85
- * (macOS) ImGui 1.81
86
- * sample: Cleaned up Japanese font initialization
87
-
88
- 2021-02-07 vaiorabbit <http://twitter.com/vaiorabbit>
89
-
90
- * (Windows) ImGui 1.80
91
- * (Windows) Built imgui.dll and imgui_debug.dll with:
92
- * ruby 3.0.0p0 (2020-12-25 revision 95aff21468) [x64-mingw32]
93
- * gcc (Rev6, Built by MSYS2 project) 10.2.0
94
- * (macOS) ImGui 1.80
95
- * (macOS) Built imgui.dylib with:
96
- * ruby 3.0.0p0 (2020-12-25 revision 95aff21468) [arm64-darwin20]
97
- * Apple clang version 12.0.0 (clang-1200.0.32.29) / Target: arm64-apple-darwin20.2.0
98
- * imgui_impl_opengl2.rb, imgui_impl_opengl3.rb: Applied same changes made at https://github.com/ocornut/imgui/commit/7d5d5711c20d2448fb379de245ddc3b950289873
99
- * generator/generate_imgui.rb: Modified to handle exceptions
100
-
101
- 2020-12-20 vaiorabbit <http://twitter.com/vaiorabbit>
102
-
103
- * third_party/glfw_build.sh, third_party/sdl2_build_dylib.sh: Modified/added to support x86_64|arm64 Universal Binary
104
-
105
- 2020-11-15 vaiorabbit <http://twitter.com/vaiorabbit>
106
-
107
- * (Windows) ImGui 1.79
108
- * (macOS) ImGui 1.79
109
-
110
- 2020-08-24 vaiorabbit <http://twitter.com/vaiorabbit>
111
-
112
- * (macOS) ImGui 1.78
113
-
114
- 2020-08-22 vaiorabbit <http://twitter.com/vaiorabbit>
115
-
116
- * (Windows) ImGui 1.78
117
- * (Windows) Added imgui_debug.dll (Built with 'CMAKE_BUILD_TYPE=Debug')
118
-
119
- 2020-07-04 vaiorabbit <http://twitter.com/vaiorabbit>
120
-
121
- * (Windows) ImGui 1.77
122
-
123
- 2020-06-14 vaiorabbit <http://twitter.com/vaiorabbit>
124
-
125
- * imgui_impl_sdl2.rb: Fixed forcing 'include SDL2'
126
-
127
- 2020-06-12 vaiorabbit <http://twitter.com/vaiorabbit>
128
-
129
- * basic_usage.rb: Fixed ImGui::End() mismatch
130
-
131
- 2020-06-11 vaiorabbit <http://twitter.com/vaiorabbit>
132
-
133
- * imgui_impl_sdl2.rb: Renamed ImplSDL2_InitForOpenGL to ImplSDL2_Init
134
-
135
- 2020-05-13 vaiorabbit <http://twitter.com/vaiorabbit>
136
-
137
- * 'Added support for pointer to struct. Now you can call like 'io[:Fonts].AddFontDefault()'.
138
- * Constructors now return FFI::Struct, not :pointer
139
-
140
- 2020-05-12 vaiorabbit <http://twitter.com/vaiorabbit>
141
-
142
- * Added instance methods (e.g.: ImGui::FontAtlas_AddFontDefault(io[:Fonts]) -> ImFontAtlas.new(io[:Fonts]).AddFontDefault())
143
-
144
- 2020-05-10 vaiorabbit <http://twitter.com/vaiorabbit>
145
-
146
- * imgui_impl_opengl3.rb: Changed default GLSL version string from 130 to 150 (Ref.: https://github.com/ocornut/imgui/pull/3199 )
147
- * generator: Read "stname", "constructor" and "destructor" from "definitions.json"
148
-
149
- 2020-05-05 vaiorabbit <http://twitter.com/vaiorabbit>
150
-
151
- * Added ImDrawList support / Added ImColor.col32
152
- * Added support for ImFontConfig / Added icon font sample
153
- * Added support for FontGlyphRangesBuilder, ImWchar vector / Now constructors return :pointer
154
- * Added support for ImGuiTextFilter, etc. / public interfaces are changed a bit ("ImGuixxx" prefixes are omitted)
155
- * Fixed ImColor.create argument conversion
156
- * Fixed wrong default argument (sizeof(float))
157
- * Added provisional callback signature analyzer / Added callback typedef generation
158
- * Added some CallbackData / Added ImGuiTypedefMapEntry for later use
159
- * Returns ImVec2/4/Color correctly / Added default augument values to ImVec2.create, etc.
160
-
161
- 2020-05-03 vaiorabbit <http://twitter.com/vaiorabbit>
162
-
163
- * Added provisional ImGuiStyle_ methods
164
- * Added provisional ImGuiIO_ methods
165
- * Added sample/basic_usage_sdl2_opengl2.rb
166
- * (Windows) Catching up with ImGui 1.76
167
-
168
- 2020-04-19 vaiorabbit <http://twitter.com/vaiorabbit>
169
-
170
- * Supported default value of public API arguments
171
-
172
- 2020-04-18 vaiorabbit <http://twitter.com/vaiorabbit>
173
-
174
- * (macOS) Catching up with ImGui 1.76
175
- * Generate APIs as wrapper methods (to support default arguments/method overloading in the future)
176
-
177
- 2020-02-11 vaiorabbit <http://twitter.com/vaiorabbit>
178
-
179
- * (macOS) Catching up with ImGui 1.75
180
- * Fixed wrong array argument generation (e.g. arguments like 'float[3]' are now converted into :pointer.)
181
- * Added OpenGL3 render backend (Note that this feature is only tested only on macOS)
182
-
183
- 2020-01-26 vaiorabbit <http://twitter.com/vaiorabbit>
184
-
185
- * Applied changes made in https://github.com/ocornut/imgui/commit/f6da5000bfaf3a035e8d8a7db9b5150644f4630b
186
- "Backends: OpenGL2: Explicitly backup, setup and restore GL_TEXTURE_ENV to increase compatibility with legacy OpenGL applications."
187
-
188
- 2019-11-27 vaiorabbit <http://twitter.com/vaiorabbit>
189
-
190
- * (macOS) Catching up with ImGui 1.74
191
-
192
- 2019-11-02 vaiorabbit <http://twitter.com/vaiorabbit>
193
-
194
- * (Windows) Catching up with ImGui 1.73
195
-
196
- 2019-10-25 vaiorabbit <http://twitter.com/vaiorabbit>
197
-
198
- * (macOS) Catching up with ImGui 1.73
199
-
200
- 2019-09-11 vaiorabbit <http://twitter.com/vaiorabbit>
201
-
202
- * Revised folder structures
203
- * Moved some older codes into backup/
204
-
205
- 2019-09-01 vaiorabbit <http://twitter.com/vaiorabbit>
206
-
207
- * Design change: Libraries are separated into imgui.rb, imgui_impl_glfw.rb and imgui_impl_opengl2.rb
208
- * See sample/test_glfw_opengl2.rb for new usage
209
- * imgui_impl_sdl2.rb, sample/test_sdl2_opengl2.rb, sample/imgui_and_testgl2.rb: Added.
210
- * Note that imgui_glfw_opengl2.rb will not be supported any more.
211
-
212
- 2019-08-25 vaiorabbit <http://twitter.com/vaiorabbit>
213
-
214
- * Revised folder names
215
-
216
- 2019-08-20 vaiorabbit <http://twitter.com/vaiorabbit>
217
-
218
- * linux build tweak https://github.com/vaiorabbit/ruby-imgui/pull/1 (Thanks: Jake Vandereay https://github.com/lunarfyre7)
219
-
220
- 2019-08-03 vaiorabbit <http://twitter.com/vaiorabbit>
221
-
222
- * (Windows) Catching up with ImGui 1.72
223
- * `imgui_glfw_opengl2.dll` was built against ruby 2.6.0p0 (2018-12-25 revision 66547) [x64-mingw32].
224
-
225
- 2019-07-29 vaiorabbit <http://twitter.com/vaiorabbit>
226
-
227
- * (macOS) Catching up with ImGui 1.72
228
-
229
- 2019-07-28 vaiorabbit <http://twitter.com/vaiorabbit>
230
-
231
- * (macOS) Catching up with ImGui 1.71
232
-
233
- 2019-06-09 vaiorabbit <http://twitter.com/vaiorabbit>
234
-
235
- * (macOS) Catching up with ImGui 1.70
236
-
237
- 2019-03-24 vaiorabbit <http://twitter.com/vaiorabbit>
238
-
239
- * (macOS) Catching up with ImGui 1.69
240
-
241
- 2019-02-22 vaiorabbit <http://twitter.com/vaiorabbit>
242
-
243
- * (macOS) Catching up with ImGui 1.68
244
-
245
- 2019-01-15 vaiorabbit <http://twitter.com/vaiorabbit>
246
-
247
- * Catching up with ImGui 1.67
248
-
249
- 2019-01-14 vaiorabbit <http://twitter.com/vaiorabbit>
250
-
251
- * ImFont, ImFontAtlas (imgui_glfw_opengl2.rb): Added
252
-
253
- 2019-01-13 vaiorabbit <http://twitter.com/vaiorabbit>
254
-
255
- * Tested on Windows.
256
- * cimgui_build.sh, cimgui_build.bat: Added.
257
-
258
- 2019-01-06 vaiorabbit <http://twitter.com/vaiorabbit>
259
-
260
- * ImGuiBindings.build_ffi_typedef_map(common.rb): Changed usage
261
- * imgui_glfw_opengl2.dylib: Specified the terms of use.
262
-
263
- 2019-01-05 vaiorabbit <http://twitter.com/vaiorabbit>
264
-
265
- * initial commmit
266
- * Fixed API names (ex. igShowDemoWindow -> ImGui::ShowDemoWindow)
267
- * [Fixed] Failed to generate array type member of struct.
268
- * Added Japanese font loading & rendering example (test.rb)
1
+ 2022-07-02 vaiorabbit <http://twitter.com/vaiorabbit>
2
+
3
+ * (macOS) ImGui 1.88
4
+ * (Windows) ImGui 1.88
5
+
6
+ 2022-02-12 vaiorabbit <http://twitter.com/vaiorabbit>
7
+
8
+ * imgui_impl_sdl2.rb: Updated to use event API
9
+ * imgui_impl_sdlrenderer.rb: Updated to use new API / Applied https://github.com/ocornut/imgui/commit/c39192ba6403d963d5983fa3e5973f5170cb0e31
10
+ * imgui_impl_raylib.rb: Updated to use event API
11
+ * basic_usage_sdl2_opengl2.rb: Updated to use new API
12
+ * (Windows) ImGui 1.87
13
+
14
+ 2022-02-11 vaiorabbit <http://twitter.com/vaiorabbit>
15
+
16
+ * (macOS) ImGui 1.87
17
+ * imgui_impl_glfw.rb: Updated to use event API
18
+
19
+ 2022-01-08 vaiorabbit <http://twitter.com/vaiorabbit>
20
+
21
+ * imgui_impl_raylib.rb: Added. Use this with Ruby raylib-bindings ( https://github.com/vaiorabbit/raylib-bindings )
22
+
23
+ 2022-01-07 vaiorabbit <http://twitter.com/vaiorabbit>
24
+
25
+ * Use opengl-bindings2
26
+
27
+ 2022-01-01 vaiorabbit <http://twitter.com/vaiorabbit>
28
+
29
+ * imgui-bindings.gemspec: Added
30
+
31
+ 2021-12-31 vaiorabbit <http://twitter.com/vaiorabbit>
32
+
33
+ * Added setup_dll.rb etc. for automatic library loading
34
+ * Changed generator output paths
35
+ * (Windows) Build binary with the latest ImGui
36
+
37
+ 2021-12-26 vaiorabbit <http://twitter.com/vaiorabbit>
38
+
39
+ * (macOS) ImGui 1.86
40
+ * imgui_impl_sdlrenderer.rb, sample/test_sdl2_sdlrenderer.rb: Temporary fix to render correctly
41
+
42
+ 2021-12-15 vaiorabbit <http://twitter.com/vaiorabbit>
43
+
44
+ * imgui_impl_sdlrenderer.rb, sample/test_sdl2_sdlrenderer.rb: Added
45
+
46
+ 2021-12-09 vaiorabbit <http://twitter.com/vaiorabbit>
47
+
48
+ * (macOS) ImGui 1.86 WIP
49
+
50
+ 2021-10-16 vaiorabbit <http://twitter.com/vaiorabbit>
51
+
52
+ * (macOS) ImGui 1.85
53
+ * basic_usage.rb: Added ImGuiDemo::StackToolWindow
54
+
55
+ 2021-09-05 vaiorabbit <http://twitter.com/vaiorabbit>
56
+
57
+ * (macOS) ImGui 1.84.2
58
+
59
+ 2021-08-22 vaiorabbit <http://twitter.com/vaiorabbit>
60
+
61
+ * (macOS) ImGui 1.84.1
62
+
63
+ 2021-08-07 vaiorabbit <http://twitter.com/vaiorabbit>
64
+
65
+ * imgui_impl_sdl2.rb: Applied https://github.com/ocornut/imgui/commit/1cdd110eb41830ed3c852eade976a066946b7071 (See https://github.com/ocornut/imgui/pull/2696#issuecomment-889336981 )
66
+ * imgui_impl_glfw.rb: Applied https://github.com/ocornut/imgui/commit/044fd0cd2d976b31962689afa73c9824a6a08146 (See https://github.com/ocornut/imgui/pull/2696#issuecomment-889336981 )
67
+
68
+ 2021-07-05 vaiorabbit <http://twitter.com/vaiorabbit>
69
+
70
+ * imgui_impl_sdl2.rb: Partially applied changes in https://github.com/ocornut/imgui/commit/6792e1a3e08c30c6e9015cf51658d14f7872b10b https://github.com/ocornut/imgui/blob/6792e1a3e08c30c6e9015cf51658d14f7872b10b/backends/imgui_impl_sdl.cpp
71
+
72
+ 2021-06-21 vaiorabbit <http://twitter.com/vaiorabbit>
73
+
74
+ * imgui_impl_opengl3.rb: Applied changes in https://github.com/ocornut/imgui/pull/4244
75
+
76
+ 2021-06-20 vaiorabbit <http://twitter.com/vaiorabbit>
77
+
78
+ * (Windows) ImGui 1.83
79
+ * (macOS) ImGui 1.83
80
+ * (macOS) Build script now generates ARM64 binary
81
+ * Added reference comments of arguments and return value
82
+ * Several APIs now contain underscore in its name due to cimgui change (e.g. GetColorU32Col -> GetColorU32_Col)
83
+ * (Experimental) Added overload functions (e.g.: ImGui::Combo, ImGui::MenuItem)
84
+
85
+ 2021-03-27 vaiorabbit <http://twitter.com/vaiorabbit>
86
+
87
+ * (Windows) ImGui 1.82
88
+
89
+ 2021-03-21 vaiorabbit <http://twitter.com/vaiorabbit>
90
+
91
+ * (macOS) ImGui 1.82
92
+
93
+ 2021-02-20 vaiorabbit <http://twitter.com/vaiorabbit>
94
+
95
+ * Applied https://github.com/ocornut/imgui/commit/bda12e5fdd829e44e01a25aac015e156f3dad761
96
+
97
+ 2021-02-12 vaiorabbit <http://twitter.com/vaiorabbit>
98
+
99
+ * (Windows) ImGui 1.81
100
+
101
+ 2021-02-11 vaiorabbit <http://twitter.com/vaiorabbit>
102
+
103
+ * (macOS) ImGui 1.81
104
+ * sample: Cleaned up Japanese font initialization
105
+
106
+ 2021-02-07 vaiorabbit <http://twitter.com/vaiorabbit>
107
+
108
+ * (Windows) ImGui 1.80
109
+ * (Windows) Built imgui.dll and imgui_debug.dll with:
110
+ * ruby 3.0.0p0 (2020-12-25 revision 95aff21468) [x64-mingw32]
111
+ * gcc (Rev6, Built by MSYS2 project) 10.2.0
112
+ * (macOS) ImGui 1.80
113
+ * (macOS) Built imgui.dylib with:
114
+ * ruby 3.0.0p0 (2020-12-25 revision 95aff21468) [arm64-darwin20]
115
+ * Apple clang version 12.0.0 (clang-1200.0.32.29) / Target: arm64-apple-darwin20.2.0
116
+ * imgui_impl_opengl2.rb, imgui_impl_opengl3.rb: Applied same changes made at https://github.com/ocornut/imgui/commit/7d5d5711c20d2448fb379de245ddc3b950289873
117
+ * generator/generate_imgui.rb: Modified to handle exceptions
118
+
119
+ 2020-12-20 vaiorabbit <http://twitter.com/vaiorabbit>
120
+
121
+ * third_party/glfw_build.sh, third_party/sdl2_build_dylib.sh: Modified/added to support x86_64|arm64 Universal Binary
122
+
123
+ 2020-11-15 vaiorabbit <http://twitter.com/vaiorabbit>
124
+
125
+ * (Windows) ImGui 1.79
126
+ * (macOS) ImGui 1.79
127
+
128
+ 2020-08-24 vaiorabbit <http://twitter.com/vaiorabbit>
129
+
130
+ * (macOS) ImGui 1.78
131
+
132
+ 2020-08-22 vaiorabbit <http://twitter.com/vaiorabbit>
133
+
134
+ * (Windows) ImGui 1.78
135
+ * (Windows) Added imgui_debug.dll (Built with 'CMAKE_BUILD_TYPE=Debug')
136
+
137
+ 2020-07-04 vaiorabbit <http://twitter.com/vaiorabbit>
138
+
139
+ * (Windows) ImGui 1.77
140
+
141
+ 2020-06-14 vaiorabbit <http://twitter.com/vaiorabbit>
142
+
143
+ * imgui_impl_sdl2.rb: Fixed forcing 'include SDL2'
144
+
145
+ 2020-06-12 vaiorabbit <http://twitter.com/vaiorabbit>
146
+
147
+ * basic_usage.rb: Fixed ImGui::End() mismatch
148
+
149
+ 2020-06-11 vaiorabbit <http://twitter.com/vaiorabbit>
150
+
151
+ * imgui_impl_sdl2.rb: Renamed ImplSDL2_InitForOpenGL to ImplSDL2_Init
152
+
153
+ 2020-05-13 vaiorabbit <http://twitter.com/vaiorabbit>
154
+
155
+ * 'Added support for pointer to struct. Now you can call like 'io[:Fonts].AddFontDefault()'.
156
+ * Constructors now return FFI::Struct, not :pointer
157
+
158
+ 2020-05-12 vaiorabbit <http://twitter.com/vaiorabbit>
159
+
160
+ * Added instance methods (e.g.: ImGui::FontAtlas_AddFontDefault(io[:Fonts]) -> ImFontAtlas.new(io[:Fonts]).AddFontDefault())
161
+
162
+ 2020-05-10 vaiorabbit <http://twitter.com/vaiorabbit>
163
+
164
+ * imgui_impl_opengl3.rb: Changed default GLSL version string from 130 to 150 (Ref.: https://github.com/ocornut/imgui/pull/3199 )
165
+ * generator: Read "stname", "constructor" and "destructor" from "definitions.json"
166
+
167
+ 2020-05-05 vaiorabbit <http://twitter.com/vaiorabbit>
168
+
169
+ * Added ImDrawList support / Added ImColor.col32
170
+ * Added support for ImFontConfig / Added icon font sample
171
+ * Added support for FontGlyphRangesBuilder, ImWchar vector / Now constructors return :pointer
172
+ * Added support for ImGuiTextFilter, etc. / public interfaces are changed a bit ("ImGuixxx" prefixes are omitted)
173
+ * Fixed ImColor.create argument conversion
174
+ * Fixed wrong default argument (sizeof(float))
175
+ * Added provisional callback signature analyzer / Added callback typedef generation
176
+ * Added some CallbackData / Added ImGuiTypedefMapEntry for later use
177
+ * Returns ImVec2/4/Color correctly / Added default augument values to ImVec2.create, etc.
178
+
179
+ 2020-05-03 vaiorabbit <http://twitter.com/vaiorabbit>
180
+
181
+ * Added provisional ImGuiStyle_ methods
182
+ * Added provisional ImGuiIO_ methods
183
+ * Added sample/basic_usage_sdl2_opengl2.rb
184
+ * (Windows) Catching up with ImGui 1.76
185
+
186
+ 2020-04-19 vaiorabbit <http://twitter.com/vaiorabbit>
187
+
188
+ * Supported default value of public API arguments
189
+
190
+ 2020-04-18 vaiorabbit <http://twitter.com/vaiorabbit>
191
+
192
+ * (macOS) Catching up with ImGui 1.76
193
+ * Generate APIs as wrapper methods (to support default arguments/method overloading in the future)
194
+
195
+ 2020-02-11 vaiorabbit <http://twitter.com/vaiorabbit>
196
+
197
+ * (macOS) Catching up with ImGui 1.75
198
+ * Fixed wrong array argument generation (e.g. arguments like 'float[3]' are now converted into :pointer.)
199
+ * Added OpenGL3 render backend (Note that this feature is only tested only on macOS)
200
+
201
+ 2020-01-26 vaiorabbit <http://twitter.com/vaiorabbit>
202
+
203
+ * Applied changes made in https://github.com/ocornut/imgui/commit/f6da5000bfaf3a035e8d8a7db9b5150644f4630b
204
+ "Backends: OpenGL2: Explicitly backup, setup and restore GL_TEXTURE_ENV to increase compatibility with legacy OpenGL applications."
205
+
206
+ 2019-11-27 vaiorabbit <http://twitter.com/vaiorabbit>
207
+
208
+ * (macOS) Catching up with ImGui 1.74
209
+
210
+ 2019-11-02 vaiorabbit <http://twitter.com/vaiorabbit>
211
+
212
+ * (Windows) Catching up with ImGui 1.73
213
+
214
+ 2019-10-25 vaiorabbit <http://twitter.com/vaiorabbit>
215
+
216
+ * (macOS) Catching up with ImGui 1.73
217
+
218
+ 2019-09-11 vaiorabbit <http://twitter.com/vaiorabbit>
219
+
220
+ * Revised folder structures
221
+ * Moved some older codes into backup/
222
+
223
+ 2019-09-01 vaiorabbit <http://twitter.com/vaiorabbit>
224
+
225
+ * Design change: Libraries are separated into imgui.rb, imgui_impl_glfw.rb and imgui_impl_opengl2.rb
226
+ * See sample/test_glfw_opengl2.rb for new usage
227
+ * imgui_impl_sdl2.rb, sample/test_sdl2_opengl2.rb, sample/imgui_and_testgl2.rb: Added.
228
+ * Note that imgui_glfw_opengl2.rb will not be supported any more.
229
+
230
+ 2019-08-25 vaiorabbit <http://twitter.com/vaiorabbit>
231
+
232
+ * Revised folder names
233
+
234
+ 2019-08-20 vaiorabbit <http://twitter.com/vaiorabbit>
235
+
236
+ * linux build tweak https://github.com/vaiorabbit/ruby-imgui/pull/1 (Thanks: Jake Vandereay https://github.com/lunarfyre7)
237
+
238
+ 2019-08-03 vaiorabbit <http://twitter.com/vaiorabbit>
239
+
240
+ * (Windows) Catching up with ImGui 1.72
241
+ * `imgui_glfw_opengl2.dll` was built against ruby 2.6.0p0 (2018-12-25 revision 66547) [x64-mingw32].
242
+
243
+ 2019-07-29 vaiorabbit <http://twitter.com/vaiorabbit>
244
+
245
+ * (macOS) Catching up with ImGui 1.72
246
+
247
+ 2019-07-28 vaiorabbit <http://twitter.com/vaiorabbit>
248
+
249
+ * (macOS) Catching up with ImGui 1.71
250
+
251
+ 2019-06-09 vaiorabbit <http://twitter.com/vaiorabbit>
252
+
253
+ * (macOS) Catching up with ImGui 1.70
254
+
255
+ 2019-03-24 vaiorabbit <http://twitter.com/vaiorabbit>
256
+
257
+ * (macOS) Catching up with ImGui 1.69
258
+
259
+ 2019-02-22 vaiorabbit <http://twitter.com/vaiorabbit>
260
+
261
+ * (macOS) Catching up with ImGui 1.68
262
+
263
+ 2019-01-15 vaiorabbit <http://twitter.com/vaiorabbit>
264
+
265
+ * Catching up with ImGui 1.67
266
+
267
+ 2019-01-14 vaiorabbit <http://twitter.com/vaiorabbit>
268
+
269
+ * ImFont, ImFontAtlas (imgui_glfw_opengl2.rb): Added
270
+
271
+ 2019-01-13 vaiorabbit <http://twitter.com/vaiorabbit>
272
+
273
+ * Tested on Windows.
274
+ * cimgui_build.sh, cimgui_build.bat: Added.
275
+
276
+ 2019-01-06 vaiorabbit <http://twitter.com/vaiorabbit>
277
+
278
+ * ImGuiBindings.build_ffi_typedef_map(common.rb): Changed usage
279
+ * imgui_glfw_opengl2.dylib: Specified the terms of use.
280
+
281
+ 2019-01-05 vaiorabbit <http://twitter.com/vaiorabbit>
282
+
283
+ * initial commmit
284
+ * Fixed API names (ex. igShowDemoWindow -> ImGui::ShowDemoWindow)
285
+ * [Fixed] Failed to generate array type member of struct.
286
+ * Added Japanese font loading & rendering example (test.rb)
data/LICENSE.txt CHANGED
File without changes