mirror of
https://github.com/cimgui/cimgui.git
synced 2025-08-14 13:38:31 +01:00
Compare commits
3 Commits
1.90.2dock
...
1.90.4dock
Author | SHA1 | Date | |
---|---|---|---|
![]() |
4486dace2a | ||
![]() |
bd0a584e56 | ||
![]() |
7ea55fbcea |
@@ -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.4 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.
|
||||
|
18
cimgui.cpp
18
cimgui.cpp
@@ -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.4" 19040 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);
|
||||
@@ -4879,9 +4883,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 +5458,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);
|
||||
|
11
cimgui.h
11
cimgui.h
@@ -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.4" 19040 from Dear ImGui https://github.com/ocornut/imgui
|
||||
//with imgui_internal.h api
|
||||
//docking branch
|
||||
#ifndef CIMGUI_INCLUDED
|
||||
@@ -2849,6 +2849,7 @@ struct ImGuiWindowTempData
|
||||
int CurrentTableIdx;
|
||||
ImGuiLayoutType LayoutType;
|
||||
ImGuiLayoutType ParentLayoutType;
|
||||
ImU32 ModalDimBgColor;
|
||||
float ItemWidth;
|
||||
float TextWrapPos;
|
||||
ImVector_float ItemWidthStack;
|
||||
@@ -3229,7 +3230,7 @@ struct ImGuiTableTempData
|
||||
{
|
||||
int TableIndex;
|
||||
float LastTimeActive;
|
||||
float AngledheadersExtraWidth;
|
||||
float AngledHeadersExtraWidth;
|
||||
ImVec2 UserOuterSize;
|
||||
ImDrawListSplitter DrawSplitter;
|
||||
ImRect HostBackupWorkRect;
|
||||
@@ -3440,7 +3441,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 +3733,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);
|
||||
@@ -4543,7 +4545,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 +4688,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);
|
||||
|
@@ -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
@@ -684,7 +684,7 @@
|
||||
"cimguiname": "ImGui_ImplSDL2_InitForD3D",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplSDL2_InitForD3D",
|
||||
"location": "imgui_impl_sdl2:34",
|
||||
"location": "imgui_impl_sdl2:35",
|
||||
"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:36",
|
||||
"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:33",
|
||||
"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:38",
|
||||
"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:37",
|
||||
"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:34",
|
||||
"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:40",
|
||||
"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:41",
|
||||
"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:46",
|
||||
"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:39",
|
||||
"ov_cimguiname": "ImGui_ImplSDL2_Shutdown",
|
||||
"ret": "void",
|
||||
"signature": "()",
|
||||
|
@@ -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:35"
|
||||
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:36"
|
||||
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:33"
|
||||
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:38"
|
||||
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:37"
|
||||
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:34"
|
||||
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:40"
|
||||
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:41"
|
||||
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:46"
|
||||
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:39"
|
||||
defs["ImGui_ImplSDL2_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_Shutdown"
|
||||
defs["ImGui_ImplSDL2_Shutdown"][1]["ret"] = "void"
|
||||
defs["ImGui_ImplSDL2_Shutdown"][1]["signature"] = "()"
|
||||
|
@@ -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*)
|
||||
|
@@ -4760,40 +4760,40 @@
|
||||
},
|
||||
"locations": {
|
||||
"ImBitVector": "imgui_internal:612",
|
||||
"ImColor": "imgui:2663",
|
||||
"ImDrawChannel": "imgui:2753",
|
||||
"ImDrawCmd": "imgui:2712",
|
||||
"ImDrawCmdHeader": "imgui:2745",
|
||||
"ImDrawData": "imgui:2947",
|
||||
"ImColor": "imgui:2664",
|
||||
"ImDrawChannel": "imgui:2754",
|
||||
"ImDrawCmd": "imgui:2713",
|
||||
"ImDrawCmdHeader": "imgui:2746",
|
||||
"ImDrawData": "imgui:2949",
|
||||
"ImDrawDataBuilder": "imgui_internal:798",
|
||||
"ImDrawFlags_": "imgui:2779",
|
||||
"ImDrawList": "imgui:2817",
|
||||
"ImDrawListFlags_": "imgui:2799",
|
||||
"ImDrawFlags_": "imgui:2780",
|
||||
"ImDrawList": "imgui:2818",
|
||||
"ImDrawListFlags_": "imgui:2800",
|
||||
"ImDrawListSharedData": "imgui_internal:775",
|
||||
"ImDrawListSplitter": "imgui:2762",
|
||||
"ImDrawVert": "imgui:2730",
|
||||
"ImFont": "imgui:3170",
|
||||
"ImFontAtlas": "imgui:3066",
|
||||
"ImFontAtlasCustomRect": "imgui:3028",
|
||||
"ImFontAtlasFlags_": "imgui:3041",
|
||||
"ImDrawListSplitter": "imgui:2763",
|
||||
"ImDrawVert": "imgui:2731",
|
||||
"ImFont": "imgui:3172",
|
||||
"ImFontAtlas": "imgui:3068",
|
||||
"ImFontAtlasCustomRect": "imgui:3030",
|
||||
"ImFontAtlasFlags_": "imgui:3043",
|
||||
"ImFontBuilderIO": "imgui_internal:3842",
|
||||
"ImFontConfig": "imgui:2971",
|
||||
"ImFontGlyph": "imgui:3001",
|
||||
"ImFontGlyphRangesBuilder": "imgui:3013",
|
||||
"ImFontConfig": "imgui:2973",
|
||||
"ImFontGlyph": "imgui:3003",
|
||||
"ImFontGlyphRangesBuilder": "imgui:3015",
|
||||
"ImGuiActivateFlags_": "imgui_internal:1550",
|
||||
"ImGuiAxis": "imgui_internal:985",
|
||||
"ImGuiBackendFlags_": "imgui:1546",
|
||||
"ImGuiBackendFlags_": "imgui:1547",
|
||||
"ImGuiButtonFlagsPrivate_": "imgui_internal:879",
|
||||
"ImGuiButtonFlags_": "imgui:1665",
|
||||
"ImGuiChildFlags_": "imgui:1081",
|
||||
"ImGuiCol_": "imgui:1561",
|
||||
"ImGuiColorEditFlags_": "imgui:1678",
|
||||
"ImGuiButtonFlags_": "imgui:1666",
|
||||
"ImGuiChildFlags_": "imgui:1082",
|
||||
"ImGuiCol_": "imgui:1562",
|
||||
"ImGuiColorEditFlags_": "imgui:1679",
|
||||
"ImGuiColorMod": "imgui_internal:999",
|
||||
"ImGuiComboFlagsPrivate_": "imgui_internal:904",
|
||||
"ImGuiComboFlags_": "imgui:1193",
|
||||
"ImGuiComboFlags_": "imgui:1194",
|
||||
"ImGuiComboPreviewData": "imgui_internal:1016",
|
||||
"ImGuiCond_": "imgui:1779",
|
||||
"ImGuiConfigFlags_": "imgui:1521",
|
||||
"ImGuiCond_": "imgui:1780",
|
||||
"ImGuiConfigFlags_": "imgui:1522",
|
||||
"ImGuiContext": "imgui_internal:2105",
|
||||
"ImGuiContextHook": "imgui_internal:2090",
|
||||
"ImGuiContextHookType": "imgui_internal:2088",
|
||||
@@ -4801,26 +4801,26 @@
|
||||
"ImGuiDataTypeInfo": "imgui_internal:1281",
|
||||
"ImGuiDataTypePrivate_": "imgui_internal:1290",
|
||||
"ImGuiDataTypeTempStorage": "imgui_internal:1275",
|
||||
"ImGuiDataType_": "imgui:1334",
|
||||
"ImGuiDataType_": "imgui:1335",
|
||||
"ImGuiDataVarInfo": "imgui_internal:1267",
|
||||
"ImGuiDebugAllocEntry": "imgui_internal:2024",
|
||||
"ImGuiDebugAllocInfo": "imgui_internal:2031",
|
||||
"ImGuiDebugLogFlags_": "imgui_internal:2004",
|
||||
"ImGuiDir_": "imgui:1350",
|
||||
"ImGuiDir_": "imgui:1351",
|
||||
"ImGuiDockContext": "imgui_internal:1875",
|
||||
"ImGuiDockNode": "imgui_internal:1792",
|
||||
"ImGuiDockNodeFlagsPrivate_": "imgui_internal:1747",
|
||||
"ImGuiDockNodeFlags_": "imgui:1293",
|
||||
"ImGuiDockNodeFlags_": "imgui:1294",
|
||||
"ImGuiDockNodeState": "imgui_internal:1783",
|
||||
"ImGuiDragDropFlags_": "imgui:1312",
|
||||
"ImGuiDragDropFlags_": "imgui:1313",
|
||||
"ImGuiFocusRequestFlags_": "imgui_internal:948",
|
||||
"ImGuiFocusScopeData": "imgui_internal:1627",
|
||||
"ImGuiFocusedFlags_": "imgui:1239",
|
||||
"ImGuiFocusedFlags_": "imgui:1240",
|
||||
"ImGuiGroupData": "imgui_internal:1029",
|
||||
"ImGuiHoveredFlagsPrivate_": "imgui_internal:862",
|
||||
"ImGuiHoveredFlags_": "imgui:1253",
|
||||
"ImGuiHoveredFlags_": "imgui:1254",
|
||||
"ImGuiIDStackTool": "imgui_internal:2071",
|
||||
"ImGuiIO": "imgui:2135",
|
||||
"ImGuiIO": "imgui:2136",
|
||||
"ImGuiInputEvent": "imgui_internal:1385",
|
||||
"ImGuiInputEventAppFocused": "imgui_internal:1383",
|
||||
"ImGuiInputEventKey": "imgui_internal:1381",
|
||||
@@ -4832,21 +4832,21 @@
|
||||
"ImGuiInputEventType": "imgui_internal:1352",
|
||||
"ImGuiInputFlags_": "imgui_internal:1450",
|
||||
"ImGuiInputSource": "imgui_internal:1365",
|
||||
"ImGuiInputTextCallbackData": "imgui:2355",
|
||||
"ImGuiInputTextCallbackData": "imgui:2356",
|
||||
"ImGuiInputTextDeactivatedState": "imgui_internal:1065",
|
||||
"ImGuiInputTextFlagsPrivate_": "imgui_internal:870",
|
||||
"ImGuiInputTextFlags_": "imgui:1096",
|
||||
"ImGuiInputTextFlags_": "imgui:1097",
|
||||
"ImGuiInputTextState": "imgui_internal:1075",
|
||||
"ImGuiItemFlags_": "imgui_internal:815",
|
||||
"ImGuiItemStatusFlags_": "imgui_internal:837",
|
||||
"ImGuiKey": "imgui:1379",
|
||||
"ImGuiKeyData": "imgui:2127",
|
||||
"ImGuiKey": "imgui:1380",
|
||||
"ImGuiKeyData": "imgui:2128",
|
||||
"ImGuiKeyOwnerData": "imgui_internal:1438",
|
||||
"ImGuiKeyRoutingData": "imgui_internal:1412",
|
||||
"ImGuiKeyRoutingTable": "imgui_internal:1426",
|
||||
"ImGuiLastItemData": "imgui_internal:1198",
|
||||
"ImGuiLayoutType_": "imgui_internal:969",
|
||||
"ImGuiListClipper": "imgui:2577",
|
||||
"ImGuiListClipper": "imgui:2578",
|
||||
"ImGuiListClipperData": "imgui_internal:1534",
|
||||
"ImGuiListClipperRange": "imgui_internal:1521",
|
||||
"ImGuiLocEntry": "imgui_internal:1993",
|
||||
@@ -4854,9 +4854,9 @@
|
||||
"ImGuiLogType": "imgui_internal:975",
|
||||
"ImGuiMenuColumns": "imgui_internal:1047",
|
||||
"ImGuiMetricsConfig": "imgui_internal:2041",
|
||||
"ImGuiMouseButton_": "imgui:1739",
|
||||
"ImGuiMouseCursor_": "imgui:1749",
|
||||
"ImGuiMouseSource": "imgui:1768",
|
||||
"ImGuiMouseButton_": "imgui:1740",
|
||||
"ImGuiMouseCursor_": "imgui:1750",
|
||||
"ImGuiMouseSource": "imgui:1769",
|
||||
"ImGuiNavHighlightFlags_": "imgui_internal:1575",
|
||||
"ImGuiNavItemData": "imgui_internal:1611",
|
||||
"ImGuiNavLayer": "imgui_internal:1604",
|
||||
@@ -4869,71 +4869,71 @@
|
||||
"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",
|
||||
"ImGuiOnceUponAFrame": "imgui:2454",
|
||||
"ImGuiPayload": "imgui:2419",
|
||||
"ImGuiPlatformIO": "imgui:3342",
|
||||
"ImGuiPlatformImeData": "imgui:3415",
|
||||
"ImGuiPlatformMonitor": "imgui:3405",
|
||||
"ImGuiPlotType": "imgui_internal:992",
|
||||
"ImGuiPopupData": "imgui_internal:1309",
|
||||
"ImGuiPopupFlags_": "imgui:1160",
|
||||
"ImGuiPopupFlags_": "imgui:1161",
|
||||
"ImGuiPopupPositionPolicy": "imgui_internal:1301",
|
||||
"ImGuiPtrOrIndex": "imgui_internal:1254",
|
||||
"ImGuiScrollFlags_": "imgui_internal:1561",
|
||||
"ImGuiSelectableFlagsPrivate_": "imgui_internal:917",
|
||||
"ImGuiSelectableFlags_": "imgui:1178",
|
||||
"ImGuiSelectableFlags_": "imgui:1179",
|
||||
"ImGuiSeparatorFlags_": "imgui_internal:937",
|
||||
"ImGuiSettingsHandler": "imgui_internal:1957",
|
||||
"ImGuiShrinkWidthItem": "imgui_internal:1247",
|
||||
"ImGuiSizeCallbackData": "imgui:2387",
|
||||
"ImGuiSizeCallbackData": "imgui:2388",
|
||||
"ImGuiSliderFlagsPrivate_": "imgui_internal:910",
|
||||
"ImGuiSliderFlags_": "imgui:1724",
|
||||
"ImGuiSortDirection_": "imgui:1361",
|
||||
"ImGuiSliderFlags_": "imgui:1725",
|
||||
"ImGuiSortDirection_": "imgui:1362",
|
||||
"ImGuiStackLevelInfo": "imgui_internal:2059",
|
||||
"ImGuiStackSizes": "imgui_internal:1222",
|
||||
"ImGuiStorage": "imgui:2515",
|
||||
"ImGuiStoragePair": "imgui:2518",
|
||||
"ImGuiStyle": "imgui:2056",
|
||||
"ImGuiStorage": "imgui:2516",
|
||||
"ImGuiStoragePair": "imgui:2519",
|
||||
"ImGuiStyle": "imgui:2057",
|
||||
"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",
|
||||
"ImGuiStyleVar_": "imgui:1629",
|
||||
"ImGuiTabBar": "imgui_internal:2903",
|
||||
"ImGuiTabBarFlagsPrivate_": "imgui_internal:2866",
|
||||
"ImGuiTabBarFlags_": "imgui:1209",
|
||||
"ImGuiTabItem": "imgui_internal:2883",
|
||||
"ImGuiTabItemFlagsPrivate_": "imgui_internal:2874",
|
||||
"ImGuiTabItemFlags_": "imgui:1225",
|
||||
"ImGuiTable": "imgui_internal:3038",
|
||||
"ImGuiTableBgTarget_": "imgui:1921",
|
||||
"ImGuiTableCellData": "imgui_internal:3016",
|
||||
"ImGuiTableColumn": "imgui_internal:2957",
|
||||
"ImGuiTableColumnFlags_": "imgui:1868",
|
||||
"ImGuiTableColumnSettings": "imgui_internal:3183",
|
||||
"ImGuiTableColumnSortSpecs": "imgui:1943",
|
||||
"ImGuiTableFlags_": "imgui:1815",
|
||||
"ImGuiTableInstanceData": "imgui_internal:3024",
|
||||
"ImGuiTableRowFlags_": "imgui:1906",
|
||||
"ImGuiTableSettings": "imgui_internal:3207",
|
||||
"ImGuiTableSortSpecs": "imgui:1933",
|
||||
"ImGuiTableTempData": "imgui_internal:3161",
|
||||
"ImGuiTextBuffer": "imgui:2489",
|
||||
"ImGuiTextFilter": "imgui:2462",
|
||||
"ImGuiTextFlags_": "imgui_internal:955",
|
||||
"ImGuiTextIndex": "imgui_internal:732",
|
||||
"ImGuiTextRange": "imgui:2471",
|
||||
"ImGuiTextRange": "imgui:2472",
|
||||
"ImGuiTooltipFlags_": "imgui_internal:961",
|
||||
"ImGuiTreeNodeFlagsPrivate_": "imgui_internal:931",
|
||||
"ImGuiTreeNodeFlags_": "imgui:1126",
|
||||
"ImGuiTreeNodeFlags_": "imgui:1127",
|
||||
"ImGuiTypingSelectFlags_": "imgui_internal:1638",
|
||||
"ImGuiTypingSelectRequest": "imgui_internal:1646",
|
||||
"ImGuiTypingSelectState": "imgui_internal:1657",
|
||||
"ImGuiViewport": "imgui:3256",
|
||||
"ImGuiViewportFlags_": "imgui:3228",
|
||||
"ImGuiViewport": "imgui:3258",
|
||||
"ImGuiViewportFlags_": "imgui:3230",
|
||||
"ImGuiViewportP": "imgui_internal:1892",
|
||||
"ImGuiWindow": "imgui_internal:2714",
|
||||
"ImGuiWindowClass": "imgui:2402",
|
||||
"ImGuiWindow": "imgui_internal:2715",
|
||||
"ImGuiWindowClass": "imgui:2403",
|
||||
"ImGuiWindowDockStyle": "imgui_internal:1870",
|
||||
"ImGuiWindowDockStyleCol": "imgui_internal:1859",
|
||||
"ImGuiWindowFlags_": "imgui:1030",
|
||||
"ImGuiWindowFlags_": "imgui:1031",
|
||||
"ImGuiWindowSettings": "imgui_internal:1938",
|
||||
"ImGuiWindowStackData": "imgui_internal:1240",
|
||||
"ImGuiWindowTempData": "imgui_internal:2665",
|
||||
@@ -9956,7 +9956,7 @@
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "AngledheadersExtraWidth",
|
||||
"name": "AngledHeadersExtraWidth",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
@@ -10997,6 +10997,10 @@
|
||||
"name": "ParentLayoutType",
|
||||
"type": "ImGuiLayoutType"
|
||||
},
|
||||
{
|
||||
"name": "ModalDimBgColor",
|
||||
"type": "ImU32"
|
||||
},
|
||||
{
|
||||
"name": "ItemWidth",
|
||||
"type": "float"
|
||||
|
@@ -3762,40 +3762,40 @@ 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"]["ImColor"] = "imgui:2664"
|
||||
defs["locations"]["ImDrawChannel"] = "imgui:2754"
|
||||
defs["locations"]["ImDrawCmd"] = "imgui:2713"
|
||||
defs["locations"]["ImDrawCmdHeader"] = "imgui:2746"
|
||||
defs["locations"]["ImDrawData"] = "imgui:2949"
|
||||
defs["locations"]["ImDrawDataBuilder"] = "imgui_internal:798"
|
||||
defs["locations"]["ImDrawFlags_"] = "imgui:2779"
|
||||
defs["locations"]["ImDrawList"] = "imgui:2817"
|
||||
defs["locations"]["ImDrawListFlags_"] = "imgui:2799"
|
||||
defs["locations"]["ImDrawFlags_"] = "imgui:2780"
|
||||
defs["locations"]["ImDrawList"] = "imgui:2818"
|
||||
defs["locations"]["ImDrawListFlags_"] = "imgui:2800"
|
||||
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"]["ImDrawListSplitter"] = "imgui:2763"
|
||||
defs["locations"]["ImDrawVert"] = "imgui:2731"
|
||||
defs["locations"]["ImFont"] = "imgui:3172"
|
||||
defs["locations"]["ImFontAtlas"] = "imgui:3068"
|
||||
defs["locations"]["ImFontAtlasCustomRect"] = "imgui:3030"
|
||||
defs["locations"]["ImFontAtlasFlags_"] = "imgui:3043"
|
||||
defs["locations"]["ImFontBuilderIO"] = "imgui_internal:3842"
|
||||
defs["locations"]["ImFontConfig"] = "imgui:2971"
|
||||
defs["locations"]["ImFontGlyph"] = "imgui:3001"
|
||||
defs["locations"]["ImFontGlyphRangesBuilder"] = "imgui:3013"
|
||||
defs["locations"]["ImFontConfig"] = "imgui:2973"
|
||||
defs["locations"]["ImFontGlyph"] = "imgui:3003"
|
||||
defs["locations"]["ImFontGlyphRangesBuilder"] = "imgui:3015"
|
||||
defs["locations"]["ImGuiActivateFlags_"] = "imgui_internal:1550"
|
||||
defs["locations"]["ImGuiAxis"] = "imgui_internal:985"
|
||||
defs["locations"]["ImGuiBackendFlags_"] = "imgui:1546"
|
||||
defs["locations"]["ImGuiBackendFlags_"] = "imgui:1547"
|
||||
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"]["ImGuiButtonFlags_"] = "imgui:1666"
|
||||
defs["locations"]["ImGuiChildFlags_"] = "imgui:1082"
|
||||
defs["locations"]["ImGuiCol_"] = "imgui:1562"
|
||||
defs["locations"]["ImGuiColorEditFlags_"] = "imgui:1679"
|
||||
defs["locations"]["ImGuiColorMod"] = "imgui_internal:999"
|
||||
defs["locations"]["ImGuiComboFlagsPrivate_"] = "imgui_internal:904"
|
||||
defs["locations"]["ImGuiComboFlags_"] = "imgui:1193"
|
||||
defs["locations"]["ImGuiComboFlags_"] = "imgui:1194"
|
||||
defs["locations"]["ImGuiComboPreviewData"] = "imgui_internal:1016"
|
||||
defs["locations"]["ImGuiCond_"] = "imgui:1779"
|
||||
defs["locations"]["ImGuiConfigFlags_"] = "imgui:1521"
|
||||
defs["locations"]["ImGuiCond_"] = "imgui:1780"
|
||||
defs["locations"]["ImGuiConfigFlags_"] = "imgui:1522"
|
||||
defs["locations"]["ImGuiContext"] = "imgui_internal:2105"
|
||||
defs["locations"]["ImGuiContextHook"] = "imgui_internal:2090"
|
||||
defs["locations"]["ImGuiContextHookType"] = "imgui_internal:2088"
|
||||
@@ -3803,26 +3803,26 @@ 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"]["ImGuiDataType_"] = "imgui:1335"
|
||||
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"]["ImGuiDir_"] = "imgui:1351"
|
||||
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"]["ImGuiDockNodeFlags_"] = "imgui:1294"
|
||||
defs["locations"]["ImGuiDockNodeState"] = "imgui_internal:1783"
|
||||
defs["locations"]["ImGuiDragDropFlags_"] = "imgui:1312"
|
||||
defs["locations"]["ImGuiDragDropFlags_"] = "imgui:1313"
|
||||
defs["locations"]["ImGuiFocusRequestFlags_"] = "imgui_internal:948"
|
||||
defs["locations"]["ImGuiFocusScopeData"] = "imgui_internal:1627"
|
||||
defs["locations"]["ImGuiFocusedFlags_"] = "imgui:1239"
|
||||
defs["locations"]["ImGuiFocusedFlags_"] = "imgui:1240"
|
||||
defs["locations"]["ImGuiGroupData"] = "imgui_internal:1029"
|
||||
defs["locations"]["ImGuiHoveredFlagsPrivate_"] = "imgui_internal:862"
|
||||
defs["locations"]["ImGuiHoveredFlags_"] = "imgui:1253"
|
||||
defs["locations"]["ImGuiHoveredFlags_"] = "imgui:1254"
|
||||
defs["locations"]["ImGuiIDStackTool"] = "imgui_internal:2071"
|
||||
defs["locations"]["ImGuiIO"] = "imgui:2135"
|
||||
defs["locations"]["ImGuiIO"] = "imgui:2136"
|
||||
defs["locations"]["ImGuiInputEvent"] = "imgui_internal:1385"
|
||||
defs["locations"]["ImGuiInputEventAppFocused"] = "imgui_internal:1383"
|
||||
defs["locations"]["ImGuiInputEventKey"] = "imgui_internal:1381"
|
||||
@@ -3834,21 +3834,21 @@ 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"]["ImGuiInputTextCallbackData"] = "imgui:2356"
|
||||
defs["locations"]["ImGuiInputTextDeactivatedState"] = "imgui_internal:1065"
|
||||
defs["locations"]["ImGuiInputTextFlagsPrivate_"] = "imgui_internal:870"
|
||||
defs["locations"]["ImGuiInputTextFlags_"] = "imgui:1096"
|
||||
defs["locations"]["ImGuiInputTextFlags_"] = "imgui:1097"
|
||||
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"]["ImGuiKey"] = "imgui:1380"
|
||||
defs["locations"]["ImGuiKeyData"] = "imgui:2128"
|
||||
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"]["ImGuiListClipper"] = "imgui:2578"
|
||||
defs["locations"]["ImGuiListClipperData"] = "imgui_internal:1534"
|
||||
defs["locations"]["ImGuiListClipperRange"] = "imgui_internal:1521"
|
||||
defs["locations"]["ImGuiLocEntry"] = "imgui_internal:1993"
|
||||
@@ -3856,9 +3856,9 @@ 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"]["ImGuiMouseButton_"] = "imgui:1740"
|
||||
defs["locations"]["ImGuiMouseCursor_"] = "imgui:1750"
|
||||
defs["locations"]["ImGuiMouseSource"] = "imgui:1769"
|
||||
defs["locations"]["ImGuiNavHighlightFlags_"] = "imgui_internal:1575"
|
||||
defs["locations"]["ImGuiNavItemData"] = "imgui_internal:1611"
|
||||
defs["locations"]["ImGuiNavLayer"] = "imgui_internal:1604"
|
||||
@@ -3871,71 +3871,71 @@ 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"]["ImGuiOnceUponAFrame"] = "imgui:2454"
|
||||
defs["locations"]["ImGuiPayload"] = "imgui:2419"
|
||||
defs["locations"]["ImGuiPlatformIO"] = "imgui:3342"
|
||||
defs["locations"]["ImGuiPlatformImeData"] = "imgui:3415"
|
||||
defs["locations"]["ImGuiPlatformMonitor"] = "imgui:3405"
|
||||
defs["locations"]["ImGuiPlotType"] = "imgui_internal:992"
|
||||
defs["locations"]["ImGuiPopupData"] = "imgui_internal:1309"
|
||||
defs["locations"]["ImGuiPopupFlags_"] = "imgui:1160"
|
||||
defs["locations"]["ImGuiPopupFlags_"] = "imgui:1161"
|
||||
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"]["ImGuiSelectableFlags_"] = "imgui:1179"
|
||||
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"]["ImGuiSizeCallbackData"] = "imgui:2388"
|
||||
defs["locations"]["ImGuiSliderFlagsPrivate_"] = "imgui_internal:910"
|
||||
defs["locations"]["ImGuiSliderFlags_"] = "imgui:1724"
|
||||
defs["locations"]["ImGuiSortDirection_"] = "imgui:1361"
|
||||
defs["locations"]["ImGuiSliderFlags_"] = "imgui:1725"
|
||||
defs["locations"]["ImGuiSortDirection_"] = "imgui:1362"
|
||||
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"]["ImGuiStorage"] = "imgui:2516"
|
||||
defs["locations"]["ImGuiStoragePair"] = "imgui:2519"
|
||||
defs["locations"]["ImGuiStyle"] = "imgui:2057"
|
||||
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"]["ImGuiStyleVar_"] = "imgui:1629"
|
||||
defs["locations"]["ImGuiTabBar"] = "imgui_internal:2903"
|
||||
defs["locations"]["ImGuiTabBarFlagsPrivate_"] = "imgui_internal:2866"
|
||||
defs["locations"]["ImGuiTabBarFlags_"] = "imgui:1209"
|
||||
defs["locations"]["ImGuiTabItem"] = "imgui_internal:2883"
|
||||
defs["locations"]["ImGuiTabItemFlagsPrivate_"] = "imgui_internal:2874"
|
||||
defs["locations"]["ImGuiTabItemFlags_"] = "imgui:1225"
|
||||
defs["locations"]["ImGuiTable"] = "imgui_internal:3038"
|
||||
defs["locations"]["ImGuiTableBgTarget_"] = "imgui:1921"
|
||||
defs["locations"]["ImGuiTableCellData"] = "imgui_internal:3016"
|
||||
defs["locations"]["ImGuiTableColumn"] = "imgui_internal:2957"
|
||||
defs["locations"]["ImGuiTableColumnFlags_"] = "imgui:1868"
|
||||
defs["locations"]["ImGuiTableColumnSettings"] = "imgui_internal:3183"
|
||||
defs["locations"]["ImGuiTableColumnSortSpecs"] = "imgui:1943"
|
||||
defs["locations"]["ImGuiTableFlags_"] = "imgui:1815"
|
||||
defs["locations"]["ImGuiTableInstanceData"] = "imgui_internal:3024"
|
||||
defs["locations"]["ImGuiTableRowFlags_"] = "imgui:1906"
|
||||
defs["locations"]["ImGuiTableSettings"] = "imgui_internal:3207"
|
||||
defs["locations"]["ImGuiTableSortSpecs"] = "imgui:1933"
|
||||
defs["locations"]["ImGuiTableTempData"] = "imgui_internal:3161"
|
||||
defs["locations"]["ImGuiTextBuffer"] = "imgui:2489"
|
||||
defs["locations"]["ImGuiTextFilter"] = "imgui:2462"
|
||||
defs["locations"]["ImGuiTextFlags_"] = "imgui_internal:955"
|
||||
defs["locations"]["ImGuiTextIndex"] = "imgui_internal:732"
|
||||
defs["locations"]["ImGuiTextRange"] = "imgui:2471"
|
||||
defs["locations"]["ImGuiTextRange"] = "imgui:2472"
|
||||
defs["locations"]["ImGuiTooltipFlags_"] = "imgui_internal:961"
|
||||
defs["locations"]["ImGuiTreeNodeFlagsPrivate_"] = "imgui_internal:931"
|
||||
defs["locations"]["ImGuiTreeNodeFlags_"] = "imgui:1126"
|
||||
defs["locations"]["ImGuiTreeNodeFlags_"] = "imgui:1127"
|
||||
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"]["ImGuiViewport"] = "imgui:3258"
|
||||
defs["locations"]["ImGuiViewportFlags_"] = "imgui:3230"
|
||||
defs["locations"]["ImGuiViewportP"] = "imgui_internal:1892"
|
||||
defs["locations"]["ImGuiWindow"] = "imgui_internal:2714"
|
||||
defs["locations"]["ImGuiWindowClass"] = "imgui:2402"
|
||||
defs["locations"]["ImGuiWindow"] = "imgui_internal:2715"
|
||||
defs["locations"]["ImGuiWindowClass"] = "imgui:2403"
|
||||
defs["locations"]["ImGuiWindowDockStyle"] = "imgui_internal:1870"
|
||||
defs["locations"]["ImGuiWindowDockStyleCol"] = "imgui_internal:1859"
|
||||
defs["locations"]["ImGuiWindowFlags_"] = "imgui:1030"
|
||||
defs["locations"]["ImGuiWindowFlags_"] = "imgui:1031"
|
||||
defs["locations"]["ImGuiWindowSettings"] = "imgui_internal:1938"
|
||||
defs["locations"]["ImGuiWindowStackData"] = "imgui_internal:1240"
|
||||
defs["locations"]["ImGuiWindowTempData"] = "imgui_internal:2665"
|
||||
@@ -7697,7 +7697,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 +8477,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"
|
||||
|
2
imgui
2
imgui
Submodule imgui updated: 8490a262c4...c6aa051629
Reference in New Issue
Block a user