imgui 1.0.0
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 +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +273 -0
- data/Rakefile +97 -0
- data/api/v1.json +53 -0
- data/ext/CMakeLists.txt +128 -0
- data/ext/Rakefile +31 -0
- data/ext/backend_function_bridge.cpp +180 -0
- data/ext/backend_function_bridge.h +40 -0
- data/ext/build_cimgui.rb +59 -0
- data/ext/extconf.rb +25 -0
- data/ext/glfw_vulkan_bridge.cpp +14 -0
- data/ext/imgui_ruby_build_config.h +17 -0
- data/ext/imgui_ruby_glfw.cpp +73 -0
- data/ext/imgui_ruby_sdl3.cpp +70 -0
- data/ext/imgui_ruby_wgpu.cpp +75 -0
- data/ext/install_cimgui.rb +25 -0
- data/ext/webgpu_function_bridge.cpp +245 -0
- data/generator/api_emitter.rb +164 -0
- data/generator/emitter.rb +317 -0
- data/generator/generate.rb +47 -0
- data/generator/native-dependencies.yml +88 -0
- data/generator/native_dependency_lock.rb +78 -0
- data/generator/native_dependency_snapshot.rb +159 -0
- data/generator/overrides.yml +11 -0
- data/generator/type_mapper.rb +112 -0
- data/generator/update_vendor.rb +30 -0
- data/lib/imgui/api.rb +88 -0
- data/lib/imgui/api_generated.rb +1633 -0
- data/lib/imgui/api_support.rb +144 -0
- data/lib/imgui/backends/glfw.rb +75 -0
- data/lib/imgui/backends/opengl3.rb +44 -0
- data/lib/imgui/backends/sdl3.rb +133 -0
- data/lib/imgui/backends/wgpu.rb +176 -0
- data/lib/imgui/backends.rb +60 -0
- data/lib/imgui/draw_data.rb +43 -0
- data/lib/imgui/dsl.rb +311 -0
- data/lib/imgui/dsl_support.rb +107 -0
- data/lib/imgui/easy_loop.rb +25 -0
- data/lib/imgui/errors.rb +11 -0
- data/lib/imgui/fonts.rb +46 -0
- data/lib/imgui/io.rb +91 -0
- data/lib/imgui/layout.rb +138 -0
- data/lib/imgui/memory_pool.rb +18 -0
- data/lib/imgui/native/enums.rb +2251 -0
- data/lib/imgui/native/functions.rb +1470 -0
- data/lib/imgui/native/structs.rb +1926 -0
- data/lib/imgui/native/typedefs.rb +93 -0
- data/lib/imgui/native.rb +130 -0
- data/lib/imgui/plot/api.rb +273 -0
- data/lib/imgui/plot/native/enums.rb +593 -0
- data/lib/imgui/plot/native/functions.rb +749 -0
- data/lib/imgui/plot/native/structs.rb +363 -0
- data/lib/imgui/plot/native/typedefs.rb +79 -0
- data/lib/imgui/plot.rb +13 -0
- data/lib/imgui/struct_value.rb +33 -0
- data/lib/imgui/style.rb +44 -0
- data/lib/imgui/value.rb +104 -0
- data/lib/imgui/version.rb +5 -0
- data/lib/imgui/widgets.rb +187 -0
- data/lib/imgui.rb +30 -0
- data/rakelib/platform_gem.rake +54 -0
- data/rakelib/source_gem.rake +75 -0
- metadata +129 -0
|
@@ -0,0 +1,1470 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# This file is generated by `rake generate`. Do not edit it manually.
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
module ImGui
|
|
7
|
+
module Native
|
|
8
|
+
attach_function :ImBitVector_Clear, [:pointer], :void
|
|
9
|
+
attach_function :ImBitVector_ClearBit, [:pointer, :int], :void
|
|
10
|
+
attach_function :ImBitVector_Create, [:pointer, :int], :void
|
|
11
|
+
attach_function :ImBitVector_SetBit, [:pointer, :int], :void
|
|
12
|
+
attach_function :ImBitVector_TestBit, [:pointer, :int], :bool
|
|
13
|
+
attach_function :ImColor_HSV, [:pointer, :float, :float, :float, :float], :void
|
|
14
|
+
attach_function :ImColor_ImColor_Float, [:float, :float, :float, :float], :pointer
|
|
15
|
+
attach_function :ImColor_ImColor_Int, [:int, :int, :int, :int], :pointer
|
|
16
|
+
attach_function :ImColor_ImColor_Nil, [], :pointer
|
|
17
|
+
attach_function :ImColor_ImColor_U32, [:uint], :pointer
|
|
18
|
+
attach_function :ImColor_ImColor_Vec4, [ImVec4.by_value], :pointer
|
|
19
|
+
attach_function :ImColor_SetHSV, [:pointer, :float, :float, :float, :float], :void
|
|
20
|
+
attach_function :ImColor_destroy, [:pointer], :void
|
|
21
|
+
attach_function :ImDrawCmd_GetTexID, [:pointer], :ulong_long
|
|
22
|
+
attach_function :ImDrawCmd_ImDrawCmd, [], :pointer
|
|
23
|
+
attach_function :ImDrawCmd_destroy, [:pointer], :void
|
|
24
|
+
attach_function :ImDrawDataBuilder_ImDrawDataBuilder, [], :pointer
|
|
25
|
+
attach_function :ImDrawDataBuilder_destroy, [:pointer], :void
|
|
26
|
+
attach_function :ImDrawData_AddDrawList, [:pointer, :pointer], :void
|
|
27
|
+
attach_function :ImDrawData_Clear, [:pointer], :void
|
|
28
|
+
attach_function :ImDrawData_DeIndexAllBuffers, [:pointer], :void
|
|
29
|
+
attach_function :ImDrawData_ImDrawData, [], :pointer
|
|
30
|
+
attach_function :ImDrawData_ScaleClipRects, [:pointer, ImVec2.by_value], :void
|
|
31
|
+
attach_function :ImDrawData_destroy, [:pointer], :void
|
|
32
|
+
attach_function :ImDrawListSharedData_ImDrawListSharedData, [], :pointer
|
|
33
|
+
attach_function :ImDrawListSharedData_SetCircleTessellationMaxError, [:pointer, :float], :void
|
|
34
|
+
attach_function :ImDrawListSharedData_destroy, [:pointer], :void
|
|
35
|
+
attach_function :ImDrawListSplitter_Clear, [:pointer], :void
|
|
36
|
+
attach_function :ImDrawListSplitter_ClearFreeMemory, [:pointer], :void
|
|
37
|
+
attach_function :ImDrawListSplitter_ImDrawListSplitter, [], :pointer
|
|
38
|
+
attach_function :ImDrawListSplitter_Merge, [:pointer, :pointer], :void
|
|
39
|
+
attach_function :ImDrawListSplitter_SetCurrentChannel, [:pointer, :pointer, :int], :void
|
|
40
|
+
attach_function :ImDrawListSplitter_Split, [:pointer, :pointer, :int], :void
|
|
41
|
+
attach_function :ImDrawListSplitter_destroy, [:pointer], :void
|
|
42
|
+
attach_function :ImDrawList_AddBezierCubic, [:pointer, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, :uint, :float, :int], :void
|
|
43
|
+
attach_function :ImDrawList_AddBezierQuadratic, [:pointer, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, :uint, :float, :int], :void
|
|
44
|
+
attach_function :ImDrawList_AddCallback, [:pointer, :ImDrawCallback, :pointer, :size_t], :void
|
|
45
|
+
attach_function :ImDrawList_AddCircle, [:pointer, ImVec2.by_value, :float, :uint, :int, :float], :void
|
|
46
|
+
attach_function :ImDrawList_AddCircleFilled, [:pointer, ImVec2.by_value, :float, :uint, :int], :void
|
|
47
|
+
attach_function :ImDrawList_AddConcavePolyFilled, [:pointer, :pointer, :int, :uint], :void
|
|
48
|
+
attach_function :ImDrawList_AddConvexPolyFilled, [:pointer, :pointer, :int, :uint], :void
|
|
49
|
+
attach_function :ImDrawList_AddDrawCmd, [:pointer], :void
|
|
50
|
+
attach_function :ImDrawList_AddEllipse, [:pointer, ImVec2.by_value, ImVec2.by_value, :uint, :float, :int, :float], :void
|
|
51
|
+
attach_function :ImDrawList_AddEllipseFilled, [:pointer, ImVec2.by_value, ImVec2.by_value, :uint, :float, :int], :void
|
|
52
|
+
attach_function :ImDrawList_AddImage, [:pointer, :ulong_long, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, :uint], :void
|
|
53
|
+
attach_function :ImDrawList_AddImageQuad, [:pointer, :ulong_long, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, :uint], :void
|
|
54
|
+
attach_function :ImDrawList_AddImageRounded, [:pointer, :ulong_long, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, :uint, :float, :int], :void
|
|
55
|
+
attach_function :ImDrawList_AddLine, [:pointer, ImVec2.by_value, ImVec2.by_value, :uint, :float], :void
|
|
56
|
+
attach_function :ImDrawList_AddNgon, [:pointer, ImVec2.by_value, :float, :uint, :int, :float], :void
|
|
57
|
+
attach_function :ImDrawList_AddNgonFilled, [:pointer, ImVec2.by_value, :float, :uint, :int], :void
|
|
58
|
+
attach_function :ImDrawList_AddPolyline, [:pointer, :pointer, :int, :uint, :int, :float], :void
|
|
59
|
+
attach_function :ImDrawList_AddQuad, [:pointer, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, :uint, :float], :void
|
|
60
|
+
attach_function :ImDrawList_AddQuadFilled, [:pointer, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, :uint], :void
|
|
61
|
+
attach_function :ImDrawList_AddRect, [:pointer, ImVec2.by_value, ImVec2.by_value, :uint, :float, :int, :float], :void
|
|
62
|
+
attach_function :ImDrawList_AddRectFilled, [:pointer, ImVec2.by_value, ImVec2.by_value, :uint, :float, :int], :void
|
|
63
|
+
attach_function :ImDrawList_AddRectFilledMultiColor, [:pointer, ImVec2.by_value, ImVec2.by_value, :uint, :uint, :uint, :uint], :void
|
|
64
|
+
attach_function :ImDrawList_AddText_FontPtr, [:pointer, :pointer, :float, ImVec2.by_value, :uint, :string, :string, :float, :pointer], :void
|
|
65
|
+
attach_function :ImDrawList_AddText_Vec2, [:pointer, ImVec2.by_value, :uint, :string, :string], :void
|
|
66
|
+
attach_function :ImDrawList_AddTriangle, [:pointer, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, :uint, :float], :void
|
|
67
|
+
attach_function :ImDrawList_AddTriangleFilled, [:pointer, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, :uint], :void
|
|
68
|
+
attach_function :ImDrawList_ChannelsMerge, [:pointer], :void
|
|
69
|
+
attach_function :ImDrawList_ChannelsSetCurrent, [:pointer, :int], :void
|
|
70
|
+
attach_function :ImDrawList_ChannelsSplit, [:pointer, :int], :void
|
|
71
|
+
attach_function :ImDrawList_CloneOutput, [:pointer], :pointer
|
|
72
|
+
attach_function :ImDrawList_GetClipRectMax, [:pointer, :pointer], :void
|
|
73
|
+
attach_function :ImDrawList_GetClipRectMin, [:pointer, :pointer], :void
|
|
74
|
+
attach_function :ImDrawList_ImDrawList, [:pointer], :pointer
|
|
75
|
+
attach_function :ImDrawList_PathArcTo, [:pointer, ImVec2.by_value, :float, :float, :float, :int], :void
|
|
76
|
+
attach_function :ImDrawList_PathArcToFast, [:pointer, ImVec2.by_value, :float, :int, :int], :void
|
|
77
|
+
attach_function :ImDrawList_PathBezierCubicCurveTo, [:pointer, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, :int], :void
|
|
78
|
+
attach_function :ImDrawList_PathBezierQuadraticCurveTo, [:pointer, ImVec2.by_value, ImVec2.by_value, :int], :void
|
|
79
|
+
attach_function :ImDrawList_PathClear, [:pointer], :void
|
|
80
|
+
attach_function :ImDrawList_PathEllipticalArcTo, [:pointer, ImVec2.by_value, ImVec2.by_value, :float, :float, :float, :int], :void
|
|
81
|
+
attach_function :ImDrawList_PathFillConcave, [:pointer, :uint], :void
|
|
82
|
+
attach_function :ImDrawList_PathFillConvex, [:pointer, :uint], :void
|
|
83
|
+
attach_function :ImDrawList_PathLineTo, [:pointer, ImVec2.by_value], :void
|
|
84
|
+
attach_function :ImDrawList_PathLineToMergeDuplicate, [:pointer, ImVec2.by_value], :void
|
|
85
|
+
attach_function :ImDrawList_PathRect, [:pointer, ImVec2.by_value, ImVec2.by_value, :float, :int], :void
|
|
86
|
+
attach_function :ImDrawList_PathStroke, [:pointer, :uint, :int, :float], :void
|
|
87
|
+
attach_function :ImDrawList_PopClipRect, [:pointer], :void
|
|
88
|
+
attach_function :ImDrawList_PopTextureID, [:pointer], :void
|
|
89
|
+
attach_function :ImDrawList_PrimQuadUV, [:pointer, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, :uint], :void
|
|
90
|
+
attach_function :ImDrawList_PrimRect, [:pointer, ImVec2.by_value, ImVec2.by_value, :uint], :void
|
|
91
|
+
attach_function :ImDrawList_PrimRectUV, [:pointer, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, :uint], :void
|
|
92
|
+
attach_function :ImDrawList_PrimReserve, [:pointer, :int, :int], :void
|
|
93
|
+
attach_function :ImDrawList_PrimUnreserve, [:pointer, :int, :int], :void
|
|
94
|
+
attach_function :ImDrawList_PrimVtx, [:pointer, ImVec2.by_value, ImVec2.by_value, :uint], :void
|
|
95
|
+
attach_function :ImDrawList_PrimWriteIdx, [:pointer, :ushort], :void
|
|
96
|
+
attach_function :ImDrawList_PrimWriteVtx, [:pointer, ImVec2.by_value, ImVec2.by_value, :uint], :void
|
|
97
|
+
attach_function :ImDrawList_PushClipRect, [:pointer, ImVec2.by_value, ImVec2.by_value, :bool], :void
|
|
98
|
+
attach_function :ImDrawList_PushClipRectFullScreen, [:pointer], :void
|
|
99
|
+
attach_function :ImDrawList_PushTextureID, [:pointer, :ulong_long], :void
|
|
100
|
+
attach_function :ImDrawList__CalcCircleAutoSegmentCount, [:pointer, :float], :int
|
|
101
|
+
attach_function :ImDrawList__ClearFreeMemory, [:pointer], :void
|
|
102
|
+
attach_function :ImDrawList__OnChangedClipRect, [:pointer], :void
|
|
103
|
+
attach_function :ImDrawList__OnChangedTextureID, [:pointer], :void
|
|
104
|
+
attach_function :ImDrawList__OnChangedVtxOffset, [:pointer], :void
|
|
105
|
+
attach_function :ImDrawList__PathArcToFastEx, [:pointer, ImVec2.by_value, :float, :int, :int, :int], :void
|
|
106
|
+
attach_function :ImDrawList__PathArcToN, [:pointer, ImVec2.by_value, :float, :float, :float, :int], :void
|
|
107
|
+
attach_function :ImDrawList__PopUnusedDrawCmd, [:pointer], :void
|
|
108
|
+
attach_function :ImDrawList__ResetForNewFrame, [:pointer], :void
|
|
109
|
+
attach_function :ImDrawList__SetTextureID, [:pointer, :ulong_long], :void
|
|
110
|
+
attach_function :ImDrawList__TryMergeDrawCmds, [:pointer], :void
|
|
111
|
+
attach_function :ImDrawList_destroy, [:pointer], :void
|
|
112
|
+
attach_function :ImFontAtlasCustomRect_ImFontAtlasCustomRect, [], :pointer
|
|
113
|
+
attach_function :ImFontAtlasCustomRect_IsPacked, [:pointer], :bool
|
|
114
|
+
attach_function :ImFontAtlasCustomRect_destroy, [:pointer], :void
|
|
115
|
+
attach_function :ImFontAtlas_AddCustomRectFontGlyph, [:pointer, :pointer, :ushort, :int, :int, :float, ImVec2.by_value], :int
|
|
116
|
+
attach_function :ImFontAtlas_AddCustomRectRegular, [:pointer, :int, :int], :int
|
|
117
|
+
attach_function :ImFontAtlas_AddFont, [:pointer, :pointer], :pointer
|
|
118
|
+
attach_function :ImFontAtlas_AddFontDefault, [:pointer, :pointer], :pointer
|
|
119
|
+
attach_function :ImFontAtlas_AddFontFromFileTTF, [:pointer, :string, :float, :pointer, :pointer], :pointer
|
|
120
|
+
attach_function :ImFontAtlas_AddFontFromMemoryCompressedBase85TTF, [:pointer, :string, :float, :pointer, :pointer], :pointer
|
|
121
|
+
attach_function :ImFontAtlas_AddFontFromMemoryCompressedTTF, [:pointer, :pointer, :int, :float, :pointer, :pointer], :pointer
|
|
122
|
+
attach_function :ImFontAtlas_AddFontFromMemoryTTF, [:pointer, :pointer, :int, :float, :pointer, :pointer], :pointer
|
|
123
|
+
attach_function :ImFontAtlas_Build, [:pointer], :bool
|
|
124
|
+
attach_function :ImFontAtlas_CalcCustomRectUV, [:pointer, :pointer, :pointer, :pointer], :void
|
|
125
|
+
attach_function :ImFontAtlas_Clear, [:pointer], :void
|
|
126
|
+
attach_function :ImFontAtlas_ClearFonts, [:pointer], :void
|
|
127
|
+
attach_function :ImFontAtlas_ClearInputData, [:pointer], :void
|
|
128
|
+
attach_function :ImFontAtlas_ClearTexData, [:pointer], :void
|
|
129
|
+
attach_function :ImFontAtlas_GetCustomRectByIndex, [:pointer, :int], :pointer
|
|
130
|
+
attach_function :ImFontAtlas_GetGlyphRangesChineseFull, [:pointer], :pointer
|
|
131
|
+
attach_function :ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon, [:pointer], :pointer
|
|
132
|
+
attach_function :ImFontAtlas_GetGlyphRangesCyrillic, [:pointer], :pointer
|
|
133
|
+
attach_function :ImFontAtlas_GetGlyphRangesDefault, [:pointer], :pointer
|
|
134
|
+
attach_function :ImFontAtlas_GetGlyphRangesGreek, [:pointer], :pointer
|
|
135
|
+
attach_function :ImFontAtlas_GetGlyphRangesJapanese, [:pointer], :pointer
|
|
136
|
+
attach_function :ImFontAtlas_GetGlyphRangesKorean, [:pointer], :pointer
|
|
137
|
+
attach_function :ImFontAtlas_GetGlyphRangesThai, [:pointer], :pointer
|
|
138
|
+
attach_function :ImFontAtlas_GetGlyphRangesVietnamese, [:pointer], :pointer
|
|
139
|
+
attach_function :ImFontAtlas_GetTexDataAsAlpha8, [:pointer, :pointer, :pointer, :pointer, :pointer], :void
|
|
140
|
+
attach_function :ImFontAtlas_GetTexDataAsRGBA32, [:pointer, :pointer, :pointer, :pointer, :pointer], :void
|
|
141
|
+
attach_function :ImFontAtlas_ImFontAtlas, [], :pointer
|
|
142
|
+
attach_function :ImFontAtlas_IsBuilt, [:pointer], :bool
|
|
143
|
+
attach_function :ImFontAtlas_SetTexID, [:pointer, :ulong_long], :void
|
|
144
|
+
attach_function :ImFontAtlas_destroy, [:pointer], :void
|
|
145
|
+
attach_function :ImFontConfig_ImFontConfig, [], :pointer
|
|
146
|
+
attach_function :ImFontConfig_destroy, [:pointer], :void
|
|
147
|
+
attach_function :ImFontGlyphRangesBuilder_AddChar, [:pointer, :ushort], :void
|
|
148
|
+
attach_function :ImFontGlyphRangesBuilder_AddRanges, [:pointer, :pointer], :void
|
|
149
|
+
attach_function :ImFontGlyphRangesBuilder_AddText, [:pointer, :string, :string], :void
|
|
150
|
+
attach_function :ImFontGlyphRangesBuilder_BuildRanges, [:pointer, :pointer], :void
|
|
151
|
+
attach_function :ImFontGlyphRangesBuilder_Clear, [:pointer], :void
|
|
152
|
+
attach_function :ImFontGlyphRangesBuilder_GetBit, [:pointer, :size_t], :bool
|
|
153
|
+
attach_function :ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder, [], :pointer
|
|
154
|
+
attach_function :ImFontGlyphRangesBuilder_SetBit, [:pointer, :size_t], :void
|
|
155
|
+
attach_function :ImFontGlyphRangesBuilder_destroy, [:pointer], :void
|
|
156
|
+
attach_function :ImFont_AddGlyph, [:pointer, :pointer, :ushort, :float, :float, :float, :float, :float, :float, :float, :float, :float], :void
|
|
157
|
+
attach_function :ImFont_AddRemapChar, [:pointer, :ushort, :ushort, :bool], :void
|
|
158
|
+
attach_function :ImFont_BuildLookupTable, [:pointer], :void
|
|
159
|
+
attach_function :ImFont_CalcTextSizeA, [:pointer, :pointer, :float, :float, :float, :string, :string, :pointer], :void
|
|
160
|
+
attach_function :ImFont_CalcWordWrapPositionA, [:pointer, :float, :string, :string, :float], :string
|
|
161
|
+
attach_function :ImFont_ClearOutputData, [:pointer], :void
|
|
162
|
+
attach_function :ImFont_FindGlyph, [:pointer, :ushort], :pointer
|
|
163
|
+
attach_function :ImFont_FindGlyphNoFallback, [:pointer, :ushort], :pointer
|
|
164
|
+
attach_function :ImFont_GetCharAdvance, [:pointer, :ushort], :float
|
|
165
|
+
attach_function :ImFont_GetDebugName, [:pointer], :string
|
|
166
|
+
attach_function :ImFont_GrowIndex, [:pointer, :int], :void
|
|
167
|
+
attach_function :ImFont_ImFont, [], :pointer
|
|
168
|
+
attach_function :ImFont_IsGlyphRangeUnused, [:pointer, :uint, :uint], :bool
|
|
169
|
+
attach_function :ImFont_IsLoaded, [:pointer], :bool
|
|
170
|
+
attach_function :ImFont_RenderChar, [:pointer, :pointer, :float, ImVec2.by_value, :uint, :ushort], :void
|
|
171
|
+
attach_function :ImFont_RenderText, [:pointer, :pointer, :float, ImVec2.by_value, :uint, ImVec4.by_value, :string, :string, :float, :bool], :void
|
|
172
|
+
attach_function :ImFont_destroy, [:pointer], :void
|
|
173
|
+
attach_function :ImGuiBoxSelectState_ImGuiBoxSelectState, [], :pointer
|
|
174
|
+
attach_function :ImGuiBoxSelectState_destroy, [:pointer], :void
|
|
175
|
+
attach_function :ImGuiComboPreviewData_ImGuiComboPreviewData, [], :pointer
|
|
176
|
+
attach_function :ImGuiComboPreviewData_destroy, [:pointer], :void
|
|
177
|
+
attach_function :ImGuiContextHook_ImGuiContextHook, [], :pointer
|
|
178
|
+
attach_function :ImGuiContextHook_destroy, [:pointer], :void
|
|
179
|
+
attach_function :ImGuiContext_ImGuiContext, [:pointer], :pointer
|
|
180
|
+
attach_function :ImGuiContext_destroy, [:pointer], :void
|
|
181
|
+
attach_function :ImGuiDebugAllocInfo_ImGuiDebugAllocInfo, [], :pointer
|
|
182
|
+
attach_function :ImGuiDebugAllocInfo_destroy, [:pointer], :void
|
|
183
|
+
attach_function :ImGuiDockContext_ImGuiDockContext, [], :pointer
|
|
184
|
+
attach_function :ImGuiDockContext_destroy, [:pointer], :void
|
|
185
|
+
attach_function :ImGuiDockNode_ImGuiDockNode, [:uint], :pointer
|
|
186
|
+
attach_function :ImGuiDockNode_IsCentralNode, [:pointer], :bool
|
|
187
|
+
attach_function :ImGuiDockNode_IsDockSpace, [:pointer], :bool
|
|
188
|
+
attach_function :ImGuiDockNode_IsEmpty, [:pointer], :bool
|
|
189
|
+
attach_function :ImGuiDockNode_IsFloatingNode, [:pointer], :bool
|
|
190
|
+
attach_function :ImGuiDockNode_IsHiddenTabBar, [:pointer], :bool
|
|
191
|
+
attach_function :ImGuiDockNode_IsLeafNode, [:pointer], :bool
|
|
192
|
+
attach_function :ImGuiDockNode_IsNoTabBar, [:pointer], :bool
|
|
193
|
+
attach_function :ImGuiDockNode_IsRootNode, [:pointer], :bool
|
|
194
|
+
attach_function :ImGuiDockNode_IsSplitNode, [:pointer], :bool
|
|
195
|
+
attach_function :ImGuiDockNode_Rect, [:pointer, :pointer], :void
|
|
196
|
+
attach_function :ImGuiDockNode_SetLocalFlags, [:pointer, :int], :void
|
|
197
|
+
attach_function :ImGuiDockNode_UpdateMergedFlags, [:pointer], :void
|
|
198
|
+
attach_function :ImGuiDockNode_destroy, [:pointer], :void
|
|
199
|
+
attach_function :ImGuiErrorRecoveryState_ImGuiErrorRecoveryState, [], :pointer
|
|
200
|
+
attach_function :ImGuiErrorRecoveryState_destroy, [:pointer], :void
|
|
201
|
+
attach_function :ImGuiIDStackTool_ImGuiIDStackTool, [], :pointer
|
|
202
|
+
attach_function :ImGuiIDStackTool_destroy, [:pointer], :void
|
|
203
|
+
attach_function :ImGuiIO_AddFocusEvent, [:pointer, :bool], :void
|
|
204
|
+
attach_function :ImGuiIO_AddInputCharacter, [:pointer, :uint], :void
|
|
205
|
+
attach_function :ImGuiIO_AddInputCharacterUTF16, [:pointer, :ushort], :void
|
|
206
|
+
attach_function :ImGuiIO_AddInputCharactersUTF8, [:pointer, :string], :void
|
|
207
|
+
attach_function :ImGuiIO_AddKeyAnalogEvent, [:pointer, :int, :bool, :float], :void
|
|
208
|
+
attach_function :ImGuiIO_AddKeyEvent, [:pointer, :int, :bool], :void
|
|
209
|
+
attach_function :ImGuiIO_AddMouseButtonEvent, [:pointer, :int, :bool], :void
|
|
210
|
+
attach_function :ImGuiIO_AddMousePosEvent, [:pointer, :float, :float], :void
|
|
211
|
+
attach_function :ImGuiIO_AddMouseSourceEvent, [:pointer, :int], :void
|
|
212
|
+
attach_function :ImGuiIO_AddMouseViewportEvent, [:pointer, :uint], :void
|
|
213
|
+
attach_function :ImGuiIO_AddMouseWheelEvent, [:pointer, :float, :float], :void
|
|
214
|
+
attach_function :ImGuiIO_ClearEventsQueue, [:pointer], :void
|
|
215
|
+
attach_function :ImGuiIO_ClearInputKeys, [:pointer], :void
|
|
216
|
+
attach_function :ImGuiIO_ClearInputMouse, [:pointer], :void
|
|
217
|
+
attach_function :ImGuiIO_ImGuiIO, [], :pointer
|
|
218
|
+
attach_function :ImGuiIO_SetAppAcceptingEvents, [:pointer, :bool], :void
|
|
219
|
+
attach_function :ImGuiIO_SetKeyEventNativeData, [:pointer, :int, :int, :int, :int], :void
|
|
220
|
+
attach_function :ImGuiIO_destroy, [:pointer], :void
|
|
221
|
+
attach_function :ImGuiInputEvent_ImGuiInputEvent, [], :pointer
|
|
222
|
+
attach_function :ImGuiInputEvent_destroy, [:pointer], :void
|
|
223
|
+
attach_function :ImGuiInputTextCallbackData_ClearSelection, [:pointer], :void
|
|
224
|
+
attach_function :ImGuiInputTextCallbackData_DeleteChars, [:pointer, :int, :int], :void
|
|
225
|
+
attach_function :ImGuiInputTextCallbackData_HasSelection, [:pointer], :bool
|
|
226
|
+
attach_function :ImGuiInputTextCallbackData_ImGuiInputTextCallbackData, [], :pointer
|
|
227
|
+
attach_function :ImGuiInputTextCallbackData_InsertChars, [:pointer, :int, :string, :string], :void
|
|
228
|
+
attach_function :ImGuiInputTextCallbackData_SelectAll, [:pointer], :void
|
|
229
|
+
attach_function :ImGuiInputTextCallbackData_destroy, [:pointer], :void
|
|
230
|
+
attach_function :ImGuiInputTextDeactivatedState_ClearFreeMemory, [:pointer], :void
|
|
231
|
+
attach_function :ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState, [], :pointer
|
|
232
|
+
attach_function :ImGuiInputTextDeactivatedState_destroy, [:pointer], :void
|
|
233
|
+
attach_function :ImGuiInputTextState_ClearFreeMemory, [:pointer], :void
|
|
234
|
+
attach_function :ImGuiInputTextState_ClearSelection, [:pointer], :void
|
|
235
|
+
attach_function :ImGuiInputTextState_ClearText, [:pointer], :void
|
|
236
|
+
attach_function :ImGuiInputTextState_CursorAnimReset, [:pointer], :void
|
|
237
|
+
attach_function :ImGuiInputTextState_CursorClamp, [:pointer], :void
|
|
238
|
+
attach_function :ImGuiInputTextState_GetCursorPos, [:pointer], :int
|
|
239
|
+
attach_function :ImGuiInputTextState_GetSelectionEnd, [:pointer], :int
|
|
240
|
+
attach_function :ImGuiInputTextState_GetSelectionStart, [:pointer], :int
|
|
241
|
+
attach_function :ImGuiInputTextState_HasSelection, [:pointer], :bool
|
|
242
|
+
attach_function :ImGuiInputTextState_ImGuiInputTextState, [], :pointer
|
|
243
|
+
attach_function :ImGuiInputTextState_OnCharPressed, [:pointer, :uint], :void
|
|
244
|
+
attach_function :ImGuiInputTextState_OnKeyPressed, [:pointer, :int], :void
|
|
245
|
+
attach_function :ImGuiInputTextState_ReloadUserBufAndKeepSelection, [:pointer], :void
|
|
246
|
+
attach_function :ImGuiInputTextState_ReloadUserBufAndMoveToEnd, [:pointer], :void
|
|
247
|
+
attach_function :ImGuiInputTextState_ReloadUserBufAndSelectAll, [:pointer], :void
|
|
248
|
+
attach_function :ImGuiInputTextState_SelectAll, [:pointer], :void
|
|
249
|
+
attach_function :ImGuiInputTextState_destroy, [:pointer], :void
|
|
250
|
+
attach_function :ImGuiKeyOwnerData_ImGuiKeyOwnerData, [], :pointer
|
|
251
|
+
attach_function :ImGuiKeyOwnerData_destroy, [:pointer], :void
|
|
252
|
+
attach_function :ImGuiKeyRoutingData_ImGuiKeyRoutingData, [], :pointer
|
|
253
|
+
attach_function :ImGuiKeyRoutingData_destroy, [:pointer], :void
|
|
254
|
+
attach_function :ImGuiKeyRoutingTable_Clear, [:pointer], :void
|
|
255
|
+
attach_function :ImGuiKeyRoutingTable_ImGuiKeyRoutingTable, [], :pointer
|
|
256
|
+
attach_function :ImGuiKeyRoutingTable_destroy, [:pointer], :void
|
|
257
|
+
attach_function :ImGuiLastItemData_ImGuiLastItemData, [], :pointer
|
|
258
|
+
attach_function :ImGuiLastItemData_destroy, [:pointer], :void
|
|
259
|
+
attach_function :ImGuiListClipperData_ImGuiListClipperData, [], :pointer
|
|
260
|
+
attach_function :ImGuiListClipperData_Reset, [:pointer, :pointer], :void
|
|
261
|
+
attach_function :ImGuiListClipperData_destroy, [:pointer], :void
|
|
262
|
+
attach_function :ImGuiListClipperRange_FromIndices, [:int, :int], ImGuiListClipperRange.by_value
|
|
263
|
+
attach_function :ImGuiListClipperRange_FromPositions, [:float, :float, :int, :int], ImGuiListClipperRange.by_value
|
|
264
|
+
attach_function :ImGuiListClipper_Begin, [:pointer, :int, :float], :void
|
|
265
|
+
attach_function :ImGuiListClipper_End, [:pointer], :void
|
|
266
|
+
attach_function :ImGuiListClipper_ImGuiListClipper, [], :pointer
|
|
267
|
+
attach_function :ImGuiListClipper_IncludeItemByIndex, [:pointer, :int], :void
|
|
268
|
+
attach_function :ImGuiListClipper_IncludeItemsByIndex, [:pointer, :int, :int], :void
|
|
269
|
+
attach_function :ImGuiListClipper_SeekCursorForItem, [:pointer, :int], :void
|
|
270
|
+
attach_function :ImGuiListClipper_Step, [:pointer], :bool
|
|
271
|
+
attach_function :ImGuiListClipper_destroy, [:pointer], :void
|
|
272
|
+
attach_function :ImGuiMenuColumns_CalcNextTotalWidth, [:pointer, :bool], :void
|
|
273
|
+
attach_function :ImGuiMenuColumns_DeclColumns, [:pointer, :float, :float, :float, :float], :float
|
|
274
|
+
attach_function :ImGuiMenuColumns_ImGuiMenuColumns, [], :pointer
|
|
275
|
+
attach_function :ImGuiMenuColumns_Update, [:pointer, :float, :bool], :void
|
|
276
|
+
attach_function :ImGuiMenuColumns_destroy, [:pointer], :void
|
|
277
|
+
attach_function :ImGuiMultiSelectState_ImGuiMultiSelectState, [], :pointer
|
|
278
|
+
attach_function :ImGuiMultiSelectState_destroy, [:pointer], :void
|
|
279
|
+
attach_function :ImGuiMultiSelectTempData_Clear, [:pointer], :void
|
|
280
|
+
attach_function :ImGuiMultiSelectTempData_ClearIO, [:pointer], :void
|
|
281
|
+
attach_function :ImGuiMultiSelectTempData_ImGuiMultiSelectTempData, [], :pointer
|
|
282
|
+
attach_function :ImGuiMultiSelectTempData_destroy, [:pointer], :void
|
|
283
|
+
attach_function :ImGuiNavItemData_Clear, [:pointer], :void
|
|
284
|
+
attach_function :ImGuiNavItemData_ImGuiNavItemData, [], :pointer
|
|
285
|
+
attach_function :ImGuiNavItemData_destroy, [:pointer], :void
|
|
286
|
+
attach_function :ImGuiNextItemData_ClearFlags, [:pointer], :void
|
|
287
|
+
attach_function :ImGuiNextItemData_ImGuiNextItemData, [], :pointer
|
|
288
|
+
attach_function :ImGuiNextItemData_destroy, [:pointer], :void
|
|
289
|
+
attach_function :ImGuiNextWindowData_ClearFlags, [:pointer], :void
|
|
290
|
+
attach_function :ImGuiNextWindowData_ImGuiNextWindowData, [], :pointer
|
|
291
|
+
attach_function :ImGuiNextWindowData_destroy, [:pointer], :void
|
|
292
|
+
attach_function :ImGuiOldColumnData_ImGuiOldColumnData, [], :pointer
|
|
293
|
+
attach_function :ImGuiOldColumnData_destroy, [:pointer], :void
|
|
294
|
+
attach_function :ImGuiOldColumns_ImGuiOldColumns, [], :pointer
|
|
295
|
+
attach_function :ImGuiOldColumns_destroy, [:pointer], :void
|
|
296
|
+
attach_function :ImGuiOnceUponAFrame_ImGuiOnceUponAFrame, [], :pointer
|
|
297
|
+
attach_function :ImGuiOnceUponAFrame_destroy, [:pointer], :void
|
|
298
|
+
attach_function :ImGuiPayload_Clear, [:pointer], :void
|
|
299
|
+
attach_function :ImGuiPayload_ImGuiPayload, [], :pointer
|
|
300
|
+
attach_function :ImGuiPayload_IsDataType, [:pointer, :string], :bool
|
|
301
|
+
attach_function :ImGuiPayload_IsDelivery, [:pointer], :bool
|
|
302
|
+
attach_function :ImGuiPayload_IsPreview, [:pointer], :bool
|
|
303
|
+
attach_function :ImGuiPayload_destroy, [:pointer], :void
|
|
304
|
+
attach_function :ImGuiPlatformIO_ImGuiPlatformIO, [], :pointer
|
|
305
|
+
attach_function :ImGuiPlatformIO_destroy, [:pointer], :void
|
|
306
|
+
attach_function :ImGuiPlatformImeData_ImGuiPlatformImeData, [], :pointer
|
|
307
|
+
attach_function :ImGuiPlatformImeData_destroy, [:pointer], :void
|
|
308
|
+
attach_function :ImGuiPlatformMonitor_ImGuiPlatformMonitor, [], :pointer
|
|
309
|
+
attach_function :ImGuiPlatformMonitor_destroy, [:pointer], :void
|
|
310
|
+
attach_function :ImGuiPopupData_ImGuiPopupData, [], :pointer
|
|
311
|
+
attach_function :ImGuiPopupData_destroy, [:pointer], :void
|
|
312
|
+
attach_function :ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int, [:int], :pointer
|
|
313
|
+
attach_function :ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr, [:pointer], :pointer
|
|
314
|
+
attach_function :ImGuiPtrOrIndex_destroy, [:pointer], :void
|
|
315
|
+
attach_function :ImGuiSelectionBasicStorage_ApplyRequests, [:pointer, :pointer], :void
|
|
316
|
+
attach_function :ImGuiSelectionBasicStorage_Clear, [:pointer], :void
|
|
317
|
+
attach_function :ImGuiSelectionBasicStorage_Contains, [:pointer, :uint], :bool
|
|
318
|
+
attach_function :ImGuiSelectionBasicStorage_GetNextSelectedItem, [:pointer, :pointer, :pointer], :bool
|
|
319
|
+
attach_function :ImGuiSelectionBasicStorage_GetStorageIdFromIndex, [:pointer, :int], :uint
|
|
320
|
+
attach_function :ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage, [], :pointer
|
|
321
|
+
attach_function :ImGuiSelectionBasicStorage_SetItemSelected, [:pointer, :uint, :bool], :void
|
|
322
|
+
attach_function :ImGuiSelectionBasicStorage_Swap, [:pointer, :pointer], :void
|
|
323
|
+
attach_function :ImGuiSelectionBasicStorage_destroy, [:pointer], :void
|
|
324
|
+
attach_function :ImGuiSelectionExternalStorage_ApplyRequests, [:pointer, :pointer], :void
|
|
325
|
+
attach_function :ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage, [], :pointer
|
|
326
|
+
attach_function :ImGuiSelectionExternalStorage_destroy, [:pointer], :void
|
|
327
|
+
attach_function :ImGuiSettingsHandler_ImGuiSettingsHandler, [], :pointer
|
|
328
|
+
attach_function :ImGuiSettingsHandler_destroy, [:pointer], :void
|
|
329
|
+
attach_function :ImGuiStackLevelInfo_ImGuiStackLevelInfo, [], :pointer
|
|
330
|
+
attach_function :ImGuiStackLevelInfo_destroy, [:pointer], :void
|
|
331
|
+
attach_function :ImGuiStoragePair_ImGuiStoragePair_Float, [:uint, :float], :pointer
|
|
332
|
+
attach_function :ImGuiStoragePair_ImGuiStoragePair_Int, [:uint, :int], :pointer
|
|
333
|
+
attach_function :ImGuiStoragePair_ImGuiStoragePair_Ptr, [:uint, :pointer], :pointer
|
|
334
|
+
attach_function :ImGuiStoragePair_destroy, [:pointer], :void
|
|
335
|
+
attach_function :ImGuiStorage_BuildSortByKey, [:pointer], :void
|
|
336
|
+
attach_function :ImGuiStorage_Clear, [:pointer], :void
|
|
337
|
+
attach_function :ImGuiStorage_GetBool, [:pointer, :uint, :bool], :bool
|
|
338
|
+
attach_function :ImGuiStorage_GetBoolRef, [:pointer, :uint, :bool], :pointer
|
|
339
|
+
attach_function :ImGuiStorage_GetFloat, [:pointer, :uint, :float], :float
|
|
340
|
+
attach_function :ImGuiStorage_GetFloatRef, [:pointer, :uint, :float], :pointer
|
|
341
|
+
attach_function :ImGuiStorage_GetInt, [:pointer, :uint, :int], :int
|
|
342
|
+
attach_function :ImGuiStorage_GetIntRef, [:pointer, :uint, :int], :pointer
|
|
343
|
+
attach_function :ImGuiStorage_GetVoidPtr, [:pointer, :uint], :pointer
|
|
344
|
+
attach_function :ImGuiStorage_GetVoidPtrRef, [:pointer, :uint, :pointer], :pointer
|
|
345
|
+
attach_function :ImGuiStorage_SetAllInt, [:pointer, :int], :void
|
|
346
|
+
attach_function :ImGuiStorage_SetBool, [:pointer, :uint, :bool], :void
|
|
347
|
+
attach_function :ImGuiStorage_SetFloat, [:pointer, :uint, :float], :void
|
|
348
|
+
attach_function :ImGuiStorage_SetInt, [:pointer, :uint, :int], :void
|
|
349
|
+
attach_function :ImGuiStorage_SetVoidPtr, [:pointer, :uint, :pointer], :void
|
|
350
|
+
attach_function :ImGuiStyleMod_ImGuiStyleMod_Float, [:int, :float], :pointer
|
|
351
|
+
attach_function :ImGuiStyleMod_ImGuiStyleMod_Int, [:int, :int], :pointer
|
|
352
|
+
attach_function :ImGuiStyleMod_ImGuiStyleMod_Vec2, [:int, ImVec2.by_value], :pointer
|
|
353
|
+
attach_function :ImGuiStyleMod_destroy, [:pointer], :void
|
|
354
|
+
attach_function :ImGuiStyleVarInfo_GetVarPtr, [:pointer, :pointer], :pointer
|
|
355
|
+
attach_function :ImGuiStyle_ImGuiStyle, [], :pointer
|
|
356
|
+
attach_function :ImGuiStyle_ScaleAllSizes, [:pointer, :float], :void
|
|
357
|
+
attach_function :ImGuiStyle_destroy, [:pointer], :void
|
|
358
|
+
attach_function :ImGuiTabBar_ImGuiTabBar, [], :pointer
|
|
359
|
+
attach_function :ImGuiTabBar_destroy, [:pointer], :void
|
|
360
|
+
attach_function :ImGuiTabItem_ImGuiTabItem, [], :pointer
|
|
361
|
+
attach_function :ImGuiTabItem_destroy, [:pointer], :void
|
|
362
|
+
attach_function :ImGuiTableColumnSettings_ImGuiTableColumnSettings, [], :pointer
|
|
363
|
+
attach_function :ImGuiTableColumnSettings_destroy, [:pointer], :void
|
|
364
|
+
attach_function :ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs, [], :pointer
|
|
365
|
+
attach_function :ImGuiTableColumnSortSpecs_destroy, [:pointer], :void
|
|
366
|
+
attach_function :ImGuiTableColumn_ImGuiTableColumn, [], :pointer
|
|
367
|
+
attach_function :ImGuiTableColumn_destroy, [:pointer], :void
|
|
368
|
+
attach_function :ImGuiTableInstanceData_ImGuiTableInstanceData, [], :pointer
|
|
369
|
+
attach_function :ImGuiTableInstanceData_destroy, [:pointer], :void
|
|
370
|
+
attach_function :ImGuiTableSettings_GetColumnSettings, [:pointer], :pointer
|
|
371
|
+
attach_function :ImGuiTableSettings_ImGuiTableSettings, [], :pointer
|
|
372
|
+
attach_function :ImGuiTableSettings_destroy, [:pointer], :void
|
|
373
|
+
attach_function :ImGuiTableSortSpecs_ImGuiTableSortSpecs, [], :pointer
|
|
374
|
+
attach_function :ImGuiTableSortSpecs_destroy, [:pointer], :void
|
|
375
|
+
attach_function :ImGuiTableTempData_ImGuiTableTempData, [], :pointer
|
|
376
|
+
attach_function :ImGuiTableTempData_destroy, [:pointer], :void
|
|
377
|
+
attach_function :ImGuiTable_ImGuiTable, [], :pointer
|
|
378
|
+
attach_function :ImGuiTable_destroy, [:pointer], :void
|
|
379
|
+
attach_function :ImGuiTextBuffer_ImGuiTextBuffer, [], :pointer
|
|
380
|
+
attach_function :ImGuiTextBuffer_append, [:pointer, :string, :string], :void
|
|
381
|
+
attach_function :ImGuiTextBuffer_appendfv, [:pointer, :string, :pointer], :void
|
|
382
|
+
attach_function :ImGuiTextBuffer_begin, [:pointer], :string
|
|
383
|
+
attach_function :ImGuiTextBuffer_c_str, [:pointer], :string
|
|
384
|
+
attach_function :ImGuiTextBuffer_clear, [:pointer], :void
|
|
385
|
+
attach_function :ImGuiTextBuffer_destroy, [:pointer], :void
|
|
386
|
+
attach_function :ImGuiTextBuffer_empty, [:pointer], :bool
|
|
387
|
+
attach_function :ImGuiTextBuffer_end, [:pointer], :string
|
|
388
|
+
attach_function :ImGuiTextBuffer_reserve, [:pointer, :int], :void
|
|
389
|
+
attach_function :ImGuiTextBuffer_resize, [:pointer, :int], :void
|
|
390
|
+
attach_function :ImGuiTextBuffer_size, [:pointer], :int
|
|
391
|
+
attach_function :ImGuiTextFilter_Build, [:pointer], :void
|
|
392
|
+
attach_function :ImGuiTextFilter_Clear, [:pointer], :void
|
|
393
|
+
attach_function :ImGuiTextFilter_Draw, [:pointer, :string, :float], :bool
|
|
394
|
+
attach_function :ImGuiTextFilter_ImGuiTextFilter, [:string], :pointer
|
|
395
|
+
attach_function :ImGuiTextFilter_IsActive, [:pointer], :bool
|
|
396
|
+
attach_function :ImGuiTextFilter_PassFilter, [:pointer, :string, :string], :bool
|
|
397
|
+
attach_function :ImGuiTextFilter_destroy, [:pointer], :void
|
|
398
|
+
attach_function :ImGuiTextIndex_append, [:pointer, :string, :int, :int], :void
|
|
399
|
+
attach_function :ImGuiTextIndex_clear, [:pointer], :void
|
|
400
|
+
attach_function :ImGuiTextIndex_get_line_begin, [:pointer, :string, :int], :string
|
|
401
|
+
attach_function :ImGuiTextIndex_get_line_end, [:pointer, :string, :int], :string
|
|
402
|
+
attach_function :ImGuiTextIndex_size, [:pointer], :int
|
|
403
|
+
attach_function :ImGuiTextRange_ImGuiTextRange_Nil, [], :pointer
|
|
404
|
+
attach_function :ImGuiTextRange_ImGuiTextRange_Str, [:string, :string], :pointer
|
|
405
|
+
attach_function :ImGuiTextRange_destroy, [:pointer], :void
|
|
406
|
+
attach_function :ImGuiTextRange_empty, [:pointer], :bool
|
|
407
|
+
attach_function :ImGuiTextRange_split, [:pointer, :char, :pointer], :void
|
|
408
|
+
attach_function :ImGuiTypingSelectState_Clear, [:pointer], :void
|
|
409
|
+
attach_function :ImGuiTypingSelectState_ImGuiTypingSelectState, [], :pointer
|
|
410
|
+
attach_function :ImGuiTypingSelectState_destroy, [:pointer], :void
|
|
411
|
+
attach_function :ImGuiViewportP_CalcWorkRectPos, [:pointer, :pointer, ImVec2.by_value], :void
|
|
412
|
+
attach_function :ImGuiViewportP_CalcWorkRectSize, [:pointer, :pointer, ImVec2.by_value, ImVec2.by_value], :void
|
|
413
|
+
attach_function :ImGuiViewportP_ClearRequestFlags, [:pointer], :void
|
|
414
|
+
attach_function :ImGuiViewportP_GetBuildWorkRect, [:pointer, :pointer], :void
|
|
415
|
+
attach_function :ImGuiViewportP_GetMainRect, [:pointer, :pointer], :void
|
|
416
|
+
attach_function :ImGuiViewportP_GetWorkRect, [:pointer, :pointer], :void
|
|
417
|
+
attach_function :ImGuiViewportP_ImGuiViewportP, [], :pointer
|
|
418
|
+
attach_function :ImGuiViewportP_UpdateWorkRect, [:pointer], :void
|
|
419
|
+
attach_function :ImGuiViewportP_destroy, [:pointer], :void
|
|
420
|
+
attach_function :ImGuiViewport_GetCenter, [:pointer, :pointer], :void
|
|
421
|
+
attach_function :ImGuiViewport_GetWorkCenter, [:pointer, :pointer], :void
|
|
422
|
+
attach_function :ImGuiViewport_ImGuiViewport, [], :pointer
|
|
423
|
+
attach_function :ImGuiViewport_destroy, [:pointer], :void
|
|
424
|
+
attach_function :ImGuiWindowClass_ImGuiWindowClass, [], :pointer
|
|
425
|
+
attach_function :ImGuiWindowClass_destroy, [:pointer], :void
|
|
426
|
+
attach_function :ImGuiWindowSettings_GetName, [:pointer], :pointer
|
|
427
|
+
attach_function :ImGuiWindowSettings_ImGuiWindowSettings, [], :pointer
|
|
428
|
+
attach_function :ImGuiWindowSettings_destroy, [:pointer], :void
|
|
429
|
+
attach_function :ImGuiWindow_CalcFontSize, [:pointer], :float
|
|
430
|
+
attach_function :ImGuiWindow_GetIDFromPos, [:pointer, ImVec2.by_value], :uint
|
|
431
|
+
attach_function :ImGuiWindow_GetIDFromRectangle, [:pointer, ImRect.by_value], :uint
|
|
432
|
+
attach_function :ImGuiWindow_GetID_Int, [:pointer, :int], :uint
|
|
433
|
+
attach_function :ImGuiWindow_GetID_Ptr, [:pointer, :pointer], :uint
|
|
434
|
+
attach_function :ImGuiWindow_GetID_Str, [:pointer, :string, :string], :uint
|
|
435
|
+
attach_function :ImGuiWindow_ImGuiWindow, [:pointer, :string], :pointer
|
|
436
|
+
attach_function :ImGuiWindow_MenuBarRect, [:pointer, :pointer], :void
|
|
437
|
+
attach_function :ImGuiWindow_Rect, [:pointer, :pointer], :void
|
|
438
|
+
attach_function :ImGuiWindow_TitleBarRect, [:pointer, :pointer], :void
|
|
439
|
+
attach_function :ImGuiWindow_destroy, [:pointer], :void
|
|
440
|
+
attach_function :ImGui_ImplGlfw_CharCallback, [:pointer, :uint], :void
|
|
441
|
+
attach_function :ImGui_ImplGlfw_CursorEnterCallback, [:pointer, :int], :void
|
|
442
|
+
attach_function :ImGui_ImplGlfw_CursorPosCallback, [:pointer, :double, :double], :void
|
|
443
|
+
attach_function :ImGui_ImplGlfw_InitForOpenGL, [:pointer, :bool], :bool
|
|
444
|
+
attach_function :ImGui_ImplGlfw_InitForOther, [:pointer, :bool], :bool
|
|
445
|
+
attach_function :ImGui_ImplGlfw_InitForVulkan, [:pointer, :bool], :bool
|
|
446
|
+
attach_function :ImGui_ImplGlfw_InstallCallbacks, [:pointer], :void
|
|
447
|
+
attach_function :ImGui_ImplGlfw_KeyCallback, [:pointer, :int, :int, :int, :int], :void
|
|
448
|
+
attach_function :ImGui_ImplGlfw_MonitorCallback, [:pointer, :int], :void
|
|
449
|
+
attach_function :ImGui_ImplGlfw_MouseButtonCallback, [:pointer, :int, :int, :int], :void
|
|
450
|
+
attach_function :ImGui_ImplGlfw_NewFrame, [], :void
|
|
451
|
+
attach_function :ImGui_ImplGlfw_RestoreCallbacks, [:pointer], :void
|
|
452
|
+
attach_function :ImGui_ImplGlfw_ScrollCallback, [:pointer, :double, :double], :void
|
|
453
|
+
attach_function :ImGui_ImplGlfw_SetCallbacksChainForAllWindows, [:bool], :void
|
|
454
|
+
attach_function :ImGui_ImplGlfw_Shutdown, [], :void
|
|
455
|
+
attach_function :ImGui_ImplGlfw_Sleep, [:int], :void
|
|
456
|
+
attach_function :ImGui_ImplGlfw_WindowFocusCallback, [:pointer, :int], :void
|
|
457
|
+
attach_function :ImGui_ImplOpenGL3_CreateDeviceObjects, [], :bool
|
|
458
|
+
attach_function :ImGui_ImplOpenGL3_CreateFontsTexture, [], :bool
|
|
459
|
+
attach_function :ImGui_ImplOpenGL3_DestroyDeviceObjects, [], :void
|
|
460
|
+
attach_function :ImGui_ImplOpenGL3_DestroyFontsTexture, [], :void
|
|
461
|
+
attach_function :ImGui_ImplOpenGL3_Init, [:string], :bool
|
|
462
|
+
attach_function :ImGui_ImplOpenGL3_NewFrame, [], :void
|
|
463
|
+
attach_function :ImGui_ImplOpenGL3_RenderDrawData, [:pointer], :void
|
|
464
|
+
attach_function :ImGui_ImplOpenGL3_Shutdown, [], :void
|
|
465
|
+
attach_function :ImGui_ImplSDL3_InitForD3D, [:pointer], :bool
|
|
466
|
+
attach_function :ImGui_ImplSDL3_InitForMetal, [:pointer], :bool
|
|
467
|
+
attach_function :ImGui_ImplSDL3_InitForOpenGL, [:pointer, :pointer], :bool
|
|
468
|
+
attach_function :ImGui_ImplSDL3_InitForOther, [:pointer], :bool
|
|
469
|
+
attach_function :ImGui_ImplSDL3_InitForSDLGPU, [:pointer], :bool
|
|
470
|
+
attach_function :ImGui_ImplSDL3_InitForSDLRenderer, [:pointer, :pointer], :bool
|
|
471
|
+
attach_function :ImGui_ImplSDL3_InitForVulkan, [:pointer], :bool
|
|
472
|
+
attach_function :ImGui_ImplSDL3_NewFrame, [], :void
|
|
473
|
+
attach_function :ImGui_ImplSDL3_ProcessEvent, [:pointer], :bool
|
|
474
|
+
attach_function :ImGui_ImplSDL3_SetGamepadMode, [:int, :pointer, :int], :void
|
|
475
|
+
attach_function :ImGui_ImplSDL3_Shutdown, [], :void
|
|
476
|
+
attach_function :ImRect_Add_Rect, [:pointer, ImRect.by_value], :void
|
|
477
|
+
attach_function :ImRect_Add_Vec2, [:pointer, ImVec2.by_value], :void
|
|
478
|
+
attach_function :ImRect_ClipWith, [:pointer, ImRect.by_value], :void
|
|
479
|
+
attach_function :ImRect_ClipWithFull, [:pointer, ImRect.by_value], :void
|
|
480
|
+
attach_function :ImRect_ContainsWithPad, [:pointer, ImVec2.by_value, ImVec2.by_value], :bool
|
|
481
|
+
attach_function :ImRect_Contains_Rect, [:pointer, ImRect.by_value], :bool
|
|
482
|
+
attach_function :ImRect_Contains_Vec2, [:pointer, ImVec2.by_value], :bool
|
|
483
|
+
attach_function :ImRect_Expand_Float, [:pointer, :float], :void
|
|
484
|
+
attach_function :ImRect_Expand_Vec2, [:pointer, ImVec2.by_value], :void
|
|
485
|
+
attach_function :ImRect_Floor, [:pointer], :void
|
|
486
|
+
attach_function :ImRect_GetArea, [:pointer], :float
|
|
487
|
+
attach_function :ImRect_GetBL, [:pointer, :pointer], :void
|
|
488
|
+
attach_function :ImRect_GetBR, [:pointer, :pointer], :void
|
|
489
|
+
attach_function :ImRect_GetCenter, [:pointer, :pointer], :void
|
|
490
|
+
attach_function :ImRect_GetHeight, [:pointer], :float
|
|
491
|
+
attach_function :ImRect_GetSize, [:pointer, :pointer], :void
|
|
492
|
+
attach_function :ImRect_GetTL, [:pointer, :pointer], :void
|
|
493
|
+
attach_function :ImRect_GetTR, [:pointer, :pointer], :void
|
|
494
|
+
attach_function :ImRect_GetWidth, [:pointer], :float
|
|
495
|
+
attach_function :ImRect_ImRect_Float, [:float, :float, :float, :float], :pointer
|
|
496
|
+
attach_function :ImRect_ImRect_Nil, [], :pointer
|
|
497
|
+
attach_function :ImRect_ImRect_Vec2, [ImVec2.by_value, ImVec2.by_value], :pointer
|
|
498
|
+
attach_function :ImRect_ImRect_Vec4, [ImVec4.by_value], :pointer
|
|
499
|
+
attach_function :ImRect_IsInverted, [:pointer], :bool
|
|
500
|
+
attach_function :ImRect_Overlaps, [:pointer, ImRect.by_value], :bool
|
|
501
|
+
attach_function :ImRect_ToVec4, [:pointer, :pointer], :void
|
|
502
|
+
attach_function :ImRect_Translate, [:pointer, ImVec2.by_value], :void
|
|
503
|
+
attach_function :ImRect_TranslateX, [:pointer, :float], :void
|
|
504
|
+
attach_function :ImRect_TranslateY, [:pointer, :float], :void
|
|
505
|
+
attach_function :ImRect_destroy, [:pointer], :void
|
|
506
|
+
attach_function :ImVec1_ImVec1_Float, [:float], :pointer
|
|
507
|
+
attach_function :ImVec1_ImVec1_Nil, [], :pointer
|
|
508
|
+
attach_function :ImVec1_destroy, [:pointer], :void
|
|
509
|
+
attach_function :ImVec2_ImVec2_Float, [:float, :float], :pointer
|
|
510
|
+
attach_function :ImVec2_ImVec2_Nil, [], :pointer
|
|
511
|
+
attach_function :ImVec2_destroy, [:pointer], :void
|
|
512
|
+
attach_function :ImVec2ih_ImVec2ih_Nil, [], :pointer
|
|
513
|
+
attach_function :ImVec2ih_ImVec2ih_Vec2, [ImVec2.by_value], :pointer
|
|
514
|
+
attach_function :ImVec2ih_ImVec2ih_short, [:short, :short], :pointer
|
|
515
|
+
attach_function :ImVec2ih_destroy, [:pointer], :void
|
|
516
|
+
attach_function :ImVec4_ImVec4_Float, [:float, :float, :float, :float], :pointer
|
|
517
|
+
attach_function :ImVec4_ImVec4_Nil, [], :pointer
|
|
518
|
+
attach_function :ImVec4_destroy, [:pointer], :void
|
|
519
|
+
attach_function :igAcceptDragDropPayload, [:string, :int], :pointer
|
|
520
|
+
attach_function :igActivateItemByID, [:uint], :void
|
|
521
|
+
attach_function :igAddContextHook, [:pointer, :pointer], :uint
|
|
522
|
+
attach_function :igAddDrawListToDrawDataEx, [:pointer, :pointer, :pointer], :void
|
|
523
|
+
attach_function :igAddSettingsHandler, [:pointer], :void
|
|
524
|
+
attach_function :igAlignTextToFramePadding, [], :void
|
|
525
|
+
attach_function :igArrowButton, [:string, :int], :bool
|
|
526
|
+
attach_function :igArrowButtonEx, [:string, :int, ImVec2.by_value, :int], :bool
|
|
527
|
+
attach_function :igBegin, [:string, :pointer, :int], :bool
|
|
528
|
+
attach_function :igBeginBoxSelect, [ImRect.by_value, :pointer, :uint, :int], :bool
|
|
529
|
+
attach_function :igBeginChildEx, [:string, :uint, ImVec2.by_value, :int, :int], :bool
|
|
530
|
+
attach_function :igBeginChild_ID, [:uint, ImVec2.by_value, :int, :int], :bool
|
|
531
|
+
attach_function :igBeginChild_Str, [:string, ImVec2.by_value, :int, :int], :bool
|
|
532
|
+
attach_function :igBeginColumns, [:string, :int, :int], :void
|
|
533
|
+
attach_function :igBeginCombo, [:string, :string, :int], :bool
|
|
534
|
+
attach_function :igBeginComboPopup, [:uint, ImRect.by_value, :int], :bool
|
|
535
|
+
attach_function :igBeginComboPreview, [], :bool
|
|
536
|
+
attach_function :igBeginDisabled, [:bool], :void
|
|
537
|
+
attach_function :igBeginDisabledOverrideReenable, [], :void
|
|
538
|
+
attach_function :igBeginDockableDragDropSource, [:pointer], :void
|
|
539
|
+
attach_function :igBeginDockableDragDropTarget, [:pointer], :void
|
|
540
|
+
attach_function :igBeginDocked, [:pointer, :pointer], :void
|
|
541
|
+
attach_function :igBeginDragDropSource, [:int], :bool
|
|
542
|
+
attach_function :igBeginDragDropTarget, [], :bool
|
|
543
|
+
attach_function :igBeginDragDropTargetCustom, [ImRect.by_value, :uint], :bool
|
|
544
|
+
attach_function :igBeginErrorTooltip, [], :bool
|
|
545
|
+
attach_function :igBeginGroup, [], :void
|
|
546
|
+
attach_function :igBeginItemTooltip, [], :bool
|
|
547
|
+
attach_function :igBeginListBox, [:string, ImVec2.by_value], :bool
|
|
548
|
+
attach_function :igBeginMainMenuBar, [], :bool
|
|
549
|
+
attach_function :igBeginMenu, [:string, :bool], :bool
|
|
550
|
+
attach_function :igBeginMenuBar, [], :bool
|
|
551
|
+
attach_function :igBeginMenuEx, [:string, :string, :bool], :bool
|
|
552
|
+
attach_function :igBeginMultiSelect, [:int, :int, :int], :pointer
|
|
553
|
+
attach_function :igBeginPopup, [:string, :int], :bool
|
|
554
|
+
attach_function :igBeginPopupContextItem, [:string, :int], :bool
|
|
555
|
+
attach_function :igBeginPopupContextVoid, [:string, :int], :bool
|
|
556
|
+
attach_function :igBeginPopupContextWindow, [:string, :int], :bool
|
|
557
|
+
attach_function :igBeginPopupEx, [:uint, :int], :bool
|
|
558
|
+
attach_function :igBeginPopupMenuEx, [:uint, :string, :int], :bool
|
|
559
|
+
attach_function :igBeginPopupModal, [:string, :pointer, :int], :bool
|
|
560
|
+
attach_function :igBeginTabBar, [:string, :int], :bool
|
|
561
|
+
attach_function :igBeginTabBarEx, [:pointer, ImRect.by_value, :int], :bool
|
|
562
|
+
attach_function :igBeginTabItem, [:string, :pointer, :int], :bool
|
|
563
|
+
attach_function :igBeginTable, [:string, :int, :int, ImVec2.by_value, :float], :bool
|
|
564
|
+
attach_function :igBeginTableEx, [:string, :uint, :int, :int, ImVec2.by_value, :float], :bool
|
|
565
|
+
attach_function :igBeginTooltip, [], :bool
|
|
566
|
+
attach_function :igBeginTooltipEx, [:int, :int], :bool
|
|
567
|
+
attach_function :igBeginTooltipHidden, [], :bool
|
|
568
|
+
attach_function :igBeginViewportSideBar, [:string, :pointer, :int, :float, :int], :bool
|
|
569
|
+
attach_function :igBringWindowToDisplayBack, [:pointer], :void
|
|
570
|
+
attach_function :igBringWindowToDisplayBehind, [:pointer, :pointer], :void
|
|
571
|
+
attach_function :igBringWindowToDisplayFront, [:pointer], :void
|
|
572
|
+
attach_function :igBringWindowToFocusFront, [:pointer], :void
|
|
573
|
+
attach_function :igBullet, [], :void
|
|
574
|
+
attach_function :igBulletTextV, [:string, :pointer], :void
|
|
575
|
+
attach_function :igButton, [:string, ImVec2.by_value], :bool
|
|
576
|
+
attach_function :igButtonBehavior, [ImRect.by_value, :uint, :pointer, :pointer, :int], :bool
|
|
577
|
+
attach_function :igButtonEx, [:string, ImVec2.by_value, :int], :bool
|
|
578
|
+
attach_function :igCalcItemSize, [:pointer, ImVec2.by_value, :float, :float], :void
|
|
579
|
+
attach_function :igCalcItemWidth, [], :float
|
|
580
|
+
attach_function :igCalcRoundingFlagsForRectInRect, [ImRect.by_value, ImRect.by_value, :float], :int
|
|
581
|
+
attach_function :igCalcTextSize, [:pointer, :string, :string, :bool, :float], :void
|
|
582
|
+
attach_function :igCalcTypematicRepeatAmount, [:float, :float, :float, :float], :int
|
|
583
|
+
attach_function :igCalcWindowNextAutoFitSize, [:pointer, :pointer], :void
|
|
584
|
+
attach_function :igCalcWrapWidthForPos, [ImVec2.by_value, :float], :float
|
|
585
|
+
attach_function :igCallContextHooks, [:pointer, :int], :void
|
|
586
|
+
attach_function :igCheckbox, [:string, :pointer], :bool
|
|
587
|
+
attach_function :igCheckboxFlags_IntPtr, [:string, :pointer, :int], :bool
|
|
588
|
+
attach_function :igCheckboxFlags_S64Ptr, [:string, :pointer, :pointer], :bool
|
|
589
|
+
attach_function :igCheckboxFlags_U64Ptr, [:string, :pointer, :ulong_long], :bool
|
|
590
|
+
attach_function :igCheckboxFlags_UintPtr, [:string, :pointer, :uint], :bool
|
|
591
|
+
attach_function :igClearActiveID, [], :void
|
|
592
|
+
attach_function :igClearDragDrop, [], :void
|
|
593
|
+
attach_function :igClearIniSettings, [], :void
|
|
594
|
+
attach_function :igClearWindowSettings, [:string], :void
|
|
595
|
+
attach_function :igCloseButton, [:uint, ImVec2.by_value], :bool
|
|
596
|
+
attach_function :igCloseCurrentPopup, [], :void
|
|
597
|
+
attach_function :igClosePopupToLevel, [:int, :bool], :void
|
|
598
|
+
attach_function :igClosePopupsExceptModals, [], :void
|
|
599
|
+
attach_function :igClosePopupsOverWindow, [:pointer, :bool], :void
|
|
600
|
+
attach_function :igCollapseButton, [:uint, ImVec2.by_value, :pointer], :bool
|
|
601
|
+
attach_function :igCollapsingHeader_BoolPtr, [:string, :pointer, :int], :bool
|
|
602
|
+
attach_function :igCollapsingHeader_TreeNodeFlags, [:string, :int], :bool
|
|
603
|
+
attach_function :igColorButton, [:string, ImVec4.by_value, :int, ImVec2.by_value], :bool
|
|
604
|
+
attach_function :igColorConvertFloat4ToU32, [ImVec4.by_value], :uint
|
|
605
|
+
attach_function :igColorConvertHSVtoRGB, [:float, :float, :float, :pointer, :pointer, :pointer], :void
|
|
606
|
+
attach_function :igColorConvertRGBtoHSV, [:float, :float, :float, :pointer, :pointer, :pointer], :void
|
|
607
|
+
attach_function :igColorConvertU32ToFloat4, [:pointer, :uint], :void
|
|
608
|
+
attach_function :igColorEdit3, [:string, :pointer, :int], :bool
|
|
609
|
+
attach_function :igColorEdit4, [:string, :pointer, :int], :bool
|
|
610
|
+
attach_function :igColorEditOptionsPopup, [:pointer, :int], :void
|
|
611
|
+
attach_function :igColorPicker3, [:string, :pointer, :int], :bool
|
|
612
|
+
attach_function :igColorPicker4, [:string, :pointer, :int, :pointer], :bool
|
|
613
|
+
attach_function :igColorPickerOptionsPopup, [:pointer, :int], :void
|
|
614
|
+
attach_function :igColorTooltip, [:string, :pointer, :int], :void
|
|
615
|
+
attach_function :igColumns, [:int, :string, :bool], :void
|
|
616
|
+
attach_function :igCombo_FnStrPtr, [:string, :pointer, :pointer, :pointer, :int, :int], :bool
|
|
617
|
+
attach_function :igCombo_Str, [:string, :pointer, :string, :int], :bool
|
|
618
|
+
attach_function :igCombo_Str_arr, [:string, :pointer, :pointer, :int, :int], :bool
|
|
619
|
+
attach_function :igConvertSingleModFlagToKey, [:int], :int
|
|
620
|
+
attach_function :igCreateContext, [:pointer], :pointer
|
|
621
|
+
attach_function :igCreateNewWindowSettings, [:string], :pointer
|
|
622
|
+
attach_function :igDataTypeApplyFromText, [:string, :int, :pointer, :string, :pointer], :bool
|
|
623
|
+
attach_function :igDataTypeApplyOp, [:int, :int, :pointer, :pointer, :pointer], :void
|
|
624
|
+
attach_function :igDataTypeClamp, [:int, :pointer, :pointer, :pointer], :bool
|
|
625
|
+
attach_function :igDataTypeCompare, [:int, :pointer, :pointer], :int
|
|
626
|
+
attach_function :igDataTypeFormatString, [:pointer, :int, :int, :pointer, :string], :int
|
|
627
|
+
attach_function :igDataTypeGetInfo, [:int], :pointer
|
|
628
|
+
attach_function :igDataTypeIsZero, [:int, :pointer], :bool
|
|
629
|
+
attach_function :igDebugAllocHook, [:pointer, :int, :pointer, :size_t], :void
|
|
630
|
+
attach_function :igDebugBreakButton, [:string, :string], :bool
|
|
631
|
+
attach_function :igDebugBreakButtonTooltip, [:bool, :string], :void
|
|
632
|
+
attach_function :igDebugBreakClearData, [], :void
|
|
633
|
+
attach_function :igDebugCheckVersionAndDataLayout, [:string, :size_t, :size_t, :size_t, :size_t, :size_t, :size_t], :bool
|
|
634
|
+
attach_function :igDebugDrawCursorPos, [:uint], :void
|
|
635
|
+
attach_function :igDebugDrawItemRect, [:uint], :void
|
|
636
|
+
attach_function :igDebugDrawLineExtents, [:uint], :void
|
|
637
|
+
attach_function :igDebugFlashStyleColor, [:int], :void
|
|
638
|
+
attach_function :igDebugHookIdInfo, [:uint, :int, :pointer, :pointer], :void
|
|
639
|
+
attach_function :igDebugLocateItem, [:uint], :void
|
|
640
|
+
attach_function :igDebugLocateItemOnHover, [:uint], :void
|
|
641
|
+
attach_function :igDebugLocateItemResolveWithLastItem, [], :void
|
|
642
|
+
attach_function :igDebugLogV, [:string, :pointer], :void
|
|
643
|
+
attach_function :igDebugNodeColumns, [:pointer], :void
|
|
644
|
+
attach_function :igDebugNodeDockNode, [:pointer, :string], :void
|
|
645
|
+
attach_function :igDebugNodeDrawCmdShowMeshAndBoundingBox, [:pointer, :pointer, :pointer, :bool, :bool], :void
|
|
646
|
+
attach_function :igDebugNodeDrawList, [:pointer, :pointer, :pointer, :string], :void
|
|
647
|
+
attach_function :igDebugNodeFont, [:pointer], :void
|
|
648
|
+
attach_function :igDebugNodeFontGlyph, [:pointer, :pointer], :void
|
|
649
|
+
attach_function :igDebugNodeInputTextState, [:pointer], :void
|
|
650
|
+
attach_function :igDebugNodeMultiSelectState, [:pointer], :void
|
|
651
|
+
attach_function :igDebugNodePlatformMonitor, [:pointer, :string, :int], :void
|
|
652
|
+
attach_function :igDebugNodeStorage, [:pointer, :string], :void
|
|
653
|
+
attach_function :igDebugNodeTabBar, [:pointer, :string], :void
|
|
654
|
+
attach_function :igDebugNodeTable, [:pointer], :void
|
|
655
|
+
attach_function :igDebugNodeTableSettings, [:pointer], :void
|
|
656
|
+
attach_function :igDebugNodeTypingSelectState, [:pointer], :void
|
|
657
|
+
attach_function :igDebugNodeViewport, [:pointer], :void
|
|
658
|
+
attach_function :igDebugNodeWindow, [:pointer, :string], :void
|
|
659
|
+
attach_function :igDebugNodeWindowSettings, [:pointer], :void
|
|
660
|
+
attach_function :igDebugNodeWindowsList, [:pointer, :string], :void
|
|
661
|
+
attach_function :igDebugNodeWindowsListByBeginStackParent, [:pointer, :int, :pointer], :void
|
|
662
|
+
attach_function :igDebugRenderKeyboardPreview, [:pointer], :void
|
|
663
|
+
attach_function :igDebugRenderViewportThumbnail, [:pointer, :pointer, ImRect.by_value], :void
|
|
664
|
+
attach_function :igDebugStartItemPicker, [], :void
|
|
665
|
+
attach_function :igDebugTextEncoding, [:string], :void
|
|
666
|
+
attach_function :igDebugTextUnformattedWithLocateItem, [:string, :string], :void
|
|
667
|
+
attach_function :igDestroyContext, [:pointer], :void
|
|
668
|
+
attach_function :igDestroyPlatformWindow, [:pointer], :void
|
|
669
|
+
attach_function :igDestroyPlatformWindows, [], :void
|
|
670
|
+
attach_function :igDockBuilderAddNode, [:uint, :int], :uint
|
|
671
|
+
attach_function :igDockBuilderCopyDockSpace, [:uint, :uint, :pointer], :void
|
|
672
|
+
attach_function :igDockBuilderCopyNode, [:uint, :uint, :pointer], :void
|
|
673
|
+
attach_function :igDockBuilderCopyWindowSettings, [:string, :string], :void
|
|
674
|
+
attach_function :igDockBuilderDockWindow, [:string, :uint], :void
|
|
675
|
+
attach_function :igDockBuilderFinish, [:uint], :void
|
|
676
|
+
attach_function :igDockBuilderGetCentralNode, [:uint], :pointer
|
|
677
|
+
attach_function :igDockBuilderGetNode, [:uint], :pointer
|
|
678
|
+
attach_function :igDockBuilderRemoveNode, [:uint], :void
|
|
679
|
+
attach_function :igDockBuilderRemoveNodeChildNodes, [:uint], :void
|
|
680
|
+
attach_function :igDockBuilderRemoveNodeDockedWindows, [:uint, :bool], :void
|
|
681
|
+
attach_function :igDockBuilderSetNodePos, [:uint, ImVec2.by_value], :void
|
|
682
|
+
attach_function :igDockBuilderSetNodeSize, [:uint, ImVec2.by_value], :void
|
|
683
|
+
attach_function :igDockBuilderSplitNode, [:uint, :int, :float, :pointer, :pointer], :uint
|
|
684
|
+
attach_function :igDockContextCalcDropPosForDocking, [:pointer, :pointer, :pointer, :pointer, :int, :bool, :pointer], :bool
|
|
685
|
+
attach_function :igDockContextClearNodes, [:pointer, :uint, :bool], :void
|
|
686
|
+
attach_function :igDockContextEndFrame, [:pointer], :void
|
|
687
|
+
attach_function :igDockContextFindNodeByID, [:pointer, :uint], :pointer
|
|
688
|
+
attach_function :igDockContextGenNodeID, [:pointer], :uint
|
|
689
|
+
attach_function :igDockContextInitialize, [:pointer], :void
|
|
690
|
+
attach_function :igDockContextNewFrameUpdateDocking, [:pointer], :void
|
|
691
|
+
attach_function :igDockContextNewFrameUpdateUndocking, [:pointer], :void
|
|
692
|
+
attach_function :igDockContextProcessUndockNode, [:pointer, :pointer], :void
|
|
693
|
+
attach_function :igDockContextProcessUndockWindow, [:pointer, :pointer, :bool], :void
|
|
694
|
+
attach_function :igDockContextQueueDock, [:pointer, :pointer, :pointer, :pointer, :int, :float, :bool], :void
|
|
695
|
+
attach_function :igDockContextQueueUndockNode, [:pointer, :pointer], :void
|
|
696
|
+
attach_function :igDockContextQueueUndockWindow, [:pointer, :pointer], :void
|
|
697
|
+
attach_function :igDockContextRebuildNodes, [:pointer], :void
|
|
698
|
+
attach_function :igDockContextShutdown, [:pointer], :void
|
|
699
|
+
attach_function :igDockNodeBeginAmendTabBar, [:pointer], :bool
|
|
700
|
+
attach_function :igDockNodeEndAmendTabBar, [], :void
|
|
701
|
+
attach_function :igDockNodeGetDepth, [:pointer], :int
|
|
702
|
+
attach_function :igDockNodeGetRootNode, [:pointer], :pointer
|
|
703
|
+
attach_function :igDockNodeGetWindowMenuButtonId, [:pointer], :uint
|
|
704
|
+
attach_function :igDockNodeIsInHierarchyOf, [:pointer, :pointer], :bool
|
|
705
|
+
attach_function :igDockNodeWindowMenuHandler_Default, [:pointer, :pointer, :pointer], :void
|
|
706
|
+
attach_function :igDockSpace, [:uint, ImVec2.by_value, :int, :pointer], :uint
|
|
707
|
+
attach_function :igDockSpaceOverViewport, [:uint, :pointer, :int, :pointer], :uint
|
|
708
|
+
attach_function :igDragBehavior, [:uint, :int, :pointer, :float, :pointer, :pointer, :string, :int], :bool
|
|
709
|
+
attach_function :igDragFloat, [:string, :pointer, :float, :float, :float, :string, :int], :bool
|
|
710
|
+
attach_function :igDragFloat2, [:string, :pointer, :float, :float, :float, :string, :int], :bool
|
|
711
|
+
attach_function :igDragFloat3, [:string, :pointer, :float, :float, :float, :string, :int], :bool
|
|
712
|
+
attach_function :igDragFloat4, [:string, :pointer, :float, :float, :float, :string, :int], :bool
|
|
713
|
+
attach_function :igDragFloatRange2, [:string, :pointer, :pointer, :float, :float, :float, :string, :string, :int], :bool
|
|
714
|
+
attach_function :igDragInt, [:string, :pointer, :float, :int, :int, :string, :int], :bool
|
|
715
|
+
attach_function :igDragInt2, [:string, :pointer, :float, :int, :int, :string, :int], :bool
|
|
716
|
+
attach_function :igDragInt3, [:string, :pointer, :float, :int, :int, :string, :int], :bool
|
|
717
|
+
attach_function :igDragInt4, [:string, :pointer, :float, :int, :int, :string, :int], :bool
|
|
718
|
+
attach_function :igDragIntRange2, [:string, :pointer, :pointer, :float, :int, :int, :string, :string, :int], :bool
|
|
719
|
+
attach_function :igDragScalar, [:string, :int, :pointer, :float, :pointer, :pointer, :string, :int], :bool
|
|
720
|
+
attach_function :igDragScalarN, [:string, :int, :pointer, :int, :float, :pointer, :pointer, :string, :int], :bool
|
|
721
|
+
attach_function :igDummy, [ImVec2.by_value], :void
|
|
722
|
+
attach_function :igEnd, [], :void
|
|
723
|
+
attach_function :igEndBoxSelect, [ImRect.by_value, :int], :void
|
|
724
|
+
attach_function :igEndChild, [], :void
|
|
725
|
+
attach_function :igEndColumns, [], :void
|
|
726
|
+
attach_function :igEndCombo, [], :void
|
|
727
|
+
attach_function :igEndComboPreview, [], :void
|
|
728
|
+
attach_function :igEndDisabled, [], :void
|
|
729
|
+
attach_function :igEndDisabledOverrideReenable, [], :void
|
|
730
|
+
attach_function :igEndDragDropSource, [], :void
|
|
731
|
+
attach_function :igEndDragDropTarget, [], :void
|
|
732
|
+
attach_function :igEndErrorTooltip, [], :void
|
|
733
|
+
attach_function :igEndFrame, [], :void
|
|
734
|
+
attach_function :igEndGroup, [], :void
|
|
735
|
+
attach_function :igEndListBox, [], :void
|
|
736
|
+
attach_function :igEndMainMenuBar, [], :void
|
|
737
|
+
attach_function :igEndMenu, [], :void
|
|
738
|
+
attach_function :igEndMenuBar, [], :void
|
|
739
|
+
attach_function :igEndMultiSelect, [], :pointer
|
|
740
|
+
attach_function :igEndPopup, [], :void
|
|
741
|
+
attach_function :igEndTabBar, [], :void
|
|
742
|
+
attach_function :igEndTabItem, [], :void
|
|
743
|
+
attach_function :igEndTable, [], :void
|
|
744
|
+
attach_function :igEndTooltip, [], :void
|
|
745
|
+
attach_function :igErrorCheckEndFrameFinalizeErrorTooltip, [], :void
|
|
746
|
+
attach_function :igErrorCheckUsingSetCursorPosToExtendParentBoundaries, [], :void
|
|
747
|
+
attach_function :igErrorLog, [:string], :bool
|
|
748
|
+
attach_function :igErrorRecoveryStoreState, [:pointer], :void
|
|
749
|
+
attach_function :igErrorRecoveryTryToRecoverState, [:pointer], :void
|
|
750
|
+
attach_function :igErrorRecoveryTryToRecoverWindowState, [:pointer], :void
|
|
751
|
+
attach_function :igFindBestWindowPosForPopup, [:pointer, :pointer], :void
|
|
752
|
+
attach_function :igFindBestWindowPosForPopupEx, [:pointer, ImVec2.by_value, ImVec2.by_value, :pointer, ImRect.by_value, ImRect.by_value, :int], :void
|
|
753
|
+
attach_function :igFindBlockingModal, [:pointer], :pointer
|
|
754
|
+
attach_function :igFindBottomMostVisibleWindowWithinBeginStack, [:pointer], :pointer
|
|
755
|
+
attach_function :igFindHoveredViewportFromPlatformWindowStack, [ImVec2.by_value], :pointer
|
|
756
|
+
attach_function :igFindHoveredWindowEx, [ImVec2.by_value, :bool, :pointer, :pointer], :void
|
|
757
|
+
attach_function :igFindOrCreateColumns, [:pointer, :uint], :pointer
|
|
758
|
+
attach_function :igFindRenderedTextEnd, [:string, :string], :string
|
|
759
|
+
attach_function :igFindSettingsHandler, [:string], :pointer
|
|
760
|
+
attach_function :igFindViewportByID, [:uint], :pointer
|
|
761
|
+
attach_function :igFindViewportByPlatformHandle, [:pointer], :pointer
|
|
762
|
+
attach_function :igFindWindowByID, [:uint], :pointer
|
|
763
|
+
attach_function :igFindWindowByName, [:string], :pointer
|
|
764
|
+
attach_function :igFindWindowDisplayIndex, [:pointer], :int
|
|
765
|
+
attach_function :igFindWindowSettingsByID, [:uint], :pointer
|
|
766
|
+
attach_function :igFindWindowSettingsByWindow, [:pointer], :pointer
|
|
767
|
+
attach_function :igFixupKeyChord, [:int], :int
|
|
768
|
+
attach_function :igFocusItem, [], :void
|
|
769
|
+
attach_function :igFocusTopMostWindowUnderOne, [:pointer, :pointer, :pointer, :int], :void
|
|
770
|
+
attach_function :igFocusWindow, [:pointer, :int], :void
|
|
771
|
+
attach_function :igGcAwakeTransientWindowBuffers, [:pointer], :void
|
|
772
|
+
attach_function :igGcCompactTransientMiscBuffers, [], :void
|
|
773
|
+
attach_function :igGcCompactTransientWindowBuffers, [:pointer], :void
|
|
774
|
+
attach_function :igGetActiveID, [], :uint
|
|
775
|
+
attach_function :igGetAllocatorFunctions, [:pointer, :pointer, :pointer], :void
|
|
776
|
+
attach_function :igGetBackgroundDrawList, [:pointer], :pointer
|
|
777
|
+
attach_function :igGetBoxSelectState, [:uint], :pointer
|
|
778
|
+
attach_function :igGetClipboardText, [], :string
|
|
779
|
+
attach_function :igGetColorU32_Col, [:int, :float], :uint
|
|
780
|
+
attach_function :igGetColorU32_U32, [:uint, :float], :uint
|
|
781
|
+
attach_function :igGetColorU32_Vec4, [ImVec4.by_value], :uint
|
|
782
|
+
attach_function :igGetColumnIndex, [], :int
|
|
783
|
+
attach_function :igGetColumnNormFromOffset, [:pointer, :float], :float
|
|
784
|
+
attach_function :igGetColumnOffset, [:int], :float
|
|
785
|
+
attach_function :igGetColumnOffsetFromNorm, [:pointer, :float], :float
|
|
786
|
+
attach_function :igGetColumnWidth, [:int], :float
|
|
787
|
+
attach_function :igGetColumnsCount, [], :int
|
|
788
|
+
attach_function :igGetColumnsID, [:string, :int], :uint
|
|
789
|
+
attach_function :igGetContentRegionAvail, [:pointer], :void
|
|
790
|
+
attach_function :igGetCurrentContext, [], :pointer
|
|
791
|
+
attach_function :igGetCurrentFocusScope, [], :uint
|
|
792
|
+
attach_function :igGetCurrentTabBar, [], :pointer
|
|
793
|
+
attach_function :igGetCurrentTable, [], :pointer
|
|
794
|
+
attach_function :igGetCurrentWindow, [], :pointer
|
|
795
|
+
attach_function :igGetCurrentWindowRead, [], :pointer
|
|
796
|
+
attach_function :igGetCursorPos, [:pointer], :void
|
|
797
|
+
attach_function :igGetCursorPosX, [], :float
|
|
798
|
+
attach_function :igGetCursorPosY, [], :float
|
|
799
|
+
attach_function :igGetCursorScreenPos, [:pointer], :void
|
|
800
|
+
attach_function :igGetCursorStartPos, [:pointer], :void
|
|
801
|
+
attach_function :igGetDefaultFont, [], :pointer
|
|
802
|
+
attach_function :igGetDragDropPayload, [], :pointer
|
|
803
|
+
attach_function :igGetDrawData, [], :pointer
|
|
804
|
+
attach_function :igGetDrawListSharedData, [], :pointer
|
|
805
|
+
attach_function :igGetFocusID, [], :uint
|
|
806
|
+
attach_function :igGetFont, [], :pointer
|
|
807
|
+
attach_function :igGetFontSize, [], :float
|
|
808
|
+
attach_function :igGetFontTexUvWhitePixel, [:pointer], :void
|
|
809
|
+
attach_function :igGetForegroundDrawList_ViewportPtr, [:pointer], :pointer
|
|
810
|
+
attach_function :igGetForegroundDrawList_WindowPtr, [:pointer], :pointer
|
|
811
|
+
attach_function :igGetFrameCount, [], :int
|
|
812
|
+
attach_function :igGetFrameHeight, [], :float
|
|
813
|
+
attach_function :igGetFrameHeightWithSpacing, [], :float
|
|
814
|
+
attach_function :igGetHoveredID, [], :uint
|
|
815
|
+
attach_function :igGetIDWithSeed_Int, [:int, :uint], :uint
|
|
816
|
+
attach_function :igGetIDWithSeed_Str, [:string, :string, :uint], :uint
|
|
817
|
+
attach_function :igGetID_Int, [:int], :uint
|
|
818
|
+
attach_function :igGetID_Ptr, [:pointer], :uint
|
|
819
|
+
attach_function :igGetID_Str, [:string], :uint
|
|
820
|
+
attach_function :igGetID_StrStr, [:string, :string], :uint
|
|
821
|
+
attach_function :igGetIO, :igGetIO_Nil, [], :pointer
|
|
822
|
+
attach_function :igGetIO_ContextPtr, [:pointer], :pointer
|
|
823
|
+
attach_function :igGetInputTextState, [:uint], :pointer
|
|
824
|
+
attach_function :igGetItemFlags, [], :int
|
|
825
|
+
attach_function :igGetItemID, [], :uint
|
|
826
|
+
attach_function :igGetItemRectMax, [:pointer], :void
|
|
827
|
+
attach_function :igGetItemRectMin, [:pointer], :void
|
|
828
|
+
attach_function :igGetItemRectSize, [:pointer], :void
|
|
829
|
+
attach_function :igGetItemStatusFlags, [], :int
|
|
830
|
+
attach_function :igGetKeyChordName, [:int], :string
|
|
831
|
+
attach_function :igGetKeyData_ContextPtr, [:pointer, :int], :pointer
|
|
832
|
+
attach_function :igGetKeyData_Key, [:int], :pointer
|
|
833
|
+
attach_function :igGetKeyMagnitude2d, [:pointer, :int, :int, :int, :int], :void
|
|
834
|
+
attach_function :igGetKeyName, [:int], :string
|
|
835
|
+
attach_function :igGetKeyOwner, [:int], :uint
|
|
836
|
+
attach_function :igGetKeyOwnerData, [:pointer, :int], :pointer
|
|
837
|
+
attach_function :igGetKeyPressedAmount, [:int, :float, :float], :int
|
|
838
|
+
attach_function :igGetMainViewport, [], :pointer
|
|
839
|
+
attach_function :igGetMouseClickedCount, [:int], :int
|
|
840
|
+
attach_function :igGetMouseCursor, [], :int
|
|
841
|
+
attach_function :igGetMouseDragDelta, [:pointer, :int, :float], :void
|
|
842
|
+
attach_function :igGetMousePos, [:pointer], :void
|
|
843
|
+
attach_function :igGetMousePosOnOpeningCurrentPopup, [:pointer], :void
|
|
844
|
+
attach_function :igGetMultiSelectState, [:uint], :pointer
|
|
845
|
+
attach_function :igGetNavTweakPressedAmount, [:int], :float
|
|
846
|
+
attach_function :igGetPlatformIO_ContextPtr, [:pointer], :pointer
|
|
847
|
+
attach_function :igGetPlatformIO_Nil, [], :pointer
|
|
848
|
+
attach_function :igGetPopupAllowedExtentRect, [:pointer, :pointer], :void
|
|
849
|
+
attach_function :igGetScrollMaxX, [], :float
|
|
850
|
+
attach_function :igGetScrollMaxY, [], :float
|
|
851
|
+
attach_function :igGetScrollX, [], :float
|
|
852
|
+
attach_function :igGetScrollY, [], :float
|
|
853
|
+
attach_function :igGetShortcutRoutingData, [:int], :pointer
|
|
854
|
+
attach_function :igGetStateStorage, [], :pointer
|
|
855
|
+
attach_function :igGetStyle, [], :pointer
|
|
856
|
+
attach_function :igGetStyleColorName, [:int], :string
|
|
857
|
+
attach_function :igGetStyleColorVec4, [:int], :pointer
|
|
858
|
+
attach_function :igGetStyleVarInfo, [:int], :pointer
|
|
859
|
+
attach_function :igGetTextLineHeight, [], :float
|
|
860
|
+
attach_function :igGetTextLineHeightWithSpacing, [], :float
|
|
861
|
+
attach_function :igGetTime, [], :double
|
|
862
|
+
attach_function :igGetTopMostAndVisiblePopupModal, [], :pointer
|
|
863
|
+
attach_function :igGetTopMostPopupModal, [], :pointer
|
|
864
|
+
attach_function :igGetTreeNodeToLabelSpacing, [], :float
|
|
865
|
+
attach_function :igGetTypematicRepeatRate, [:int, :pointer, :pointer], :void
|
|
866
|
+
attach_function :igGetTypingSelectRequest, [:int], :pointer
|
|
867
|
+
attach_function :igGetVersion, [], :string
|
|
868
|
+
attach_function :igGetViewportPlatformMonitor, [:pointer], :pointer
|
|
869
|
+
attach_function :igGetWindowAlwaysWantOwnTabBar, [:pointer], :bool
|
|
870
|
+
attach_function :igGetWindowDockID, [], :uint
|
|
871
|
+
attach_function :igGetWindowDockNode, [], :pointer
|
|
872
|
+
attach_function :igGetWindowDpiScale, [], :float
|
|
873
|
+
attach_function :igGetWindowDrawList, [], :pointer
|
|
874
|
+
attach_function :igGetWindowHeight, [], :float
|
|
875
|
+
attach_function :igGetWindowPos, [:pointer], :void
|
|
876
|
+
attach_function :igGetWindowResizeBorderID, [:pointer, :int], :uint
|
|
877
|
+
attach_function :igGetWindowResizeCornerID, [:pointer, :int], :uint
|
|
878
|
+
attach_function :igGetWindowScrollbarID, [:pointer, :int], :uint
|
|
879
|
+
attach_function :igGetWindowScrollbarRect, [:pointer, :pointer, :int], :void
|
|
880
|
+
attach_function :igGetWindowSize, [:pointer], :void
|
|
881
|
+
attach_function :igGetWindowViewport, [], :pointer
|
|
882
|
+
attach_function :igGetWindowWidth, [], :float
|
|
883
|
+
attach_function :igImAbs_Float, [:float], :float
|
|
884
|
+
attach_function :igImAbs_Int, [:int], :int
|
|
885
|
+
attach_function :igImAbs_double, [:double], :double
|
|
886
|
+
attach_function :igImAlphaBlendColors, [:uint, :uint], :uint
|
|
887
|
+
attach_function :igImBezierCubicCalc, [:pointer, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, :float], :void
|
|
888
|
+
attach_function :igImBezierCubicClosestPoint, [:pointer, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, :int], :void
|
|
889
|
+
attach_function :igImBezierCubicClosestPointCasteljau, [:pointer, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, :float], :void
|
|
890
|
+
attach_function :igImBezierQuadraticCalc, [:pointer, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, :float], :void
|
|
891
|
+
attach_function :igImBitArrayClearAllBits, [:pointer, :int], :void
|
|
892
|
+
attach_function :igImBitArrayClearBit, [:pointer, :int], :void
|
|
893
|
+
attach_function :igImBitArrayGetStorageSizeInBytes, [:int], :size_t
|
|
894
|
+
attach_function :igImBitArraySetBit, [:pointer, :int], :void
|
|
895
|
+
attach_function :igImBitArraySetBitRange, [:pointer, :int, :int], :void
|
|
896
|
+
attach_function :igImBitArrayTestBit, [:pointer, :int], :bool
|
|
897
|
+
attach_function :igImCharIsBlankA, [:char], :bool
|
|
898
|
+
attach_function :igImCharIsBlankW, [:uint], :bool
|
|
899
|
+
attach_function :igImCharIsXdigitA, [:char], :bool
|
|
900
|
+
attach_function :igImClamp, [:pointer, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value], :void
|
|
901
|
+
attach_function :igImCountSetBits, [:uint], :uint
|
|
902
|
+
attach_function :igImDot, [ImVec2.by_value, ImVec2.by_value], :float
|
|
903
|
+
attach_function :igImExponentialMovingAverage, [:float, :float, :int], :float
|
|
904
|
+
attach_function :igImFileClose, [:pointer], :bool
|
|
905
|
+
attach_function :igImFileGetSize, [:pointer], :ulong_long
|
|
906
|
+
attach_function :igImFileLoadToMemory, [:string, :string, :pointer, :int], :pointer
|
|
907
|
+
attach_function :igImFileOpen, [:string, :string], :pointer
|
|
908
|
+
attach_function :igImFileRead, [:pointer, :ulong_long, :ulong_long, :pointer], :ulong_long
|
|
909
|
+
attach_function :igImFileWrite, [:pointer, :ulong_long, :ulong_long, :pointer], :ulong_long
|
|
910
|
+
attach_function :igImFloor_Float, [:float], :float
|
|
911
|
+
attach_function :igImFloor_Vec2, [:pointer, ImVec2.by_value], :void
|
|
912
|
+
attach_function :igImFontAtlasBuildFinish, [:pointer], :void
|
|
913
|
+
attach_function :igImFontAtlasBuildGetOversampleFactors, [:pointer, :pointer, :pointer], :void
|
|
914
|
+
attach_function :igImFontAtlasBuildInit, [:pointer], :void
|
|
915
|
+
attach_function :igImFontAtlasBuildMultiplyCalcLookupTable, [:pointer, :float], :void
|
|
916
|
+
attach_function :igImFontAtlasBuildMultiplyRectAlpha8, [:pointer, :pointer, :int, :int, :int, :int, :int], :void
|
|
917
|
+
attach_function :igImFontAtlasBuildPackCustomRects, [:pointer, :pointer], :void
|
|
918
|
+
attach_function :igImFontAtlasBuildRender32bppRectFromString, [:pointer, :int, :int, :int, :int, :string, :char, :uint], :void
|
|
919
|
+
attach_function :igImFontAtlasBuildRender8bppRectFromString, [:pointer, :int, :int, :int, :int, :string, :char, :uchar], :void
|
|
920
|
+
attach_function :igImFontAtlasBuildSetupFont, [:pointer, :pointer, :pointer, :float, :float], :void
|
|
921
|
+
attach_function :igImFontAtlasGetBuilderForStbTruetype, [], :pointer
|
|
922
|
+
attach_function :igImFontAtlasGetMouseCursorTexData, [:pointer, :int, :pointer, :pointer, :pointer, :pointer], :bool
|
|
923
|
+
attach_function :igImFontAtlasUpdateSourcesPointers, [:pointer], :void
|
|
924
|
+
attach_function :igImFormatStringToTempBufferV, [:pointer, :pointer, :string, :pointer], :void
|
|
925
|
+
attach_function :igImFormatStringV, [:pointer, :size_t, :string, :pointer], :int
|
|
926
|
+
attach_function :igImHashData, [:pointer, :size_t, :uint], :uint
|
|
927
|
+
attach_function :igImHashStr, [:string, :size_t, :uint], :uint
|
|
928
|
+
attach_function :igImInvLength, [ImVec2.by_value, :float], :float
|
|
929
|
+
attach_function :igImIsFloatAboveGuaranteedIntegerPrecision, [:float], :bool
|
|
930
|
+
attach_function :igImIsPowerOfTwo_Int, [:int], :bool
|
|
931
|
+
attach_function :igImIsPowerOfTwo_U64, [:ulong_long], :bool
|
|
932
|
+
attach_function :igImLengthSqr_Vec2, [ImVec2.by_value], :float
|
|
933
|
+
attach_function :igImLengthSqr_Vec4, [ImVec4.by_value], :float
|
|
934
|
+
attach_function :igImLerp_Vec2Float, [:pointer, ImVec2.by_value, ImVec2.by_value, :float], :void
|
|
935
|
+
attach_function :igImLerp_Vec2Vec2, [:pointer, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value], :void
|
|
936
|
+
attach_function :igImLerp_Vec4, [:pointer, ImVec4.by_value, ImVec4.by_value, :float], :void
|
|
937
|
+
attach_function :igImLineClosestPoint, [:pointer, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value], :void
|
|
938
|
+
attach_function :igImLinearRemapClamp, [:float, :float, :float, :float, :float], :float
|
|
939
|
+
attach_function :igImLinearSweep, [:float, :float, :float], :float
|
|
940
|
+
attach_function :igImLog_Float, [:float], :float
|
|
941
|
+
attach_function :igImLog_double, [:double], :double
|
|
942
|
+
attach_function :igImLowerBound, [:pointer, :pointer, :uint], :pointer
|
|
943
|
+
attach_function :igImMax, [:pointer, ImVec2.by_value, ImVec2.by_value], :void
|
|
944
|
+
attach_function :igImMin, [:pointer, ImVec2.by_value, ImVec2.by_value], :void
|
|
945
|
+
attach_function :igImModPositive, [:int, :int], :int
|
|
946
|
+
attach_function :igImMul, [:pointer, ImVec2.by_value, ImVec2.by_value], :void
|
|
947
|
+
attach_function :igImParseFormatFindEnd, [:string], :string
|
|
948
|
+
attach_function :igImParseFormatFindStart, [:string], :string
|
|
949
|
+
attach_function :igImParseFormatPrecision, [:string, :int], :int
|
|
950
|
+
attach_function :igImParseFormatSanitizeForPrinting, [:string, :pointer, :size_t], :void
|
|
951
|
+
attach_function :igImParseFormatSanitizeForScanning, [:string, :pointer, :size_t], :string
|
|
952
|
+
attach_function :igImParseFormatTrimDecorations, [:string, :pointer, :size_t], :string
|
|
953
|
+
attach_function :igImPow_Float, [:float, :float], :float
|
|
954
|
+
attach_function :igImPow_double, [:double, :double], :double
|
|
955
|
+
attach_function :igImQsort, [:pointer, :size_t, :size_t, :pointer], :void
|
|
956
|
+
attach_function :igImRotate, [:pointer, ImVec2.by_value, :float, :float], :void
|
|
957
|
+
attach_function :igImRsqrt_Float, [:float], :float
|
|
958
|
+
attach_function :igImRsqrt_double, [:double], :double
|
|
959
|
+
attach_function :igImSaturate, [:float], :float
|
|
960
|
+
attach_function :igImSign_Float, [:float], :float
|
|
961
|
+
attach_function :igImSign_double, [:double], :double
|
|
962
|
+
attach_function :igImStrSkipBlank, [:string], :string
|
|
963
|
+
attach_function :igImStrTrimBlanks, [:pointer], :void
|
|
964
|
+
attach_function :igImStrbol, [:string, :string], :string
|
|
965
|
+
attach_function :igImStrchrRange, [:string, :string, :char], :string
|
|
966
|
+
attach_function :igImStrdup, [:string], :pointer
|
|
967
|
+
attach_function :igImStrdupcpy, [:pointer, :pointer, :string], :pointer
|
|
968
|
+
attach_function :igImStreolRange, [:string, :string], :string
|
|
969
|
+
attach_function :igImStricmp, [:string, :string], :int
|
|
970
|
+
attach_function :igImStristr, [:string, :string, :string, :string], :string
|
|
971
|
+
attach_function :igImStrlenW, [:pointer], :int
|
|
972
|
+
attach_function :igImStrncpy, [:pointer, :string, :size_t], :void
|
|
973
|
+
attach_function :igImStrnicmp, [:string, :string, :size_t], :int
|
|
974
|
+
attach_function :igImTextCharFromUtf8, [:pointer, :string, :string], :int
|
|
975
|
+
attach_function :igImTextCharToUtf8, [:pointer, :uint], :string
|
|
976
|
+
attach_function :igImTextCountCharsFromUtf8, [:string, :string], :int
|
|
977
|
+
attach_function :igImTextCountLines, [:string, :string], :int
|
|
978
|
+
attach_function :igImTextCountUtf8BytesFromChar, [:string, :string], :int
|
|
979
|
+
attach_function :igImTextCountUtf8BytesFromStr, [:pointer, :pointer], :int
|
|
980
|
+
attach_function :igImTextFindPreviousUtf8Codepoint, [:string, :string], :string
|
|
981
|
+
attach_function :igImTextStrFromUtf8, [:pointer, :int, :string, :string, :pointer], :int
|
|
982
|
+
attach_function :igImTextStrToUtf8, [:pointer, :int, :pointer, :pointer], :int
|
|
983
|
+
attach_function :igImToUpper, [:char], :char
|
|
984
|
+
attach_function :igImTriangleArea, [ImVec2.by_value, ImVec2.by_value, ImVec2.by_value], :float
|
|
985
|
+
attach_function :igImTriangleBarycentricCoords, [ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, :pointer, :pointer, :pointer], :void
|
|
986
|
+
attach_function :igImTriangleClosestPoint, [:pointer, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value], :void
|
|
987
|
+
attach_function :igImTriangleContainsPoint, [ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value], :bool
|
|
988
|
+
attach_function :igImTriangleIsClockwise, [ImVec2.by_value, ImVec2.by_value, ImVec2.by_value], :bool
|
|
989
|
+
attach_function :igImTrunc_Float, [:float], :float
|
|
990
|
+
attach_function :igImTrunc_Vec2, [:pointer, ImVec2.by_value], :void
|
|
991
|
+
attach_function :igImUpperPowerOfTwo, [:int], :int
|
|
992
|
+
attach_function :igImage, [:ulong_long, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value], :void
|
|
993
|
+
attach_function :igImageButton, [:string, :ulong_long, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, ImVec4.by_value, ImVec4.by_value], :bool
|
|
994
|
+
attach_function :igImageButtonEx, [:uint, :ulong_long, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, ImVec4.by_value, ImVec4.by_value, :int], :bool
|
|
995
|
+
attach_function :igImageWithBg, [:ulong_long, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, ImVec4.by_value, ImVec4.by_value], :void
|
|
996
|
+
attach_function :igIndent, [:float], :void
|
|
997
|
+
attach_function :igInitialize, [], :void
|
|
998
|
+
attach_function :igInputDouble, [:string, :pointer, :double, :double, :string, :int], :bool
|
|
999
|
+
attach_function :igInputFloat, [:string, :pointer, :float, :float, :string, :int], :bool
|
|
1000
|
+
attach_function :igInputFloat2, [:string, :pointer, :string, :int], :bool
|
|
1001
|
+
attach_function :igInputFloat3, [:string, :pointer, :string, :int], :bool
|
|
1002
|
+
attach_function :igInputFloat4, [:string, :pointer, :string, :int], :bool
|
|
1003
|
+
attach_function :igInputInt, [:string, :pointer, :int, :int, :int], :bool
|
|
1004
|
+
attach_function :igInputInt2, [:string, :pointer, :int], :bool
|
|
1005
|
+
attach_function :igInputInt3, [:string, :pointer, :int], :bool
|
|
1006
|
+
attach_function :igInputInt4, [:string, :pointer, :int], :bool
|
|
1007
|
+
attach_function :igInputScalar, [:string, :int, :pointer, :pointer, :pointer, :string, :int], :bool
|
|
1008
|
+
attach_function :igInputScalarN, [:string, :int, :pointer, :int, :pointer, :pointer, :string, :int], :bool
|
|
1009
|
+
attach_function :igInputText, [:string, :pointer, :size_t, :int, :ImGuiInputTextCallback, :pointer], :bool
|
|
1010
|
+
attach_function :igInputTextDeactivateHook, [:uint], :void
|
|
1011
|
+
attach_function :igInputTextEx, [:string, :string, :pointer, :int, ImVec2.by_value, :int, :ImGuiInputTextCallback, :pointer], :bool
|
|
1012
|
+
attach_function :igInputTextMultiline, [:string, :pointer, :size_t, ImVec2.by_value, :int, :ImGuiInputTextCallback, :pointer], :bool
|
|
1013
|
+
attach_function :igInputTextWithHint, [:string, :string, :pointer, :size_t, :int, :ImGuiInputTextCallback, :pointer], :bool
|
|
1014
|
+
attach_function :igInvisibleButton, [:string, ImVec2.by_value, :int], :bool
|
|
1015
|
+
attach_function :igIsActiveIdUsingNavDir, [:int], :bool
|
|
1016
|
+
attach_function :igIsAliasKey, [:int], :bool
|
|
1017
|
+
attach_function :igIsAnyItemActive, [], :bool
|
|
1018
|
+
attach_function :igIsAnyItemFocused, [], :bool
|
|
1019
|
+
attach_function :igIsAnyItemHovered, [], :bool
|
|
1020
|
+
attach_function :igIsAnyMouseDown, [], :bool
|
|
1021
|
+
attach_function :igIsClippedEx, [ImRect.by_value, :uint], :bool
|
|
1022
|
+
attach_function :igIsDragDropActive, [], :bool
|
|
1023
|
+
attach_function :igIsDragDropPayloadBeingAccepted, [], :bool
|
|
1024
|
+
attach_function :igIsGamepadKey, [:int], :bool
|
|
1025
|
+
attach_function :igIsItemActivated, [], :bool
|
|
1026
|
+
attach_function :igIsItemActive, [], :bool
|
|
1027
|
+
attach_function :igIsItemActiveAsInputText, [], :bool
|
|
1028
|
+
attach_function :igIsItemClicked, [:int], :bool
|
|
1029
|
+
attach_function :igIsItemDeactivated, [], :bool
|
|
1030
|
+
attach_function :igIsItemDeactivatedAfterEdit, [], :bool
|
|
1031
|
+
attach_function :igIsItemEdited, [], :bool
|
|
1032
|
+
attach_function :igIsItemFocused, [], :bool
|
|
1033
|
+
attach_function :igIsItemHovered, [:int], :bool
|
|
1034
|
+
attach_function :igIsItemToggledOpen, [], :bool
|
|
1035
|
+
attach_function :igIsItemToggledSelection, [], :bool
|
|
1036
|
+
attach_function :igIsItemVisible, [], :bool
|
|
1037
|
+
attach_function :igIsKeyChordPressed_InputFlags, [:int, :int, :uint], :bool
|
|
1038
|
+
attach_function :igIsKeyChordPressed_Nil, [:int], :bool
|
|
1039
|
+
attach_function :igIsKeyDown_ID, [:int, :uint], :bool
|
|
1040
|
+
attach_function :igIsKeyDown_Nil, [:int], :bool
|
|
1041
|
+
attach_function :igIsKeyPressed_Bool, [:int, :bool], :bool
|
|
1042
|
+
attach_function :igIsKeyPressed_InputFlags, [:int, :int, :uint], :bool
|
|
1043
|
+
attach_function :igIsKeyReleased_ID, [:int, :uint], :bool
|
|
1044
|
+
attach_function :igIsKeyReleased_Nil, [:int], :bool
|
|
1045
|
+
attach_function :igIsKeyboardKey, [:int], :bool
|
|
1046
|
+
attach_function :igIsLRModKey, [:int], :bool
|
|
1047
|
+
attach_function :igIsLegacyKey, [:int], :bool
|
|
1048
|
+
attach_function :igIsMouseClicked_Bool, [:int, :bool], :bool
|
|
1049
|
+
attach_function :igIsMouseClicked_InputFlags, [:int, :int, :uint], :bool
|
|
1050
|
+
attach_function :igIsMouseDoubleClicked_ID, [:int, :uint], :bool
|
|
1051
|
+
attach_function :igIsMouseDoubleClicked_Nil, [:int], :bool
|
|
1052
|
+
attach_function :igIsMouseDown_ID, [:int, :uint], :bool
|
|
1053
|
+
attach_function :igIsMouseDown_Nil, [:int], :bool
|
|
1054
|
+
attach_function :igIsMouseDragPastThreshold, [:int, :float], :bool
|
|
1055
|
+
attach_function :igIsMouseDragging, [:int, :float], :bool
|
|
1056
|
+
attach_function :igIsMouseHoveringRect, [ImVec2.by_value, ImVec2.by_value, :bool], :bool
|
|
1057
|
+
attach_function :igIsMouseKey, [:int], :bool
|
|
1058
|
+
attach_function :igIsMousePosValid, [:pointer], :bool
|
|
1059
|
+
attach_function :igIsMouseReleasedWithDelay, [:int, :float], :bool
|
|
1060
|
+
attach_function :igIsMouseReleased_ID, [:int, :uint], :bool
|
|
1061
|
+
attach_function :igIsMouseReleased_Nil, [:int], :bool
|
|
1062
|
+
attach_function :igIsNamedKey, [:int], :bool
|
|
1063
|
+
attach_function :igIsNamedKeyOrMod, [:int], :bool
|
|
1064
|
+
attach_function :igIsPopupOpen_ID, [:uint, :int], :bool
|
|
1065
|
+
attach_function :igIsPopupOpen_Str, [:string, :int], :bool
|
|
1066
|
+
attach_function :igIsRectVisible_Nil, [ImVec2.by_value], :bool
|
|
1067
|
+
attach_function :igIsRectVisible_Vec2, [ImVec2.by_value, ImVec2.by_value], :bool
|
|
1068
|
+
attach_function :igIsWindowAbove, [:pointer, :pointer], :bool
|
|
1069
|
+
attach_function :igIsWindowAppearing, [], :bool
|
|
1070
|
+
attach_function :igIsWindowChildOf, [:pointer, :pointer, :bool, :bool], :bool
|
|
1071
|
+
attach_function :igIsWindowCollapsed, [], :bool
|
|
1072
|
+
attach_function :igIsWindowContentHoverable, [:pointer, :int], :bool
|
|
1073
|
+
attach_function :igIsWindowDocked, [], :bool
|
|
1074
|
+
attach_function :igIsWindowFocused, [:int], :bool
|
|
1075
|
+
attach_function :igIsWindowHovered, [:int], :bool
|
|
1076
|
+
attach_function :igIsWindowNavFocusable, [:pointer], :bool
|
|
1077
|
+
attach_function :igIsWindowWithinBeginStackOf, [:pointer, :pointer], :bool
|
|
1078
|
+
attach_function :igItemAdd, [ImRect.by_value, :uint, :pointer, :int], :bool
|
|
1079
|
+
attach_function :igItemHoverable, [ImRect.by_value, :uint, :int], :bool
|
|
1080
|
+
attach_function :igItemSize_Rect, [ImRect.by_value, :float], :void
|
|
1081
|
+
attach_function :igItemSize_Vec2, [ImVec2.by_value, :float], :void
|
|
1082
|
+
attach_function :igKeepAliveID, [:uint], :void
|
|
1083
|
+
attach_function :igLabelTextV, [:string, :string, :pointer], :void
|
|
1084
|
+
attach_function :igListBox_FnStrPtr, [:string, :pointer, :pointer, :pointer, :int, :int], :bool
|
|
1085
|
+
attach_function :igListBox_Str_arr, [:string, :pointer, :pointer, :int, :int], :bool
|
|
1086
|
+
attach_function :igLoadIniSettingsFromDisk, [:string], :void
|
|
1087
|
+
attach_function :igLoadIniSettingsFromMemory, [:string, :size_t], :void
|
|
1088
|
+
attach_function :igLocalizeGetMsg, [:int], :string
|
|
1089
|
+
attach_function :igLocalizeRegisterEntries, [:pointer, :int], :void
|
|
1090
|
+
attach_function :igLogBegin, [:int, :int], :void
|
|
1091
|
+
attach_function :igLogButtons, [], :void
|
|
1092
|
+
attach_function :igLogFinish, [], :void
|
|
1093
|
+
attach_function :igLogRenderedText, [:pointer, :string, :string], :void
|
|
1094
|
+
attach_function :igLogSetNextTextDecoration, [:string, :string], :void
|
|
1095
|
+
attach_function :igLogTextV, [:string, :pointer], :void
|
|
1096
|
+
attach_function :igLogToBuffer, [:int], :void
|
|
1097
|
+
attach_function :igLogToClipboard, [:int], :void
|
|
1098
|
+
attach_function :igLogToFile, [:int, :string], :void
|
|
1099
|
+
attach_function :igLogToTTY, [:int], :void
|
|
1100
|
+
attach_function :igMarkIniSettingsDirty_Nil, [], :void
|
|
1101
|
+
attach_function :igMarkIniSettingsDirty_WindowPtr, [:pointer], :void
|
|
1102
|
+
attach_function :igMarkItemEdited, [:uint], :void
|
|
1103
|
+
attach_function :igMemAlloc, [:size_t], :pointer
|
|
1104
|
+
attach_function :igMemFree, [:pointer], :void
|
|
1105
|
+
attach_function :igMenuItemEx, [:string, :string, :string, :bool, :bool], :bool
|
|
1106
|
+
attach_function :igMenuItem_Bool, [:string, :string, :bool, :bool], :bool
|
|
1107
|
+
attach_function :igMenuItem_BoolPtr, [:string, :string, :pointer, :bool], :bool
|
|
1108
|
+
attach_function :igMouseButtonToKey, [:int], :int
|
|
1109
|
+
attach_function :igMultiSelectAddSetAll, [:pointer, :bool], :void
|
|
1110
|
+
attach_function :igMultiSelectAddSetRange, [:pointer, :bool, :int, :pointer, :pointer], :void
|
|
1111
|
+
attach_function :igMultiSelectItemFooter, [:uint, :pointer, :pointer], :void
|
|
1112
|
+
attach_function :igMultiSelectItemHeader, [:uint, :pointer, :pointer], :void
|
|
1113
|
+
attach_function :igNavClearPreferredPosForAxis, [:int], :void
|
|
1114
|
+
attach_function :igNavHighlightActivated, [:uint], :void
|
|
1115
|
+
attach_function :igNavInitRequestApplyResult, [], :void
|
|
1116
|
+
attach_function :igNavInitWindow, [:pointer, :bool], :void
|
|
1117
|
+
attach_function :igNavMoveRequestApplyResult, [], :void
|
|
1118
|
+
attach_function :igNavMoveRequestButNoResultYet, [], :bool
|
|
1119
|
+
attach_function :igNavMoveRequestCancel, [], :void
|
|
1120
|
+
attach_function :igNavMoveRequestForward, [:int, :int, :int, :int], :void
|
|
1121
|
+
attach_function :igNavMoveRequestResolveWithLastItem, [:pointer], :void
|
|
1122
|
+
attach_function :igNavMoveRequestResolveWithPastTreeNode, [:pointer, :pointer], :void
|
|
1123
|
+
attach_function :igNavMoveRequestSubmit, [:int, :int, :int, :int], :void
|
|
1124
|
+
attach_function :igNavMoveRequestTryWrapping, [:pointer, :int], :void
|
|
1125
|
+
attach_function :igNavUpdateCurrentWindowIsScrollPushableX, [], :void
|
|
1126
|
+
attach_function :igNewFrame, [], :void
|
|
1127
|
+
attach_function :igNewLine, [], :void
|
|
1128
|
+
attach_function :igNextColumn, [], :void
|
|
1129
|
+
attach_function :igOpenPopupEx, [:uint, :int], :void
|
|
1130
|
+
attach_function :igOpenPopupOnItemClick, [:string, :int], :void
|
|
1131
|
+
attach_function :igOpenPopup_ID, [:uint, :int], :void
|
|
1132
|
+
attach_function :igOpenPopup_Str, [:string, :int], :void
|
|
1133
|
+
attach_function :igPlotEx, [:int, :string, :pointer, :pointer, :int, :int, :string, :float, :float, ImVec2.by_value], :int
|
|
1134
|
+
attach_function :igPlotHistogram_FloatPtr, [:string, :pointer, :int, :int, :string, :float, :float, ImVec2.by_value, :int], :void
|
|
1135
|
+
attach_function :igPlotHistogram_FnFloatPtr, [:string, :pointer, :pointer, :int, :int, :string, :float, :float, ImVec2.by_value], :void
|
|
1136
|
+
attach_function :igPlotLines_FloatPtr, [:string, :pointer, :int, :int, :string, :float, :float, ImVec2.by_value, :int], :void
|
|
1137
|
+
attach_function :igPlotLines_FnFloatPtr, [:string, :pointer, :pointer, :int, :int, :string, :float, :float, ImVec2.by_value], :void
|
|
1138
|
+
attach_function :igPopClipRect, [], :void
|
|
1139
|
+
attach_function :igPopColumnsBackground, [], :void
|
|
1140
|
+
attach_function :igPopFocusScope, [], :void
|
|
1141
|
+
attach_function :igPopFont, [], :void
|
|
1142
|
+
attach_function :igPopID, [], :void
|
|
1143
|
+
attach_function :igPopItemFlag, [], :void
|
|
1144
|
+
attach_function :igPopItemWidth, [], :void
|
|
1145
|
+
attach_function :igPopStyleColor, [:int], :void
|
|
1146
|
+
attach_function :igPopStyleVar, [:int], :void
|
|
1147
|
+
attach_function :igPopTextWrapPos, [], :void
|
|
1148
|
+
attach_function :igProgressBar, [:float, ImVec2.by_value, :string], :void
|
|
1149
|
+
attach_function :igPushClipRect, [ImVec2.by_value, ImVec2.by_value, :bool], :void
|
|
1150
|
+
attach_function :igPushColumnClipRect, [:int], :void
|
|
1151
|
+
attach_function :igPushColumnsBackground, [], :void
|
|
1152
|
+
attach_function :igPushFocusScope, [:uint], :void
|
|
1153
|
+
attach_function :igPushFont, [:pointer], :void
|
|
1154
|
+
attach_function :igPushID_Int, [:int], :void
|
|
1155
|
+
attach_function :igPushID_Ptr, [:pointer], :void
|
|
1156
|
+
attach_function :igPushID_Str, [:string], :void
|
|
1157
|
+
attach_function :igPushID_StrStr, [:string, :string], :void
|
|
1158
|
+
attach_function :igPushItemFlag, [:int, :bool], :void
|
|
1159
|
+
attach_function :igPushItemWidth, [:float], :void
|
|
1160
|
+
attach_function :igPushMultiItemsWidths, [:int, :float], :void
|
|
1161
|
+
attach_function :igPushOverrideID, [:uint], :void
|
|
1162
|
+
attach_function :igPushPasswordFont, [], :void
|
|
1163
|
+
attach_function :igPushStyleColor_U32, [:int, :uint], :void
|
|
1164
|
+
attach_function :igPushStyleColor_Vec4, [:int, ImVec4.by_value], :void
|
|
1165
|
+
attach_function :igPushStyleVarX, [:int, :float], :void
|
|
1166
|
+
attach_function :igPushStyleVarY, [:int, :float], :void
|
|
1167
|
+
attach_function :igPushStyleVar_Float, [:int, :float], :void
|
|
1168
|
+
attach_function :igPushStyleVar_Vec2, [:int, ImVec2.by_value], :void
|
|
1169
|
+
attach_function :igPushTextWrapPos, [:float], :void
|
|
1170
|
+
attach_function :igRadioButton_Bool, [:string, :bool], :bool
|
|
1171
|
+
attach_function :igRadioButton_IntPtr, [:string, :pointer, :int], :bool
|
|
1172
|
+
attach_function :igRemoveContextHook, [:pointer, :uint], :void
|
|
1173
|
+
attach_function :igRemoveSettingsHandler, [:string], :void
|
|
1174
|
+
attach_function :igRender, [], :void
|
|
1175
|
+
attach_function :igRenderArrow, [:pointer, ImVec2.by_value, :uint, :int, :float], :void
|
|
1176
|
+
attach_function :igRenderArrowDockMenu, [:pointer, ImVec2.by_value, :float, :uint], :void
|
|
1177
|
+
attach_function :igRenderArrowPointingAt, [:pointer, ImVec2.by_value, ImVec2.by_value, :int, :uint], :void
|
|
1178
|
+
attach_function :igRenderBullet, [:pointer, ImVec2.by_value, :uint], :void
|
|
1179
|
+
attach_function :igRenderCheckMark, [:pointer, ImVec2.by_value, :uint, :float], :void
|
|
1180
|
+
attach_function :igRenderColorRectWithAlphaCheckerboard, [:pointer, ImVec2.by_value, ImVec2.by_value, :uint, :float, ImVec2.by_value, :float, :int], :void
|
|
1181
|
+
attach_function :igRenderDragDropTargetRect, [ImRect.by_value, ImRect.by_value], :void
|
|
1182
|
+
attach_function :igRenderFrame, [ImVec2.by_value, ImVec2.by_value, :uint, :bool, :float], :void
|
|
1183
|
+
attach_function :igRenderFrameBorder, [ImVec2.by_value, ImVec2.by_value, :float], :void
|
|
1184
|
+
attach_function :igRenderMouseCursor, [ImVec2.by_value, :float, :int, :uint, :uint, :uint], :void
|
|
1185
|
+
attach_function :igRenderNavCursor, [ImRect.by_value, :uint, :int], :void
|
|
1186
|
+
attach_function :igRenderPlatformWindowsDefault, [:pointer, :pointer], :void
|
|
1187
|
+
attach_function :igRenderRectFilledRangeH, [:pointer, ImRect.by_value, :uint, :float, :float, :float], :void
|
|
1188
|
+
attach_function :igRenderRectFilledWithHole, [:pointer, ImRect.by_value, ImRect.by_value, :uint, :float], :void
|
|
1189
|
+
attach_function :igRenderText, [ImVec2.by_value, :string, :string, :bool], :void
|
|
1190
|
+
attach_function :igRenderTextClipped, [ImVec2.by_value, ImVec2.by_value, :string, :string, :pointer, ImVec2.by_value, :pointer], :void
|
|
1191
|
+
attach_function :igRenderTextClippedEx, [:pointer, ImVec2.by_value, ImVec2.by_value, :string, :string, :pointer, ImVec2.by_value, :pointer], :void
|
|
1192
|
+
attach_function :igRenderTextEllipsis, [:pointer, ImVec2.by_value, ImVec2.by_value, :float, :float, :string, :string, :pointer], :void
|
|
1193
|
+
attach_function :igRenderTextWrapped, [ImVec2.by_value, :string, :string, :float], :void
|
|
1194
|
+
attach_function :igResetMouseDragDelta, [:int], :void
|
|
1195
|
+
attach_function :igSameLine, [:float, :float], :void
|
|
1196
|
+
attach_function :igSaveIniSettingsToDisk, [:string], :void
|
|
1197
|
+
attach_function :igSaveIniSettingsToMemory, [:pointer], :string
|
|
1198
|
+
attach_function :igScaleWindowsInViewport, [:pointer, :float], :void
|
|
1199
|
+
attach_function :igScrollToBringRectIntoView, [:pointer, ImRect.by_value], :void
|
|
1200
|
+
attach_function :igScrollToItem, [:int], :void
|
|
1201
|
+
attach_function :igScrollToRect, [:pointer, ImRect.by_value, :int], :void
|
|
1202
|
+
attach_function :igScrollToRectEx, [:pointer, :pointer, ImRect.by_value, :int], :void
|
|
1203
|
+
attach_function :igScrollbar, [:int], :void
|
|
1204
|
+
attach_function :igScrollbarEx, [ImRect.by_value, :uint, :int, :pointer, :pointer, :pointer, :int], :bool
|
|
1205
|
+
attach_function :igSelectable_Bool, [:string, :bool, :int, ImVec2.by_value], :bool
|
|
1206
|
+
attach_function :igSelectable_BoolPtr, [:string, :pointer, :int, ImVec2.by_value], :bool
|
|
1207
|
+
attach_function :igSeparator, [], :void
|
|
1208
|
+
attach_function :igSeparatorEx, [:int, :float], :void
|
|
1209
|
+
attach_function :igSeparatorText, [:string], :void
|
|
1210
|
+
attach_function :igSeparatorTextEx, [:uint, :string, :string, :float], :void
|
|
1211
|
+
attach_function :igSetActiveID, [:uint, :pointer], :void
|
|
1212
|
+
attach_function :igSetActiveIdUsingAllKeyboardKeys, [], :void
|
|
1213
|
+
attach_function :igSetAllocatorFunctions, [:ImGuiMemAllocFunc, :ImGuiMemFreeFunc, :pointer], :void
|
|
1214
|
+
attach_function :igSetClipboardText, [:string], :void
|
|
1215
|
+
attach_function :igSetColorEditOptions, [:int], :void
|
|
1216
|
+
attach_function :igSetColumnOffset, [:int, :float], :void
|
|
1217
|
+
attach_function :igSetColumnWidth, [:int, :float], :void
|
|
1218
|
+
attach_function :igSetCurrentContext, [:pointer], :void
|
|
1219
|
+
attach_function :igSetCurrentFont, [:pointer], :void
|
|
1220
|
+
attach_function :igSetCurrentViewport, [:pointer, :pointer], :void
|
|
1221
|
+
attach_function :igSetCursorPos, [ImVec2.by_value], :void
|
|
1222
|
+
attach_function :igSetCursorPosX, [:float], :void
|
|
1223
|
+
attach_function :igSetCursorPosY, [:float], :void
|
|
1224
|
+
attach_function :igSetCursorScreenPos, [ImVec2.by_value], :void
|
|
1225
|
+
attach_function :igSetDragDropPayload, [:string, :pointer, :size_t, :int], :bool
|
|
1226
|
+
attach_function :igSetFocusID, [:uint, :pointer], :void
|
|
1227
|
+
attach_function :igSetHoveredID, [:uint], :void
|
|
1228
|
+
attach_function :igSetItemDefaultFocus, [], :void
|
|
1229
|
+
attach_function :igSetItemKeyOwner_InputFlags, [:int, :int], :void
|
|
1230
|
+
attach_function :igSetItemKeyOwner_Nil, [:int], :void
|
|
1231
|
+
attach_function :igSetItemTooltipV, [:string, :pointer], :void
|
|
1232
|
+
attach_function :igSetKeyOwner, [:int, :uint, :int], :void
|
|
1233
|
+
attach_function :igSetKeyOwnersForKeyChord, [:int, :uint, :int], :void
|
|
1234
|
+
attach_function :igSetKeyboardFocusHere, [:int], :void
|
|
1235
|
+
attach_function :igSetLastItemData, [:uint, :int, :int, ImRect.by_value], :void
|
|
1236
|
+
attach_function :igSetMouseCursor, [:int], :void
|
|
1237
|
+
attach_function :igSetNavCursorVisible, [:bool], :void
|
|
1238
|
+
attach_function :igSetNavCursorVisibleAfterMove, [], :void
|
|
1239
|
+
attach_function :igSetNavFocusScope, [:uint], :void
|
|
1240
|
+
attach_function :igSetNavID, [:uint, :int, :uint, ImRect.by_value], :void
|
|
1241
|
+
attach_function :igSetNavWindow, [:pointer], :void
|
|
1242
|
+
attach_function :igSetNextFrameWantCaptureKeyboard, [:bool], :void
|
|
1243
|
+
attach_function :igSetNextFrameWantCaptureMouse, [:bool], :void
|
|
1244
|
+
attach_function :igSetNextItemAllowOverlap, [], :void
|
|
1245
|
+
attach_function :igSetNextItemOpen, [:bool, :int], :void
|
|
1246
|
+
attach_function :igSetNextItemRefVal, [:int, :pointer], :void
|
|
1247
|
+
attach_function :igSetNextItemSelectionUserData, [:pointer], :void
|
|
1248
|
+
attach_function :igSetNextItemShortcut, [:int, :int], :void
|
|
1249
|
+
attach_function :igSetNextItemStorageID, [:uint], :void
|
|
1250
|
+
attach_function :igSetNextItemWidth, [:float], :void
|
|
1251
|
+
attach_function :igSetNextWindowBgAlpha, [:float], :void
|
|
1252
|
+
attach_function :igSetNextWindowClass, [:pointer], :void
|
|
1253
|
+
attach_function :igSetNextWindowCollapsed, [:bool, :int], :void
|
|
1254
|
+
attach_function :igSetNextWindowContentSize, [ImVec2.by_value], :void
|
|
1255
|
+
attach_function :igSetNextWindowDockID, [:uint, :int], :void
|
|
1256
|
+
attach_function :igSetNextWindowFocus, [], :void
|
|
1257
|
+
attach_function :igSetNextWindowPos, [ImVec2.by_value, :int, ImVec2.by_value], :void
|
|
1258
|
+
attach_function :igSetNextWindowRefreshPolicy, [:int], :void
|
|
1259
|
+
attach_function :igSetNextWindowScroll, [ImVec2.by_value], :void
|
|
1260
|
+
attach_function :igSetNextWindowSize, [ImVec2.by_value, :int], :void
|
|
1261
|
+
attach_function :igSetNextWindowSizeConstraints, [ImVec2.by_value, ImVec2.by_value, :ImGuiSizeCallback, :pointer], :void
|
|
1262
|
+
attach_function :igSetNextWindowViewport, [:uint], :void
|
|
1263
|
+
attach_function :igSetScrollFromPosX_Float, [:float, :float], :void
|
|
1264
|
+
attach_function :igSetScrollFromPosX_WindowPtr, [:pointer, :float, :float], :void
|
|
1265
|
+
attach_function :igSetScrollFromPosY_Float, [:float, :float], :void
|
|
1266
|
+
attach_function :igSetScrollFromPosY_WindowPtr, [:pointer, :float, :float], :void
|
|
1267
|
+
attach_function :igSetScrollHereX, [:float], :void
|
|
1268
|
+
attach_function :igSetScrollHereY, [:float], :void
|
|
1269
|
+
attach_function :igSetScrollX_Float, [:float], :void
|
|
1270
|
+
attach_function :igSetScrollX_WindowPtr, [:pointer, :float], :void
|
|
1271
|
+
attach_function :igSetScrollY_Float, [:float], :void
|
|
1272
|
+
attach_function :igSetScrollY_WindowPtr, [:pointer, :float], :void
|
|
1273
|
+
attach_function :igSetShortcutRouting, [:int, :int, :uint], :bool
|
|
1274
|
+
attach_function :igSetStateStorage, [:pointer], :void
|
|
1275
|
+
attach_function :igSetTabItemClosed, [:string], :void
|
|
1276
|
+
attach_function :igSetTooltipV, [:string, :pointer], :void
|
|
1277
|
+
attach_function :igSetWindowClipRectBeforeSetChannel, [:pointer, ImRect.by_value], :void
|
|
1278
|
+
attach_function :igSetWindowCollapsed_Bool, [:bool, :int], :void
|
|
1279
|
+
attach_function :igSetWindowCollapsed_Str, [:string, :bool, :int], :void
|
|
1280
|
+
attach_function :igSetWindowCollapsed_WindowPtr, [:pointer, :bool, :int], :void
|
|
1281
|
+
attach_function :igSetWindowDock, [:pointer, :uint, :int], :void
|
|
1282
|
+
attach_function :igSetWindowFocus_Nil, [], :void
|
|
1283
|
+
attach_function :igSetWindowFocus_Str, [:string], :void
|
|
1284
|
+
attach_function :igSetWindowFontScale, [:float], :void
|
|
1285
|
+
attach_function :igSetWindowHiddenAndSkipItemsForCurrentFrame, [:pointer], :void
|
|
1286
|
+
attach_function :igSetWindowHitTestHole, [:pointer, ImVec2.by_value, ImVec2.by_value], :void
|
|
1287
|
+
attach_function :igSetWindowParentWindowForFocusRoute, [:pointer, :pointer], :void
|
|
1288
|
+
attach_function :igSetWindowPos_Str, [:string, ImVec2.by_value, :int], :void
|
|
1289
|
+
attach_function :igSetWindowPos_Vec2, [ImVec2.by_value, :int], :void
|
|
1290
|
+
attach_function :igSetWindowPos_WindowPtr, [:pointer, ImVec2.by_value, :int], :void
|
|
1291
|
+
attach_function :igSetWindowSize_Str, [:string, ImVec2.by_value, :int], :void
|
|
1292
|
+
attach_function :igSetWindowSize_Vec2, [ImVec2.by_value, :int], :void
|
|
1293
|
+
attach_function :igSetWindowSize_WindowPtr, [:pointer, ImVec2.by_value, :int], :void
|
|
1294
|
+
attach_function :igSetWindowViewport, [:pointer, :pointer], :void
|
|
1295
|
+
attach_function :igShadeVertsLinearColorGradientKeepAlpha, [:pointer, :int, :int, ImVec2.by_value, ImVec2.by_value, :uint, :uint], :void
|
|
1296
|
+
attach_function :igShadeVertsLinearUV, [:pointer, :int, :int, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, :bool], :void
|
|
1297
|
+
attach_function :igShadeVertsTransformPos, [:pointer, :int, :int, ImVec2.by_value, :float, :float, ImVec2.by_value], :void
|
|
1298
|
+
attach_function :igShortcut_ID, [:int, :int, :uint], :bool
|
|
1299
|
+
attach_function :igShortcut_Nil, [:int, :int], :bool
|
|
1300
|
+
attach_function :igShowAboutWindow, [:pointer], :void
|
|
1301
|
+
attach_function :igShowDebugLogWindow, [:pointer], :void
|
|
1302
|
+
attach_function :igShowDemoWindow, [:pointer], :void
|
|
1303
|
+
attach_function :igShowFontAtlas, [:pointer], :void
|
|
1304
|
+
attach_function :igShowFontSelector, [:string], :void
|
|
1305
|
+
attach_function :igShowIDStackToolWindow, [:pointer], :void
|
|
1306
|
+
attach_function :igShowMetricsWindow, [:pointer], :void
|
|
1307
|
+
attach_function :igShowStyleEditor, [:pointer], :void
|
|
1308
|
+
attach_function :igShowStyleSelector, [:string], :bool
|
|
1309
|
+
attach_function :igShowUserGuide, [], :void
|
|
1310
|
+
attach_function :igShrinkWidths, [:pointer, :int, :float], :void
|
|
1311
|
+
attach_function :igShutdown, [], :void
|
|
1312
|
+
attach_function :igSliderAngle, [:string, :pointer, :float, :float, :string, :int], :bool
|
|
1313
|
+
attach_function :igSliderBehavior, [ImRect.by_value, :uint, :int, :pointer, :pointer, :pointer, :string, :int, :pointer], :bool
|
|
1314
|
+
attach_function :igSliderFloat, [:string, :pointer, :float, :float, :string, :int], :bool
|
|
1315
|
+
attach_function :igSliderFloat2, [:string, :pointer, :float, :float, :string, :int], :bool
|
|
1316
|
+
attach_function :igSliderFloat3, [:string, :pointer, :float, :float, :string, :int], :bool
|
|
1317
|
+
attach_function :igSliderFloat4, [:string, :pointer, :float, :float, :string, :int], :bool
|
|
1318
|
+
attach_function :igSliderInt, [:string, :pointer, :int, :int, :string, :int], :bool
|
|
1319
|
+
attach_function :igSliderInt2, [:string, :pointer, :int, :int, :string, :int], :bool
|
|
1320
|
+
attach_function :igSliderInt3, [:string, :pointer, :int, :int, :string, :int], :bool
|
|
1321
|
+
attach_function :igSliderInt4, [:string, :pointer, :int, :int, :string, :int], :bool
|
|
1322
|
+
attach_function :igSliderScalar, [:string, :int, :pointer, :pointer, :pointer, :string, :int], :bool
|
|
1323
|
+
attach_function :igSliderScalarN, [:string, :int, :pointer, :int, :pointer, :pointer, :string, :int], :bool
|
|
1324
|
+
attach_function :igSmallButton, [:string], :bool
|
|
1325
|
+
attach_function :igSpacing, [], :void
|
|
1326
|
+
attach_function :igSplitterBehavior, [ImRect.by_value, :uint, :int, :pointer, :pointer, :float, :float, :float, :float, :uint], :bool
|
|
1327
|
+
attach_function :igStartMouseMovingWindow, [:pointer], :void
|
|
1328
|
+
attach_function :igStartMouseMovingWindowOrNode, [:pointer, :pointer, :bool], :void
|
|
1329
|
+
attach_function :igStyleColorsClassic, [:pointer], :void
|
|
1330
|
+
attach_function :igStyleColorsDark, [:pointer], :void
|
|
1331
|
+
attach_function :igStyleColorsLight, [:pointer], :void
|
|
1332
|
+
attach_function :igTabBarAddTab, [:pointer, :int, :pointer], :void
|
|
1333
|
+
attach_function :igTabBarCloseTab, [:pointer, :pointer], :void
|
|
1334
|
+
attach_function :igTabBarFindMostRecentlySelectedTabForActiveWindow, [:pointer], :pointer
|
|
1335
|
+
attach_function :igTabBarFindTabByID, [:pointer, :uint], :pointer
|
|
1336
|
+
attach_function :igTabBarFindTabByOrder, [:pointer, :int], :pointer
|
|
1337
|
+
attach_function :igTabBarGetCurrentTab, [:pointer], :pointer
|
|
1338
|
+
attach_function :igTabBarGetTabName, [:pointer, :pointer], :string
|
|
1339
|
+
attach_function :igTabBarGetTabOrder, [:pointer, :pointer], :int
|
|
1340
|
+
attach_function :igTabBarProcessReorder, [:pointer], :bool
|
|
1341
|
+
attach_function :igTabBarQueueFocus_Str, [:pointer, :string], :void
|
|
1342
|
+
attach_function :igTabBarQueueFocus_TabItemPtr, [:pointer, :pointer], :void
|
|
1343
|
+
attach_function :igTabBarQueueReorder, [:pointer, :pointer, :int], :void
|
|
1344
|
+
attach_function :igTabBarQueueReorderFromMousePos, [:pointer, :pointer, ImVec2.by_value], :void
|
|
1345
|
+
attach_function :igTabBarRemoveTab, [:pointer, :uint], :void
|
|
1346
|
+
attach_function :igTabItemBackground, [:pointer, ImRect.by_value, :int, :uint], :void
|
|
1347
|
+
attach_function :igTabItemButton, [:string, :int], :bool
|
|
1348
|
+
attach_function :igTabItemCalcSize_Str, [:pointer, :string, :bool], :void
|
|
1349
|
+
attach_function :igTabItemCalcSize_WindowPtr, [:pointer, :pointer], :void
|
|
1350
|
+
attach_function :igTabItemEx, [:pointer, :string, :pointer, :int, :pointer], :bool
|
|
1351
|
+
attach_function :igTabItemLabelAndCloseButton, [:pointer, ImRect.by_value, :int, ImVec2.by_value, :string, :uint, :uint, :bool, :pointer, :pointer], :void
|
|
1352
|
+
attach_function :igTabItemSpacing, [:string, :int, :float], :void
|
|
1353
|
+
attach_function :igTableAngledHeadersRow, [], :void
|
|
1354
|
+
attach_function :igTableAngledHeadersRowEx, [:uint, :float, :float, :pointer, :int], :void
|
|
1355
|
+
attach_function :igTableBeginApplyRequests, [:pointer], :void
|
|
1356
|
+
attach_function :igTableBeginCell, [:pointer, :int], :void
|
|
1357
|
+
attach_function :igTableBeginContextMenuPopup, [:pointer], :bool
|
|
1358
|
+
attach_function :igTableBeginInitMemory, [:pointer, :int], :void
|
|
1359
|
+
attach_function :igTableBeginRow, [:pointer], :void
|
|
1360
|
+
attach_function :igTableCalcMaxColumnWidth, [:pointer, :int], :float
|
|
1361
|
+
attach_function :igTableDrawBorders, [:pointer], :void
|
|
1362
|
+
attach_function :igTableDrawDefaultContextMenu, [:pointer, :int], :void
|
|
1363
|
+
attach_function :igTableEndCell, [:pointer], :void
|
|
1364
|
+
attach_function :igTableEndRow, [:pointer], :void
|
|
1365
|
+
attach_function :igTableFindByID, [:uint], :pointer
|
|
1366
|
+
attach_function :igTableFixColumnSortDirection, [:pointer, :pointer], :void
|
|
1367
|
+
attach_function :igTableGcCompactSettings, [], :void
|
|
1368
|
+
attach_function :igTableGcCompactTransientBuffers_TablePtr, [:pointer], :void
|
|
1369
|
+
attach_function :igTableGcCompactTransientBuffers_TableTempDataPtr, [:pointer], :void
|
|
1370
|
+
attach_function :igTableGetBoundSettings, [:pointer], :pointer
|
|
1371
|
+
attach_function :igTableGetCellBgRect, [:pointer, :pointer, :int], :void
|
|
1372
|
+
attach_function :igTableGetColumnCount, [], :int
|
|
1373
|
+
attach_function :igTableGetColumnFlags, [:int], :int
|
|
1374
|
+
attach_function :igTableGetColumnIndex, [], :int
|
|
1375
|
+
attach_function :igTableGetColumnName_Int, [:int], :string
|
|
1376
|
+
attach_function :igTableGetColumnName_TablePtr, [:pointer, :int], :string
|
|
1377
|
+
attach_function :igTableGetColumnNextSortDirection, [:pointer], :int
|
|
1378
|
+
attach_function :igTableGetColumnResizeID, [:pointer, :int, :int], :uint
|
|
1379
|
+
attach_function :igTableGetColumnWidthAuto, [:pointer, :pointer], :float
|
|
1380
|
+
attach_function :igTableGetHeaderAngledMaxLabelWidth, [], :float
|
|
1381
|
+
attach_function :igTableGetHeaderRowHeight, [], :float
|
|
1382
|
+
attach_function :igTableGetHoveredColumn, [], :int
|
|
1383
|
+
attach_function :igTableGetHoveredRow, [], :int
|
|
1384
|
+
attach_function :igTableGetInstanceData, [:pointer, :int], :pointer
|
|
1385
|
+
attach_function :igTableGetInstanceID, [:pointer, :int], :uint
|
|
1386
|
+
attach_function :igTableGetRowIndex, [], :int
|
|
1387
|
+
attach_function :igTableGetSortSpecs, [], :pointer
|
|
1388
|
+
attach_function :igTableHeader, [:string], :void
|
|
1389
|
+
attach_function :igTableHeadersRow, [], :void
|
|
1390
|
+
attach_function :igTableLoadSettings, [:pointer], :void
|
|
1391
|
+
attach_function :igTableMergeDrawChannels, [:pointer], :void
|
|
1392
|
+
attach_function :igTableNextColumn, [], :bool
|
|
1393
|
+
attach_function :igTableNextRow, [:int, :float], :void
|
|
1394
|
+
attach_function :igTableOpenContextMenu, [:int], :void
|
|
1395
|
+
attach_function :igTablePopBackgroundChannel, [], :void
|
|
1396
|
+
attach_function :igTablePushBackgroundChannel, [], :void
|
|
1397
|
+
attach_function :igTableRemove, [:pointer], :void
|
|
1398
|
+
attach_function :igTableResetSettings, [:pointer], :void
|
|
1399
|
+
attach_function :igTableSaveSettings, [:pointer], :void
|
|
1400
|
+
attach_function :igTableSetBgColor, [:int, :uint, :int], :void
|
|
1401
|
+
attach_function :igTableSetColumnEnabled, [:int, :bool], :void
|
|
1402
|
+
attach_function :igTableSetColumnIndex, [:int], :bool
|
|
1403
|
+
attach_function :igTableSetColumnSortDirection, [:int, :int, :bool], :void
|
|
1404
|
+
attach_function :igTableSetColumnWidth, [:int, :float], :void
|
|
1405
|
+
attach_function :igTableSetColumnWidthAutoAll, [:pointer], :void
|
|
1406
|
+
attach_function :igTableSetColumnWidthAutoSingle, [:pointer, :int], :void
|
|
1407
|
+
attach_function :igTableSettingsAddSettingsHandler, [], :void
|
|
1408
|
+
attach_function :igTableSettingsCreate, [:uint, :int], :pointer
|
|
1409
|
+
attach_function :igTableSettingsFindByID, [:uint], :pointer
|
|
1410
|
+
attach_function :igTableSetupColumn, [:string, :int, :float, :uint], :void
|
|
1411
|
+
attach_function :igTableSetupDrawChannels, [:pointer], :void
|
|
1412
|
+
attach_function :igTableSetupScrollFreeze, [:int, :int], :void
|
|
1413
|
+
attach_function :igTableSortSpecsBuild, [:pointer], :void
|
|
1414
|
+
attach_function :igTableSortSpecsSanitize, [:pointer], :void
|
|
1415
|
+
attach_function :igTableUpdateBorders, [:pointer], :void
|
|
1416
|
+
attach_function :igTableUpdateColumnsWeightFromWidth, [:pointer], :void
|
|
1417
|
+
attach_function :igTableUpdateLayout, [:pointer], :void
|
|
1418
|
+
attach_function :igTeleportMousePos, [ImVec2.by_value], :void
|
|
1419
|
+
attach_function :igTempInputIsActive, [:uint], :bool
|
|
1420
|
+
attach_function :igTempInputScalar, [ImRect.by_value, :uint, :string, :int, :pointer, :string, :pointer, :pointer], :bool
|
|
1421
|
+
attach_function :igTempInputText, [ImRect.by_value, :uint, :string, :pointer, :int, :int], :bool
|
|
1422
|
+
attach_function :igTestKeyOwner, [:int, :uint], :bool
|
|
1423
|
+
attach_function :igTestShortcutRouting, [:int, :uint], :bool
|
|
1424
|
+
attach_function :igTextColoredV, [ImVec4.by_value, :string, :pointer], :void
|
|
1425
|
+
attach_function :igTextDisabledV, [:string, :pointer], :void
|
|
1426
|
+
attach_function :igTextEx, [:string, :string, :int], :void
|
|
1427
|
+
attach_function :igTextLink, [:string], :bool
|
|
1428
|
+
attach_function :igTextLinkOpenURL, [:string, :string], :void
|
|
1429
|
+
attach_function :igTextUnformatted, [:string, :string], :void
|
|
1430
|
+
attach_function :igTextV, [:string, :pointer], :void
|
|
1431
|
+
attach_function :igTextWrappedV, [:string, :pointer], :void
|
|
1432
|
+
attach_function :igTranslateWindowsInViewport, [:pointer, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value, ImVec2.by_value], :void
|
|
1433
|
+
attach_function :igTreeNodeBehavior, [:uint, :int, :string, :string], :bool
|
|
1434
|
+
attach_function :igTreeNodeExV_Ptr, [:pointer, :int, :string, :pointer], :bool
|
|
1435
|
+
attach_function :igTreeNodeExV_Str, [:string, :int, :string, :pointer], :bool
|
|
1436
|
+
attach_function :igTreeNodeEx_Str, [:string, :int], :bool
|
|
1437
|
+
attach_function :igTreeNodeGetOpen, [:uint], :bool
|
|
1438
|
+
attach_function :igTreeNodeSetOpen, [:uint, :bool], :void
|
|
1439
|
+
attach_function :igTreeNodeUpdateNextOpen, [:uint, :int], :bool
|
|
1440
|
+
attach_function :igTreeNodeV_Ptr, [:pointer, :string, :pointer], :bool
|
|
1441
|
+
attach_function :igTreeNodeV_Str, [:string, :string, :pointer], :bool
|
|
1442
|
+
attach_function :igTreeNode_Str, [:string], :bool
|
|
1443
|
+
attach_function :igTreePop, [], :void
|
|
1444
|
+
attach_function :igTreePushOverrideID, [:uint], :void
|
|
1445
|
+
attach_function :igTreePush_Ptr, [:pointer], :void
|
|
1446
|
+
attach_function :igTreePush_Str, [:string], :void
|
|
1447
|
+
attach_function :igTypingSelectFindBestLeadingMatch, [:pointer, :int, :pointer, :pointer], :int
|
|
1448
|
+
attach_function :igTypingSelectFindMatch, [:pointer, :int, :pointer, :pointer, :int], :int
|
|
1449
|
+
attach_function :igTypingSelectFindNextSingleCharMatch, [:pointer, :int, :pointer, :pointer, :int], :int
|
|
1450
|
+
attach_function :igUnindent, [:float], :void
|
|
1451
|
+
attach_function :igUpdateHoveredWindowAndCaptureFlags, [], :void
|
|
1452
|
+
attach_function :igUpdateInputEvents, [:bool], :void
|
|
1453
|
+
attach_function :igUpdateMouseMovingWindowEndFrame, [], :void
|
|
1454
|
+
attach_function :igUpdateMouseMovingWindowNewFrame, [], :void
|
|
1455
|
+
attach_function :igUpdatePlatformWindows, [], :void
|
|
1456
|
+
attach_function :igUpdateWindowParentAndRootLinks, [:pointer, :int, :pointer], :void
|
|
1457
|
+
attach_function :igUpdateWindowSkipRefresh, [:pointer], :void
|
|
1458
|
+
attach_function :igVSliderFloat, [:string, ImVec2.by_value, :pointer, :float, :float, :string, :int], :bool
|
|
1459
|
+
attach_function :igVSliderInt, [:string, ImVec2.by_value, :pointer, :int, :int, :string, :int], :bool
|
|
1460
|
+
attach_function :igVSliderScalar, [:string, ImVec2.by_value, :int, :pointer, :pointer, :pointer, :string, :int], :bool
|
|
1461
|
+
attach_function :igValue_Bool, [:string, :bool], :void
|
|
1462
|
+
attach_function :igValue_Float, [:string, :float, :string], :void
|
|
1463
|
+
attach_function :igValue_Int, [:string, :int], :void
|
|
1464
|
+
attach_function :igValue_Uint, [:string, :uint], :void
|
|
1465
|
+
attach_function :igWindowPosAbsToRel, [:pointer, :pointer, ImVec2.by_value], :void
|
|
1466
|
+
attach_function :igWindowPosRelToAbs, [:pointer, :pointer, ImVec2.by_value], :void
|
|
1467
|
+
attach_function :igWindowRectAbsToRel, [:pointer, :pointer, ImRect.by_value], :void
|
|
1468
|
+
attach_function :igWindowRectRelToAbs, [:pointer, :pointer, ImRect.by_value], :void
|
|
1469
|
+
end
|
|
1470
|
+
end
|