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,749 @@
|
|
|
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 :ImPlotAlignmentData_Begin, [:pointer], :void
|
|
9
|
+
attach_function :ImPlotAlignmentData_End, [:pointer], :void
|
|
10
|
+
attach_function :ImPlotAlignmentData_ImPlotAlignmentData, [], :pointer
|
|
11
|
+
attach_function :ImPlotAlignmentData_Reset, [:pointer], :void
|
|
12
|
+
attach_function :ImPlotAlignmentData_Update, [:pointer, :pointer, :pointer, :pointer, :pointer], :void
|
|
13
|
+
attach_function :ImPlotAlignmentData_destroy, [:pointer], :void
|
|
14
|
+
attach_function :ImPlotAnnotationCollection_AppendV, [:pointer, ImGui::Native::ImVec2.by_value, ImGui::Native::ImVec2.by_value, :uint, :uint, :bool, :string, :pointer], :void
|
|
15
|
+
attach_function :ImPlotAnnotationCollection_GetText, [:pointer, :int], :string
|
|
16
|
+
attach_function :ImPlotAnnotationCollection_ImPlotAnnotationCollection, [], :pointer
|
|
17
|
+
attach_function :ImPlotAnnotationCollection_Reset, [:pointer], :void
|
|
18
|
+
attach_function :ImPlotAnnotationCollection_destroy, [:pointer], :void
|
|
19
|
+
attach_function :ImPlotAnnotation_ImPlotAnnotation, [], :pointer
|
|
20
|
+
attach_function :ImPlotAnnotation_destroy, [:pointer], :void
|
|
21
|
+
attach_function :ImPlotAxis_ApplyFit, [:pointer, :float], :void
|
|
22
|
+
attach_function :ImPlotAxis_CanInitFit, [:pointer], :bool
|
|
23
|
+
attach_function :ImPlotAxis_Constrain, [:pointer], :void
|
|
24
|
+
attach_function :ImPlotAxis_ExtendFit, [:pointer, :double], :void
|
|
25
|
+
attach_function :ImPlotAxis_ExtendFitWith, [:pointer, :pointer, :double, :double], :void
|
|
26
|
+
attach_function :ImPlotAxis_GetAspect, [:pointer], :double
|
|
27
|
+
attach_function :ImPlotAxis_HasGridLines, [:pointer], :bool
|
|
28
|
+
attach_function :ImPlotAxis_HasLabel, [:pointer], :bool
|
|
29
|
+
attach_function :ImPlotAxis_HasMenus, [:pointer], :bool
|
|
30
|
+
attach_function :ImPlotAxis_HasTickLabels, [:pointer], :bool
|
|
31
|
+
attach_function :ImPlotAxis_HasTickMarks, [:pointer], :bool
|
|
32
|
+
attach_function :ImPlotAxis_ImPlotAxis, [], :pointer
|
|
33
|
+
attach_function :ImPlotAxis_IsAutoFitting, [:pointer], :bool
|
|
34
|
+
attach_function :ImPlotAxis_IsForeground, [:pointer], :bool
|
|
35
|
+
attach_function :ImPlotAxis_IsInputLocked, [:pointer], :bool
|
|
36
|
+
attach_function :ImPlotAxis_IsInputLockedMax, [:pointer], :bool
|
|
37
|
+
attach_function :ImPlotAxis_IsInputLockedMin, [:pointer], :bool
|
|
38
|
+
attach_function :ImPlotAxis_IsInverted, [:pointer], :bool
|
|
39
|
+
attach_function :ImPlotAxis_IsLocked, [:pointer], :bool
|
|
40
|
+
attach_function :ImPlotAxis_IsLockedMax, [:pointer], :bool
|
|
41
|
+
attach_function :ImPlotAxis_IsLockedMin, [:pointer], :bool
|
|
42
|
+
attach_function :ImPlotAxis_IsOpposite, [:pointer], :bool
|
|
43
|
+
attach_function :ImPlotAxis_IsPanLocked, [:pointer, :bool], :bool
|
|
44
|
+
attach_function :ImPlotAxis_IsRangeLocked, [:pointer], :bool
|
|
45
|
+
attach_function :ImPlotAxis_PixelSize, [:pointer], :float
|
|
46
|
+
attach_function :ImPlotAxis_PixelsToPlot, [:pointer, :float], :double
|
|
47
|
+
attach_function :ImPlotAxis_PlotToPixels, [:pointer, :double], :float
|
|
48
|
+
attach_function :ImPlotAxis_PullLinks, [:pointer], :void
|
|
49
|
+
attach_function :ImPlotAxis_PushLinks, [:pointer], :void
|
|
50
|
+
attach_function :ImPlotAxis_Reset, [:pointer], :void
|
|
51
|
+
attach_function :ImPlotAxis_SetAspect, [:pointer, :double], :void
|
|
52
|
+
attach_function :ImPlotAxis_SetMax, [:pointer, :double, :bool], :bool
|
|
53
|
+
attach_function :ImPlotAxis_SetMin, [:pointer, :double, :bool], :bool
|
|
54
|
+
attach_function :ImPlotAxis_SetRange_PlotRange, [:pointer, ImPlotRange.by_value], :void
|
|
55
|
+
attach_function :ImPlotAxis_SetRange_double, [:pointer, :double, :double], :void
|
|
56
|
+
attach_function :ImPlotAxis_UpdateTransformCache, [:pointer], :void
|
|
57
|
+
attach_function :ImPlotAxis_WillRender, [:pointer], :bool
|
|
58
|
+
attach_function :ImPlotAxis_destroy, [:pointer], :void
|
|
59
|
+
attach_function :ImPlotColormapData_Append, [:pointer, :string, :pointer, :int, :bool], :int
|
|
60
|
+
attach_function :ImPlotColormapData_GetIndex, [:pointer, :string], :int
|
|
61
|
+
attach_function :ImPlotColormapData_GetKeyColor, [:pointer, :int, :int], :uint
|
|
62
|
+
attach_function :ImPlotColormapData_GetKeyCount, [:pointer, :int], :int
|
|
63
|
+
attach_function :ImPlotColormapData_GetKeys, [:pointer, :int], :pointer
|
|
64
|
+
attach_function :ImPlotColormapData_GetName, [:pointer, :int], :string
|
|
65
|
+
attach_function :ImPlotColormapData_GetTable, [:pointer, :int], :pointer
|
|
66
|
+
attach_function :ImPlotColormapData_GetTableColor, [:pointer, :int, :int], :uint
|
|
67
|
+
attach_function :ImPlotColormapData_GetTableSize, [:pointer, :int], :int
|
|
68
|
+
attach_function :ImPlotColormapData_ImPlotColormapData, [], :pointer
|
|
69
|
+
attach_function :ImPlotColormapData_IsQual, [:pointer, :int], :bool
|
|
70
|
+
attach_function :ImPlotColormapData_LerpTable, [:pointer, :int, :float], :uint
|
|
71
|
+
attach_function :ImPlotColormapData_RebuildTables, [:pointer], :void
|
|
72
|
+
attach_function :ImPlotColormapData_SetKeyColor, [:pointer, :int, :int, :uint], :void
|
|
73
|
+
attach_function :ImPlotColormapData__AppendTable, [:pointer, :int], :void
|
|
74
|
+
attach_function :ImPlotColormapData_destroy, [:pointer], :void
|
|
75
|
+
attach_function :ImPlotDateTimeSpec_ImPlotDateTimeSpec_Nil, [], :pointer
|
|
76
|
+
attach_function :ImPlotDateTimeSpec_ImPlotDateTimeSpec_PlotDateFmt, [:int, :int, :bool, :bool], :pointer
|
|
77
|
+
attach_function :ImPlotDateTimeSpec_destroy, [:pointer], :void
|
|
78
|
+
attach_function :ImPlotInputMap_ImPlotInputMap, [], :pointer
|
|
79
|
+
attach_function :ImPlotInputMap_destroy, [:pointer], :void
|
|
80
|
+
attach_function :ImPlotItemGroup_GetItemByIndex, [:pointer, :int], :pointer
|
|
81
|
+
attach_function :ImPlotItemGroup_GetItemCount, [:pointer], :int
|
|
82
|
+
attach_function :ImPlotItemGroup_GetItemID, [:pointer, :string], :uint
|
|
83
|
+
attach_function :ImPlotItemGroup_GetItemIndex, [:pointer, :pointer], :int
|
|
84
|
+
attach_function :ImPlotItemGroup_GetItem_ID, [:pointer, :uint], :pointer
|
|
85
|
+
attach_function :ImPlotItemGroup_GetItem_Str, [:pointer, :string], :pointer
|
|
86
|
+
attach_function :ImPlotItemGroup_GetLegendCount, [:pointer], :int
|
|
87
|
+
attach_function :ImPlotItemGroup_GetLegendItem, [:pointer, :int], :pointer
|
|
88
|
+
attach_function :ImPlotItemGroup_GetLegendLabel, [:pointer, :int], :string
|
|
89
|
+
attach_function :ImPlotItemGroup_GetOrAddItem, [:pointer, :uint], :pointer
|
|
90
|
+
attach_function :ImPlotItemGroup_ImPlotItemGroup, [], :pointer
|
|
91
|
+
attach_function :ImPlotItemGroup_Reset, [:pointer], :void
|
|
92
|
+
attach_function :ImPlotItemGroup_destroy, [:pointer], :void
|
|
93
|
+
attach_function :ImPlotItem_ImPlotItem, [], :pointer
|
|
94
|
+
attach_function :ImPlotItem_destroy, [:pointer], :void
|
|
95
|
+
attach_function :ImPlotLegend_ImPlotLegend, [], :pointer
|
|
96
|
+
attach_function :ImPlotLegend_Reset, [:pointer], :void
|
|
97
|
+
attach_function :ImPlotLegend_destroy, [:pointer], :void
|
|
98
|
+
attach_function :ImPlotNextItemData_ImPlotNextItemData, [], :pointer
|
|
99
|
+
attach_function :ImPlotNextItemData_Reset, [:pointer], :void
|
|
100
|
+
attach_function :ImPlotNextItemData_destroy, [:pointer], :void
|
|
101
|
+
attach_function :ImPlotNextPlotData_ImPlotNextPlotData, [], :pointer
|
|
102
|
+
attach_function :ImPlotNextPlotData_Reset, [:pointer], :void
|
|
103
|
+
attach_function :ImPlotNextPlotData_destroy, [:pointer], :void
|
|
104
|
+
attach_function :ImPlotPlot_ClearTextBuffer, [:pointer], :void
|
|
105
|
+
attach_function :ImPlotPlot_EnabledAxesX, [:pointer], :int
|
|
106
|
+
attach_function :ImPlotPlot_EnabledAxesY, [:pointer], :int
|
|
107
|
+
attach_function :ImPlotPlot_GetAxisLabel, [:pointer, ImPlotAxis.by_value], :string
|
|
108
|
+
attach_function :ImPlotPlot_GetTitle, [:pointer], :string
|
|
109
|
+
attach_function :ImPlotPlot_HasTitle, [:pointer], :bool
|
|
110
|
+
attach_function :ImPlotPlot_ImPlotPlot, [], :pointer
|
|
111
|
+
attach_function :ImPlotPlot_IsInputLocked, [:pointer], :bool
|
|
112
|
+
attach_function :ImPlotPlot_SetAxisLabel, [:pointer, :pointer, :string], :void
|
|
113
|
+
attach_function :ImPlotPlot_SetTitle, [:pointer, :string], :void
|
|
114
|
+
attach_function :ImPlotPlot_XAxis_Nil, [:pointer, :int], :pointer
|
|
115
|
+
attach_function :ImPlotPlot_XAxis__const, [:pointer, :int], :pointer
|
|
116
|
+
attach_function :ImPlotPlot_YAxis_Nil, [:pointer, :int], :pointer
|
|
117
|
+
attach_function :ImPlotPlot_YAxis__const, [:pointer, :int], :pointer
|
|
118
|
+
attach_function :ImPlotPlot_destroy, [:pointer], :void
|
|
119
|
+
attach_function :ImPlotPointError_ImPlotPointError, [:double, :double, :double, :double], :pointer
|
|
120
|
+
attach_function :ImPlotPointError_destroy, [:pointer], :void
|
|
121
|
+
attach_function :ImPlotPoint_ImPlotPoint_Nil, [], :pointer
|
|
122
|
+
attach_function :ImPlotPoint_ImPlotPoint_Vec2, [ImGui::Native::ImVec2.by_value], :pointer
|
|
123
|
+
attach_function :ImPlotPoint_ImPlotPoint_double, [:double, :double], :pointer
|
|
124
|
+
attach_function :ImPlotPoint_destroy, [:pointer], :void
|
|
125
|
+
attach_function :ImPlotRange_Clamp, [:pointer, :double], :double
|
|
126
|
+
attach_function :ImPlotRange_Contains, [:pointer, :double], :bool
|
|
127
|
+
attach_function :ImPlotRange_ImPlotRange_Nil, [], :pointer
|
|
128
|
+
attach_function :ImPlotRange_ImPlotRange_double, [:double, :double], :pointer
|
|
129
|
+
attach_function :ImPlotRange_Size, [:pointer], :double
|
|
130
|
+
attach_function :ImPlotRange_destroy, [:pointer], :void
|
|
131
|
+
attach_function :ImPlotRect_Clamp_PlotPoInt, [:pointer, :pointer, ImPlotPoint.by_value], :void
|
|
132
|
+
attach_function :ImPlotRect_Clamp_double, [:pointer, :pointer, :double, :double], :void
|
|
133
|
+
attach_function :ImPlotRect_Contains_PlotPoInt, [:pointer, ImPlotPoint.by_value], :bool
|
|
134
|
+
attach_function :ImPlotRect_Contains_double, [:pointer, :double, :double], :bool
|
|
135
|
+
attach_function :ImPlotRect_ImPlotRect_Nil, [], :pointer
|
|
136
|
+
attach_function :ImPlotRect_ImPlotRect_double, [:double, :double, :double, :double], :pointer
|
|
137
|
+
attach_function :ImPlotRect_Max, [:pointer, :pointer], :void
|
|
138
|
+
attach_function :ImPlotRect_Min, [:pointer, :pointer], :void
|
|
139
|
+
attach_function :ImPlotRect_Size, [:pointer, :pointer], :void
|
|
140
|
+
attach_function :ImPlotRect_destroy, [:pointer], :void
|
|
141
|
+
attach_function :ImPlotStyle_ImPlotStyle, [], :pointer
|
|
142
|
+
attach_function :ImPlotStyle_destroy, [:pointer], :void
|
|
143
|
+
attach_function :ImPlotSubplot_ImPlotSubplot, [], :pointer
|
|
144
|
+
attach_function :ImPlotSubplot_destroy, [:pointer], :void
|
|
145
|
+
attach_function :ImPlotTagCollection_AppendV, [:pointer, :int, :double, :uint, :uint, :string, :pointer], :void
|
|
146
|
+
attach_function :ImPlotTagCollection_GetText, [:pointer, :int], :string
|
|
147
|
+
attach_function :ImPlotTagCollection_ImPlotTagCollection, [], :pointer
|
|
148
|
+
attach_function :ImPlotTagCollection_Reset, [:pointer], :void
|
|
149
|
+
attach_function :ImPlotTagCollection_destroy, [:pointer], :void
|
|
150
|
+
attach_function :ImPlotTick_ImPlotTick, [:double, :bool, :int, :bool], :pointer
|
|
151
|
+
attach_function :ImPlotTick_destroy, [:pointer], :void
|
|
152
|
+
attach_function :ImPlotTicker_AddTick_PlotTick, [:pointer, ImPlotTick.by_value], :pointer
|
|
153
|
+
attach_function :ImPlotTicker_AddTick_doublePlotFormatter, [:pointer, :double, :bool, :int, :bool, :ImPlotFormatter, :pointer], :pointer
|
|
154
|
+
attach_function :ImPlotTicker_AddTick_doubleStr, [:pointer, :double, :bool, :int, :bool, :string], :pointer
|
|
155
|
+
attach_function :ImPlotTicker_GetText_Int, [:pointer, :int], :string
|
|
156
|
+
attach_function :ImPlotTicker_GetText_PlotTick, [:pointer, ImPlotTick.by_value], :string
|
|
157
|
+
attach_function :ImPlotTicker_ImPlotTicker, [], :pointer
|
|
158
|
+
attach_function :ImPlotTicker_OverrideSizeLate, [:pointer, ImGui::Native::ImVec2.by_value], :void
|
|
159
|
+
attach_function :ImPlotTicker_Reset, [:pointer], :void
|
|
160
|
+
attach_function :ImPlotTicker_TickCount, [:pointer], :int
|
|
161
|
+
attach_function :ImPlotTicker_destroy, [:pointer], :void
|
|
162
|
+
attach_function :ImPlotTime_FromDouble, [:pointer, :double], :void
|
|
163
|
+
attach_function :ImPlotTime_ImPlotTime_Nil, [], :pointer
|
|
164
|
+
attach_function :ImPlotTime_ImPlotTime_time_t, [:pointer, :int], :pointer
|
|
165
|
+
attach_function :ImPlotTime_RollOver, [:pointer], :void
|
|
166
|
+
attach_function :ImPlotTime_ToDouble, [:pointer], :double
|
|
167
|
+
attach_function :ImPlotTime_destroy, [:pointer], :void
|
|
168
|
+
attach_function :ImPlot_AddColormap_U32Ptr, [:string, :pointer, :int, :bool], :int
|
|
169
|
+
attach_function :ImPlot_AddColormap_Vec4Ptr, [:string, :pointer, :int, :bool], :int
|
|
170
|
+
attach_function :ImPlot_AddTextCentered, [:pointer, ImGui::Native::ImVec2.by_value, :uint, :string, :string], :void
|
|
171
|
+
attach_function :ImPlot_AddTextVertical, [:pointer, ImGui::Native::ImVec2.by_value, :uint, :string, :string], :void
|
|
172
|
+
attach_function :ImPlot_AddTime, [:pointer, ImPlotTime.by_value, :int, :int], :void
|
|
173
|
+
attach_function :ImPlot_AllAxesInputLocked, [:pointer, :int], :bool
|
|
174
|
+
attach_function :ImPlot_AnnotationV, [:double, :double, ImGui::Native::ImVec4.by_value, ImGui::Native::ImVec2.by_value, :bool, :string, :pointer], :void
|
|
175
|
+
attach_function :ImPlot_Annotation_Bool, [:double, :double, ImGui::Native::ImVec4.by_value, ImGui::Native::ImVec2.by_value, :bool, :bool], :void
|
|
176
|
+
attach_function :ImPlot_AnyAxesHeld, [:pointer, :int], :bool
|
|
177
|
+
attach_function :ImPlot_AnyAxesHovered, [:pointer, :int], :bool
|
|
178
|
+
attach_function :ImPlot_AnyAxesInputLocked, [:pointer, :int], :bool
|
|
179
|
+
attach_function :ImPlot_BeginAlignedPlots, [:string, :bool], :bool
|
|
180
|
+
attach_function :ImPlot_BeginDragDropSourceAxis, [:int, :int], :bool
|
|
181
|
+
attach_function :ImPlot_BeginDragDropSourceItem, [:string, :int], :bool
|
|
182
|
+
attach_function :ImPlot_BeginDragDropSourcePlot, [:int], :bool
|
|
183
|
+
attach_function :ImPlot_BeginDragDropTargetAxis, [:int], :bool
|
|
184
|
+
attach_function :ImPlot_BeginDragDropTargetLegend, [], :bool
|
|
185
|
+
attach_function :ImPlot_BeginDragDropTargetPlot, [], :bool
|
|
186
|
+
attach_function :ImPlot_BeginItem, [:string, :int, :int], :bool
|
|
187
|
+
attach_function :ImPlot_BeginLegendPopup, [:string, :int], :bool
|
|
188
|
+
attach_function :ImPlot_BeginPlot, [:string, ImGui::Native::ImVec2.by_value, :int], :bool
|
|
189
|
+
attach_function :ImPlot_BeginSubplots, [:string, :int, :int, ImGui::Native::ImVec2.by_value, :int, :pointer, :pointer], :bool
|
|
190
|
+
attach_function :ImPlot_BustColorCache, [:string], :void
|
|
191
|
+
attach_function :ImPlot_BustItemCache, [], :void
|
|
192
|
+
attach_function :ImPlot_BustPlotCache, [], :void
|
|
193
|
+
attach_function :ImPlot_CalcHoverColor, [:uint], :uint
|
|
194
|
+
attach_function :ImPlot_CalcLegendSize, [:pointer, :pointer, ImGui::Native::ImVec2.by_value, ImGui::Native::ImVec2.by_value, :bool], :void
|
|
195
|
+
attach_function :ImPlot_CalcTextColor_U32, [:uint], :uint
|
|
196
|
+
attach_function :ImPlot_CalcTextColor_Vec4, [ImGui::Native::ImVec4.by_value], :uint
|
|
197
|
+
attach_function :ImPlot_CalcTextSizeVertical, [:pointer, :string], :void
|
|
198
|
+
attach_function :ImPlot_CalculateBins_FloatPtr, [:pointer, :int, :int, ImPlotRange.by_value, :pointer, :pointer], :void
|
|
199
|
+
attach_function :ImPlot_CalculateBins_S16Ptr, [:pointer, :int, :int, ImPlotRange.by_value, :pointer, :pointer], :void
|
|
200
|
+
attach_function :ImPlot_CalculateBins_S32Ptr, [:pointer, :int, :int, ImPlotRange.by_value, :pointer, :pointer], :void
|
|
201
|
+
attach_function :ImPlot_CalculateBins_S64Ptr, [:pointer, :int, :int, ImPlotRange.by_value, :pointer, :pointer], :void
|
|
202
|
+
attach_function :ImPlot_CalculateBins_S8Ptr, [:pointer, :int, :int, ImPlotRange.by_value, :pointer, :pointer], :void
|
|
203
|
+
attach_function :ImPlot_CalculateBins_U16Ptr, [:pointer, :int, :int, ImPlotRange.by_value, :pointer, :pointer], :void
|
|
204
|
+
attach_function :ImPlot_CalculateBins_U32Ptr, [:pointer, :int, :int, ImPlotRange.by_value, :pointer, :pointer], :void
|
|
205
|
+
attach_function :ImPlot_CalculateBins_U64Ptr, [:pointer, :int, :int, ImPlotRange.by_value, :pointer, :pointer], :void
|
|
206
|
+
attach_function :ImPlot_CalculateBins_U8Ptr, [:pointer, :int, :int, ImPlotRange.by_value, :pointer, :pointer], :void
|
|
207
|
+
attach_function :ImPlot_CalculateBins_doublePtr, [:pointer, :int, :int, ImPlotRange.by_value, :pointer, :pointer], :void
|
|
208
|
+
attach_function :ImPlot_CancelPlotSelection, [], :void
|
|
209
|
+
attach_function :ImPlot_CeilTime, [:pointer, ImPlotTime.by_value, :int], :void
|
|
210
|
+
attach_function :ImPlot_ClampLabelPos, [:pointer, ImGui::Native::ImVec2.by_value, ImGui::Native::ImVec2.by_value, ImGui::Native::ImVec2.by_value, ImGui::Native::ImVec2.by_value], :void
|
|
211
|
+
attach_function :ImPlot_ClampLegendRect, [:pointer, ImGui::Native::ImRect.by_value, ImGui::Native::ImVec2.by_value], :bool
|
|
212
|
+
attach_function :ImPlot_ColormapButton, [:string, ImGui::Native::ImVec2.by_value, :int], :bool
|
|
213
|
+
attach_function :ImPlot_ColormapIcon, [:int], :void
|
|
214
|
+
attach_function :ImPlot_ColormapScale, [:string, :double, :double, ImGui::Native::ImVec2.by_value, :string, :int, :int], :void
|
|
215
|
+
attach_function :ImPlot_ColormapSlider, [:string, :pointer, :pointer, :string, :int], :bool
|
|
216
|
+
attach_function :ImPlot_CombineDateTime, [:pointer, ImPlotTime.by_value, ImPlotTime.by_value], :void
|
|
217
|
+
attach_function :ImPlot_CreateContext, [], :pointer
|
|
218
|
+
attach_function :ImPlot_DestroyContext, [:pointer], :void
|
|
219
|
+
attach_function :ImPlot_DragLineX, [:int, :pointer, ImGui::Native::ImVec4.by_value, :float, :int, :pointer, :pointer, :pointer], :bool
|
|
220
|
+
attach_function :ImPlot_DragLineY, [:int, :pointer, ImGui::Native::ImVec4.by_value, :float, :int, :pointer, :pointer, :pointer], :bool
|
|
221
|
+
attach_function :ImPlot_DragPoint, [:int, :pointer, :pointer, ImGui::Native::ImVec4.by_value, :float, :int, :pointer, :pointer, :pointer], :bool
|
|
222
|
+
attach_function :ImPlot_DragRect, [:int, :pointer, :pointer, :pointer, :pointer, ImGui::Native::ImVec4.by_value, :int, :pointer, :pointer, :pointer], :bool
|
|
223
|
+
attach_function :ImPlot_EndAlignedPlots, [], :void
|
|
224
|
+
attach_function :ImPlot_EndDragDropSource, [], :void
|
|
225
|
+
attach_function :ImPlot_EndDragDropTarget, [], :void
|
|
226
|
+
attach_function :ImPlot_EndItem, [], :void
|
|
227
|
+
attach_function :ImPlot_EndLegendPopup, [], :void
|
|
228
|
+
attach_function :ImPlot_EndPlot, [], :void
|
|
229
|
+
attach_function :ImPlot_EndSubplots, [], :void
|
|
230
|
+
attach_function :ImPlot_FillRange_Vector_Float_Ptr, [:pointer, :int, :float, :float], :void
|
|
231
|
+
attach_function :ImPlot_FillRange_Vector_S16_Ptr, [:pointer, :int, :pointer, :pointer], :void
|
|
232
|
+
attach_function :ImPlot_FillRange_Vector_S32_Ptr, [:pointer, :int, :pointer, :pointer], :void
|
|
233
|
+
attach_function :ImPlot_FillRange_Vector_S64_Ptr, [:pointer, :int, :pointer, :pointer], :void
|
|
234
|
+
attach_function :ImPlot_FillRange_Vector_S8_Ptr, [:pointer, :int, :char, :char], :void
|
|
235
|
+
attach_function :ImPlot_FillRange_Vector_U16_Ptr, [:pointer, :int, :ushort, :ushort], :void
|
|
236
|
+
attach_function :ImPlot_FillRange_Vector_U32_Ptr, [:pointer, :int, :uint, :uint], :void
|
|
237
|
+
attach_function :ImPlot_FillRange_Vector_U64_Ptr, [:pointer, :int, :ulong_long, :ulong_long], :void
|
|
238
|
+
attach_function :ImPlot_FillRange_Vector_U8_Ptr, [:pointer, :int, :uchar, :uchar], :void
|
|
239
|
+
attach_function :ImPlot_FillRange_Vector_double_Ptr, [:pointer, :int, :double, :double], :void
|
|
240
|
+
attach_function :ImPlot_FitPoint, [ImPlotPoint.by_value], :void
|
|
241
|
+
attach_function :ImPlot_FitPointX, [:double], :void
|
|
242
|
+
attach_function :ImPlot_FitPointY, [:double], :void
|
|
243
|
+
attach_function :ImPlot_FitThisFrame, [], :bool
|
|
244
|
+
attach_function :ImPlot_FloorTime, [:pointer, ImPlotTime.by_value, :int], :void
|
|
245
|
+
attach_function :ImPlot_FormatDate, [ImPlotTime.by_value, :pointer, :int, :int, :bool], :int
|
|
246
|
+
attach_function :ImPlot_FormatDateTime, [ImPlotTime.by_value, :pointer, :int, ImPlotDateTimeSpec.by_value], :int
|
|
247
|
+
attach_function :ImPlot_FormatTime, [ImPlotTime.by_value, :pointer, :int, :int, :bool], :int
|
|
248
|
+
attach_function :ImPlot_Formatter_Default, [:double, :pointer, :int, :pointer], :int
|
|
249
|
+
attach_function :ImPlot_Formatter_Logit, [:double, :pointer, :int, :pointer], :int
|
|
250
|
+
attach_function :ImPlot_Formatter_Time, [:double, :pointer, :int, :pointer], :int
|
|
251
|
+
attach_function :ImPlot_GetAutoColor, [:pointer, :int], :void
|
|
252
|
+
attach_function :ImPlot_GetColormapColor, [:pointer, :int, :int], :void
|
|
253
|
+
attach_function :ImPlot_GetColormapColorU32, [:int, :int], :uint
|
|
254
|
+
attach_function :ImPlot_GetColormapCount, [], :int
|
|
255
|
+
attach_function :ImPlot_GetColormapIndex, [:string], :int
|
|
256
|
+
attach_function :ImPlot_GetColormapName, [:int], :string
|
|
257
|
+
attach_function :ImPlot_GetColormapSize, [:int], :int
|
|
258
|
+
attach_function :ImPlot_GetCurrentContext, [], :pointer
|
|
259
|
+
attach_function :ImPlot_GetCurrentItem, [], :pointer
|
|
260
|
+
attach_function :ImPlot_GetCurrentPlot, [], :pointer
|
|
261
|
+
attach_function :ImPlot_GetDaysInMonth, [:int, :int], :int
|
|
262
|
+
attach_function :ImPlot_GetGmtTime, [ImPlotTime.by_value, :pointer], :pointer
|
|
263
|
+
attach_function :ImPlot_GetInputMap, [], :pointer
|
|
264
|
+
attach_function :ImPlot_GetItem, [:string], :pointer
|
|
265
|
+
attach_function :ImPlot_GetItemData, [], :pointer
|
|
266
|
+
attach_function :ImPlot_GetLastItemColor, [:pointer], :void
|
|
267
|
+
attach_function :ImPlot_GetLocTime, [ImPlotTime.by_value, :pointer], :pointer
|
|
268
|
+
attach_function :ImPlot_GetLocationPos, [:pointer, ImGui::Native::ImRect.by_value, ImGui::Native::ImVec2.by_value, :int, ImGui::Native::ImVec2.by_value], :void
|
|
269
|
+
attach_function :ImPlot_GetMarkerName, [:int], :string
|
|
270
|
+
attach_function :ImPlot_GetMonth, [ImPlotTime.by_value], :int
|
|
271
|
+
attach_function :ImPlot_GetPlot, [:string], :pointer
|
|
272
|
+
attach_function :ImPlot_GetPlotDrawList, [], :pointer
|
|
273
|
+
attach_function :ImPlot_GetPlotLimits, [:pointer, :int, :int], :void
|
|
274
|
+
attach_function :ImPlot_GetPlotMousePos, [:pointer, :int, :int], :void
|
|
275
|
+
attach_function :ImPlot_GetPlotPos, [:pointer], :void
|
|
276
|
+
attach_function :ImPlot_GetPlotSelection, [:pointer, :int, :int], :void
|
|
277
|
+
attach_function :ImPlot_GetPlotSize, [:pointer], :void
|
|
278
|
+
attach_function :ImPlot_GetStyle, [], :pointer
|
|
279
|
+
attach_function :ImPlot_GetStyleColorName, [:int], :string
|
|
280
|
+
attach_function :ImPlot_GetStyleColorU32, [:int], :uint
|
|
281
|
+
attach_function :ImPlot_GetStyleColorVec4, [:pointer, :int], :void
|
|
282
|
+
attach_function :ImPlot_GetTime, [ImPlotTime.by_value, :pointer], :pointer
|
|
283
|
+
attach_function :ImPlot_GetYear, [ImPlotTime.by_value], :int
|
|
284
|
+
attach_function :ImPlot_HideNextItem, [:bool, :int], :void
|
|
285
|
+
attach_function :ImPlot_ImAlmostEqual, [:double, :double, :int], :bool
|
|
286
|
+
attach_function :ImPlot_ImAlphaU32, [:uint, :float], :uint
|
|
287
|
+
attach_function :ImPlot_ImAsinh_Float, [:float], :float
|
|
288
|
+
attach_function :ImPlot_ImAsinh_double, [:double], :double
|
|
289
|
+
attach_function :ImPlot_ImConstrainInf, [:double], :double
|
|
290
|
+
attach_function :ImPlot_ImConstrainLog, [:double], :double
|
|
291
|
+
attach_function :ImPlot_ImConstrainNan, [:double], :double
|
|
292
|
+
attach_function :ImPlot_ImConstrainTime, [:double], :double
|
|
293
|
+
attach_function :ImPlot_ImLerpU32, [:pointer, :int, :float], :uint
|
|
294
|
+
attach_function :ImPlot_ImLog10_Float, [:float], :float
|
|
295
|
+
attach_function :ImPlot_ImLog10_double, [:double], :double
|
|
296
|
+
attach_function :ImPlot_ImMaxArray_FloatPtr, [:pointer, :int], :float
|
|
297
|
+
attach_function :ImPlot_ImMaxArray_S16Ptr, [:pointer, :int], :pointer
|
|
298
|
+
attach_function :ImPlot_ImMaxArray_S32Ptr, [:pointer, :int], :pointer
|
|
299
|
+
attach_function :ImPlot_ImMaxArray_S64Ptr, [:pointer, :int], :pointer
|
|
300
|
+
attach_function :ImPlot_ImMaxArray_S8Ptr, [:pointer, :int], :char
|
|
301
|
+
attach_function :ImPlot_ImMaxArray_U16Ptr, [:pointer, :int], :ushort
|
|
302
|
+
attach_function :ImPlot_ImMaxArray_U32Ptr, [:pointer, :int], :uint
|
|
303
|
+
attach_function :ImPlot_ImMaxArray_U64Ptr, [:pointer, :int], :ulong_long
|
|
304
|
+
attach_function :ImPlot_ImMaxArray_U8Ptr, [:pointer, :int], :uchar
|
|
305
|
+
attach_function :ImPlot_ImMaxArray_doublePtr, [:pointer, :int], :double
|
|
306
|
+
attach_function :ImPlot_ImMean_FloatPtr, [:pointer, :int], :double
|
|
307
|
+
attach_function :ImPlot_ImMean_S16Ptr, [:pointer, :int], :double
|
|
308
|
+
attach_function :ImPlot_ImMean_S32Ptr, [:pointer, :int], :double
|
|
309
|
+
attach_function :ImPlot_ImMean_S64Ptr, [:pointer, :int], :double
|
|
310
|
+
attach_function :ImPlot_ImMean_S8Ptr, [:pointer, :int], :double
|
|
311
|
+
attach_function :ImPlot_ImMean_U16Ptr, [:pointer, :int], :double
|
|
312
|
+
attach_function :ImPlot_ImMean_U32Ptr, [:pointer, :int], :double
|
|
313
|
+
attach_function :ImPlot_ImMean_U64Ptr, [:pointer, :int], :double
|
|
314
|
+
attach_function :ImPlot_ImMean_U8Ptr, [:pointer, :int], :double
|
|
315
|
+
attach_function :ImPlot_ImMean_doublePtr, [:pointer, :int], :double
|
|
316
|
+
attach_function :ImPlot_ImMinArray_FloatPtr, [:pointer, :int], :float
|
|
317
|
+
attach_function :ImPlot_ImMinArray_S16Ptr, [:pointer, :int], :pointer
|
|
318
|
+
attach_function :ImPlot_ImMinArray_S32Ptr, [:pointer, :int], :pointer
|
|
319
|
+
attach_function :ImPlot_ImMinArray_S64Ptr, [:pointer, :int], :pointer
|
|
320
|
+
attach_function :ImPlot_ImMinArray_S8Ptr, [:pointer, :int], :char
|
|
321
|
+
attach_function :ImPlot_ImMinArray_U16Ptr, [:pointer, :int], :ushort
|
|
322
|
+
attach_function :ImPlot_ImMinArray_U32Ptr, [:pointer, :int], :uint
|
|
323
|
+
attach_function :ImPlot_ImMinArray_U64Ptr, [:pointer, :int], :ulong_long
|
|
324
|
+
attach_function :ImPlot_ImMinArray_U8Ptr, [:pointer, :int], :uchar
|
|
325
|
+
attach_function :ImPlot_ImMinArray_doublePtr, [:pointer, :int], :double
|
|
326
|
+
attach_function :ImPlot_ImMinMaxArray_FloatPtr, [:pointer, :int, :pointer, :pointer], :void
|
|
327
|
+
attach_function :ImPlot_ImMinMaxArray_S16Ptr, [:pointer, :int, :pointer, :pointer], :void
|
|
328
|
+
attach_function :ImPlot_ImMinMaxArray_S32Ptr, [:pointer, :int, :pointer, :pointer], :void
|
|
329
|
+
attach_function :ImPlot_ImMinMaxArray_S64Ptr, [:pointer, :int, :pointer, :pointer], :void
|
|
330
|
+
attach_function :ImPlot_ImMinMaxArray_S8Ptr, [:pointer, :int, :pointer, :pointer], :void
|
|
331
|
+
attach_function :ImPlot_ImMinMaxArray_U16Ptr, [:pointer, :int, :pointer, :pointer], :void
|
|
332
|
+
attach_function :ImPlot_ImMinMaxArray_U32Ptr, [:pointer, :int, :pointer, :pointer], :void
|
|
333
|
+
attach_function :ImPlot_ImMinMaxArray_U64Ptr, [:pointer, :int, :pointer, :pointer], :void
|
|
334
|
+
attach_function :ImPlot_ImMinMaxArray_U8Ptr, [:pointer, :int, :pointer, :pointer], :void
|
|
335
|
+
attach_function :ImPlot_ImMinMaxArray_doublePtr, [:pointer, :int, :pointer, :pointer], :void
|
|
336
|
+
attach_function :ImPlot_ImMixU32, [:uint, :uint, :uint], :uint
|
|
337
|
+
attach_function :ImPlot_ImNan, [:double], :bool
|
|
338
|
+
attach_function :ImPlot_ImNanOrInf, [:double], :bool
|
|
339
|
+
attach_function :ImPlot_ImOverlaps_Float, [:float, :float, :float, :float], :bool
|
|
340
|
+
attach_function :ImPlot_ImOverlaps_S16, [:pointer, :pointer, :pointer, :pointer], :bool
|
|
341
|
+
attach_function :ImPlot_ImOverlaps_S32, [:pointer, :pointer, :pointer, :pointer], :bool
|
|
342
|
+
attach_function :ImPlot_ImOverlaps_S64, [:pointer, :pointer, :pointer, :pointer], :bool
|
|
343
|
+
attach_function :ImPlot_ImOverlaps_S8, [:char, :char, :char, :char], :bool
|
|
344
|
+
attach_function :ImPlot_ImOverlaps_U16, [:ushort, :ushort, :ushort, :ushort], :bool
|
|
345
|
+
attach_function :ImPlot_ImOverlaps_U32, [:uint, :uint, :uint, :uint], :bool
|
|
346
|
+
attach_function :ImPlot_ImOverlaps_U64, [:ulong_long, :ulong_long, :ulong_long, :ulong_long], :bool
|
|
347
|
+
attach_function :ImPlot_ImOverlaps_U8, [:uchar, :uchar, :uchar, :uchar], :bool
|
|
348
|
+
attach_function :ImPlot_ImOverlaps_double, [:double, :double, :double, :double], :bool
|
|
349
|
+
attach_function :ImPlot_ImPosMod, [:int, :int], :int
|
|
350
|
+
attach_function :ImPlot_ImRemap01_Float, [:float, :float, :float], :float
|
|
351
|
+
attach_function :ImPlot_ImRemap01_S16, [:pointer, :pointer, :pointer], :pointer
|
|
352
|
+
attach_function :ImPlot_ImRemap01_S32, [:pointer, :pointer, :pointer], :pointer
|
|
353
|
+
attach_function :ImPlot_ImRemap01_S64, [:pointer, :pointer, :pointer], :pointer
|
|
354
|
+
attach_function :ImPlot_ImRemap01_S8, [:char, :char, :char], :char
|
|
355
|
+
attach_function :ImPlot_ImRemap01_U16, [:ushort, :ushort, :ushort], :ushort
|
|
356
|
+
attach_function :ImPlot_ImRemap01_U32, [:uint, :uint, :uint], :uint
|
|
357
|
+
attach_function :ImPlot_ImRemap01_U64, [:ulong_long, :ulong_long, :ulong_long], :ulong_long
|
|
358
|
+
attach_function :ImPlot_ImRemap01_U8, [:uchar, :uchar, :uchar], :uchar
|
|
359
|
+
attach_function :ImPlot_ImRemap01_double, [:double, :double, :double], :double
|
|
360
|
+
attach_function :ImPlot_ImRemap_Float, [:float, :float, :float, :float, :float], :float
|
|
361
|
+
attach_function :ImPlot_ImRemap_S16, [:pointer, :pointer, :pointer, :pointer, :pointer], :pointer
|
|
362
|
+
attach_function :ImPlot_ImRemap_S32, [:pointer, :pointer, :pointer, :pointer, :pointer], :pointer
|
|
363
|
+
attach_function :ImPlot_ImRemap_S64, [:pointer, :pointer, :pointer, :pointer, :pointer], :pointer
|
|
364
|
+
attach_function :ImPlot_ImRemap_S8, [:char, :char, :char, :char, :char], :char
|
|
365
|
+
attach_function :ImPlot_ImRemap_U16, [:ushort, :ushort, :ushort, :ushort, :ushort], :ushort
|
|
366
|
+
attach_function :ImPlot_ImRemap_U32, [:uint, :uint, :uint, :uint, :uint], :uint
|
|
367
|
+
attach_function :ImPlot_ImRemap_U64, [:ulong_long, :ulong_long, :ulong_long, :ulong_long, :ulong_long], :ulong_long
|
|
368
|
+
attach_function :ImPlot_ImRemap_U8, [:uchar, :uchar, :uchar, :uchar, :uchar], :uchar
|
|
369
|
+
attach_function :ImPlot_ImRemap_double, [:double, :double, :double, :double, :double], :double
|
|
370
|
+
attach_function :ImPlot_ImSinh_Float, [:float], :float
|
|
371
|
+
attach_function :ImPlot_ImSinh_double, [:double], :double
|
|
372
|
+
attach_function :ImPlot_ImStdDev_FloatPtr, [:pointer, :int], :double
|
|
373
|
+
attach_function :ImPlot_ImStdDev_S16Ptr, [:pointer, :int], :double
|
|
374
|
+
attach_function :ImPlot_ImStdDev_S32Ptr, [:pointer, :int], :double
|
|
375
|
+
attach_function :ImPlot_ImStdDev_S64Ptr, [:pointer, :int], :double
|
|
376
|
+
attach_function :ImPlot_ImStdDev_S8Ptr, [:pointer, :int], :double
|
|
377
|
+
attach_function :ImPlot_ImStdDev_U16Ptr, [:pointer, :int], :double
|
|
378
|
+
attach_function :ImPlot_ImStdDev_U32Ptr, [:pointer, :int], :double
|
|
379
|
+
attach_function :ImPlot_ImStdDev_U64Ptr, [:pointer, :int], :double
|
|
380
|
+
attach_function :ImPlot_ImStdDev_U8Ptr, [:pointer, :int], :double
|
|
381
|
+
attach_function :ImPlot_ImStdDev_doublePtr, [:pointer, :int], :double
|
|
382
|
+
attach_function :ImPlot_ImSum_FloatPtr, [:pointer, :int], :float
|
|
383
|
+
attach_function :ImPlot_ImSum_S16Ptr, [:pointer, :int], :pointer
|
|
384
|
+
attach_function :ImPlot_ImSum_S32Ptr, [:pointer, :int], :pointer
|
|
385
|
+
attach_function :ImPlot_ImSum_S64Ptr, [:pointer, :int], :pointer
|
|
386
|
+
attach_function :ImPlot_ImSum_S8Ptr, [:pointer, :int], :char
|
|
387
|
+
attach_function :ImPlot_ImSum_U16Ptr, [:pointer, :int], :ushort
|
|
388
|
+
attach_function :ImPlot_ImSum_U32Ptr, [:pointer, :int], :uint
|
|
389
|
+
attach_function :ImPlot_ImSum_U64Ptr, [:pointer, :int], :ulong_long
|
|
390
|
+
attach_function :ImPlot_ImSum_U8Ptr, [:pointer, :int], :uchar
|
|
391
|
+
attach_function :ImPlot_ImSum_doublePtr, [:pointer, :int], :double
|
|
392
|
+
attach_function :ImPlot_Initialize, [:pointer], :void
|
|
393
|
+
attach_function :ImPlot_Intersection, [:pointer, ImGui::Native::ImVec2.by_value, ImGui::Native::ImVec2.by_value, ImGui::Native::ImVec2.by_value, ImGui::Native::ImVec2.by_value], :void
|
|
394
|
+
attach_function :ImPlot_IsAxisHovered, [:int], :bool
|
|
395
|
+
attach_function :ImPlot_IsColorAuto_PlotCol, [:int], :bool
|
|
396
|
+
attach_function :ImPlot_IsColorAuto_Vec4, [ImGui::Native::ImVec4.by_value], :bool
|
|
397
|
+
attach_function :ImPlot_IsLeapYear, [:int], :bool
|
|
398
|
+
attach_function :ImPlot_IsLegendEntryHovered, [:string], :bool
|
|
399
|
+
attach_function :ImPlot_IsPlotHovered, [], :bool
|
|
400
|
+
attach_function :ImPlot_IsPlotSelected, [], :bool
|
|
401
|
+
attach_function :ImPlot_IsSubplotsHovered, [], :bool
|
|
402
|
+
attach_function :ImPlot_ItemIcon_U32, [:uint], :void
|
|
403
|
+
attach_function :ImPlot_ItemIcon_Vec4, [ImGui::Native::ImVec4.by_value], :void
|
|
404
|
+
attach_function :ImPlot_LabelAxisValue, [ImPlotAxis.by_value, :double, :pointer, :int, :bool], :void
|
|
405
|
+
attach_function :ImPlot_Locator_Default, [:pointer, ImPlotRange.by_value, :float, :bool, :ImPlotFormatter, :pointer], :void
|
|
406
|
+
attach_function :ImPlot_Locator_Log10, [:pointer, ImPlotRange.by_value, :float, :bool, :ImPlotFormatter, :pointer], :void
|
|
407
|
+
attach_function :ImPlot_Locator_SymLog, [:pointer, ImPlotRange.by_value, :float, :bool, :ImPlotFormatter, :pointer], :void
|
|
408
|
+
attach_function :ImPlot_Locator_Time, [:pointer, ImPlotRange.by_value, :float, :bool, :ImPlotFormatter, :pointer], :void
|
|
409
|
+
attach_function :ImPlot_MakeTime, [:pointer, :int, :int, :int, :int, :int, :int, :int], :void
|
|
410
|
+
attach_function :ImPlot_MapInputDefault, [:pointer], :void
|
|
411
|
+
attach_function :ImPlot_MapInputReverse, [:pointer], :void
|
|
412
|
+
attach_function :ImPlot_MkGmtTime, [:pointer, :pointer], :void
|
|
413
|
+
attach_function :ImPlot_MkLocTime, [:pointer, :pointer], :void
|
|
414
|
+
attach_function :ImPlot_MkTime, [:pointer, :pointer], :void
|
|
415
|
+
attach_function :ImPlot_NextColormapColor, [:pointer], :void
|
|
416
|
+
attach_function :ImPlot_NextColormapColorU32, [], :uint
|
|
417
|
+
attach_function :ImPlot_NiceNum, [:double, :bool], :double
|
|
418
|
+
attach_function :ImPlot_Now, [:pointer], :void
|
|
419
|
+
attach_function :ImPlot_OrderOfMagnitude, [:double], :int
|
|
420
|
+
attach_function :ImPlot_OrderToPrecision, [:int], :int
|
|
421
|
+
attach_function :ImPlot_PixelsToPlot_Float, [:pointer, :float, :float, :int, :int], :void
|
|
422
|
+
attach_function :ImPlot_PixelsToPlot_Vec2, [:pointer, ImGui::Native::ImVec2.by_value, :int, :int], :void
|
|
423
|
+
attach_function :ImPlot_PlotBarGroups_FloatPtr, [:pointer, :pointer, :int, :int, :double, :double, :int], :void
|
|
424
|
+
attach_function :ImPlot_PlotBarGroups_S16Ptr, [:pointer, :pointer, :int, :int, :double, :double, :int], :void
|
|
425
|
+
attach_function :ImPlot_PlotBarGroups_S32Ptr, [:pointer, :pointer, :int, :int, :double, :double, :int], :void
|
|
426
|
+
attach_function :ImPlot_PlotBarGroups_S64Ptr, [:pointer, :pointer, :int, :int, :double, :double, :int], :void
|
|
427
|
+
attach_function :ImPlot_PlotBarGroups_S8Ptr, [:pointer, :pointer, :int, :int, :double, :double, :int], :void
|
|
428
|
+
attach_function :ImPlot_PlotBarGroups_U16Ptr, [:pointer, :pointer, :int, :int, :double, :double, :int], :void
|
|
429
|
+
attach_function :ImPlot_PlotBarGroups_U32Ptr, [:pointer, :pointer, :int, :int, :double, :double, :int], :void
|
|
430
|
+
attach_function :ImPlot_PlotBarGroups_U64Ptr, [:pointer, :pointer, :int, :int, :double, :double, :int], :void
|
|
431
|
+
attach_function :ImPlot_PlotBarGroups_U8Ptr, [:pointer, :pointer, :int, :int, :double, :double, :int], :void
|
|
432
|
+
attach_function :ImPlot_PlotBarGroups_doublePtr, [:pointer, :pointer, :int, :int, :double, :double, :int], :void
|
|
433
|
+
attach_function :ImPlot_PlotBarsG, [:string, :ImPlotGetter, :pointer, :int, :double, :int], :void
|
|
434
|
+
attach_function :ImPlot_PlotBars_FloatPtrFloatPtr, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
435
|
+
attach_function :ImPlot_PlotBars_FloatPtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
436
|
+
attach_function :ImPlot_PlotBars_S16PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
437
|
+
attach_function :ImPlot_PlotBars_S16PtrS16Ptr, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
438
|
+
attach_function :ImPlot_PlotBars_S32PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
439
|
+
attach_function :ImPlot_PlotBars_S32PtrS32Ptr, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
440
|
+
attach_function :ImPlot_PlotBars_S64PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
441
|
+
attach_function :ImPlot_PlotBars_S64PtrS64Ptr, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
442
|
+
attach_function :ImPlot_PlotBars_S8PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
443
|
+
attach_function :ImPlot_PlotBars_S8PtrS8Ptr, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
444
|
+
attach_function :ImPlot_PlotBars_U16PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
445
|
+
attach_function :ImPlot_PlotBars_U16PtrU16Ptr, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
446
|
+
attach_function :ImPlot_PlotBars_U32PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
447
|
+
attach_function :ImPlot_PlotBars_U32PtrU32Ptr, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
448
|
+
attach_function :ImPlot_PlotBars_U64PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
449
|
+
attach_function :ImPlot_PlotBars_U64PtrU64Ptr, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
450
|
+
attach_function :ImPlot_PlotBars_U8PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
451
|
+
attach_function :ImPlot_PlotBars_U8PtrU8Ptr, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
452
|
+
attach_function :ImPlot_PlotBars_doublePtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
453
|
+
attach_function :ImPlot_PlotBars_doublePtrdoublePtr, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
454
|
+
attach_function :ImPlot_PlotDigitalG, [:string, :ImPlotGetter, :pointer, :int, :int], :void
|
|
455
|
+
attach_function :ImPlot_PlotDigital_FloatPtr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
456
|
+
attach_function :ImPlot_PlotDigital_S16Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
457
|
+
attach_function :ImPlot_PlotDigital_S32Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
458
|
+
attach_function :ImPlot_PlotDigital_S64Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
459
|
+
attach_function :ImPlot_PlotDigital_S8Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
460
|
+
attach_function :ImPlot_PlotDigital_U16Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
461
|
+
attach_function :ImPlot_PlotDigital_U32Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
462
|
+
attach_function :ImPlot_PlotDigital_U64Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
463
|
+
attach_function :ImPlot_PlotDigital_U8Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
464
|
+
attach_function :ImPlot_PlotDigital_doublePtr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
465
|
+
attach_function :ImPlot_PlotDummy, [:string, :int], :void
|
|
466
|
+
attach_function :ImPlot_PlotErrorBars_FloatPtrFloatPtrFloatPtrFloatPtr, [:string, :pointer, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
467
|
+
attach_function :ImPlot_PlotErrorBars_FloatPtrFloatPtrFloatPtrInt, [:string, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
468
|
+
attach_function :ImPlot_PlotErrorBars_S16PtrS16PtrS16PtrInt, [:string, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
469
|
+
attach_function :ImPlot_PlotErrorBars_S16PtrS16PtrS16PtrS16Ptr, [:string, :pointer, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
470
|
+
attach_function :ImPlot_PlotErrorBars_S32PtrS32PtrS32PtrInt, [:string, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
471
|
+
attach_function :ImPlot_PlotErrorBars_S32PtrS32PtrS32PtrS32Ptr, [:string, :pointer, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
472
|
+
attach_function :ImPlot_PlotErrorBars_S64PtrS64PtrS64PtrInt, [:string, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
473
|
+
attach_function :ImPlot_PlotErrorBars_S64PtrS64PtrS64PtrS64Ptr, [:string, :pointer, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
474
|
+
attach_function :ImPlot_PlotErrorBars_S8PtrS8PtrS8PtrInt, [:string, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
475
|
+
attach_function :ImPlot_PlotErrorBars_S8PtrS8PtrS8PtrS8Ptr, [:string, :pointer, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
476
|
+
attach_function :ImPlot_PlotErrorBars_U16PtrU16PtrU16PtrInt, [:string, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
477
|
+
attach_function :ImPlot_PlotErrorBars_U16PtrU16PtrU16PtrU16Ptr, [:string, :pointer, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
478
|
+
attach_function :ImPlot_PlotErrorBars_U32PtrU32PtrU32PtrInt, [:string, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
479
|
+
attach_function :ImPlot_PlotErrorBars_U32PtrU32PtrU32PtrU32Ptr, [:string, :pointer, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
480
|
+
attach_function :ImPlot_PlotErrorBars_U64PtrU64PtrU64PtrInt, [:string, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
481
|
+
attach_function :ImPlot_PlotErrorBars_U64PtrU64PtrU64PtrU64Ptr, [:string, :pointer, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
482
|
+
attach_function :ImPlot_PlotErrorBars_U8PtrU8PtrU8PtrInt, [:string, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
483
|
+
attach_function :ImPlot_PlotErrorBars_U8PtrU8PtrU8PtrU8Ptr, [:string, :pointer, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
484
|
+
attach_function :ImPlot_PlotErrorBars_doublePtrdoublePtrdoublePtrInt, [:string, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
485
|
+
attach_function :ImPlot_PlotErrorBars_doublePtrdoublePtrdoublePtrdoublePtr, [:string, :pointer, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
486
|
+
attach_function :ImPlot_PlotHeatmap_FloatPtr, [:string, :pointer, :int, :int, :double, :double, :string, ImPlotPoint.by_value, ImPlotPoint.by_value, :int], :void
|
|
487
|
+
attach_function :ImPlot_PlotHeatmap_S16Ptr, [:string, :pointer, :int, :int, :double, :double, :string, ImPlotPoint.by_value, ImPlotPoint.by_value, :int], :void
|
|
488
|
+
attach_function :ImPlot_PlotHeatmap_S32Ptr, [:string, :pointer, :int, :int, :double, :double, :string, ImPlotPoint.by_value, ImPlotPoint.by_value, :int], :void
|
|
489
|
+
attach_function :ImPlot_PlotHeatmap_S64Ptr, [:string, :pointer, :int, :int, :double, :double, :string, ImPlotPoint.by_value, ImPlotPoint.by_value, :int], :void
|
|
490
|
+
attach_function :ImPlot_PlotHeatmap_S8Ptr, [:string, :pointer, :int, :int, :double, :double, :string, ImPlotPoint.by_value, ImPlotPoint.by_value, :int], :void
|
|
491
|
+
attach_function :ImPlot_PlotHeatmap_U16Ptr, [:string, :pointer, :int, :int, :double, :double, :string, ImPlotPoint.by_value, ImPlotPoint.by_value, :int], :void
|
|
492
|
+
attach_function :ImPlot_PlotHeatmap_U32Ptr, [:string, :pointer, :int, :int, :double, :double, :string, ImPlotPoint.by_value, ImPlotPoint.by_value, :int], :void
|
|
493
|
+
attach_function :ImPlot_PlotHeatmap_U64Ptr, [:string, :pointer, :int, :int, :double, :double, :string, ImPlotPoint.by_value, ImPlotPoint.by_value, :int], :void
|
|
494
|
+
attach_function :ImPlot_PlotHeatmap_U8Ptr, [:string, :pointer, :int, :int, :double, :double, :string, ImPlotPoint.by_value, ImPlotPoint.by_value, :int], :void
|
|
495
|
+
attach_function :ImPlot_PlotHeatmap_doublePtr, [:string, :pointer, :int, :int, :double, :double, :string, ImPlotPoint.by_value, ImPlotPoint.by_value, :int], :void
|
|
496
|
+
attach_function :ImPlot_PlotHistogram2D_FloatPtr, [:string, :pointer, :pointer, :int, :int, :int, ImPlotRect.by_value, :int], :double
|
|
497
|
+
attach_function :ImPlot_PlotHistogram2D_S16Ptr, [:string, :pointer, :pointer, :int, :int, :int, ImPlotRect.by_value, :int], :double
|
|
498
|
+
attach_function :ImPlot_PlotHistogram2D_S32Ptr, [:string, :pointer, :pointer, :int, :int, :int, ImPlotRect.by_value, :int], :double
|
|
499
|
+
attach_function :ImPlot_PlotHistogram2D_S64Ptr, [:string, :pointer, :pointer, :int, :int, :int, ImPlotRect.by_value, :int], :double
|
|
500
|
+
attach_function :ImPlot_PlotHistogram2D_S8Ptr, [:string, :pointer, :pointer, :int, :int, :int, ImPlotRect.by_value, :int], :double
|
|
501
|
+
attach_function :ImPlot_PlotHistogram2D_U16Ptr, [:string, :pointer, :pointer, :int, :int, :int, ImPlotRect.by_value, :int], :double
|
|
502
|
+
attach_function :ImPlot_PlotHistogram2D_U32Ptr, [:string, :pointer, :pointer, :int, :int, :int, ImPlotRect.by_value, :int], :double
|
|
503
|
+
attach_function :ImPlot_PlotHistogram2D_U64Ptr, [:string, :pointer, :pointer, :int, :int, :int, ImPlotRect.by_value, :int], :double
|
|
504
|
+
attach_function :ImPlot_PlotHistogram2D_U8Ptr, [:string, :pointer, :pointer, :int, :int, :int, ImPlotRect.by_value, :int], :double
|
|
505
|
+
attach_function :ImPlot_PlotHistogram2D_doublePtr, [:string, :pointer, :pointer, :int, :int, :int, ImPlotRect.by_value, :int], :double
|
|
506
|
+
attach_function :ImPlot_PlotHistogram_FloatPtr, [:string, :pointer, :int, :int, :double, ImPlotRange.by_value, :int], :double
|
|
507
|
+
attach_function :ImPlot_PlotHistogram_S16Ptr, [:string, :pointer, :int, :int, :double, ImPlotRange.by_value, :int], :double
|
|
508
|
+
attach_function :ImPlot_PlotHistogram_S32Ptr, [:string, :pointer, :int, :int, :double, ImPlotRange.by_value, :int], :double
|
|
509
|
+
attach_function :ImPlot_PlotHistogram_S64Ptr, [:string, :pointer, :int, :int, :double, ImPlotRange.by_value, :int], :double
|
|
510
|
+
attach_function :ImPlot_PlotHistogram_S8Ptr, [:string, :pointer, :int, :int, :double, ImPlotRange.by_value, :int], :double
|
|
511
|
+
attach_function :ImPlot_PlotHistogram_U16Ptr, [:string, :pointer, :int, :int, :double, ImPlotRange.by_value, :int], :double
|
|
512
|
+
attach_function :ImPlot_PlotHistogram_U32Ptr, [:string, :pointer, :int, :int, :double, ImPlotRange.by_value, :int], :double
|
|
513
|
+
attach_function :ImPlot_PlotHistogram_U64Ptr, [:string, :pointer, :int, :int, :double, ImPlotRange.by_value, :int], :double
|
|
514
|
+
attach_function :ImPlot_PlotHistogram_U8Ptr, [:string, :pointer, :int, :int, :double, ImPlotRange.by_value, :int], :double
|
|
515
|
+
attach_function :ImPlot_PlotHistogram_doublePtr, [:string, :pointer, :int, :int, :double, ImPlotRange.by_value, :int], :double
|
|
516
|
+
attach_function :ImPlot_PlotImage, [:string, :ulong_long, ImPlotPoint.by_value, ImPlotPoint.by_value, ImGui::Native::ImVec2.by_value, ImGui::Native::ImVec2.by_value, ImGui::Native::ImVec4.by_value, :int], :void
|
|
517
|
+
attach_function :ImPlot_PlotInfLines_FloatPtr, [:string, :pointer, :int, :int, :int, :int], :void
|
|
518
|
+
attach_function :ImPlot_PlotInfLines_S16Ptr, [:string, :pointer, :int, :int, :int, :int], :void
|
|
519
|
+
attach_function :ImPlot_PlotInfLines_S32Ptr, [:string, :pointer, :int, :int, :int, :int], :void
|
|
520
|
+
attach_function :ImPlot_PlotInfLines_S64Ptr, [:string, :pointer, :int, :int, :int, :int], :void
|
|
521
|
+
attach_function :ImPlot_PlotInfLines_S8Ptr, [:string, :pointer, :int, :int, :int, :int], :void
|
|
522
|
+
attach_function :ImPlot_PlotInfLines_U16Ptr, [:string, :pointer, :int, :int, :int, :int], :void
|
|
523
|
+
attach_function :ImPlot_PlotInfLines_U32Ptr, [:string, :pointer, :int, :int, :int, :int], :void
|
|
524
|
+
attach_function :ImPlot_PlotInfLines_U64Ptr, [:string, :pointer, :int, :int, :int, :int], :void
|
|
525
|
+
attach_function :ImPlot_PlotInfLines_U8Ptr, [:string, :pointer, :int, :int, :int, :int], :void
|
|
526
|
+
attach_function :ImPlot_PlotInfLines_doublePtr, [:string, :pointer, :int, :int, :int, :int], :void
|
|
527
|
+
attach_function :ImPlot_PlotLineG, [:string, :ImPlotGetter, :pointer, :int, :int], :void
|
|
528
|
+
attach_function :ImPlot_PlotLine_FloatPtrFloatPtr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
529
|
+
attach_function :ImPlot_PlotLine_FloatPtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
530
|
+
attach_function :ImPlot_PlotLine_S16PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
531
|
+
attach_function :ImPlot_PlotLine_S16PtrS16Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
532
|
+
attach_function :ImPlot_PlotLine_S32PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
533
|
+
attach_function :ImPlot_PlotLine_S32PtrS32Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
534
|
+
attach_function :ImPlot_PlotLine_S64PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
535
|
+
attach_function :ImPlot_PlotLine_S64PtrS64Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
536
|
+
attach_function :ImPlot_PlotLine_S8PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
537
|
+
attach_function :ImPlot_PlotLine_S8PtrS8Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
538
|
+
attach_function :ImPlot_PlotLine_U16PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
539
|
+
attach_function :ImPlot_PlotLine_U16PtrU16Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
540
|
+
attach_function :ImPlot_PlotLine_U32PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
541
|
+
attach_function :ImPlot_PlotLine_U32PtrU32Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
542
|
+
attach_function :ImPlot_PlotLine_U64PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
543
|
+
attach_function :ImPlot_PlotLine_U64PtrU64Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
544
|
+
attach_function :ImPlot_PlotLine_U8PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
545
|
+
attach_function :ImPlot_PlotLine_U8PtrU8Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
546
|
+
attach_function :ImPlot_PlotLine_doublePtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
547
|
+
attach_function :ImPlot_PlotLine_doublePtrdoublePtr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
548
|
+
attach_function :ImPlot_PlotPieChart_FloatPtrPlotFormatter, [:pointer, :pointer, :int, :double, :double, :double, :ImPlotFormatter, :pointer, :double, :int], :void
|
|
549
|
+
attach_function :ImPlot_PlotPieChart_FloatPtrStr, [:pointer, :pointer, :int, :double, :double, :double, :string, :double, :int], :void
|
|
550
|
+
attach_function :ImPlot_PlotPieChart_S16PtrPlotFormatter, [:pointer, :pointer, :int, :double, :double, :double, :ImPlotFormatter, :pointer, :double, :int], :void
|
|
551
|
+
attach_function :ImPlot_PlotPieChart_S16PtrStr, [:pointer, :pointer, :int, :double, :double, :double, :string, :double, :int], :void
|
|
552
|
+
attach_function :ImPlot_PlotPieChart_S32PtrPlotFormatter, [:pointer, :pointer, :int, :double, :double, :double, :ImPlotFormatter, :pointer, :double, :int], :void
|
|
553
|
+
attach_function :ImPlot_PlotPieChart_S32PtrStr, [:pointer, :pointer, :int, :double, :double, :double, :string, :double, :int], :void
|
|
554
|
+
attach_function :ImPlot_PlotPieChart_S64PtrPlotFormatter, [:pointer, :pointer, :int, :double, :double, :double, :ImPlotFormatter, :pointer, :double, :int], :void
|
|
555
|
+
attach_function :ImPlot_PlotPieChart_S64PtrStr, [:pointer, :pointer, :int, :double, :double, :double, :string, :double, :int], :void
|
|
556
|
+
attach_function :ImPlot_PlotPieChart_S8PtrPlotFormatter, [:pointer, :pointer, :int, :double, :double, :double, :ImPlotFormatter, :pointer, :double, :int], :void
|
|
557
|
+
attach_function :ImPlot_PlotPieChart_S8PtrStr, [:pointer, :pointer, :int, :double, :double, :double, :string, :double, :int], :void
|
|
558
|
+
attach_function :ImPlot_PlotPieChart_U16PtrPlotFormatter, [:pointer, :pointer, :int, :double, :double, :double, :ImPlotFormatter, :pointer, :double, :int], :void
|
|
559
|
+
attach_function :ImPlot_PlotPieChart_U16PtrStr, [:pointer, :pointer, :int, :double, :double, :double, :string, :double, :int], :void
|
|
560
|
+
attach_function :ImPlot_PlotPieChart_U32PtrPlotFormatter, [:pointer, :pointer, :int, :double, :double, :double, :ImPlotFormatter, :pointer, :double, :int], :void
|
|
561
|
+
attach_function :ImPlot_PlotPieChart_U32PtrStr, [:pointer, :pointer, :int, :double, :double, :double, :string, :double, :int], :void
|
|
562
|
+
attach_function :ImPlot_PlotPieChart_U64PtrPlotFormatter, [:pointer, :pointer, :int, :double, :double, :double, :ImPlotFormatter, :pointer, :double, :int], :void
|
|
563
|
+
attach_function :ImPlot_PlotPieChart_U64PtrStr, [:pointer, :pointer, :int, :double, :double, :double, :string, :double, :int], :void
|
|
564
|
+
attach_function :ImPlot_PlotPieChart_U8PtrPlotFormatter, [:pointer, :pointer, :int, :double, :double, :double, :ImPlotFormatter, :pointer, :double, :int], :void
|
|
565
|
+
attach_function :ImPlot_PlotPieChart_U8PtrStr, [:pointer, :pointer, :int, :double, :double, :double, :string, :double, :int], :void
|
|
566
|
+
attach_function :ImPlot_PlotPieChart_doublePtrPlotFormatter, [:pointer, :pointer, :int, :double, :double, :double, :ImPlotFormatter, :pointer, :double, :int], :void
|
|
567
|
+
attach_function :ImPlot_PlotPieChart_doublePtrStr, [:pointer, :pointer, :int, :double, :double, :double, :string, :double, :int], :void
|
|
568
|
+
attach_function :ImPlot_PlotScatterG, [:string, :ImPlotGetter, :pointer, :int, :int], :void
|
|
569
|
+
attach_function :ImPlot_PlotScatter_FloatPtrFloatPtr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
570
|
+
attach_function :ImPlot_PlotScatter_FloatPtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
571
|
+
attach_function :ImPlot_PlotScatter_S16PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
572
|
+
attach_function :ImPlot_PlotScatter_S16PtrS16Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
573
|
+
attach_function :ImPlot_PlotScatter_S32PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
574
|
+
attach_function :ImPlot_PlotScatter_S32PtrS32Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
575
|
+
attach_function :ImPlot_PlotScatter_S64PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
576
|
+
attach_function :ImPlot_PlotScatter_S64PtrS64Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
577
|
+
attach_function :ImPlot_PlotScatter_S8PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
578
|
+
attach_function :ImPlot_PlotScatter_S8PtrS8Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
579
|
+
attach_function :ImPlot_PlotScatter_U16PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
580
|
+
attach_function :ImPlot_PlotScatter_U16PtrU16Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
581
|
+
attach_function :ImPlot_PlotScatter_U32PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
582
|
+
attach_function :ImPlot_PlotScatter_U32PtrU32Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
583
|
+
attach_function :ImPlot_PlotScatter_U64PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
584
|
+
attach_function :ImPlot_PlotScatter_U64PtrU64Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
585
|
+
attach_function :ImPlot_PlotScatter_U8PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
586
|
+
attach_function :ImPlot_PlotScatter_U8PtrU8Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
587
|
+
attach_function :ImPlot_PlotScatter_doublePtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
588
|
+
attach_function :ImPlot_PlotScatter_doublePtrdoublePtr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
589
|
+
attach_function :ImPlot_PlotShadedG, [:string, :ImPlotGetter, :pointer, :ImPlotGetter, :pointer, :int, :int], :void
|
|
590
|
+
attach_function :ImPlot_PlotShaded_FloatPtrFloatPtrFloatPtr, [:string, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
591
|
+
attach_function :ImPlot_PlotShaded_FloatPtrFloatPtrInt, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
592
|
+
attach_function :ImPlot_PlotShaded_FloatPtrInt, [:string, :pointer, :int, :double, :double, :double, :int, :int, :int], :void
|
|
593
|
+
attach_function :ImPlot_PlotShaded_S16PtrInt, [:string, :pointer, :int, :double, :double, :double, :int, :int, :int], :void
|
|
594
|
+
attach_function :ImPlot_PlotShaded_S16PtrS16PtrInt, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
595
|
+
attach_function :ImPlot_PlotShaded_S16PtrS16PtrS16Ptr, [:string, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
596
|
+
attach_function :ImPlot_PlotShaded_S32PtrInt, [:string, :pointer, :int, :double, :double, :double, :int, :int, :int], :void
|
|
597
|
+
attach_function :ImPlot_PlotShaded_S32PtrS32PtrInt, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
598
|
+
attach_function :ImPlot_PlotShaded_S32PtrS32PtrS32Ptr, [:string, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
599
|
+
attach_function :ImPlot_PlotShaded_S64PtrInt, [:string, :pointer, :int, :double, :double, :double, :int, :int, :int], :void
|
|
600
|
+
attach_function :ImPlot_PlotShaded_S64PtrS64PtrInt, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
601
|
+
attach_function :ImPlot_PlotShaded_S64PtrS64PtrS64Ptr, [:string, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
602
|
+
attach_function :ImPlot_PlotShaded_S8PtrInt, [:string, :pointer, :int, :double, :double, :double, :int, :int, :int], :void
|
|
603
|
+
attach_function :ImPlot_PlotShaded_S8PtrS8PtrInt, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
604
|
+
attach_function :ImPlot_PlotShaded_S8PtrS8PtrS8Ptr, [:string, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
605
|
+
attach_function :ImPlot_PlotShaded_U16PtrInt, [:string, :pointer, :int, :double, :double, :double, :int, :int, :int], :void
|
|
606
|
+
attach_function :ImPlot_PlotShaded_U16PtrU16PtrInt, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
607
|
+
attach_function :ImPlot_PlotShaded_U16PtrU16PtrU16Ptr, [:string, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
608
|
+
attach_function :ImPlot_PlotShaded_U32PtrInt, [:string, :pointer, :int, :double, :double, :double, :int, :int, :int], :void
|
|
609
|
+
attach_function :ImPlot_PlotShaded_U32PtrU32PtrInt, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
610
|
+
attach_function :ImPlot_PlotShaded_U32PtrU32PtrU32Ptr, [:string, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
611
|
+
attach_function :ImPlot_PlotShaded_U64PtrInt, [:string, :pointer, :int, :double, :double, :double, :int, :int, :int], :void
|
|
612
|
+
attach_function :ImPlot_PlotShaded_U64PtrU64PtrInt, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
613
|
+
attach_function :ImPlot_PlotShaded_U64PtrU64PtrU64Ptr, [:string, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
614
|
+
attach_function :ImPlot_PlotShaded_U8PtrInt, [:string, :pointer, :int, :double, :double, :double, :int, :int, :int], :void
|
|
615
|
+
attach_function :ImPlot_PlotShaded_U8PtrU8PtrInt, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
616
|
+
attach_function :ImPlot_PlotShaded_U8PtrU8PtrU8Ptr, [:string, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
617
|
+
attach_function :ImPlot_PlotShaded_doublePtrInt, [:string, :pointer, :int, :double, :double, :double, :int, :int, :int], :void
|
|
618
|
+
attach_function :ImPlot_PlotShaded_doublePtrdoublePtrInt, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
619
|
+
attach_function :ImPlot_PlotShaded_doublePtrdoublePtrdoublePtr, [:string, :pointer, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
620
|
+
attach_function :ImPlot_PlotStairsG, [:string, :ImPlotGetter, :pointer, :int, :int], :void
|
|
621
|
+
attach_function :ImPlot_PlotStairs_FloatPtrFloatPtr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
622
|
+
attach_function :ImPlot_PlotStairs_FloatPtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
623
|
+
attach_function :ImPlot_PlotStairs_S16PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
624
|
+
attach_function :ImPlot_PlotStairs_S16PtrS16Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
625
|
+
attach_function :ImPlot_PlotStairs_S32PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
626
|
+
attach_function :ImPlot_PlotStairs_S32PtrS32Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
627
|
+
attach_function :ImPlot_PlotStairs_S64PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
628
|
+
attach_function :ImPlot_PlotStairs_S64PtrS64Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
629
|
+
attach_function :ImPlot_PlotStairs_S8PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
630
|
+
attach_function :ImPlot_PlotStairs_S8PtrS8Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
631
|
+
attach_function :ImPlot_PlotStairs_U16PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
632
|
+
attach_function :ImPlot_PlotStairs_U16PtrU16Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
633
|
+
attach_function :ImPlot_PlotStairs_U32PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
634
|
+
attach_function :ImPlot_PlotStairs_U32PtrU32Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
635
|
+
attach_function :ImPlot_PlotStairs_U64PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
636
|
+
attach_function :ImPlot_PlotStairs_U64PtrU64Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
637
|
+
attach_function :ImPlot_PlotStairs_U8PtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
638
|
+
attach_function :ImPlot_PlotStairs_U8PtrU8Ptr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
639
|
+
attach_function :ImPlot_PlotStairs_doublePtrInt, [:string, :pointer, :int, :double, :double, :int, :int, :int], :void
|
|
640
|
+
attach_function :ImPlot_PlotStairs_doublePtrdoublePtr, [:string, :pointer, :pointer, :int, :int, :int, :int], :void
|
|
641
|
+
attach_function :ImPlot_PlotStems_FloatPtrFloatPtr, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
642
|
+
attach_function :ImPlot_PlotStems_FloatPtrInt, [:string, :pointer, :int, :double, :double, :double, :int, :int, :int], :void
|
|
643
|
+
attach_function :ImPlot_PlotStems_S16PtrInt, [:string, :pointer, :int, :double, :double, :double, :int, :int, :int], :void
|
|
644
|
+
attach_function :ImPlot_PlotStems_S16PtrS16Ptr, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
645
|
+
attach_function :ImPlot_PlotStems_S32PtrInt, [:string, :pointer, :int, :double, :double, :double, :int, :int, :int], :void
|
|
646
|
+
attach_function :ImPlot_PlotStems_S32PtrS32Ptr, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
647
|
+
attach_function :ImPlot_PlotStems_S64PtrInt, [:string, :pointer, :int, :double, :double, :double, :int, :int, :int], :void
|
|
648
|
+
attach_function :ImPlot_PlotStems_S64PtrS64Ptr, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
649
|
+
attach_function :ImPlot_PlotStems_S8PtrInt, [:string, :pointer, :int, :double, :double, :double, :int, :int, :int], :void
|
|
650
|
+
attach_function :ImPlot_PlotStems_S8PtrS8Ptr, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
651
|
+
attach_function :ImPlot_PlotStems_U16PtrInt, [:string, :pointer, :int, :double, :double, :double, :int, :int, :int], :void
|
|
652
|
+
attach_function :ImPlot_PlotStems_U16PtrU16Ptr, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
653
|
+
attach_function :ImPlot_PlotStems_U32PtrInt, [:string, :pointer, :int, :double, :double, :double, :int, :int, :int], :void
|
|
654
|
+
attach_function :ImPlot_PlotStems_U32PtrU32Ptr, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
655
|
+
attach_function :ImPlot_PlotStems_U64PtrInt, [:string, :pointer, :int, :double, :double, :double, :int, :int, :int], :void
|
|
656
|
+
attach_function :ImPlot_PlotStems_U64PtrU64Ptr, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
657
|
+
attach_function :ImPlot_PlotStems_U8PtrInt, [:string, :pointer, :int, :double, :double, :double, :int, :int, :int], :void
|
|
658
|
+
attach_function :ImPlot_PlotStems_U8PtrU8Ptr, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
659
|
+
attach_function :ImPlot_PlotStems_doublePtrInt, [:string, :pointer, :int, :double, :double, :double, :int, :int, :int], :void
|
|
660
|
+
attach_function :ImPlot_PlotStems_doublePtrdoublePtr, [:string, :pointer, :pointer, :int, :double, :int, :int, :int], :void
|
|
661
|
+
attach_function :ImPlot_PlotText, [:string, :double, :double, ImGui::Native::ImVec2.by_value, :int], :void
|
|
662
|
+
attach_function :ImPlot_PlotToPixels_PlotPoInt, [:pointer, ImPlotPoint.by_value, :int, :int], :void
|
|
663
|
+
attach_function :ImPlot_PlotToPixels_double, [:pointer, :double, :double, :int, :int], :void
|
|
664
|
+
attach_function :ImPlot_PopColormap, [:int], :void
|
|
665
|
+
attach_function :ImPlot_PopPlotClipRect, [], :void
|
|
666
|
+
attach_function :ImPlot_PopStyleColor, [:int], :void
|
|
667
|
+
attach_function :ImPlot_PopStyleVar, [:int], :void
|
|
668
|
+
attach_function :ImPlot_Precision, [:double], :int
|
|
669
|
+
attach_function :ImPlot_PushColormap_PlotColormap, [:int], :void
|
|
670
|
+
attach_function :ImPlot_PushColormap_Str, [:string], :void
|
|
671
|
+
attach_function :ImPlot_PushPlotClipRect, [:float], :void
|
|
672
|
+
attach_function :ImPlot_PushStyleColor_U32, [:int, :uint], :void
|
|
673
|
+
attach_function :ImPlot_PushStyleColor_Vec4, [:int, ImGui::Native::ImVec4.by_value], :void
|
|
674
|
+
attach_function :ImPlot_PushStyleVar_Float, [:int, :float], :void
|
|
675
|
+
attach_function :ImPlot_PushStyleVar_Int, [:int, :int], :void
|
|
676
|
+
attach_function :ImPlot_PushStyleVar_Vec2, [:int, ImGui::Native::ImVec2.by_value], :void
|
|
677
|
+
attach_function :ImPlot_RangesOverlap, [ImPlotRange.by_value, ImPlotRange.by_value], :bool
|
|
678
|
+
attach_function :ImPlot_RegisterOrGetItem, [:string, :int, :pointer], :pointer
|
|
679
|
+
attach_function :ImPlot_RenderColorBar, [:pointer, :int, :pointer, ImGui::Native::ImRect.by_value, :bool, :bool, :bool], :void
|
|
680
|
+
attach_function :ImPlot_ResetCtxForNextAlignedPlots, [:pointer], :void
|
|
681
|
+
attach_function :ImPlot_ResetCtxForNextPlot, [:pointer], :void
|
|
682
|
+
attach_function :ImPlot_ResetCtxForNextSubplot, [:pointer], :void
|
|
683
|
+
attach_function :ImPlot_RoundTime, [:pointer, ImPlotTime.by_value, :int], :void
|
|
684
|
+
attach_function :ImPlot_RoundTo, [:double, :int], :double
|
|
685
|
+
attach_function :ImPlot_SampleColormap, [:pointer, :float, :int], :void
|
|
686
|
+
attach_function :ImPlot_SampleColormapU32, [:float, :int], :uint
|
|
687
|
+
attach_function :ImPlot_SetAxes, [:int, :int], :void
|
|
688
|
+
attach_function :ImPlot_SetAxis, [:int], :void
|
|
689
|
+
attach_function :ImPlot_SetCurrentContext, [:pointer], :void
|
|
690
|
+
attach_function :ImPlot_SetImGuiContext, [:pointer], :void
|
|
691
|
+
attach_function :ImPlot_SetNextAxesLimits, [:double, :double, :double, :double, :int], :void
|
|
692
|
+
attach_function :ImPlot_SetNextAxesToFit, [], :void
|
|
693
|
+
attach_function :ImPlot_SetNextAxisLimits, [:int, :double, :double, :int], :void
|
|
694
|
+
attach_function :ImPlot_SetNextAxisLinks, [:int, :pointer, :pointer], :void
|
|
695
|
+
attach_function :ImPlot_SetNextAxisToFit, [:int], :void
|
|
696
|
+
attach_function :ImPlot_SetNextErrorBarStyle, [ImGui::Native::ImVec4.by_value, :float, :float], :void
|
|
697
|
+
attach_function :ImPlot_SetNextFillStyle, [ImGui::Native::ImVec4.by_value, :float], :void
|
|
698
|
+
attach_function :ImPlot_SetNextLineStyle, [ImGui::Native::ImVec4.by_value, :float], :void
|
|
699
|
+
attach_function :ImPlot_SetNextMarkerStyle, [:int, :float, ImGui::Native::ImVec4.by_value, :float, ImGui::Native::ImVec4.by_value], :void
|
|
700
|
+
attach_function :ImPlot_SetupAxes, [:string, :string, :int, :int], :void
|
|
701
|
+
attach_function :ImPlot_SetupAxesLimits, [:double, :double, :double, :double, :int], :void
|
|
702
|
+
attach_function :ImPlot_SetupAxis, [:int, :string, :int], :void
|
|
703
|
+
attach_function :ImPlot_SetupAxisFormat_PlotFormatter, [:int, :ImPlotFormatter, :pointer], :void
|
|
704
|
+
attach_function :ImPlot_SetupAxisFormat_Str, [:int, :string], :void
|
|
705
|
+
attach_function :ImPlot_SetupAxisLimits, [:int, :double, :double, :int], :void
|
|
706
|
+
attach_function :ImPlot_SetupAxisLimitsConstraints, [:int, :double, :double], :void
|
|
707
|
+
attach_function :ImPlot_SetupAxisLinks, [:int, :pointer, :pointer], :void
|
|
708
|
+
attach_function :ImPlot_SetupAxisScale_PlotScale, [:int, :int], :void
|
|
709
|
+
attach_function :ImPlot_SetupAxisScale_PlotTransform, [:int, :ImPlotTransform, :ImPlotTransform, :pointer], :void
|
|
710
|
+
attach_function :ImPlot_SetupAxisTicks_double, [:int, :double, :double, :int, :pointer, :bool], :void
|
|
711
|
+
attach_function :ImPlot_SetupAxisTicks_doublePtr, [:int, :pointer, :int, :pointer, :bool], :void
|
|
712
|
+
attach_function :ImPlot_SetupAxisZoomConstraints, [:int, :double, :double], :void
|
|
713
|
+
attach_function :ImPlot_SetupFinish, [], :void
|
|
714
|
+
attach_function :ImPlot_SetupLegend, [:int, :int], :void
|
|
715
|
+
attach_function :ImPlot_SetupLock, [], :void
|
|
716
|
+
attach_function :ImPlot_SetupMouseText, [:int, :int], :void
|
|
717
|
+
attach_function :ImPlot_ShowAltLegend, [:string, :bool, ImGui::Native::ImVec2.by_value, :bool], :void
|
|
718
|
+
attach_function :ImPlot_ShowAxisContextMenu, [:pointer, :pointer, :bool], :void
|
|
719
|
+
attach_function :ImPlot_ShowColormapSelector, [:string], :bool
|
|
720
|
+
attach_function :ImPlot_ShowDatePicker, [:string, :pointer, :pointer, :pointer, :pointer], :bool
|
|
721
|
+
attach_function :ImPlot_ShowDemoWindow, [:pointer], :void
|
|
722
|
+
attach_function :ImPlot_ShowInputMapSelector, [:string], :bool
|
|
723
|
+
attach_function :ImPlot_ShowLegendContextMenu, [:pointer, :bool], :bool
|
|
724
|
+
attach_function :ImPlot_ShowLegendEntries, [:pointer, ImGui::Native::ImRect.by_value, :bool, ImGui::Native::ImVec2.by_value, ImGui::Native::ImVec2.by_value, :bool, :pointer], :bool
|
|
725
|
+
attach_function :ImPlot_ShowMetricsWindow, [:pointer], :void
|
|
726
|
+
attach_function :ImPlot_ShowPlotContextMenu, [:pointer], :void
|
|
727
|
+
attach_function :ImPlot_ShowStyleEditor, [:pointer], :void
|
|
728
|
+
attach_function :ImPlot_ShowStyleSelector, [:string], :bool
|
|
729
|
+
attach_function :ImPlot_ShowSubplotsContextMenu, [:pointer], :void
|
|
730
|
+
attach_function :ImPlot_ShowTimePicker, [:string, :pointer], :bool
|
|
731
|
+
attach_function :ImPlot_ShowUserGuide, [], :void
|
|
732
|
+
attach_function :ImPlot_StyleColorsAuto, [:pointer], :void
|
|
733
|
+
attach_function :ImPlot_StyleColorsClassic, [:pointer], :void
|
|
734
|
+
attach_function :ImPlot_StyleColorsDark, [:pointer], :void
|
|
735
|
+
attach_function :ImPlot_StyleColorsLight, [:pointer], :void
|
|
736
|
+
attach_function :ImPlot_SubplotNextCell, [], :void
|
|
737
|
+
attach_function :ImPlot_TagXV, [:double, ImGui::Native::ImVec4.by_value, :string, :pointer], :void
|
|
738
|
+
attach_function :ImPlot_TagX_Bool, [:double, ImGui::Native::ImVec4.by_value, :bool], :void
|
|
739
|
+
attach_function :ImPlot_TagYV, [:double, ImGui::Native::ImVec4.by_value, :string, :pointer], :void
|
|
740
|
+
attach_function :ImPlot_TagY_Bool, [:double, ImGui::Native::ImVec4.by_value, :bool], :void
|
|
741
|
+
attach_function :ImPlot_Today, [:pointer], :void
|
|
742
|
+
attach_function :ImPlot_TransformForward_Log10, [:double, :pointer], :double
|
|
743
|
+
attach_function :ImPlot_TransformForward_Logit, [:double, :pointer], :double
|
|
744
|
+
attach_function :ImPlot_TransformForward_SymLog, [:double, :pointer], :double
|
|
745
|
+
attach_function :ImPlot_TransformInverse_Log10, [:double, :pointer], :double
|
|
746
|
+
attach_function :ImPlot_TransformInverse_Logit, [:double, :pointer], :double
|
|
747
|
+
attach_function :ImPlot_TransformInverse_SymLog, [:double, :pointer], :double
|
|
748
|
+
end
|
|
749
|
+
end
|