Compare commits

...

7 Commits

Author SHA1 Message Date
sonoro1234
f055d73efc pull imgui 1.90.5 and generate 2024-04-19 10:48:53 +02:00
Victor Bombi
781edadf8d Merge pull request #265 from alfredbaudisch/add-raylib-cimgui
Added raylib-cimgui to the README
2024-04-08 11:40:40 +02:00
Alfred Reinold Baudisch
b6520c67a8 Added raylib-cimgui to the README 2024-04-07 18:07:33 +01:00
sonoro1234
eb0649acf3 pull ImDrawCallback_ResetRenderState to cimgui.h 2024-02-27 09:56:32 +01:00
sonoro1234
4486dace2a update readme 2024-02-24 13:05:48 +01:00
sonoro1234
bd0a584e56 pull imgui 1.90.4 and generate 2024-02-24 13:03:13 +01:00
sonoro1234
7ea55fbcea pull imgui 1.90.3 docking and generate 2024-02-16 11:31:30 +01:00
14 changed files with 3681 additions and 3454 deletions

View File

@@ -11,7 +11,7 @@ History:
Initially cimgui was developed by Stephan Dilly as hand-written code but lately turned into an auto-generated version by sonoro1234 in order to keep up with imgui more easily (letting the user select the desired branch and commit)
Notes:
* currently this wrapper is based on version [1.90.2 of Dear ImGui with internal api]
* currently this wrapper is based on version [1.90.5 of Dear ImGui with internal api]
* only functions, structs and enums from imgui.h (an optionally imgui_internal.h) are wrapped.
* if you are interested in imgui backends you should look [LuaJIT-ImGui](https://github.com/sonoro1234/LuaJIT-ImGui) project.
* All naming is algorithmic except for those names that were coded in cimgui_overloads table (https://github.com/cimgui/cimgui/blob/master/generator/generator.lua#L60). In the official version this table is empty.
@@ -118,3 +118,4 @@ Notes:
* [sdl2-cimgui-demo](https://github.com/haxpor/sdl2-cimgui-demo)
* [cimgui_c_sdl2_example](https://github.com/canoi12/cimgui_c_sdl2_example/)
* [cimgui-c-example](https://github.com/peko/cimgui-c-example) with GLFW
* [raylib-cimgui](https://github.com/alfredbaudisch/raylib-cimgui)

View File

@@ -1,5 +1,5 @@
//This file is automatically generated by generator.lua from https://github.com/cimgui/cimgui
//based on imgui.h file version "1.90.2" 19020 from Dear ImGui https://github.com/ocornut/imgui
//based on imgui.h file version "1.90.5" 19050 from Dear ImGui https://github.com/ocornut/imgui
//with imgui_internal.h api
//docking branch
#ifdef IMGUI_ENABLE_FREETYPE
@@ -420,9 +420,9 @@ CIMGUI_API ImU32 igGetColorU32_Vec4(const ImVec4 col)
{
return ImGui::GetColorU32(col);
}
CIMGUI_API ImU32 igGetColorU32_U32(ImU32 col)
CIMGUI_API ImU32 igGetColorU32_U32(ImU32 col,float alpha_mul)
{
return ImGui::GetColorU32(col);
return ImGui::GetColorU32(col,alpha_mul);
}
CIMGUI_API const ImVec4* igGetStyleColorVec4(ImGuiCol idx)
{
@@ -1628,6 +1628,10 @@ CIMGUI_API void igDebugFlashStyleColor(ImGuiCol idx)
{
return ImGui::DebugFlashStyleColor(idx);
}
CIMGUI_API void igDebugStartItemPicker()
{
return ImGui::DebugStartItemPicker();
}
CIMGUI_API bool igDebugCheckVersionAndDataLayout(const char* version_str,size_t sz_io,size_t sz_style,size_t sz_vec2,size_t sz_vec4,size_t sz_drawvert,size_t sz_drawidx)
{
return ImGui::DebugCheckVersionAndDataLayout(version_str,sz_io,sz_style,sz_vec2,sz_vec4,sz_drawvert,sz_drawidx);
@@ -2188,13 +2192,13 @@ CIMGUI_API void ImDrawList_AddNgonFilled(ImDrawList* self,const ImVec2 center,fl
{
return self->AddNgonFilled(center,radius,col,num_segments);
}
CIMGUI_API void ImDrawList_AddEllipse(ImDrawList* self,const ImVec2 center,float radius_x,float radius_y,ImU32 col,float rot,int num_segments,float thickness)
CIMGUI_API void ImDrawList_AddEllipse(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments,float thickness)
{
return self->AddEllipse(center,radius_x,radius_y,col,rot,num_segments,thickness);
return self->AddEllipse(center,radius,col,rot,num_segments,thickness);
}
CIMGUI_API void ImDrawList_AddEllipseFilled(ImDrawList* self,const ImVec2 center,float radius_x,float radius_y,ImU32 col,float rot,int num_segments)
CIMGUI_API void ImDrawList_AddEllipseFilled(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments)
{
return self->AddEllipseFilled(center,radius_x,radius_y,col,rot,num_segments);
return self->AddEllipseFilled(center,radius,col,rot,num_segments);
}
CIMGUI_API void ImDrawList_AddText_Vec2(ImDrawList* self,const ImVec2 pos,ImU32 col,const char* text_begin,const char* text_end)
{
@@ -2204,6 +2208,14 @@ CIMGUI_API void ImDrawList_AddText_FontPtr(ImDrawList* self,const ImFont* font,f
{
return self->AddText(font,font_size,pos,col,text_begin,text_end,wrap_width,cpu_fine_clip_rect);
}
CIMGUI_API void ImDrawList_AddBezierCubic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,ImU32 col,float thickness,int num_segments)
{
return self->AddBezierCubic(p1,p2,p3,p4,col,thickness,num_segments);
}
CIMGUI_API void ImDrawList_AddBezierQuadratic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,ImU32 col,float thickness,int num_segments)
{
return self->AddBezierQuadratic(p1,p2,p3,col,thickness,num_segments);
}
CIMGUI_API void ImDrawList_AddPolyline(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col,ImDrawFlags flags,float thickness)
{
return self->AddPolyline(points,num_points,col,flags,thickness);
@@ -2212,13 +2224,9 @@ CIMGUI_API void ImDrawList_AddConvexPolyFilled(ImDrawList* self,const ImVec2* po
{
return self->AddConvexPolyFilled(points,num_points,col);
}
CIMGUI_API void ImDrawList_AddBezierCubic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,ImU32 col,float thickness,int num_segments)
CIMGUI_API void ImDrawList_AddConcavePolyFilled(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col)
{
return self->AddBezierCubic(p1,p2,p3,p4,col,thickness,num_segments);
}
CIMGUI_API void ImDrawList_AddBezierQuadratic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,ImU32 col,float thickness,int num_segments)
{
return self->AddBezierQuadratic(p1,p2,p3,col,thickness,num_segments);
return self->AddConcavePolyFilled(points,num_points,col);
}
CIMGUI_API void ImDrawList_AddImage(ImDrawList* self,ImTextureID user_texture_id,const ImVec2 p_min,const ImVec2 p_max,const ImVec2 uv_min,const ImVec2 uv_max,ImU32 col)
{
@@ -2248,6 +2256,10 @@ CIMGUI_API void ImDrawList_PathFillConvex(ImDrawList* self,ImU32 col)
{
return self->PathFillConvex(col);
}
CIMGUI_API void ImDrawList_PathFillConcave(ImDrawList* self,ImU32 col)
{
return self->PathFillConcave(col);
}
CIMGUI_API void ImDrawList_PathStroke(ImDrawList* self,ImU32 col,ImDrawFlags flags,float thickness)
{
return self->PathStroke(col,flags,thickness);
@@ -2260,9 +2272,9 @@ CIMGUI_API void ImDrawList_PathArcToFast(ImDrawList* self,const ImVec2 center,fl
{
return self->PathArcToFast(center,radius,a_min_of_12,a_max_of_12);
}
CIMGUI_API void ImDrawList_PathEllipticalArcTo(ImDrawList* self,const ImVec2 center,float radius_x,float radius_y,float rot,float a_min,float a_max,int num_segments)
CIMGUI_API void ImDrawList_PathEllipticalArcTo(ImDrawList* self,const ImVec2 center,const ImVec2 radius,float rot,float a_min,float a_max,int num_segments)
{
return self->PathEllipticalArcTo(center,radius_x,radius_y,rot,a_min,a_max,num_segments);
return self->PathEllipticalArcTo(center,radius,rot,a_min,a_max,num_segments);
}
CIMGUI_API void ImDrawList_PathBezierCubicCurveTo(ImDrawList* self,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,int num_segments)
{
@@ -2688,10 +2700,6 @@ CIMGUI_API void ImGuiPlatformImeData_destroy(ImGuiPlatformImeData* self)
{
IM_DELETE(self);
}
CIMGUI_API ImGuiKey igGetKeyIndex(ImGuiKey key)
{
return ImGui::GetKeyIndex(key);
}
CIMGUI_API ImGuiID igImHashData(const void* data,size_t data_size,ImGuiID seed)
{
return ImHashData(data,data_size,seed);
@@ -3047,6 +3055,10 @@ CIMGUI_API float igImTriangleArea(const ImVec2 a,const ImVec2 b,const ImVec2 c)
{
return ImTriangleArea(a,b,c);
}
CIMGUI_API bool igImTriangleIsClockwise(const ImVec2 a,const ImVec2 b,const ImVec2 c)
{
return ImTriangleIsClockwise(a,b,c);
}
CIMGUI_API ImVec1* ImVec1_ImVec1_Nil(void)
{
return IM_NEW(ImVec1)();
@@ -4879,9 +4891,9 @@ CIMGUI_API void igTablePopBackgroundChannel()
{
return ImGui::TablePopBackgroundChannel();
}
CIMGUI_API void igTableAngledHeadersRowEx(float angle,float label_width)
CIMGUI_API void igTableAngledHeadersRowEx(float angle,float max_label_width)
{
return ImGui::TableAngledHeadersRowEx(angle,label_width);
return ImGui::TableAngledHeadersRowEx(angle,max_label_width);
}
CIMGUI_API ImGuiTable* igGetCurrentTable()
{
@@ -5454,10 +5466,6 @@ CIMGUI_API void igDebugBreakButtonTooltip(bool keyboard_only,const char* descrip
{
return ImGui::DebugBreakButtonTooltip(keyboard_only,description_of_location);
}
CIMGUI_API void igDebugStartItemPicker()
{
return ImGui::DebugStartItemPicker();
}
CIMGUI_API void igShowFontAtlas(ImFontAtlas* atlas)
{
return ImGui::ShowFontAtlas(atlas);

View File

@@ -1,5 +1,5 @@
//This file is automatically generated by generator.lua from https://github.com/cimgui/cimgui
//based on imgui.h file version "1.90.2" 19020 from Dear ImGui https://github.com/ocornut/imgui
//based on imgui.h file version "1.90.5" 19050 from Dear ImGui https://github.com/ocornut/imgui
//with imgui_internal.h api
//docking branch
#ifndef CIMGUI_INCLUDED
@@ -717,7 +717,9 @@ typedef enum {
ImGuiStyleVar_GrabMinSize,
ImGuiStyleVar_GrabRounding,
ImGuiStyleVar_TabRounding,
ImGuiStyleVar_TabBorderSize,
ImGuiStyleVar_TabBarBorderSize,
ImGuiStyleVar_TableAngledHeadersAngle,
ImGuiStyleVar_ButtonTextAlign,
ImGuiStyleVar_SelectableTextAlign,
ImGuiStyleVar_SeparatorTextBorderSize,
@@ -1650,6 +1652,7 @@ typedef enum {
ImGuiInputTextFlags_Multiline = 1 << 26,
ImGuiInputTextFlags_NoMarkEdited = 1 << 27,
ImGuiInputTextFlags_MergedItem = 1 << 28,
ImGuiInputTextFlags_LocalizeDecimalPoint= 1 << 29,
}ImGuiInputTextFlagsPrivate_;
typedef enum {
ImGuiButtonFlags_PressedOnClick = 1 << 4,
@@ -1942,7 +1945,7 @@ struct ImGuiPopupData
{
ImGuiID PopupId;
ImGuiWindow* Window;
ImGuiWindow* BackupNavWindow;
ImGuiWindow* RestoreNavWindow;
int ParentNavLayer;
int OpenFrameCount;
ImGuiID OpenParentId;
@@ -1968,7 +1971,6 @@ typedef enum {
ImGuiInputSource_Mouse,
ImGuiInputSource_Keyboard,
ImGuiInputSource_Gamepad,
ImGuiInputSource_Clipboard,
ImGuiInputSource_COUNT
}ImGuiInputSource;
typedef struct ImGuiInputEventMousePos ImGuiInputEventMousePos;
@@ -2141,6 +2143,7 @@ typedef enum {
ImGuiNavMoveFlags_Activate = 1 << 12,
ImGuiNavMoveFlags_NoSelect = 1 << 13,
ImGuiNavMoveFlags_NoSetNavHighlight = 1 << 14,
ImGuiNavMoveFlags_NoClearActiveId = 1 << 15,
}ImGuiNavMoveFlags_;
typedef enum {
ImGuiNavLayer_Main = 0,
@@ -2849,6 +2852,7 @@ struct ImGuiWindowTempData
int CurrentTableIdx;
ImGuiLayoutType LayoutType;
ImGuiLayoutType ParentLayoutType;
ImU32 ModalDimBgColor;
float ItemWidth;
float TextWrapPos;
ImVector_float ItemWidthStack;
@@ -3229,7 +3233,7 @@ struct ImGuiTableTempData
{
int TableIndex;
float LastTimeActive;
float AngledheadersExtraWidth;
float AngledHeadersExtraWidth;
ImVec2 UserOuterSize;
ImDrawListSplitter DrawSplitter;
ImRect HostBackupWorkRect;
@@ -3268,6 +3272,8 @@ struct ImFontBuilderIO
};
#define IMGUI_HAS_DOCK 1
#define ImDrawCallback_ResetRenderState (ImDrawCallback)(-8)
#else
struct GLFWwindow;
struct SDL_Window;
@@ -3440,7 +3446,7 @@ CIMGUI_API float igGetFontSize(void);
CIMGUI_API void igGetFontTexUvWhitePixel(ImVec2 *pOut);
CIMGUI_API ImU32 igGetColorU32_Col(ImGuiCol idx,float alpha_mul);
CIMGUI_API ImU32 igGetColorU32_Vec4(const ImVec4 col);
CIMGUI_API ImU32 igGetColorU32_U32(ImU32 col);
CIMGUI_API ImU32 igGetColorU32_U32(ImU32 col,float alpha_mul);
CIMGUI_API const ImVec4* igGetStyleColorVec4(ImGuiCol idx);
CIMGUI_API void igGetCursorScreenPos(ImVec2 *pOut);
CIMGUI_API void igSetCursorScreenPos(const ImVec2 pos);
@@ -3732,6 +3738,7 @@ CIMGUI_API void igSaveIniSettingsToDisk(const char* ini_filename);
CIMGUI_API const char* igSaveIniSettingsToMemory(size_t* out_ini_size);
CIMGUI_API void igDebugTextEncoding(const char* text);
CIMGUI_API void igDebugFlashStyleColor(ImGuiCol idx);
CIMGUI_API void igDebugStartItemPicker(void);
CIMGUI_API bool igDebugCheckVersionAndDataLayout(const char* version_str,size_t sz_io,size_t sz_style,size_t sz_vec2,size_t sz_vec4,size_t sz_drawvert,size_t sz_drawidx);
CIMGUI_API void igSetAllocatorFunctions(ImGuiMemAllocFunc alloc_func,ImGuiMemFreeFunc free_func,void* user_data);
CIMGUI_API void igGetAllocatorFunctions(ImGuiMemAllocFunc* p_alloc_func,ImGuiMemFreeFunc* p_free_func,void** p_user_data);
@@ -3872,14 +3879,15 @@ CIMGUI_API void ImDrawList_AddCircle(ImDrawList* self,const ImVec2 center,float
CIMGUI_API void ImDrawList_AddCircleFilled(ImDrawList* self,const ImVec2 center,float radius,ImU32 col,int num_segments);
CIMGUI_API void ImDrawList_AddNgon(ImDrawList* self,const ImVec2 center,float radius,ImU32 col,int num_segments,float thickness);
CIMGUI_API void ImDrawList_AddNgonFilled(ImDrawList* self,const ImVec2 center,float radius,ImU32 col,int num_segments);
CIMGUI_API void ImDrawList_AddEllipse(ImDrawList* self,const ImVec2 center,float radius_x,float radius_y,ImU32 col,float rot,int num_segments,float thickness);
CIMGUI_API void ImDrawList_AddEllipseFilled(ImDrawList* self,const ImVec2 center,float radius_x,float radius_y,ImU32 col,float rot,int num_segments);
CIMGUI_API void ImDrawList_AddEllipse(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments,float thickness);
CIMGUI_API void ImDrawList_AddEllipseFilled(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments);
CIMGUI_API void ImDrawList_AddText_Vec2(ImDrawList* self,const ImVec2 pos,ImU32 col,const char* text_begin,const char* text_end);
CIMGUI_API void ImDrawList_AddText_FontPtr(ImDrawList* self,const ImFont* font,float font_size,const ImVec2 pos,ImU32 col,const char* text_begin,const char* text_end,float wrap_width,const ImVec4* cpu_fine_clip_rect);
CIMGUI_API void ImDrawList_AddPolyline(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col,ImDrawFlags flags,float thickness);
CIMGUI_API void ImDrawList_AddConvexPolyFilled(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col);
CIMGUI_API void ImDrawList_AddBezierCubic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,ImU32 col,float thickness,int num_segments);
CIMGUI_API void ImDrawList_AddBezierQuadratic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,ImU32 col,float thickness,int num_segments);
CIMGUI_API void ImDrawList_AddPolyline(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col,ImDrawFlags flags,float thickness);
CIMGUI_API void ImDrawList_AddConvexPolyFilled(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col);
CIMGUI_API void ImDrawList_AddConcavePolyFilled(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col);
CIMGUI_API void ImDrawList_AddImage(ImDrawList* self,ImTextureID user_texture_id,const ImVec2 p_min,const ImVec2 p_max,const ImVec2 uv_min,const ImVec2 uv_max,ImU32 col);
CIMGUI_API void ImDrawList_AddImageQuad(ImDrawList* self,ImTextureID user_texture_id,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,const ImVec2 uv1,const ImVec2 uv2,const ImVec2 uv3,const ImVec2 uv4,ImU32 col);
CIMGUI_API void ImDrawList_AddImageRounded(ImDrawList* self,ImTextureID user_texture_id,const ImVec2 p_min,const ImVec2 p_max,const ImVec2 uv_min,const ImVec2 uv_max,ImU32 col,float rounding,ImDrawFlags flags);
@@ -3887,10 +3895,11 @@ CIMGUI_API void ImDrawList_PathClear(ImDrawList* self);
CIMGUI_API void ImDrawList_PathLineTo(ImDrawList* self,const ImVec2 pos);
CIMGUI_API void ImDrawList_PathLineToMergeDuplicate(ImDrawList* self,const ImVec2 pos);
CIMGUI_API void ImDrawList_PathFillConvex(ImDrawList* self,ImU32 col);
CIMGUI_API void ImDrawList_PathFillConcave(ImDrawList* self,ImU32 col);
CIMGUI_API void ImDrawList_PathStroke(ImDrawList* self,ImU32 col,ImDrawFlags flags,float thickness);
CIMGUI_API void ImDrawList_PathArcTo(ImDrawList* self,const ImVec2 center,float radius,float a_min,float a_max,int num_segments);
CIMGUI_API void ImDrawList_PathArcToFast(ImDrawList* self,const ImVec2 center,float radius,int a_min_of_12,int a_max_of_12);
CIMGUI_API void ImDrawList_PathEllipticalArcTo(ImDrawList* self,const ImVec2 center,float radius_x,float radius_y,float rot,float a_min,float a_max,int num_segments);
CIMGUI_API void ImDrawList_PathEllipticalArcTo(ImDrawList* self,const ImVec2 center,const ImVec2 radius,float rot,float a_min,float a_max,int num_segments);
CIMGUI_API void ImDrawList_PathBezierCubicCurveTo(ImDrawList* self,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,int num_segments);
CIMGUI_API void ImDrawList_PathBezierQuadraticCurveTo(ImDrawList* self,const ImVec2 p2,const ImVec2 p3,int num_segments);
CIMGUI_API void ImDrawList_PathRect(ImDrawList* self,const ImVec2 rect_min,const ImVec2 rect_max,float rounding,ImDrawFlags flags);
@@ -3997,7 +4006,6 @@ CIMGUI_API ImGuiPlatformMonitor* ImGuiPlatformMonitor_ImGuiPlatformMonitor(void)
CIMGUI_API void ImGuiPlatformMonitor_destroy(ImGuiPlatformMonitor* self);
CIMGUI_API ImGuiPlatformImeData* ImGuiPlatformImeData_ImGuiPlatformImeData(void);
CIMGUI_API void ImGuiPlatformImeData_destroy(ImGuiPlatformImeData* self);
CIMGUI_API ImGuiKey igGetKeyIndex(ImGuiKey key);
CIMGUI_API ImGuiID igImHashData(const void* data,size_t data_size,ImGuiID seed);
CIMGUI_API ImGuiID igImHashStr(const char* data,size_t data_size,ImGuiID seed);
CIMGUI_API void igImQsort(void* base,size_t count,size_t size_of_element,int(*compare_func)(void const*,void const*));
@@ -4085,6 +4093,7 @@ CIMGUI_API bool igImTriangleContainsPoint(const ImVec2 a,const ImVec2 b,const Im
CIMGUI_API void igImTriangleClosestPoint(ImVec2 *pOut,const ImVec2 a,const ImVec2 b,const ImVec2 c,const ImVec2 p);
CIMGUI_API void igImTriangleBarycentricCoords(const ImVec2 a,const ImVec2 b,const ImVec2 c,const ImVec2 p,float* out_u,float* out_v,float* out_w);
CIMGUI_API float igImTriangleArea(const ImVec2 a,const ImVec2 b,const ImVec2 c);
CIMGUI_API bool igImTriangleIsClockwise(const ImVec2 a,const ImVec2 b,const ImVec2 c);
CIMGUI_API ImVec1* ImVec1_ImVec1_Nil(void);
CIMGUI_API void ImVec1_destroy(ImVec1* self);
CIMGUI_API ImVec1* ImVec1_ImVec1_Float(float _x);
@@ -4543,7 +4552,7 @@ CIMGUI_API float igTableGetHeaderRowHeight(void);
CIMGUI_API float igTableGetHeaderAngledMaxLabelWidth(void);
CIMGUI_API void igTablePushBackgroundChannel(void);
CIMGUI_API void igTablePopBackgroundChannel(void);
CIMGUI_API void igTableAngledHeadersRowEx(float angle,float label_width);
CIMGUI_API void igTableAngledHeadersRowEx(float angle,float max_label_width);
CIMGUI_API ImGuiTable* igGetCurrentTable(void);
CIMGUI_API ImGuiTable* igTableFindByID(ImGuiID id);
CIMGUI_API bool igBeginTableEx(const char* name,ImGuiID id,int columns_count,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width);
@@ -4686,7 +4695,6 @@ CIMGUI_API void igDebugLocateItemResolveWithLastItem(void);
CIMGUI_API void igDebugBreakClearData(void);
CIMGUI_API bool igDebugBreakButton(const char* label,const char* description_of_location);
CIMGUI_API void igDebugBreakButtonTooltip(bool keyboard_only,const char* description_of_location);
CIMGUI_API void igDebugStartItemPicker(void);
CIMGUI_API void igShowFontAtlas(ImFontAtlas* atlas);
CIMGUI_API void igDebugHookIdInfo(ImGuiID id,ImGuiDataType data_type,const void* data_id,const void* data_id_end);
CIMGUI_API void igDebugNodeColumns(ImGuiOldColumns* columns);

View File

@@ -250,6 +250,9 @@ local function cimgui_generation(parser)
if gdefines.IMGUI_HAS_DOCK then
cstructsstr = cstructsstr.."\n#define IMGUI_HAS_DOCK 1\n"
end
if gdefines.ImDrawCallback_ResetRenderState then
cstructsstr = cstructsstr.."\n#define ImDrawCallback_ResetRenderState "..gdefines.ImDrawCallback_ResetRenderState.."\n"
end
if gdefines.IMGUI_HAS_IMSTR then
if not (NOCHAR or NOIMSTRV) then
cstructsstr = cstructsstr.."\n#define IMGUI_HAS_IMSTR 1\n"
@@ -276,8 +279,8 @@ end
--------------------------------------------------------
--get imgui.h version and IMGUI_HAS_DOCK--------------------------
--defines for the cl compiler must be present in the print_defines.cpp file
gdefines = get_defines{"IMGUI_VERSION","IMGUI_VERSION_NUM","FLT_MAX","FLT_MIN","IMGUI_HAS_DOCK","IMGUI_HAS_IMSTR"}
gdefines = get_defines{"IMGUI_VERSION","IMGUI_VERSION_NUM","FLT_MAX","FLT_MIN","IMGUI_HAS_DOCK","IMGUI_HAS_IMSTR","ImDrawCallback_ResetRenderState"}
--cpp2ffi.prtable(gdefines)
if gdefines.IMGUI_HAS_DOCK then gdefines.IMGUI_HAS_DOCK = true end
if gdefines.IMGUI_HAS_IMSTR then gdefines.IMGUI_HAS_IMSTR = true end

View File

@@ -47,9 +47,12 @@ CIMGUI_API void ImGui_ImplOpenGL2_DestroyDeviceObjects(void);
typedef struct SDL_Window SDL_Window;
typedef struct SDL_Renderer SDL_Renderer;
typedef struct _SDL_GameController _SDL_GameController;
struct SDL_Window;
struct SDL_Renderer;
typedef union SDL_Event SDL_Event;CIMGUI_API bool ImGui_ImplSDL2_InitForOpenGL(SDL_Window* window,void* sdl_gl_context);
struct _SDL_GameController;
typedef union SDL_Event SDL_Event;
typedef enum { ImGui_ImplSDL2_GamepadMode_AutoFirst, ImGui_ImplSDL2_GamepadMode_AutoAll, ImGui_ImplSDL2_GamepadMode_Manual }ImGui_ImplSDL2_GamepadMode;CIMGUI_API bool ImGui_ImplSDL2_InitForOpenGL(SDL_Window* window,void* sdl_gl_context);
CIMGUI_API bool ImGui_ImplSDL2_InitForVulkan(SDL_Window* window);
CIMGUI_API bool ImGui_ImplSDL2_InitForD3D(SDL_Window* window);
CIMGUI_API bool ImGui_ImplSDL2_InitForMetal(SDL_Window* window);
@@ -58,5 +61,6 @@ CIMGUI_API bool ImGui_ImplSDL2_InitForOther(SDL_Window* window);
CIMGUI_API void ImGui_ImplSDL2_Shutdown(void);
CIMGUI_API void ImGui_ImplSDL2_NewFrame(void);
CIMGUI_API bool ImGui_ImplSDL2_ProcessEvent(const SDL_Event* event);
CIMGUI_API void ImGui_ImplSDL2_SetGamepadMode(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array,int manual_gamepads_count);
#endif

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -17,7 +17,7 @@
"cimguiname": "ImGui_ImplGlfw_CharCallback",
"defaults": {},
"funcname": "ImGui_ImplGlfw_CharCallback",
"location": "imgui_impl_glfw:60",
"location": "imgui_impl_glfw:59",
"ov_cimguiname": "ImGui_ImplGlfw_CharCallback",
"ret": "void",
"signature": "(GLFWwindow*,unsigned int)",
@@ -42,7 +42,7 @@
"cimguiname": "ImGui_ImplGlfw_CursorEnterCallback",
"defaults": {},
"funcname": "ImGui_ImplGlfw_CursorEnterCallback",
"location": "imgui_impl_glfw:55",
"location": "imgui_impl_glfw:54",
"ov_cimguiname": "ImGui_ImplGlfw_CursorEnterCallback",
"ret": "void",
"signature": "(GLFWwindow*,int)",
@@ -71,7 +71,7 @@
"cimguiname": "ImGui_ImplGlfw_CursorPosCallback",
"defaults": {},
"funcname": "ImGui_ImplGlfw_CursorPosCallback",
"location": "imgui_impl_glfw:56",
"location": "imgui_impl_glfw:55",
"ov_cimguiname": "ImGui_ImplGlfw_CursorPosCallback",
"ret": "void",
"signature": "(GLFWwindow*,double,double)",
@@ -96,7 +96,7 @@
"cimguiname": "ImGui_ImplGlfw_InitForOpenGL",
"defaults": {},
"funcname": "ImGui_ImplGlfw_InitForOpenGL",
"location": "imgui_impl_glfw:32",
"location": "imgui_impl_glfw:31",
"ov_cimguiname": "ImGui_ImplGlfw_InitForOpenGL",
"ret": "bool",
"signature": "(GLFWwindow*,bool)",
@@ -121,7 +121,7 @@
"cimguiname": "ImGui_ImplGlfw_InitForOther",
"defaults": {},
"funcname": "ImGui_ImplGlfw_InitForOther",
"location": "imgui_impl_glfw:34",
"location": "imgui_impl_glfw:33",
"ov_cimguiname": "ImGui_ImplGlfw_InitForOther",
"ret": "bool",
"signature": "(GLFWwindow*,bool)",
@@ -146,7 +146,7 @@
"cimguiname": "ImGui_ImplGlfw_InitForVulkan",
"defaults": {},
"funcname": "ImGui_ImplGlfw_InitForVulkan",
"location": "imgui_impl_glfw:33",
"location": "imgui_impl_glfw:32",
"ov_cimguiname": "ImGui_ImplGlfw_InitForVulkan",
"ret": "bool",
"signature": "(GLFWwindow*,bool)",
@@ -167,7 +167,7 @@
"cimguiname": "ImGui_ImplGlfw_InstallCallbacks",
"defaults": {},
"funcname": "ImGui_ImplGlfw_InstallCallbacks",
"location": "imgui_impl_glfw:46",
"location": "imgui_impl_glfw:45",
"ov_cimguiname": "ImGui_ImplGlfw_InstallCallbacks",
"ret": "void",
"signature": "(GLFWwindow*)",
@@ -204,7 +204,7 @@
"cimguiname": "ImGui_ImplGlfw_KeyCallback",
"defaults": {},
"funcname": "ImGui_ImplGlfw_KeyCallback",
"location": "imgui_impl_glfw:59",
"location": "imgui_impl_glfw:58",
"ov_cimguiname": "ImGui_ImplGlfw_KeyCallback",
"ret": "void",
"signature": "(GLFWwindow*,int,int,int,int)",
@@ -229,7 +229,7 @@
"cimguiname": "ImGui_ImplGlfw_MonitorCallback",
"defaults": {},
"funcname": "ImGui_ImplGlfw_MonitorCallback",
"location": "imgui_impl_glfw:61",
"location": "imgui_impl_glfw:60",
"ov_cimguiname": "ImGui_ImplGlfw_MonitorCallback",
"ret": "void",
"signature": "(GLFWmonitor*,int)",
@@ -262,7 +262,7 @@
"cimguiname": "ImGui_ImplGlfw_MouseButtonCallback",
"defaults": {},
"funcname": "ImGui_ImplGlfw_MouseButtonCallback",
"location": "imgui_impl_glfw:57",
"location": "imgui_impl_glfw:56",
"ov_cimguiname": "ImGui_ImplGlfw_MouseButtonCallback",
"ret": "void",
"signature": "(GLFWwindow*,int,int,int)",
@@ -278,7 +278,7 @@
"cimguiname": "ImGui_ImplGlfw_NewFrame",
"defaults": {},
"funcname": "ImGui_ImplGlfw_NewFrame",
"location": "imgui_impl_glfw:36",
"location": "imgui_impl_glfw:35",
"ov_cimguiname": "ImGui_ImplGlfw_NewFrame",
"ret": "void",
"signature": "()",
@@ -299,7 +299,7 @@
"cimguiname": "ImGui_ImplGlfw_RestoreCallbacks",
"defaults": {},
"funcname": "ImGui_ImplGlfw_RestoreCallbacks",
"location": "imgui_impl_glfw:47",
"location": "imgui_impl_glfw:46",
"ov_cimguiname": "ImGui_ImplGlfw_RestoreCallbacks",
"ret": "void",
"signature": "(GLFWwindow*)",
@@ -328,7 +328,7 @@
"cimguiname": "ImGui_ImplGlfw_ScrollCallback",
"defaults": {},
"funcname": "ImGui_ImplGlfw_ScrollCallback",
"location": "imgui_impl_glfw:58",
"location": "imgui_impl_glfw:57",
"ov_cimguiname": "ImGui_ImplGlfw_ScrollCallback",
"ret": "void",
"signature": "(GLFWwindow*,double,double)",
@@ -349,7 +349,7 @@
"cimguiname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
"defaults": {},
"funcname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
"location": "imgui_impl_glfw:51",
"location": "imgui_impl_glfw:50",
"ov_cimguiname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
"ret": "void",
"signature": "(bool)",
@@ -365,7 +365,7 @@
"cimguiname": "ImGui_ImplGlfw_Shutdown",
"defaults": {},
"funcname": "ImGui_ImplGlfw_Shutdown",
"location": "imgui_impl_glfw:35",
"location": "imgui_impl_glfw:34",
"ov_cimguiname": "ImGui_ImplGlfw_Shutdown",
"ret": "void",
"signature": "()",
@@ -390,7 +390,7 @@
"cimguiname": "ImGui_ImplGlfw_WindowFocusCallback",
"defaults": {},
"funcname": "ImGui_ImplGlfw_WindowFocusCallback",
"location": "imgui_impl_glfw:54",
"location": "imgui_impl_glfw:53",
"ov_cimguiname": "ImGui_ImplGlfw_WindowFocusCallback",
"ret": "void",
"signature": "(GLFWwindow*,int)",
@@ -684,7 +684,7 @@
"cimguiname": "ImGui_ImplSDL2_InitForD3D",
"defaults": {},
"funcname": "ImGui_ImplSDL2_InitForD3D",
"location": "imgui_impl_sdl2:34",
"location": "imgui_impl_sdl2:36",
"ov_cimguiname": "ImGui_ImplSDL2_InitForD3D",
"ret": "bool",
"signature": "(SDL_Window*)",
@@ -705,7 +705,7 @@
"cimguiname": "ImGui_ImplSDL2_InitForMetal",
"defaults": {},
"funcname": "ImGui_ImplSDL2_InitForMetal",
"location": "imgui_impl_sdl2:35",
"location": "imgui_impl_sdl2:37",
"ov_cimguiname": "ImGui_ImplSDL2_InitForMetal",
"ret": "bool",
"signature": "(SDL_Window*)",
@@ -730,7 +730,7 @@
"cimguiname": "ImGui_ImplSDL2_InitForOpenGL",
"defaults": {},
"funcname": "ImGui_ImplSDL2_InitForOpenGL",
"location": "imgui_impl_sdl2:32",
"location": "imgui_impl_sdl2:34",
"ov_cimguiname": "ImGui_ImplSDL2_InitForOpenGL",
"ret": "bool",
"signature": "(SDL_Window*,void*)",
@@ -751,7 +751,7 @@
"cimguiname": "ImGui_ImplSDL2_InitForOther",
"defaults": {},
"funcname": "ImGui_ImplSDL2_InitForOther",
"location": "imgui_impl_sdl2:37",
"location": "imgui_impl_sdl2:39",
"ov_cimguiname": "ImGui_ImplSDL2_InitForOther",
"ret": "bool",
"signature": "(SDL_Window*)",
@@ -776,7 +776,7 @@
"cimguiname": "ImGui_ImplSDL2_InitForSDLRenderer",
"defaults": {},
"funcname": "ImGui_ImplSDL2_InitForSDLRenderer",
"location": "imgui_impl_sdl2:36",
"location": "imgui_impl_sdl2:38",
"ov_cimguiname": "ImGui_ImplSDL2_InitForSDLRenderer",
"ret": "bool",
"signature": "(SDL_Window*,SDL_Renderer*)",
@@ -797,7 +797,7 @@
"cimguiname": "ImGui_ImplSDL2_InitForVulkan",
"defaults": {},
"funcname": "ImGui_ImplSDL2_InitForVulkan",
"location": "imgui_impl_sdl2:33",
"location": "imgui_impl_sdl2:35",
"ov_cimguiname": "ImGui_ImplSDL2_InitForVulkan",
"ret": "bool",
"signature": "(SDL_Window*)",
@@ -813,7 +813,7 @@
"cimguiname": "ImGui_ImplSDL2_NewFrame",
"defaults": {},
"funcname": "ImGui_ImplSDL2_NewFrame",
"location": "imgui_impl_sdl2:39",
"location": "imgui_impl_sdl2:41",
"ov_cimguiname": "ImGui_ImplSDL2_NewFrame",
"ret": "void",
"signature": "()",
@@ -834,13 +834,45 @@
"cimguiname": "ImGui_ImplSDL2_ProcessEvent",
"defaults": {},
"funcname": "ImGui_ImplSDL2_ProcessEvent",
"location": "imgui_impl_sdl2:40",
"location": "imgui_impl_sdl2:42",
"ov_cimguiname": "ImGui_ImplSDL2_ProcessEvent",
"ret": "bool",
"signature": "(const SDL_Event*)",
"stname": ""
}
],
"ImGui_ImplSDL2_SetGamepadMode": [
{
"args": "(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array,int manual_gamepads_count)",
"argsT": [
{
"name": "mode",
"type": "ImGui_ImplSDL2_GamepadMode"
},
{
"name": "manual_gamepads_array",
"type": "struct _SDL_GameController**"
},
{
"name": "manual_gamepads_count",
"type": "int"
}
],
"argsoriginal": "(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array=((void*)0),int manual_gamepads_count=-1)",
"call_args": "(mode,manual_gamepads_array,manual_gamepads_count)",
"cimguiname": "ImGui_ImplSDL2_SetGamepadMode",
"defaults": {
"manual_gamepads_array": "NULL",
"manual_gamepads_count": "-1"
},
"funcname": "ImGui_ImplSDL2_SetGamepadMode",
"location": "imgui_impl_sdl2:47",
"ov_cimguiname": "ImGui_ImplSDL2_SetGamepadMode",
"ret": "void",
"signature": "(ImGui_ImplSDL2_GamepadMode,struct _SDL_GameController**,int)",
"stname": ""
}
],
"ImGui_ImplSDL2_Shutdown": [
{
"args": "()",
@@ -850,7 +882,7 @@
"cimguiname": "ImGui_ImplSDL2_Shutdown",
"defaults": {},
"funcname": "ImGui_ImplSDL2_Shutdown",
"location": "imgui_impl_sdl2:38",
"location": "imgui_impl_sdl2:40",
"ov_cimguiname": "ImGui_ImplSDL2_Shutdown",
"ret": "void",
"signature": "()",

View File

@@ -14,7 +14,7 @@ defs["ImGui_ImplGlfw_CharCallback"][1]["call_args"] = "(window,c)"
defs["ImGui_ImplGlfw_CharCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CharCallback"
defs["ImGui_ImplGlfw_CharCallback"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_CharCallback"][1]["funcname"] = "ImGui_ImplGlfw_CharCallback"
defs["ImGui_ImplGlfw_CharCallback"][1]["location"] = "imgui_impl_glfw:60"
defs["ImGui_ImplGlfw_CharCallback"][1]["location"] = "imgui_impl_glfw:59"
defs["ImGui_ImplGlfw_CharCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CharCallback"
defs["ImGui_ImplGlfw_CharCallback"][1]["ret"] = "void"
defs["ImGui_ImplGlfw_CharCallback"][1]["signature"] = "(GLFWwindow*,unsigned int)"
@@ -35,7 +35,7 @@ defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["call_args"] = "(window,entered)"
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CursorEnterCallback"
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["funcname"] = "ImGui_ImplGlfw_CursorEnterCallback"
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["location"] = "imgui_impl_glfw:55"
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["location"] = "imgui_impl_glfw:54"
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CursorEnterCallback"
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["ret"] = "void"
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["signature"] = "(GLFWwindow*,int)"
@@ -59,7 +59,7 @@ defs["ImGui_ImplGlfw_CursorPosCallback"][1]["call_args"] = "(window,x,y)"
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CursorPosCallback"
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["funcname"] = "ImGui_ImplGlfw_CursorPosCallback"
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["location"] = "imgui_impl_glfw:56"
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["location"] = "imgui_impl_glfw:55"
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CursorPosCallback"
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["ret"] = "void"
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["signature"] = "(GLFWwindow*,double,double)"
@@ -80,7 +80,7 @@ defs["ImGui_ImplGlfw_InitForOpenGL"][1]["call_args"] = "(window,install_callback
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForOpenGL"
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["funcname"] = "ImGui_ImplGlfw_InitForOpenGL"
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["location"] = "imgui_impl_glfw:32"
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["location"] = "imgui_impl_glfw:31"
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForOpenGL"
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["ret"] = "bool"
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["signature"] = "(GLFWwindow*,bool)"
@@ -101,7 +101,7 @@ defs["ImGui_ImplGlfw_InitForOther"][1]["call_args"] = "(window,install_callbacks
defs["ImGui_ImplGlfw_InitForOther"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForOther"
defs["ImGui_ImplGlfw_InitForOther"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_InitForOther"][1]["funcname"] = "ImGui_ImplGlfw_InitForOther"
defs["ImGui_ImplGlfw_InitForOther"][1]["location"] = "imgui_impl_glfw:34"
defs["ImGui_ImplGlfw_InitForOther"][1]["location"] = "imgui_impl_glfw:33"
defs["ImGui_ImplGlfw_InitForOther"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForOther"
defs["ImGui_ImplGlfw_InitForOther"][1]["ret"] = "bool"
defs["ImGui_ImplGlfw_InitForOther"][1]["signature"] = "(GLFWwindow*,bool)"
@@ -122,7 +122,7 @@ defs["ImGui_ImplGlfw_InitForVulkan"][1]["call_args"] = "(window,install_callback
defs["ImGui_ImplGlfw_InitForVulkan"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForVulkan"
defs["ImGui_ImplGlfw_InitForVulkan"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_InitForVulkan"][1]["funcname"] = "ImGui_ImplGlfw_InitForVulkan"
defs["ImGui_ImplGlfw_InitForVulkan"][1]["location"] = "imgui_impl_glfw:33"
defs["ImGui_ImplGlfw_InitForVulkan"][1]["location"] = "imgui_impl_glfw:32"
defs["ImGui_ImplGlfw_InitForVulkan"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForVulkan"
defs["ImGui_ImplGlfw_InitForVulkan"][1]["ret"] = "bool"
defs["ImGui_ImplGlfw_InitForVulkan"][1]["signature"] = "(GLFWwindow*,bool)"
@@ -140,7 +140,7 @@ defs["ImGui_ImplGlfw_InstallCallbacks"][1]["call_args"] = "(window)"
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["cimguiname"] = "ImGui_ImplGlfw_InstallCallbacks"
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["funcname"] = "ImGui_ImplGlfw_InstallCallbacks"
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["location"] = "imgui_impl_glfw:46"
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["location"] = "imgui_impl_glfw:45"
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InstallCallbacks"
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["ret"] = "void"
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["signature"] = "(GLFWwindow*)"
@@ -170,7 +170,7 @@ defs["ImGui_ImplGlfw_KeyCallback"][1]["call_args"] = "(window,key,scancode,actio
defs["ImGui_ImplGlfw_KeyCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_KeyCallback"
defs["ImGui_ImplGlfw_KeyCallback"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_KeyCallback"][1]["funcname"] = "ImGui_ImplGlfw_KeyCallback"
defs["ImGui_ImplGlfw_KeyCallback"][1]["location"] = "imgui_impl_glfw:59"
defs["ImGui_ImplGlfw_KeyCallback"][1]["location"] = "imgui_impl_glfw:58"
defs["ImGui_ImplGlfw_KeyCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_KeyCallback"
defs["ImGui_ImplGlfw_KeyCallback"][1]["ret"] = "void"
defs["ImGui_ImplGlfw_KeyCallback"][1]["signature"] = "(GLFWwindow*,int,int,int,int)"
@@ -191,7 +191,7 @@ defs["ImGui_ImplGlfw_MonitorCallback"][1]["call_args"] = "(monitor,event)"
defs["ImGui_ImplGlfw_MonitorCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_MonitorCallback"
defs["ImGui_ImplGlfw_MonitorCallback"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_MonitorCallback"][1]["funcname"] = "ImGui_ImplGlfw_MonitorCallback"
defs["ImGui_ImplGlfw_MonitorCallback"][1]["location"] = "imgui_impl_glfw:61"
defs["ImGui_ImplGlfw_MonitorCallback"][1]["location"] = "imgui_impl_glfw:60"
defs["ImGui_ImplGlfw_MonitorCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_MonitorCallback"
defs["ImGui_ImplGlfw_MonitorCallback"][1]["ret"] = "void"
defs["ImGui_ImplGlfw_MonitorCallback"][1]["signature"] = "(GLFWmonitor*,int)"
@@ -218,7 +218,7 @@ defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["call_args"] = "(window,button,act
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_MouseButtonCallback"
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["funcname"] = "ImGui_ImplGlfw_MouseButtonCallback"
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["location"] = "imgui_impl_glfw:57"
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["location"] = "imgui_impl_glfw:56"
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_MouseButtonCallback"
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["ret"] = "void"
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["signature"] = "(GLFWwindow*,int,int,int)"
@@ -233,7 +233,7 @@ defs["ImGui_ImplGlfw_NewFrame"][1]["call_args"] = "()"
defs["ImGui_ImplGlfw_NewFrame"][1]["cimguiname"] = "ImGui_ImplGlfw_NewFrame"
defs["ImGui_ImplGlfw_NewFrame"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_NewFrame"][1]["funcname"] = "ImGui_ImplGlfw_NewFrame"
defs["ImGui_ImplGlfw_NewFrame"][1]["location"] = "imgui_impl_glfw:36"
defs["ImGui_ImplGlfw_NewFrame"][1]["location"] = "imgui_impl_glfw:35"
defs["ImGui_ImplGlfw_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_NewFrame"
defs["ImGui_ImplGlfw_NewFrame"][1]["ret"] = "void"
defs["ImGui_ImplGlfw_NewFrame"][1]["signature"] = "()"
@@ -251,7 +251,7 @@ defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["call_args"] = "(window)"
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["cimguiname"] = "ImGui_ImplGlfw_RestoreCallbacks"
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["funcname"] = "ImGui_ImplGlfw_RestoreCallbacks"
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["location"] = "imgui_impl_glfw:47"
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["location"] = "imgui_impl_glfw:46"
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_RestoreCallbacks"
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["ret"] = "void"
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["signature"] = "(GLFWwindow*)"
@@ -275,7 +275,7 @@ defs["ImGui_ImplGlfw_ScrollCallback"][1]["call_args"] = "(window,xoffset,yoffset
defs["ImGui_ImplGlfw_ScrollCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_ScrollCallback"
defs["ImGui_ImplGlfw_ScrollCallback"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_ScrollCallback"][1]["funcname"] = "ImGui_ImplGlfw_ScrollCallback"
defs["ImGui_ImplGlfw_ScrollCallback"][1]["location"] = "imgui_impl_glfw:58"
defs["ImGui_ImplGlfw_ScrollCallback"][1]["location"] = "imgui_impl_glfw:57"
defs["ImGui_ImplGlfw_ScrollCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_ScrollCallback"
defs["ImGui_ImplGlfw_ScrollCallback"][1]["ret"] = "void"
defs["ImGui_ImplGlfw_ScrollCallback"][1]["signature"] = "(GLFWwindow*,double,double)"
@@ -293,7 +293,7 @@ defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["call_args"] = "(chain_
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["cimguiname"] = "ImGui_ImplGlfw_SetCallbacksChainForAllWindows"
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["funcname"] = "ImGui_ImplGlfw_SetCallbacksChainForAllWindows"
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["location"] = "imgui_impl_glfw:51"
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["location"] = "imgui_impl_glfw:50"
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_SetCallbacksChainForAllWindows"
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["ret"] = "void"
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["signature"] = "(bool)"
@@ -308,7 +308,7 @@ defs["ImGui_ImplGlfw_Shutdown"][1]["call_args"] = "()"
defs["ImGui_ImplGlfw_Shutdown"][1]["cimguiname"] = "ImGui_ImplGlfw_Shutdown"
defs["ImGui_ImplGlfw_Shutdown"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_Shutdown"][1]["funcname"] = "ImGui_ImplGlfw_Shutdown"
defs["ImGui_ImplGlfw_Shutdown"][1]["location"] = "imgui_impl_glfw:35"
defs["ImGui_ImplGlfw_Shutdown"][1]["location"] = "imgui_impl_glfw:34"
defs["ImGui_ImplGlfw_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_Shutdown"
defs["ImGui_ImplGlfw_Shutdown"][1]["ret"] = "void"
defs["ImGui_ImplGlfw_Shutdown"][1]["signature"] = "()"
@@ -329,7 +329,7 @@ defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["call_args"] = "(window,focused)"
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_WindowFocusCallback"
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["defaults"] = {}
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["funcname"] = "ImGui_ImplGlfw_WindowFocusCallback"
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["location"] = "imgui_impl_glfw:54"
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["location"] = "imgui_impl_glfw:53"
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_WindowFocusCallback"
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["ret"] = "void"
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["signature"] = "(GLFWwindow*,int)"
@@ -597,7 +597,7 @@ defs["ImGui_ImplSDL2_InitForD3D"][1]["call_args"] = "(window)"
defs["ImGui_ImplSDL2_InitForD3D"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForD3D"
defs["ImGui_ImplSDL2_InitForD3D"][1]["defaults"] = {}
defs["ImGui_ImplSDL2_InitForD3D"][1]["funcname"] = "ImGui_ImplSDL2_InitForD3D"
defs["ImGui_ImplSDL2_InitForD3D"][1]["location"] = "imgui_impl_sdl2:34"
defs["ImGui_ImplSDL2_InitForD3D"][1]["location"] = "imgui_impl_sdl2:36"
defs["ImGui_ImplSDL2_InitForD3D"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForD3D"
defs["ImGui_ImplSDL2_InitForD3D"][1]["ret"] = "bool"
defs["ImGui_ImplSDL2_InitForD3D"][1]["signature"] = "(SDL_Window*)"
@@ -615,7 +615,7 @@ defs["ImGui_ImplSDL2_InitForMetal"][1]["call_args"] = "(window)"
defs["ImGui_ImplSDL2_InitForMetal"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForMetal"
defs["ImGui_ImplSDL2_InitForMetal"][1]["defaults"] = {}
defs["ImGui_ImplSDL2_InitForMetal"][1]["funcname"] = "ImGui_ImplSDL2_InitForMetal"
defs["ImGui_ImplSDL2_InitForMetal"][1]["location"] = "imgui_impl_sdl2:35"
defs["ImGui_ImplSDL2_InitForMetal"][1]["location"] = "imgui_impl_sdl2:37"
defs["ImGui_ImplSDL2_InitForMetal"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForMetal"
defs["ImGui_ImplSDL2_InitForMetal"][1]["ret"] = "bool"
defs["ImGui_ImplSDL2_InitForMetal"][1]["signature"] = "(SDL_Window*)"
@@ -636,7 +636,7 @@ defs["ImGui_ImplSDL2_InitForOpenGL"][1]["call_args"] = "(window,sdl_gl_context)"
defs["ImGui_ImplSDL2_InitForOpenGL"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForOpenGL"
defs["ImGui_ImplSDL2_InitForOpenGL"][1]["defaults"] = {}
defs["ImGui_ImplSDL2_InitForOpenGL"][1]["funcname"] = "ImGui_ImplSDL2_InitForOpenGL"
defs["ImGui_ImplSDL2_InitForOpenGL"][1]["location"] = "imgui_impl_sdl2:32"
defs["ImGui_ImplSDL2_InitForOpenGL"][1]["location"] = "imgui_impl_sdl2:34"
defs["ImGui_ImplSDL2_InitForOpenGL"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForOpenGL"
defs["ImGui_ImplSDL2_InitForOpenGL"][1]["ret"] = "bool"
defs["ImGui_ImplSDL2_InitForOpenGL"][1]["signature"] = "(SDL_Window*,void*)"
@@ -654,7 +654,7 @@ defs["ImGui_ImplSDL2_InitForOther"][1]["call_args"] = "(window)"
defs["ImGui_ImplSDL2_InitForOther"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForOther"
defs["ImGui_ImplSDL2_InitForOther"][1]["defaults"] = {}
defs["ImGui_ImplSDL2_InitForOther"][1]["funcname"] = "ImGui_ImplSDL2_InitForOther"
defs["ImGui_ImplSDL2_InitForOther"][1]["location"] = "imgui_impl_sdl2:37"
defs["ImGui_ImplSDL2_InitForOther"][1]["location"] = "imgui_impl_sdl2:39"
defs["ImGui_ImplSDL2_InitForOther"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForOther"
defs["ImGui_ImplSDL2_InitForOther"][1]["ret"] = "bool"
defs["ImGui_ImplSDL2_InitForOther"][1]["signature"] = "(SDL_Window*)"
@@ -675,7 +675,7 @@ defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["call_args"] = "(window,renderer)"
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForSDLRenderer"
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["defaults"] = {}
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["funcname"] = "ImGui_ImplSDL2_InitForSDLRenderer"
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["location"] = "imgui_impl_sdl2:36"
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["location"] = "imgui_impl_sdl2:38"
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForSDLRenderer"
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["ret"] = "bool"
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["signature"] = "(SDL_Window*,SDL_Renderer*)"
@@ -693,7 +693,7 @@ defs["ImGui_ImplSDL2_InitForVulkan"][1]["call_args"] = "(window)"
defs["ImGui_ImplSDL2_InitForVulkan"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForVulkan"
defs["ImGui_ImplSDL2_InitForVulkan"][1]["defaults"] = {}
defs["ImGui_ImplSDL2_InitForVulkan"][1]["funcname"] = "ImGui_ImplSDL2_InitForVulkan"
defs["ImGui_ImplSDL2_InitForVulkan"][1]["location"] = "imgui_impl_sdl2:33"
defs["ImGui_ImplSDL2_InitForVulkan"][1]["location"] = "imgui_impl_sdl2:35"
defs["ImGui_ImplSDL2_InitForVulkan"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForVulkan"
defs["ImGui_ImplSDL2_InitForVulkan"][1]["ret"] = "bool"
defs["ImGui_ImplSDL2_InitForVulkan"][1]["signature"] = "(SDL_Window*)"
@@ -708,7 +708,7 @@ defs["ImGui_ImplSDL2_NewFrame"][1]["call_args"] = "()"
defs["ImGui_ImplSDL2_NewFrame"][1]["cimguiname"] = "ImGui_ImplSDL2_NewFrame"
defs["ImGui_ImplSDL2_NewFrame"][1]["defaults"] = {}
defs["ImGui_ImplSDL2_NewFrame"][1]["funcname"] = "ImGui_ImplSDL2_NewFrame"
defs["ImGui_ImplSDL2_NewFrame"][1]["location"] = "imgui_impl_sdl2:39"
defs["ImGui_ImplSDL2_NewFrame"][1]["location"] = "imgui_impl_sdl2:41"
defs["ImGui_ImplSDL2_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_NewFrame"
defs["ImGui_ImplSDL2_NewFrame"][1]["ret"] = "void"
defs["ImGui_ImplSDL2_NewFrame"][1]["signature"] = "()"
@@ -726,12 +726,38 @@ defs["ImGui_ImplSDL2_ProcessEvent"][1]["call_args"] = "(event)"
defs["ImGui_ImplSDL2_ProcessEvent"][1]["cimguiname"] = "ImGui_ImplSDL2_ProcessEvent"
defs["ImGui_ImplSDL2_ProcessEvent"][1]["defaults"] = {}
defs["ImGui_ImplSDL2_ProcessEvent"][1]["funcname"] = "ImGui_ImplSDL2_ProcessEvent"
defs["ImGui_ImplSDL2_ProcessEvent"][1]["location"] = "imgui_impl_sdl2:40"
defs["ImGui_ImplSDL2_ProcessEvent"][1]["location"] = "imgui_impl_sdl2:42"
defs["ImGui_ImplSDL2_ProcessEvent"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_ProcessEvent"
defs["ImGui_ImplSDL2_ProcessEvent"][1]["ret"] = "bool"
defs["ImGui_ImplSDL2_ProcessEvent"][1]["signature"] = "(const SDL_Event*)"
defs["ImGui_ImplSDL2_ProcessEvent"][1]["stname"] = ""
defs["ImGui_ImplSDL2_ProcessEvent"]["(const SDL_Event*)"] = defs["ImGui_ImplSDL2_ProcessEvent"][1]
defs["ImGui_ImplSDL2_SetGamepadMode"] = {}
defs["ImGui_ImplSDL2_SetGamepadMode"][1] = {}
defs["ImGui_ImplSDL2_SetGamepadMode"][1]["args"] = "(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array,int manual_gamepads_count)"
defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"] = {}
defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][1] = {}
defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][1]["name"] = "mode"
defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][1]["type"] = "ImGui_ImplSDL2_GamepadMode"
defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][2] = {}
defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][2]["name"] = "manual_gamepads_array"
defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][2]["type"] = "struct _SDL_GameController**"
defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][3] = {}
defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][3]["name"] = "manual_gamepads_count"
defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][3]["type"] = "int"
defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsoriginal"] = "(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array=((void*)0),int manual_gamepads_count=-1)"
defs["ImGui_ImplSDL2_SetGamepadMode"][1]["call_args"] = "(mode,manual_gamepads_array,manual_gamepads_count)"
defs["ImGui_ImplSDL2_SetGamepadMode"][1]["cimguiname"] = "ImGui_ImplSDL2_SetGamepadMode"
defs["ImGui_ImplSDL2_SetGamepadMode"][1]["defaults"] = {}
defs["ImGui_ImplSDL2_SetGamepadMode"][1]["defaults"]["manual_gamepads_array"] = "NULL"
defs["ImGui_ImplSDL2_SetGamepadMode"][1]["defaults"]["manual_gamepads_count"] = "-1"
defs["ImGui_ImplSDL2_SetGamepadMode"][1]["funcname"] = "ImGui_ImplSDL2_SetGamepadMode"
defs["ImGui_ImplSDL2_SetGamepadMode"][1]["location"] = "imgui_impl_sdl2:47"
defs["ImGui_ImplSDL2_SetGamepadMode"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_SetGamepadMode"
defs["ImGui_ImplSDL2_SetGamepadMode"][1]["ret"] = "void"
defs["ImGui_ImplSDL2_SetGamepadMode"][1]["signature"] = "(ImGui_ImplSDL2_GamepadMode,struct _SDL_GameController**,int)"
defs["ImGui_ImplSDL2_SetGamepadMode"][1]["stname"] = ""
defs["ImGui_ImplSDL2_SetGamepadMode"]["(ImGui_ImplSDL2_GamepadMode,struct _SDL_GameController**,int)"] = defs["ImGui_ImplSDL2_SetGamepadMode"][1]
defs["ImGui_ImplSDL2_Shutdown"] = {}
defs["ImGui_ImplSDL2_Shutdown"][1] = {}
defs["ImGui_ImplSDL2_Shutdown"][1]["args"] = "()"
@@ -741,7 +767,7 @@ defs["ImGui_ImplSDL2_Shutdown"][1]["call_args"] = "()"
defs["ImGui_ImplSDL2_Shutdown"][1]["cimguiname"] = "ImGui_ImplSDL2_Shutdown"
defs["ImGui_ImplSDL2_Shutdown"][1]["defaults"] = {}
defs["ImGui_ImplSDL2_Shutdown"][1]["funcname"] = "ImGui_ImplSDL2_Shutdown"
defs["ImGui_ImplSDL2_Shutdown"][1]["location"] = "imgui_impl_sdl2:38"
defs["ImGui_ImplSDL2_Shutdown"][1]["location"] = "imgui_impl_sdl2:40"
defs["ImGui_ImplSDL2_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_Shutdown"
defs["ImGui_ImplSDL2_Shutdown"][1]["ret"] = "void"
defs["ImGui_ImplSDL2_Shutdown"][1]["signature"] = "()"

View File

@@ -114,7 +114,7 @@ igGetBackgroundDrawList 2
igGetColorU32 3
1 ImU32 igGetColorU32_Col (ImGuiCol,float)
2 ImU32 igGetColorU32_Vec4 (const ImVec4)
3 ImU32 igGetColorU32_U32 (ImU32)
3 ImU32 igGetColorU32_U32 (ImU32,float)
igGetForegroundDrawList 3
1 ImDrawList* igGetForegroundDrawList_Nil ()
2 ImDrawList* igGetForegroundDrawList_ViewportPtr (ImGuiViewport*)

View File

@@ -1820,13 +1820,8 @@
},
{
"calc_value": 4,
"name": "ImGuiInputSource_Clipboard",
"value": "4"
},
{
"calc_value": 5,
"name": "ImGuiInputSource_COUNT",
"value": "5"
"value": "4"
}
],
"ImGuiInputTextFlagsPrivate_": [
@@ -1844,6 +1839,11 @@
"calc_value": 268435456,
"name": "ImGuiInputTextFlags_MergedItem",
"value": "1 << 28"
},
{
"calc_value": 536870912,
"name": "ImGuiInputTextFlags_LocalizeDecimalPoint",
"value": "1 << 29"
}
],
"ImGuiInputTextFlags_": [
@@ -3250,6 +3250,11 @@
"calc_value": 16384,
"name": "ImGuiNavMoveFlags_NoSetNavHighlight",
"value": "1 << 14"
},
{
"calc_value": 32768,
"name": "ImGuiNavMoveFlags_NoClearActiveId",
"value": "1 << 15"
}
],
"ImGuiNextItemDataFlags_": [
@@ -3791,43 +3796,53 @@
},
{
"calc_value": 23,
"name": "ImGuiStyleVar_TabBarBorderSize",
"name": "ImGuiStyleVar_TabBorderSize",
"value": "23"
},
{
"calc_value": 24,
"name": "ImGuiStyleVar_ButtonTextAlign",
"name": "ImGuiStyleVar_TabBarBorderSize",
"value": "24"
},
{
"calc_value": 25,
"name": "ImGuiStyleVar_SelectableTextAlign",
"name": "ImGuiStyleVar_TableAngledHeadersAngle",
"value": "25"
},
{
"calc_value": 26,
"name": "ImGuiStyleVar_SeparatorTextBorderSize",
"name": "ImGuiStyleVar_ButtonTextAlign",
"value": "26"
},
{
"calc_value": 27,
"name": "ImGuiStyleVar_SeparatorTextAlign",
"name": "ImGuiStyleVar_SelectableTextAlign",
"value": "27"
},
{
"calc_value": 28,
"name": "ImGuiStyleVar_SeparatorTextPadding",
"name": "ImGuiStyleVar_SeparatorTextBorderSize",
"value": "28"
},
{
"calc_value": 29,
"name": "ImGuiStyleVar_DockingSeparatorSize",
"name": "ImGuiStyleVar_SeparatorTextAlign",
"value": "29"
},
{
"calc_value": 30,
"name": "ImGuiStyleVar_COUNT",
"name": "ImGuiStyleVar_SeparatorTextPadding",
"value": "30"
},
{
"calc_value": 31,
"name": "ImGuiStyleVar_DockingSeparatorSize",
"value": "31"
},
{
"calc_value": 32,
"name": "ImGuiStyleVar_COUNT",
"value": "32"
}
],
"ImGuiTabBarFlagsPrivate_": [
@@ -4759,189 +4774,189 @@
"ImGuiMouseSource": "int"
},
"locations": {
"ImBitVector": "imgui_internal:612",
"ImColor": "imgui:2663",
"ImDrawChannel": "imgui:2753",
"ImDrawCmd": "imgui:2712",
"ImDrawCmdHeader": "imgui:2745",
"ImDrawData": "imgui:2947",
"ImDrawDataBuilder": "imgui_internal:798",
"ImDrawFlags_": "imgui:2779",
"ImDrawList": "imgui:2817",
"ImDrawListFlags_": "imgui:2799",
"ImDrawListSharedData": "imgui_internal:775",
"ImDrawListSplitter": "imgui:2762",
"ImDrawVert": "imgui:2730",
"ImFont": "imgui:3170",
"ImFontAtlas": "imgui:3066",
"ImFontAtlasCustomRect": "imgui:3028",
"ImFontAtlasFlags_": "imgui:3041",
"ImFontBuilderIO": "imgui_internal:3842",
"ImFontConfig": "imgui:2971",
"ImFontGlyph": "imgui:3001",
"ImFontGlyphRangesBuilder": "imgui:3013",
"ImGuiActivateFlags_": "imgui_internal:1550",
"ImGuiAxis": "imgui_internal:985",
"ImGuiBackendFlags_": "imgui:1546",
"ImGuiButtonFlagsPrivate_": "imgui_internal:879",
"ImGuiButtonFlags_": "imgui:1665",
"ImGuiChildFlags_": "imgui:1081",
"ImGuiCol_": "imgui:1561",
"ImGuiColorEditFlags_": "imgui:1678",
"ImGuiColorMod": "imgui_internal:999",
"ImGuiComboFlagsPrivate_": "imgui_internal:904",
"ImGuiComboFlags_": "imgui:1193",
"ImGuiComboPreviewData": "imgui_internal:1016",
"ImGuiCond_": "imgui:1779",
"ImGuiConfigFlags_": "imgui:1521",
"ImGuiContext": "imgui_internal:2105",
"ImGuiContextHook": "imgui_internal:2090",
"ImGuiContextHookType": "imgui_internal:2088",
"ImGuiDataAuthority_": "imgui_internal:1776",
"ImGuiDataTypeInfo": "imgui_internal:1281",
"ImGuiDataTypePrivate_": "imgui_internal:1290",
"ImGuiDataTypeTempStorage": "imgui_internal:1275",
"ImGuiDataType_": "imgui:1334",
"ImGuiDataVarInfo": "imgui_internal:1267",
"ImGuiDebugAllocEntry": "imgui_internal:2024",
"ImGuiDebugAllocInfo": "imgui_internal:2031",
"ImGuiDebugLogFlags_": "imgui_internal:2004",
"ImGuiDir_": "imgui:1350",
"ImGuiDockContext": "imgui_internal:1875",
"ImGuiDockNode": "imgui_internal:1792",
"ImGuiDockNodeFlagsPrivate_": "imgui_internal:1747",
"ImGuiDockNodeFlags_": "imgui:1293",
"ImGuiDockNodeState": "imgui_internal:1783",
"ImGuiDragDropFlags_": "imgui:1312",
"ImGuiFocusRequestFlags_": "imgui_internal:948",
"ImGuiFocusScopeData": "imgui_internal:1627",
"ImGuiFocusedFlags_": "imgui:1239",
"ImGuiGroupData": "imgui_internal:1029",
"ImGuiHoveredFlagsPrivate_": "imgui_internal:862",
"ImGuiHoveredFlags_": "imgui:1253",
"ImGuiIDStackTool": "imgui_internal:2071",
"ImGuiIO": "imgui:2135",
"ImGuiInputEvent": "imgui_internal:1385",
"ImGuiInputEventAppFocused": "imgui_internal:1383",
"ImGuiInputEventKey": "imgui_internal:1381",
"ImGuiInputEventMouseButton": "imgui_internal:1379",
"ImGuiInputEventMousePos": "imgui_internal:1377",
"ImGuiInputEventMouseViewport": "imgui_internal:1380",
"ImGuiInputEventMouseWheel": "imgui_internal:1378",
"ImGuiInputEventText": "imgui_internal:1382",
"ImGuiInputEventType": "imgui_internal:1352",
"ImGuiInputFlags_": "imgui_internal:1450",
"ImGuiInputSource": "imgui_internal:1365",
"ImGuiInputTextCallbackData": "imgui:2355",
"ImGuiInputTextDeactivatedState": "imgui_internal:1065",
"ImGuiInputTextFlagsPrivate_": "imgui_internal:870",
"ImGuiInputTextFlags_": "imgui:1096",
"ImGuiInputTextState": "imgui_internal:1075",
"ImGuiItemFlags_": "imgui_internal:815",
"ImGuiItemStatusFlags_": "imgui_internal:837",
"ImGuiKey": "imgui:1379",
"ImGuiKeyData": "imgui:2127",
"ImGuiKeyOwnerData": "imgui_internal:1438",
"ImGuiKeyRoutingData": "imgui_internal:1412",
"ImGuiKeyRoutingTable": "imgui_internal:1426",
"ImGuiLastItemData": "imgui_internal:1198",
"ImGuiLayoutType_": "imgui_internal:969",
"ImGuiListClipper": "imgui:2577",
"ImGuiListClipperData": "imgui_internal:1534",
"ImGuiListClipperRange": "imgui_internal:1521",
"ImGuiLocEntry": "imgui_internal:1993",
"ImGuiLocKey": "imgui_internal:1977",
"ImGuiLogType": "imgui_internal:975",
"ImGuiMenuColumns": "imgui_internal:1047",
"ImGuiMetricsConfig": "imgui_internal:2041",
"ImGuiMouseButton_": "imgui:1739",
"ImGuiMouseCursor_": "imgui:1749",
"ImGuiMouseSource": "imgui:1768",
"ImGuiNavHighlightFlags_": "imgui_internal:1575",
"ImGuiNavItemData": "imgui_internal:1611",
"ImGuiNavLayer": "imgui_internal:1604",
"ImGuiNavMoveFlags_": "imgui_internal:1583",
"ImGuiNavTreeNodeData": "imgui_internal:1215",
"ImGuiNextItemData": "imgui_internal:1182",
"ImGuiNextItemDataFlags_": "imgui_internal:1174",
"ImGuiNextWindowData": "imgui_internal:1142",
"ImGuiNextWindowDataFlags_": "imgui_internal:1124",
"ImGuiOldColumnData": "imgui_internal:1695",
"ImGuiOldColumnFlags_": "imgui_internal:1675",
"ImGuiOldColumns": "imgui_internal:1705",
"ImGuiOnceUponAFrame": "imgui:2453",
"ImGuiPayload": "imgui:2418",
"ImGuiPlatformIO": "imgui:3340",
"ImGuiPlatformImeData": "imgui:3413",
"ImGuiPlatformMonitor": "imgui:3403",
"ImGuiPlotType": "imgui_internal:992",
"ImGuiPopupData": "imgui_internal:1309",
"ImGuiPopupFlags_": "imgui:1160",
"ImGuiPopupPositionPolicy": "imgui_internal:1301",
"ImGuiPtrOrIndex": "imgui_internal:1254",
"ImGuiScrollFlags_": "imgui_internal:1561",
"ImGuiSelectableFlagsPrivate_": "imgui_internal:917",
"ImGuiSelectableFlags_": "imgui:1178",
"ImGuiSeparatorFlags_": "imgui_internal:937",
"ImGuiSettingsHandler": "imgui_internal:1957",
"ImGuiShrinkWidthItem": "imgui_internal:1247",
"ImGuiSizeCallbackData": "imgui:2387",
"ImGuiSliderFlagsPrivate_": "imgui_internal:910",
"ImGuiSliderFlags_": "imgui:1724",
"ImGuiSortDirection_": "imgui:1361",
"ImGuiStackLevelInfo": "imgui_internal:2059",
"ImGuiStackSizes": "imgui_internal:1222",
"ImGuiStorage": "imgui:2515",
"ImGuiStoragePair": "imgui:2518",
"ImGuiStyle": "imgui:2056",
"ImGuiStyleMod": "imgui_internal:1006",
"ImGuiStyleVar_": "imgui:1628",
"ImGuiTabBar": "imgui_internal:2902",
"ImGuiTabBarFlagsPrivate_": "imgui_internal:2865",
"ImGuiTabBarFlags_": "imgui:1208",
"ImGuiTabItem": "imgui_internal:2882",
"ImGuiTabItemFlagsPrivate_": "imgui_internal:2873",
"ImGuiTabItemFlags_": "imgui:1224",
"ImGuiTable": "imgui_internal:3037",
"ImGuiTableBgTarget_": "imgui:1920",
"ImGuiTableCellData": "imgui_internal:3015",
"ImGuiTableColumn": "imgui_internal:2956",
"ImGuiTableColumnFlags_": "imgui:1867",
"ImGuiTableColumnSettings": "imgui_internal:3182",
"ImGuiTableColumnSortSpecs": "imgui:1942",
"ImGuiTableFlags_": "imgui:1814",
"ImGuiTableInstanceData": "imgui_internal:3023",
"ImGuiTableRowFlags_": "imgui:1905",
"ImGuiTableSettings": "imgui_internal:3206",
"ImGuiTableSortSpecs": "imgui:1932",
"ImGuiTableTempData": "imgui_internal:3160",
"ImGuiTextBuffer": "imgui:2488",
"ImGuiTextFilter": "imgui:2461",
"ImGuiTextFlags_": "imgui_internal:955",
"ImGuiTextIndex": "imgui_internal:732",
"ImGuiTextRange": "imgui:2471",
"ImGuiTooltipFlags_": "imgui_internal:961",
"ImGuiTreeNodeFlagsPrivate_": "imgui_internal:931",
"ImGuiTreeNodeFlags_": "imgui:1126",
"ImGuiTypingSelectFlags_": "imgui_internal:1638",
"ImGuiTypingSelectRequest": "imgui_internal:1646",
"ImGuiTypingSelectState": "imgui_internal:1657",
"ImGuiViewport": "imgui:3256",
"ImGuiViewportFlags_": "imgui:3228",
"ImGuiViewportP": "imgui_internal:1892",
"ImGuiWindow": "imgui_internal:2714",
"ImGuiWindowClass": "imgui:2402",
"ImGuiWindowDockStyle": "imgui_internal:1870",
"ImGuiWindowDockStyleCol": "imgui_internal:1859",
"ImGuiWindowFlags_": "imgui:1030",
"ImGuiWindowSettings": "imgui_internal:1938",
"ImGuiWindowStackData": "imgui_internal:1240",
"ImGuiWindowTempData": "imgui_internal:2665",
"ImRect": "imgui_internal:534",
"ImVec1": "imgui_internal:516",
"ImVec2": "imgui:269",
"ImVec2ih": "imgui_internal:524",
"ImVec4": "imgui:282",
"ImBitVector": "imgui_internal:615",
"ImColor": "imgui:2678",
"ImDrawChannel": "imgui:2768",
"ImDrawCmd": "imgui:2727",
"ImDrawCmdHeader": "imgui:2760",
"ImDrawData": "imgui:2972",
"ImDrawDataBuilder": "imgui_internal:801",
"ImDrawFlags_": "imgui:2794",
"ImDrawList": "imgui:2832",
"ImDrawListFlags_": "imgui:2814",
"ImDrawListSharedData": "imgui_internal:778",
"ImDrawListSplitter": "imgui:2777",
"ImDrawVert": "imgui:2745",
"ImFont": "imgui:3195",
"ImFontAtlas": "imgui:3091",
"ImFontAtlasCustomRect": "imgui:3053",
"ImFontAtlasFlags_": "imgui:3066",
"ImFontBuilderIO": "imgui_internal:3846",
"ImFontConfig": "imgui:2996",
"ImFontGlyph": "imgui:3026",
"ImFontGlyphRangesBuilder": "imgui:3038",
"ImGuiActivateFlags_": "imgui_internal:1553",
"ImGuiAxis": "imgui_internal:989",
"ImGuiBackendFlags_": "imgui:1553",
"ImGuiButtonFlagsPrivate_": "imgui_internal:883",
"ImGuiButtonFlags_": "imgui:1675",
"ImGuiChildFlags_": "imgui:1088",
"ImGuiCol_": "imgui:1568",
"ImGuiColorEditFlags_": "imgui:1688",
"ImGuiColorMod": "imgui_internal:1003",
"ImGuiComboFlagsPrivate_": "imgui_internal:908",
"ImGuiComboFlags_": "imgui:1200",
"ImGuiComboPreviewData": "imgui_internal:1020",
"ImGuiCond_": "imgui:1789",
"ImGuiConfigFlags_": "imgui:1528",
"ImGuiContext": "imgui_internal:2109",
"ImGuiContextHook": "imgui_internal:2094",
"ImGuiContextHookType": "imgui_internal:2092",
"ImGuiDataAuthority_": "imgui_internal:1780",
"ImGuiDataTypeInfo": "imgui_internal:1285",
"ImGuiDataTypePrivate_": "imgui_internal:1294",
"ImGuiDataTypeTempStorage": "imgui_internal:1279",
"ImGuiDataType_": "imgui:1341",
"ImGuiDataVarInfo": "imgui_internal:1271",
"ImGuiDebugAllocEntry": "imgui_internal:2028",
"ImGuiDebugAllocInfo": "imgui_internal:2035",
"ImGuiDebugLogFlags_": "imgui_internal:2008",
"ImGuiDir_": "imgui:1357",
"ImGuiDockContext": "imgui_internal:1879",
"ImGuiDockNode": "imgui_internal:1796",
"ImGuiDockNodeFlagsPrivate_": "imgui_internal:1751",
"ImGuiDockNodeFlags_": "imgui:1300",
"ImGuiDockNodeState": "imgui_internal:1787",
"ImGuiDragDropFlags_": "imgui:1319",
"ImGuiFocusRequestFlags_": "imgui_internal:952",
"ImGuiFocusScopeData": "imgui_internal:1631",
"ImGuiFocusedFlags_": "imgui:1246",
"ImGuiGroupData": "imgui_internal:1033",
"ImGuiHoveredFlagsPrivate_": "imgui_internal:865",
"ImGuiHoveredFlags_": "imgui:1260",
"ImGuiIDStackTool": "imgui_internal:2075",
"ImGuiIO": "imgui:2148",
"ImGuiInputEvent": "imgui_internal:1388",
"ImGuiInputEventAppFocused": "imgui_internal:1386",
"ImGuiInputEventKey": "imgui_internal:1384",
"ImGuiInputEventMouseButton": "imgui_internal:1382",
"ImGuiInputEventMousePos": "imgui_internal:1380",
"ImGuiInputEventMouseViewport": "imgui_internal:1383",
"ImGuiInputEventMouseWheel": "imgui_internal:1381",
"ImGuiInputEventText": "imgui_internal:1385",
"ImGuiInputEventType": "imgui_internal:1356",
"ImGuiInputFlags_": "imgui_internal:1453",
"ImGuiInputSource": "imgui_internal:1369",
"ImGuiInputTextCallbackData": "imgui:2368",
"ImGuiInputTextDeactivatedState": "imgui_internal:1069",
"ImGuiInputTextFlagsPrivate_": "imgui_internal:873",
"ImGuiInputTextFlags_": "imgui:1103",
"ImGuiInputTextState": "imgui_internal:1079",
"ImGuiItemFlags_": "imgui_internal:818",
"ImGuiItemStatusFlags_": "imgui_internal:840",
"ImGuiKey": "imgui:1386",
"ImGuiKeyData": "imgui:2140",
"ImGuiKeyOwnerData": "imgui_internal:1441",
"ImGuiKeyRoutingData": "imgui_internal:1415",
"ImGuiKeyRoutingTable": "imgui_internal:1429",
"ImGuiLastItemData": "imgui_internal:1202",
"ImGuiLayoutType_": "imgui_internal:973",
"ImGuiListClipper": "imgui:2592",
"ImGuiListClipperData": "imgui_internal:1537",
"ImGuiListClipperRange": "imgui_internal:1524",
"ImGuiLocEntry": "imgui_internal:1997",
"ImGuiLocKey": "imgui_internal:1981",
"ImGuiLogType": "imgui_internal:979",
"ImGuiMenuColumns": "imgui_internal:1051",
"ImGuiMetricsConfig": "imgui_internal:2045",
"ImGuiMouseButton_": "imgui:1749",
"ImGuiMouseCursor_": "imgui:1759",
"ImGuiMouseSource": "imgui:1778",
"ImGuiNavHighlightFlags_": "imgui_internal:1578",
"ImGuiNavItemData": "imgui_internal:1615",
"ImGuiNavLayer": "imgui_internal:1608",
"ImGuiNavMoveFlags_": "imgui_internal:1586",
"ImGuiNavTreeNodeData": "imgui_internal:1219",
"ImGuiNextItemData": "imgui_internal:1186",
"ImGuiNextItemDataFlags_": "imgui_internal:1178",
"ImGuiNextWindowData": "imgui_internal:1146",
"ImGuiNextWindowDataFlags_": "imgui_internal:1128",
"ImGuiOldColumnData": "imgui_internal:1699",
"ImGuiOldColumnFlags_": "imgui_internal:1679",
"ImGuiOldColumns": "imgui_internal:1709",
"ImGuiOnceUponAFrame": "imgui:2468",
"ImGuiPayload": "imgui:2433",
"ImGuiPlatformIO": "imgui:3365",
"ImGuiPlatformImeData": "imgui:3438",
"ImGuiPlatformMonitor": "imgui:3428",
"ImGuiPlotType": "imgui_internal:996",
"ImGuiPopupData": "imgui_internal:1313",
"ImGuiPopupFlags_": "imgui:1167",
"ImGuiPopupPositionPolicy": "imgui_internal:1305",
"ImGuiPtrOrIndex": "imgui_internal:1258",
"ImGuiScrollFlags_": "imgui_internal:1564",
"ImGuiSelectableFlagsPrivate_": "imgui_internal:921",
"ImGuiSelectableFlags_": "imgui:1185",
"ImGuiSeparatorFlags_": "imgui_internal:941",
"ImGuiSettingsHandler": "imgui_internal:1961",
"ImGuiShrinkWidthItem": "imgui_internal:1251",
"ImGuiSizeCallbackData": "imgui:2402",
"ImGuiSliderFlagsPrivate_": "imgui_internal:914",
"ImGuiSliderFlags_": "imgui:1734",
"ImGuiSortDirection_": "imgui:1368",
"ImGuiStackLevelInfo": "imgui_internal:2063",
"ImGuiStackSizes": "imgui_internal:1226",
"ImGuiStorage": "imgui:2530",
"ImGuiStoragePair": "imgui:2533",
"ImGuiStyle": "imgui:2066",
"ImGuiStyleMod": "imgui_internal:1010",
"ImGuiStyleVar_": "imgui:1636",
"ImGuiTabBar": "imgui_internal:2907",
"ImGuiTabBarFlagsPrivate_": "imgui_internal:2870",
"ImGuiTabBarFlags_": "imgui:1215",
"ImGuiTabItem": "imgui_internal:2887",
"ImGuiTabItemFlagsPrivate_": "imgui_internal:2878",
"ImGuiTabItemFlags_": "imgui:1231",
"ImGuiTable": "imgui_internal:3042",
"ImGuiTableBgTarget_": "imgui:1930",
"ImGuiTableCellData": "imgui_internal:3020",
"ImGuiTableColumn": "imgui_internal:2961",
"ImGuiTableColumnFlags_": "imgui:1877",
"ImGuiTableColumnSettings": "imgui_internal:3187",
"ImGuiTableColumnSortSpecs": "imgui:1952",
"ImGuiTableFlags_": "imgui:1824",
"ImGuiTableInstanceData": "imgui_internal:3028",
"ImGuiTableRowFlags_": "imgui:1915",
"ImGuiTableSettings": "imgui_internal:3211",
"ImGuiTableSortSpecs": "imgui:1942",
"ImGuiTableTempData": "imgui_internal:3165",
"ImGuiTextBuffer": "imgui:2503",
"ImGuiTextFilter": "imgui:2476",
"ImGuiTextFlags_": "imgui_internal:959",
"ImGuiTextIndex": "imgui_internal:735",
"ImGuiTextRange": "imgui:2486",
"ImGuiTooltipFlags_": "imgui_internal:965",
"ImGuiTreeNodeFlagsPrivate_": "imgui_internal:935",
"ImGuiTreeNodeFlags_": "imgui:1133",
"ImGuiTypingSelectFlags_": "imgui_internal:1642",
"ImGuiTypingSelectRequest": "imgui_internal:1650",
"ImGuiTypingSelectState": "imgui_internal:1661",
"ImGuiViewport": "imgui:3281",
"ImGuiViewportFlags_": "imgui:3253",
"ImGuiViewportP": "imgui_internal:1896",
"ImGuiWindow": "imgui_internal:2719",
"ImGuiWindowClass": "imgui:2417",
"ImGuiWindowDockStyle": "imgui_internal:1874",
"ImGuiWindowDockStyleCol": "imgui_internal:1863",
"ImGuiWindowFlags_": "imgui:1037",
"ImGuiWindowSettings": "imgui_internal:1942",
"ImGuiWindowStackData": "imgui_internal:1244",
"ImGuiWindowTempData": "imgui_internal:2669",
"ImRect": "imgui_internal:537",
"ImVec1": "imgui_internal:519",
"ImVec2": "imgui:275",
"ImVec2ih": "imgui_internal:527",
"ImVec4": "imgui:288",
"STB_TexteditState": "imstb_textedit:321",
"StbTexteditRow": "imstb_textedit:368",
"StbUndoRecord": "imstb_textedit:303",
@@ -8594,7 +8609,7 @@
"type": "ImGuiWindow*"
},
{
"name": "BackupNavWindow",
"name": "RestoreNavWindow",
"type": "ImGuiWindow*"
},
{
@@ -9956,7 +9971,7 @@
"type": "float"
},
{
"name": "AngledheadersExtraWidth",
"name": "AngledHeadersExtraWidth",
"type": "float"
},
{
@@ -10997,6 +11012,10 @@
"name": "ParentLayoutType",
"type": "ImGuiLayoutType"
},
{
"name": "ModalDimBgColor",
"type": "ImU32"
},
{
"name": "ItemWidth",
"type": "float"

View File

@@ -1438,12 +1438,8 @@ defs["enums"]["ImGuiInputSource"][4]["name"] = "ImGuiInputSource_Gamepad"
defs["enums"]["ImGuiInputSource"][4]["value"] = "3"
defs["enums"]["ImGuiInputSource"][5] = {}
defs["enums"]["ImGuiInputSource"][5]["calc_value"] = 4
defs["enums"]["ImGuiInputSource"][5]["name"] = "ImGuiInputSource_Clipboard"
defs["enums"]["ImGuiInputSource"][5]["name"] = "ImGuiInputSource_COUNT"
defs["enums"]["ImGuiInputSource"][5]["value"] = "4"
defs["enums"]["ImGuiInputSource"][6] = {}
defs["enums"]["ImGuiInputSource"][6]["calc_value"] = 5
defs["enums"]["ImGuiInputSource"][6]["name"] = "ImGuiInputSource_COUNT"
defs["enums"]["ImGuiInputSource"][6]["value"] = "5"
defs["enums"]["ImGuiInputTextFlagsPrivate_"] = {}
defs["enums"]["ImGuiInputTextFlagsPrivate_"][1] = {}
defs["enums"]["ImGuiInputTextFlagsPrivate_"][1]["calc_value"] = 67108864
@@ -1457,6 +1453,10 @@ defs["enums"]["ImGuiInputTextFlagsPrivate_"][3] = {}
defs["enums"]["ImGuiInputTextFlagsPrivate_"][3]["calc_value"] = 268435456
defs["enums"]["ImGuiInputTextFlagsPrivate_"][3]["name"] = "ImGuiInputTextFlags_MergedItem"
defs["enums"]["ImGuiInputTextFlagsPrivate_"][3]["value"] = "1 << 28"
defs["enums"]["ImGuiInputTextFlagsPrivate_"][4] = {}
defs["enums"]["ImGuiInputTextFlagsPrivate_"][4]["calc_value"] = 536870912
defs["enums"]["ImGuiInputTextFlagsPrivate_"][4]["name"] = "ImGuiInputTextFlags_LocalizeDecimalPoint"
defs["enums"]["ImGuiInputTextFlagsPrivate_"][4]["value"] = "1 << 29"
defs["enums"]["ImGuiInputTextFlags_"] = {}
defs["enums"]["ImGuiInputTextFlags_"][1] = {}
defs["enums"]["ImGuiInputTextFlags_"][1]["calc_value"] = 0
@@ -2574,6 +2574,10 @@ defs["enums"]["ImGuiNavMoveFlags_"][17] = {}
defs["enums"]["ImGuiNavMoveFlags_"][17]["calc_value"] = 16384
defs["enums"]["ImGuiNavMoveFlags_"][17]["name"] = "ImGuiNavMoveFlags_NoSetNavHighlight"
defs["enums"]["ImGuiNavMoveFlags_"][17]["value"] = "1 << 14"
defs["enums"]["ImGuiNavMoveFlags_"][18] = {}
defs["enums"]["ImGuiNavMoveFlags_"][18]["calc_value"] = 32768
defs["enums"]["ImGuiNavMoveFlags_"][18]["name"] = "ImGuiNavMoveFlags_NoClearActiveId"
defs["enums"]["ImGuiNavMoveFlags_"][18]["value"] = "1 << 15"
defs["enums"]["ImGuiNextItemDataFlags_"] = {}
defs["enums"]["ImGuiNextItemDataFlags_"][1] = {}
defs["enums"]["ImGuiNextItemDataFlags_"][1]["calc_value"] = 0
@@ -2998,36 +3002,44 @@ defs["enums"]["ImGuiStyleVar_"][23]["name"] = "ImGuiStyleVar_TabRounding"
defs["enums"]["ImGuiStyleVar_"][23]["value"] = "22"
defs["enums"]["ImGuiStyleVar_"][24] = {}
defs["enums"]["ImGuiStyleVar_"][24]["calc_value"] = 23
defs["enums"]["ImGuiStyleVar_"][24]["name"] = "ImGuiStyleVar_TabBarBorderSize"
defs["enums"]["ImGuiStyleVar_"][24]["name"] = "ImGuiStyleVar_TabBorderSize"
defs["enums"]["ImGuiStyleVar_"][24]["value"] = "23"
defs["enums"]["ImGuiStyleVar_"][25] = {}
defs["enums"]["ImGuiStyleVar_"][25]["calc_value"] = 24
defs["enums"]["ImGuiStyleVar_"][25]["name"] = "ImGuiStyleVar_ButtonTextAlign"
defs["enums"]["ImGuiStyleVar_"][25]["name"] = "ImGuiStyleVar_TabBarBorderSize"
defs["enums"]["ImGuiStyleVar_"][25]["value"] = "24"
defs["enums"]["ImGuiStyleVar_"][26] = {}
defs["enums"]["ImGuiStyleVar_"][26]["calc_value"] = 25
defs["enums"]["ImGuiStyleVar_"][26]["name"] = "ImGuiStyleVar_SelectableTextAlign"
defs["enums"]["ImGuiStyleVar_"][26]["name"] = "ImGuiStyleVar_TableAngledHeadersAngle"
defs["enums"]["ImGuiStyleVar_"][26]["value"] = "25"
defs["enums"]["ImGuiStyleVar_"][27] = {}
defs["enums"]["ImGuiStyleVar_"][27]["calc_value"] = 26
defs["enums"]["ImGuiStyleVar_"][27]["name"] = "ImGuiStyleVar_SeparatorTextBorderSize"
defs["enums"]["ImGuiStyleVar_"][27]["name"] = "ImGuiStyleVar_ButtonTextAlign"
defs["enums"]["ImGuiStyleVar_"][27]["value"] = "26"
defs["enums"]["ImGuiStyleVar_"][28] = {}
defs["enums"]["ImGuiStyleVar_"][28]["calc_value"] = 27
defs["enums"]["ImGuiStyleVar_"][28]["name"] = "ImGuiStyleVar_SeparatorTextAlign"
defs["enums"]["ImGuiStyleVar_"][28]["name"] = "ImGuiStyleVar_SelectableTextAlign"
defs["enums"]["ImGuiStyleVar_"][28]["value"] = "27"
defs["enums"]["ImGuiStyleVar_"][29] = {}
defs["enums"]["ImGuiStyleVar_"][29]["calc_value"] = 28
defs["enums"]["ImGuiStyleVar_"][29]["name"] = "ImGuiStyleVar_SeparatorTextPadding"
defs["enums"]["ImGuiStyleVar_"][29]["name"] = "ImGuiStyleVar_SeparatorTextBorderSize"
defs["enums"]["ImGuiStyleVar_"][29]["value"] = "28"
defs["enums"]["ImGuiStyleVar_"][30] = {}
defs["enums"]["ImGuiStyleVar_"][30]["calc_value"] = 29
defs["enums"]["ImGuiStyleVar_"][30]["name"] = "ImGuiStyleVar_DockingSeparatorSize"
defs["enums"]["ImGuiStyleVar_"][30]["name"] = "ImGuiStyleVar_SeparatorTextAlign"
defs["enums"]["ImGuiStyleVar_"][30]["value"] = "29"
defs["enums"]["ImGuiStyleVar_"][31] = {}
defs["enums"]["ImGuiStyleVar_"][31]["calc_value"] = 30
defs["enums"]["ImGuiStyleVar_"][31]["name"] = "ImGuiStyleVar_COUNT"
defs["enums"]["ImGuiStyleVar_"][31]["name"] = "ImGuiStyleVar_SeparatorTextPadding"
defs["enums"]["ImGuiStyleVar_"][31]["value"] = "30"
defs["enums"]["ImGuiStyleVar_"][32] = {}
defs["enums"]["ImGuiStyleVar_"][32]["calc_value"] = 31
defs["enums"]["ImGuiStyleVar_"][32]["name"] = "ImGuiStyleVar_DockingSeparatorSize"
defs["enums"]["ImGuiStyleVar_"][32]["value"] = "31"
defs["enums"]["ImGuiStyleVar_"][33] = {}
defs["enums"]["ImGuiStyleVar_"][33]["calc_value"] = 32
defs["enums"]["ImGuiStyleVar_"][33]["name"] = "ImGuiStyleVar_COUNT"
defs["enums"]["ImGuiStyleVar_"][33]["value"] = "32"
defs["enums"]["ImGuiTabBarFlagsPrivate_"] = {}
defs["enums"]["ImGuiTabBarFlagsPrivate_"][1] = {}
defs["enums"]["ImGuiTabBarFlagsPrivate_"][1]["calc_value"] = 1048576
@@ -3761,189 +3773,189 @@ defs["enumtypes"]["ImGuiKey"] = "int"
defs["enumtypes"]["ImGuiLocKey"] = "int"
defs["enumtypes"]["ImGuiMouseSource"] = "int"
defs["locations"] = {}
defs["locations"]["ImBitVector"] = "imgui_internal:612"
defs["locations"]["ImColor"] = "imgui:2663"
defs["locations"]["ImDrawChannel"] = "imgui:2753"
defs["locations"]["ImDrawCmd"] = "imgui:2712"
defs["locations"]["ImDrawCmdHeader"] = "imgui:2745"
defs["locations"]["ImDrawData"] = "imgui:2947"
defs["locations"]["ImDrawDataBuilder"] = "imgui_internal:798"
defs["locations"]["ImDrawFlags_"] = "imgui:2779"
defs["locations"]["ImDrawList"] = "imgui:2817"
defs["locations"]["ImDrawListFlags_"] = "imgui:2799"
defs["locations"]["ImDrawListSharedData"] = "imgui_internal:775"
defs["locations"]["ImDrawListSplitter"] = "imgui:2762"
defs["locations"]["ImDrawVert"] = "imgui:2730"
defs["locations"]["ImFont"] = "imgui:3170"
defs["locations"]["ImFontAtlas"] = "imgui:3066"
defs["locations"]["ImFontAtlasCustomRect"] = "imgui:3028"
defs["locations"]["ImFontAtlasFlags_"] = "imgui:3041"
defs["locations"]["ImFontBuilderIO"] = "imgui_internal:3842"
defs["locations"]["ImFontConfig"] = "imgui:2971"
defs["locations"]["ImFontGlyph"] = "imgui:3001"
defs["locations"]["ImFontGlyphRangesBuilder"] = "imgui:3013"
defs["locations"]["ImGuiActivateFlags_"] = "imgui_internal:1550"
defs["locations"]["ImGuiAxis"] = "imgui_internal:985"
defs["locations"]["ImGuiBackendFlags_"] = "imgui:1546"
defs["locations"]["ImGuiButtonFlagsPrivate_"] = "imgui_internal:879"
defs["locations"]["ImGuiButtonFlags_"] = "imgui:1665"
defs["locations"]["ImGuiChildFlags_"] = "imgui:1081"
defs["locations"]["ImGuiCol_"] = "imgui:1561"
defs["locations"]["ImGuiColorEditFlags_"] = "imgui:1678"
defs["locations"]["ImGuiColorMod"] = "imgui_internal:999"
defs["locations"]["ImGuiComboFlagsPrivate_"] = "imgui_internal:904"
defs["locations"]["ImGuiComboFlags_"] = "imgui:1193"
defs["locations"]["ImGuiComboPreviewData"] = "imgui_internal:1016"
defs["locations"]["ImGuiCond_"] = "imgui:1779"
defs["locations"]["ImGuiConfigFlags_"] = "imgui:1521"
defs["locations"]["ImGuiContext"] = "imgui_internal:2105"
defs["locations"]["ImGuiContextHook"] = "imgui_internal:2090"
defs["locations"]["ImGuiContextHookType"] = "imgui_internal:2088"
defs["locations"]["ImGuiDataAuthority_"] = "imgui_internal:1776"
defs["locations"]["ImGuiDataTypeInfo"] = "imgui_internal:1281"
defs["locations"]["ImGuiDataTypePrivate_"] = "imgui_internal:1290"
defs["locations"]["ImGuiDataTypeTempStorage"] = "imgui_internal:1275"
defs["locations"]["ImGuiDataType_"] = "imgui:1334"
defs["locations"]["ImGuiDataVarInfo"] = "imgui_internal:1267"
defs["locations"]["ImGuiDebugAllocEntry"] = "imgui_internal:2024"
defs["locations"]["ImGuiDebugAllocInfo"] = "imgui_internal:2031"
defs["locations"]["ImGuiDebugLogFlags_"] = "imgui_internal:2004"
defs["locations"]["ImGuiDir_"] = "imgui:1350"
defs["locations"]["ImGuiDockContext"] = "imgui_internal:1875"
defs["locations"]["ImGuiDockNode"] = "imgui_internal:1792"
defs["locations"]["ImGuiDockNodeFlagsPrivate_"] = "imgui_internal:1747"
defs["locations"]["ImGuiDockNodeFlags_"] = "imgui:1293"
defs["locations"]["ImGuiDockNodeState"] = "imgui_internal:1783"
defs["locations"]["ImGuiDragDropFlags_"] = "imgui:1312"
defs["locations"]["ImGuiFocusRequestFlags_"] = "imgui_internal:948"
defs["locations"]["ImGuiFocusScopeData"] = "imgui_internal:1627"
defs["locations"]["ImGuiFocusedFlags_"] = "imgui:1239"
defs["locations"]["ImGuiGroupData"] = "imgui_internal:1029"
defs["locations"]["ImGuiHoveredFlagsPrivate_"] = "imgui_internal:862"
defs["locations"]["ImGuiHoveredFlags_"] = "imgui:1253"
defs["locations"]["ImGuiIDStackTool"] = "imgui_internal:2071"
defs["locations"]["ImGuiIO"] = "imgui:2135"
defs["locations"]["ImGuiInputEvent"] = "imgui_internal:1385"
defs["locations"]["ImGuiInputEventAppFocused"] = "imgui_internal:1383"
defs["locations"]["ImGuiInputEventKey"] = "imgui_internal:1381"
defs["locations"]["ImGuiInputEventMouseButton"] = "imgui_internal:1379"
defs["locations"]["ImGuiInputEventMousePos"] = "imgui_internal:1377"
defs["locations"]["ImGuiInputEventMouseViewport"] = "imgui_internal:1380"
defs["locations"]["ImGuiInputEventMouseWheel"] = "imgui_internal:1378"
defs["locations"]["ImGuiInputEventText"] = "imgui_internal:1382"
defs["locations"]["ImGuiInputEventType"] = "imgui_internal:1352"
defs["locations"]["ImGuiInputFlags_"] = "imgui_internal:1450"
defs["locations"]["ImGuiInputSource"] = "imgui_internal:1365"
defs["locations"]["ImGuiInputTextCallbackData"] = "imgui:2355"
defs["locations"]["ImGuiInputTextDeactivatedState"] = "imgui_internal:1065"
defs["locations"]["ImGuiInputTextFlagsPrivate_"] = "imgui_internal:870"
defs["locations"]["ImGuiInputTextFlags_"] = "imgui:1096"
defs["locations"]["ImGuiInputTextState"] = "imgui_internal:1075"
defs["locations"]["ImGuiItemFlags_"] = "imgui_internal:815"
defs["locations"]["ImGuiItemStatusFlags_"] = "imgui_internal:837"
defs["locations"]["ImGuiKey"] = "imgui:1379"
defs["locations"]["ImGuiKeyData"] = "imgui:2127"
defs["locations"]["ImGuiKeyOwnerData"] = "imgui_internal:1438"
defs["locations"]["ImGuiKeyRoutingData"] = "imgui_internal:1412"
defs["locations"]["ImGuiKeyRoutingTable"] = "imgui_internal:1426"
defs["locations"]["ImGuiLastItemData"] = "imgui_internal:1198"
defs["locations"]["ImGuiLayoutType_"] = "imgui_internal:969"
defs["locations"]["ImGuiListClipper"] = "imgui:2577"
defs["locations"]["ImGuiListClipperData"] = "imgui_internal:1534"
defs["locations"]["ImGuiListClipperRange"] = "imgui_internal:1521"
defs["locations"]["ImGuiLocEntry"] = "imgui_internal:1993"
defs["locations"]["ImGuiLocKey"] = "imgui_internal:1977"
defs["locations"]["ImGuiLogType"] = "imgui_internal:975"
defs["locations"]["ImGuiMenuColumns"] = "imgui_internal:1047"
defs["locations"]["ImGuiMetricsConfig"] = "imgui_internal:2041"
defs["locations"]["ImGuiMouseButton_"] = "imgui:1739"
defs["locations"]["ImGuiMouseCursor_"] = "imgui:1749"
defs["locations"]["ImGuiMouseSource"] = "imgui:1768"
defs["locations"]["ImGuiNavHighlightFlags_"] = "imgui_internal:1575"
defs["locations"]["ImGuiNavItemData"] = "imgui_internal:1611"
defs["locations"]["ImGuiNavLayer"] = "imgui_internal:1604"
defs["locations"]["ImGuiNavMoveFlags_"] = "imgui_internal:1583"
defs["locations"]["ImGuiNavTreeNodeData"] = "imgui_internal:1215"
defs["locations"]["ImGuiNextItemData"] = "imgui_internal:1182"
defs["locations"]["ImGuiNextItemDataFlags_"] = "imgui_internal:1174"
defs["locations"]["ImGuiNextWindowData"] = "imgui_internal:1142"
defs["locations"]["ImGuiNextWindowDataFlags_"] = "imgui_internal:1124"
defs["locations"]["ImGuiOldColumnData"] = "imgui_internal:1695"
defs["locations"]["ImGuiOldColumnFlags_"] = "imgui_internal:1675"
defs["locations"]["ImGuiOldColumns"] = "imgui_internal:1705"
defs["locations"]["ImGuiOnceUponAFrame"] = "imgui:2453"
defs["locations"]["ImGuiPayload"] = "imgui:2418"
defs["locations"]["ImGuiPlatformIO"] = "imgui:3340"
defs["locations"]["ImGuiPlatformImeData"] = "imgui:3413"
defs["locations"]["ImGuiPlatformMonitor"] = "imgui:3403"
defs["locations"]["ImGuiPlotType"] = "imgui_internal:992"
defs["locations"]["ImGuiPopupData"] = "imgui_internal:1309"
defs["locations"]["ImGuiPopupFlags_"] = "imgui:1160"
defs["locations"]["ImGuiPopupPositionPolicy"] = "imgui_internal:1301"
defs["locations"]["ImGuiPtrOrIndex"] = "imgui_internal:1254"
defs["locations"]["ImGuiScrollFlags_"] = "imgui_internal:1561"
defs["locations"]["ImGuiSelectableFlagsPrivate_"] = "imgui_internal:917"
defs["locations"]["ImGuiSelectableFlags_"] = "imgui:1178"
defs["locations"]["ImGuiSeparatorFlags_"] = "imgui_internal:937"
defs["locations"]["ImGuiSettingsHandler"] = "imgui_internal:1957"
defs["locations"]["ImGuiShrinkWidthItem"] = "imgui_internal:1247"
defs["locations"]["ImGuiSizeCallbackData"] = "imgui:2387"
defs["locations"]["ImGuiSliderFlagsPrivate_"] = "imgui_internal:910"
defs["locations"]["ImGuiSliderFlags_"] = "imgui:1724"
defs["locations"]["ImGuiSortDirection_"] = "imgui:1361"
defs["locations"]["ImGuiStackLevelInfo"] = "imgui_internal:2059"
defs["locations"]["ImGuiStackSizes"] = "imgui_internal:1222"
defs["locations"]["ImGuiStorage"] = "imgui:2515"
defs["locations"]["ImGuiStoragePair"] = "imgui:2518"
defs["locations"]["ImGuiStyle"] = "imgui:2056"
defs["locations"]["ImGuiStyleMod"] = "imgui_internal:1006"
defs["locations"]["ImGuiStyleVar_"] = "imgui:1628"
defs["locations"]["ImGuiTabBar"] = "imgui_internal:2902"
defs["locations"]["ImGuiTabBarFlagsPrivate_"] = "imgui_internal:2865"
defs["locations"]["ImGuiTabBarFlags_"] = "imgui:1208"
defs["locations"]["ImGuiTabItem"] = "imgui_internal:2882"
defs["locations"]["ImGuiTabItemFlagsPrivate_"] = "imgui_internal:2873"
defs["locations"]["ImGuiTabItemFlags_"] = "imgui:1224"
defs["locations"]["ImGuiTable"] = "imgui_internal:3037"
defs["locations"]["ImGuiTableBgTarget_"] = "imgui:1920"
defs["locations"]["ImGuiTableCellData"] = "imgui_internal:3015"
defs["locations"]["ImGuiTableColumn"] = "imgui_internal:2956"
defs["locations"]["ImGuiTableColumnFlags_"] = "imgui:1867"
defs["locations"]["ImGuiTableColumnSettings"] = "imgui_internal:3182"
defs["locations"]["ImGuiTableColumnSortSpecs"] = "imgui:1942"
defs["locations"]["ImGuiTableFlags_"] = "imgui:1814"
defs["locations"]["ImGuiTableInstanceData"] = "imgui_internal:3023"
defs["locations"]["ImGuiTableRowFlags_"] = "imgui:1905"
defs["locations"]["ImGuiTableSettings"] = "imgui_internal:3206"
defs["locations"]["ImGuiTableSortSpecs"] = "imgui:1932"
defs["locations"]["ImGuiTableTempData"] = "imgui_internal:3160"
defs["locations"]["ImGuiTextBuffer"] = "imgui:2488"
defs["locations"]["ImGuiTextFilter"] = "imgui:2461"
defs["locations"]["ImGuiTextFlags_"] = "imgui_internal:955"
defs["locations"]["ImGuiTextIndex"] = "imgui_internal:732"
defs["locations"]["ImGuiTextRange"] = "imgui:2471"
defs["locations"]["ImGuiTooltipFlags_"] = "imgui_internal:961"
defs["locations"]["ImGuiTreeNodeFlagsPrivate_"] = "imgui_internal:931"
defs["locations"]["ImGuiTreeNodeFlags_"] = "imgui:1126"
defs["locations"]["ImGuiTypingSelectFlags_"] = "imgui_internal:1638"
defs["locations"]["ImGuiTypingSelectRequest"] = "imgui_internal:1646"
defs["locations"]["ImGuiTypingSelectState"] = "imgui_internal:1657"
defs["locations"]["ImGuiViewport"] = "imgui:3256"
defs["locations"]["ImGuiViewportFlags_"] = "imgui:3228"
defs["locations"]["ImGuiViewportP"] = "imgui_internal:1892"
defs["locations"]["ImGuiWindow"] = "imgui_internal:2714"
defs["locations"]["ImGuiWindowClass"] = "imgui:2402"
defs["locations"]["ImGuiWindowDockStyle"] = "imgui_internal:1870"
defs["locations"]["ImGuiWindowDockStyleCol"] = "imgui_internal:1859"
defs["locations"]["ImGuiWindowFlags_"] = "imgui:1030"
defs["locations"]["ImGuiWindowSettings"] = "imgui_internal:1938"
defs["locations"]["ImGuiWindowStackData"] = "imgui_internal:1240"
defs["locations"]["ImGuiWindowTempData"] = "imgui_internal:2665"
defs["locations"]["ImRect"] = "imgui_internal:534"
defs["locations"]["ImVec1"] = "imgui_internal:516"
defs["locations"]["ImVec2"] = "imgui:269"
defs["locations"]["ImVec2ih"] = "imgui_internal:524"
defs["locations"]["ImVec4"] = "imgui:282"
defs["locations"]["ImBitVector"] = "imgui_internal:615"
defs["locations"]["ImColor"] = "imgui:2678"
defs["locations"]["ImDrawChannel"] = "imgui:2768"
defs["locations"]["ImDrawCmd"] = "imgui:2727"
defs["locations"]["ImDrawCmdHeader"] = "imgui:2760"
defs["locations"]["ImDrawData"] = "imgui:2972"
defs["locations"]["ImDrawDataBuilder"] = "imgui_internal:801"
defs["locations"]["ImDrawFlags_"] = "imgui:2794"
defs["locations"]["ImDrawList"] = "imgui:2832"
defs["locations"]["ImDrawListFlags_"] = "imgui:2814"
defs["locations"]["ImDrawListSharedData"] = "imgui_internal:778"
defs["locations"]["ImDrawListSplitter"] = "imgui:2777"
defs["locations"]["ImDrawVert"] = "imgui:2745"
defs["locations"]["ImFont"] = "imgui:3195"
defs["locations"]["ImFontAtlas"] = "imgui:3091"
defs["locations"]["ImFontAtlasCustomRect"] = "imgui:3053"
defs["locations"]["ImFontAtlasFlags_"] = "imgui:3066"
defs["locations"]["ImFontBuilderIO"] = "imgui_internal:3846"
defs["locations"]["ImFontConfig"] = "imgui:2996"
defs["locations"]["ImFontGlyph"] = "imgui:3026"
defs["locations"]["ImFontGlyphRangesBuilder"] = "imgui:3038"
defs["locations"]["ImGuiActivateFlags_"] = "imgui_internal:1553"
defs["locations"]["ImGuiAxis"] = "imgui_internal:989"
defs["locations"]["ImGuiBackendFlags_"] = "imgui:1553"
defs["locations"]["ImGuiButtonFlagsPrivate_"] = "imgui_internal:883"
defs["locations"]["ImGuiButtonFlags_"] = "imgui:1675"
defs["locations"]["ImGuiChildFlags_"] = "imgui:1088"
defs["locations"]["ImGuiCol_"] = "imgui:1568"
defs["locations"]["ImGuiColorEditFlags_"] = "imgui:1688"
defs["locations"]["ImGuiColorMod"] = "imgui_internal:1003"
defs["locations"]["ImGuiComboFlagsPrivate_"] = "imgui_internal:908"
defs["locations"]["ImGuiComboFlags_"] = "imgui:1200"
defs["locations"]["ImGuiComboPreviewData"] = "imgui_internal:1020"
defs["locations"]["ImGuiCond_"] = "imgui:1789"
defs["locations"]["ImGuiConfigFlags_"] = "imgui:1528"
defs["locations"]["ImGuiContext"] = "imgui_internal:2109"
defs["locations"]["ImGuiContextHook"] = "imgui_internal:2094"
defs["locations"]["ImGuiContextHookType"] = "imgui_internal:2092"
defs["locations"]["ImGuiDataAuthority_"] = "imgui_internal:1780"
defs["locations"]["ImGuiDataTypeInfo"] = "imgui_internal:1285"
defs["locations"]["ImGuiDataTypePrivate_"] = "imgui_internal:1294"
defs["locations"]["ImGuiDataTypeTempStorage"] = "imgui_internal:1279"
defs["locations"]["ImGuiDataType_"] = "imgui:1341"
defs["locations"]["ImGuiDataVarInfo"] = "imgui_internal:1271"
defs["locations"]["ImGuiDebugAllocEntry"] = "imgui_internal:2028"
defs["locations"]["ImGuiDebugAllocInfo"] = "imgui_internal:2035"
defs["locations"]["ImGuiDebugLogFlags_"] = "imgui_internal:2008"
defs["locations"]["ImGuiDir_"] = "imgui:1357"
defs["locations"]["ImGuiDockContext"] = "imgui_internal:1879"
defs["locations"]["ImGuiDockNode"] = "imgui_internal:1796"
defs["locations"]["ImGuiDockNodeFlagsPrivate_"] = "imgui_internal:1751"
defs["locations"]["ImGuiDockNodeFlags_"] = "imgui:1300"
defs["locations"]["ImGuiDockNodeState"] = "imgui_internal:1787"
defs["locations"]["ImGuiDragDropFlags_"] = "imgui:1319"
defs["locations"]["ImGuiFocusRequestFlags_"] = "imgui_internal:952"
defs["locations"]["ImGuiFocusScopeData"] = "imgui_internal:1631"
defs["locations"]["ImGuiFocusedFlags_"] = "imgui:1246"
defs["locations"]["ImGuiGroupData"] = "imgui_internal:1033"
defs["locations"]["ImGuiHoveredFlagsPrivate_"] = "imgui_internal:865"
defs["locations"]["ImGuiHoveredFlags_"] = "imgui:1260"
defs["locations"]["ImGuiIDStackTool"] = "imgui_internal:2075"
defs["locations"]["ImGuiIO"] = "imgui:2148"
defs["locations"]["ImGuiInputEvent"] = "imgui_internal:1388"
defs["locations"]["ImGuiInputEventAppFocused"] = "imgui_internal:1386"
defs["locations"]["ImGuiInputEventKey"] = "imgui_internal:1384"
defs["locations"]["ImGuiInputEventMouseButton"] = "imgui_internal:1382"
defs["locations"]["ImGuiInputEventMousePos"] = "imgui_internal:1380"
defs["locations"]["ImGuiInputEventMouseViewport"] = "imgui_internal:1383"
defs["locations"]["ImGuiInputEventMouseWheel"] = "imgui_internal:1381"
defs["locations"]["ImGuiInputEventText"] = "imgui_internal:1385"
defs["locations"]["ImGuiInputEventType"] = "imgui_internal:1356"
defs["locations"]["ImGuiInputFlags_"] = "imgui_internal:1453"
defs["locations"]["ImGuiInputSource"] = "imgui_internal:1369"
defs["locations"]["ImGuiInputTextCallbackData"] = "imgui:2368"
defs["locations"]["ImGuiInputTextDeactivatedState"] = "imgui_internal:1069"
defs["locations"]["ImGuiInputTextFlagsPrivate_"] = "imgui_internal:873"
defs["locations"]["ImGuiInputTextFlags_"] = "imgui:1103"
defs["locations"]["ImGuiInputTextState"] = "imgui_internal:1079"
defs["locations"]["ImGuiItemFlags_"] = "imgui_internal:818"
defs["locations"]["ImGuiItemStatusFlags_"] = "imgui_internal:840"
defs["locations"]["ImGuiKey"] = "imgui:1386"
defs["locations"]["ImGuiKeyData"] = "imgui:2140"
defs["locations"]["ImGuiKeyOwnerData"] = "imgui_internal:1441"
defs["locations"]["ImGuiKeyRoutingData"] = "imgui_internal:1415"
defs["locations"]["ImGuiKeyRoutingTable"] = "imgui_internal:1429"
defs["locations"]["ImGuiLastItemData"] = "imgui_internal:1202"
defs["locations"]["ImGuiLayoutType_"] = "imgui_internal:973"
defs["locations"]["ImGuiListClipper"] = "imgui:2592"
defs["locations"]["ImGuiListClipperData"] = "imgui_internal:1537"
defs["locations"]["ImGuiListClipperRange"] = "imgui_internal:1524"
defs["locations"]["ImGuiLocEntry"] = "imgui_internal:1997"
defs["locations"]["ImGuiLocKey"] = "imgui_internal:1981"
defs["locations"]["ImGuiLogType"] = "imgui_internal:979"
defs["locations"]["ImGuiMenuColumns"] = "imgui_internal:1051"
defs["locations"]["ImGuiMetricsConfig"] = "imgui_internal:2045"
defs["locations"]["ImGuiMouseButton_"] = "imgui:1749"
defs["locations"]["ImGuiMouseCursor_"] = "imgui:1759"
defs["locations"]["ImGuiMouseSource"] = "imgui:1778"
defs["locations"]["ImGuiNavHighlightFlags_"] = "imgui_internal:1578"
defs["locations"]["ImGuiNavItemData"] = "imgui_internal:1615"
defs["locations"]["ImGuiNavLayer"] = "imgui_internal:1608"
defs["locations"]["ImGuiNavMoveFlags_"] = "imgui_internal:1586"
defs["locations"]["ImGuiNavTreeNodeData"] = "imgui_internal:1219"
defs["locations"]["ImGuiNextItemData"] = "imgui_internal:1186"
defs["locations"]["ImGuiNextItemDataFlags_"] = "imgui_internal:1178"
defs["locations"]["ImGuiNextWindowData"] = "imgui_internal:1146"
defs["locations"]["ImGuiNextWindowDataFlags_"] = "imgui_internal:1128"
defs["locations"]["ImGuiOldColumnData"] = "imgui_internal:1699"
defs["locations"]["ImGuiOldColumnFlags_"] = "imgui_internal:1679"
defs["locations"]["ImGuiOldColumns"] = "imgui_internal:1709"
defs["locations"]["ImGuiOnceUponAFrame"] = "imgui:2468"
defs["locations"]["ImGuiPayload"] = "imgui:2433"
defs["locations"]["ImGuiPlatformIO"] = "imgui:3365"
defs["locations"]["ImGuiPlatformImeData"] = "imgui:3438"
defs["locations"]["ImGuiPlatformMonitor"] = "imgui:3428"
defs["locations"]["ImGuiPlotType"] = "imgui_internal:996"
defs["locations"]["ImGuiPopupData"] = "imgui_internal:1313"
defs["locations"]["ImGuiPopupFlags_"] = "imgui:1167"
defs["locations"]["ImGuiPopupPositionPolicy"] = "imgui_internal:1305"
defs["locations"]["ImGuiPtrOrIndex"] = "imgui_internal:1258"
defs["locations"]["ImGuiScrollFlags_"] = "imgui_internal:1564"
defs["locations"]["ImGuiSelectableFlagsPrivate_"] = "imgui_internal:921"
defs["locations"]["ImGuiSelectableFlags_"] = "imgui:1185"
defs["locations"]["ImGuiSeparatorFlags_"] = "imgui_internal:941"
defs["locations"]["ImGuiSettingsHandler"] = "imgui_internal:1961"
defs["locations"]["ImGuiShrinkWidthItem"] = "imgui_internal:1251"
defs["locations"]["ImGuiSizeCallbackData"] = "imgui:2402"
defs["locations"]["ImGuiSliderFlagsPrivate_"] = "imgui_internal:914"
defs["locations"]["ImGuiSliderFlags_"] = "imgui:1734"
defs["locations"]["ImGuiSortDirection_"] = "imgui:1368"
defs["locations"]["ImGuiStackLevelInfo"] = "imgui_internal:2063"
defs["locations"]["ImGuiStackSizes"] = "imgui_internal:1226"
defs["locations"]["ImGuiStorage"] = "imgui:2530"
defs["locations"]["ImGuiStoragePair"] = "imgui:2533"
defs["locations"]["ImGuiStyle"] = "imgui:2066"
defs["locations"]["ImGuiStyleMod"] = "imgui_internal:1010"
defs["locations"]["ImGuiStyleVar_"] = "imgui:1636"
defs["locations"]["ImGuiTabBar"] = "imgui_internal:2907"
defs["locations"]["ImGuiTabBarFlagsPrivate_"] = "imgui_internal:2870"
defs["locations"]["ImGuiTabBarFlags_"] = "imgui:1215"
defs["locations"]["ImGuiTabItem"] = "imgui_internal:2887"
defs["locations"]["ImGuiTabItemFlagsPrivate_"] = "imgui_internal:2878"
defs["locations"]["ImGuiTabItemFlags_"] = "imgui:1231"
defs["locations"]["ImGuiTable"] = "imgui_internal:3042"
defs["locations"]["ImGuiTableBgTarget_"] = "imgui:1930"
defs["locations"]["ImGuiTableCellData"] = "imgui_internal:3020"
defs["locations"]["ImGuiTableColumn"] = "imgui_internal:2961"
defs["locations"]["ImGuiTableColumnFlags_"] = "imgui:1877"
defs["locations"]["ImGuiTableColumnSettings"] = "imgui_internal:3187"
defs["locations"]["ImGuiTableColumnSortSpecs"] = "imgui:1952"
defs["locations"]["ImGuiTableFlags_"] = "imgui:1824"
defs["locations"]["ImGuiTableInstanceData"] = "imgui_internal:3028"
defs["locations"]["ImGuiTableRowFlags_"] = "imgui:1915"
defs["locations"]["ImGuiTableSettings"] = "imgui_internal:3211"
defs["locations"]["ImGuiTableSortSpecs"] = "imgui:1942"
defs["locations"]["ImGuiTableTempData"] = "imgui_internal:3165"
defs["locations"]["ImGuiTextBuffer"] = "imgui:2503"
defs["locations"]["ImGuiTextFilter"] = "imgui:2476"
defs["locations"]["ImGuiTextFlags_"] = "imgui_internal:959"
defs["locations"]["ImGuiTextIndex"] = "imgui_internal:735"
defs["locations"]["ImGuiTextRange"] = "imgui:2486"
defs["locations"]["ImGuiTooltipFlags_"] = "imgui_internal:965"
defs["locations"]["ImGuiTreeNodeFlagsPrivate_"] = "imgui_internal:935"
defs["locations"]["ImGuiTreeNodeFlags_"] = "imgui:1133"
defs["locations"]["ImGuiTypingSelectFlags_"] = "imgui_internal:1642"
defs["locations"]["ImGuiTypingSelectRequest"] = "imgui_internal:1650"
defs["locations"]["ImGuiTypingSelectState"] = "imgui_internal:1661"
defs["locations"]["ImGuiViewport"] = "imgui:3281"
defs["locations"]["ImGuiViewportFlags_"] = "imgui:3253"
defs["locations"]["ImGuiViewportP"] = "imgui_internal:1896"
defs["locations"]["ImGuiWindow"] = "imgui_internal:2719"
defs["locations"]["ImGuiWindowClass"] = "imgui:2417"
defs["locations"]["ImGuiWindowDockStyle"] = "imgui_internal:1874"
defs["locations"]["ImGuiWindowDockStyleCol"] = "imgui_internal:1863"
defs["locations"]["ImGuiWindowFlags_"] = "imgui:1037"
defs["locations"]["ImGuiWindowSettings"] = "imgui_internal:1942"
defs["locations"]["ImGuiWindowStackData"] = "imgui_internal:1244"
defs["locations"]["ImGuiWindowTempData"] = "imgui_internal:2669"
defs["locations"]["ImRect"] = "imgui_internal:537"
defs["locations"]["ImVec1"] = "imgui_internal:519"
defs["locations"]["ImVec2"] = "imgui:275"
defs["locations"]["ImVec2ih"] = "imgui_internal:527"
defs["locations"]["ImVec4"] = "imgui:288"
defs["locations"]["STB_TexteditState"] = "imstb_textedit:321"
defs["locations"]["StbTexteditRow"] = "imstb_textedit:368"
defs["locations"]["StbUndoRecord"] = "imstb_textedit:303"
@@ -6681,7 +6693,7 @@ defs["structs"]["ImGuiPopupData"][2] = {}
defs["structs"]["ImGuiPopupData"][2]["name"] = "Window"
defs["structs"]["ImGuiPopupData"][2]["type"] = "ImGuiWindow*"
defs["structs"]["ImGuiPopupData"][3] = {}
defs["structs"]["ImGuiPopupData"][3]["name"] = "BackupNavWindow"
defs["structs"]["ImGuiPopupData"][3]["name"] = "RestoreNavWindow"
defs["structs"]["ImGuiPopupData"][3]["type"] = "ImGuiWindow*"
defs["structs"]["ImGuiPopupData"][4] = {}
defs["structs"]["ImGuiPopupData"][4]["name"] = "ParentNavLayer"
@@ -7697,7 +7709,7 @@ defs["structs"]["ImGuiTableTempData"][2] = {}
defs["structs"]["ImGuiTableTempData"][2]["name"] = "LastTimeActive"
defs["structs"]["ImGuiTableTempData"][2]["type"] = "float"
defs["structs"]["ImGuiTableTempData"][3] = {}
defs["structs"]["ImGuiTableTempData"][3]["name"] = "AngledheadersExtraWidth"
defs["structs"]["ImGuiTableTempData"][3]["name"] = "AngledHeadersExtraWidth"
defs["structs"]["ImGuiTableTempData"][3]["type"] = "float"
defs["structs"]["ImGuiTableTempData"][4] = {}
defs["structs"]["ImGuiTableTempData"][4]["name"] = "UserOuterSize"
@@ -8477,19 +8489,22 @@ defs["structs"]["ImGuiWindowTempData"][32] = {}
defs["structs"]["ImGuiWindowTempData"][32]["name"] = "ParentLayoutType"
defs["structs"]["ImGuiWindowTempData"][32]["type"] = "ImGuiLayoutType"
defs["structs"]["ImGuiWindowTempData"][33] = {}
defs["structs"]["ImGuiWindowTempData"][33]["name"] = "ItemWidth"
defs["structs"]["ImGuiWindowTempData"][33]["type"] = "float"
defs["structs"]["ImGuiWindowTempData"][33]["name"] = "ModalDimBgColor"
defs["structs"]["ImGuiWindowTempData"][33]["type"] = "ImU32"
defs["structs"]["ImGuiWindowTempData"][34] = {}
defs["structs"]["ImGuiWindowTempData"][34]["name"] = "TextWrapPos"
defs["structs"]["ImGuiWindowTempData"][34]["name"] = "ItemWidth"
defs["structs"]["ImGuiWindowTempData"][34]["type"] = "float"
defs["structs"]["ImGuiWindowTempData"][35] = {}
defs["structs"]["ImGuiWindowTempData"][35]["name"] = "ItemWidthStack"
defs["structs"]["ImGuiWindowTempData"][35]["template_type"] = "float"
defs["structs"]["ImGuiWindowTempData"][35]["type"] = "ImVector_float"
defs["structs"]["ImGuiWindowTempData"][35]["name"] = "TextWrapPos"
defs["structs"]["ImGuiWindowTempData"][35]["type"] = "float"
defs["structs"]["ImGuiWindowTempData"][36] = {}
defs["structs"]["ImGuiWindowTempData"][36]["name"] = "TextWrapPosStack"
defs["structs"]["ImGuiWindowTempData"][36]["name"] = "ItemWidthStack"
defs["structs"]["ImGuiWindowTempData"][36]["template_type"] = "float"
defs["structs"]["ImGuiWindowTempData"][36]["type"] = "ImVector_float"
defs["structs"]["ImGuiWindowTempData"][37] = {}
defs["structs"]["ImGuiWindowTempData"][37]["name"] = "TextWrapPosStack"
defs["structs"]["ImGuiWindowTempData"][37]["template_type"] = "float"
defs["structs"]["ImGuiWindowTempData"][37]["type"] = "ImVector_float"
defs["structs"]["ImRect"] = {}
defs["structs"]["ImRect"][1] = {}
defs["structs"]["ImRect"][1]["name"] = "Min"

View File

@@ -27,3 +27,7 @@
#ifdef FLT_MAX
#pragma message(CIMGUI_DEFSTRING(FLT_MAX))
#endif
#ifdef ImDrawCallback_ResetRenderState
#pragma message(CIMGUI_DEFSTRING(ImDrawCallback_ResetRenderState))
#endif

2
imgui

Submodule imgui updated: 8490a262c4...1db579d458