From 0d864f94bdf37bf79394db446b2154a01417f622 Mon Sep 17 00:00:00 2001 From: sonoro1234 Date: Tue, 12 Feb 2019 12:16:21 +0100 Subject: [PATCH 01/12] ImVector functions inclusion --- cimgui.cpp | 116 +++ cimgui.h | 34 +- generator/cpp2ffi.lua | 1 + generator/generator.bat | 4 +- generator/generator.lua | 6 +- generator/generator2.lua | 2 + generator/output/cimgui.cpp | 116 +++ generator/output/cimgui.h | 34 +- generator/output/definitions.json | 928 ++++++++++++++++++++---- generator/output/definitions.lua | 817 +++++++++++++++++---- generator/output/overloads.txt | 44 +- generator/output/structs_and_enums.json | 27 +- generator/output/structs_and_enums.lua | 18 + 13 files changed, 1846 insertions(+), 301 deletions(-) diff --git a/cimgui.cpp b/cimgui.cpp index 17b56d0..473a04e 100644 --- a/cimgui.cpp +++ b/cimgui.cpp @@ -1427,6 +1427,122 @@ CIMGUI_API void igMemFree(void* ptr) { return ImGui::MemFree(ptr); } +CIMGUI_API ImVector* ImVector_ImVector(void) +{ + return IM_NEW(ImVector)(); +} +CIMGUI_API void ImVector_destroy(ImVector* self) +{ + IM_DELETE(self); +} +CIMGUI_API bool ImVector_empty(ImVector* self) +{ + return self->empty(); +} +CIMGUI_API int ImVector_size(ImVector* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_size_in_bytes(ImVector* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_capacity(ImVector* self) +{ + return self->capacity(); +} +CIMGUI_API void ImVector_clear(ImVector* self) +{ + return self->clear(); +} +CIMGUI_API const T* ImVector_begin(ImVector* self) +{ + return self->begin(); +} +CIMGUI_API const T* ImVector_begin(ImVector* self) +{ + return self->begin(); +} +CIMGUI_API const T* ImVector_end(ImVector* self) +{ + return self->end(); +} +CIMGUI_API const T* ImVector_end(ImVector* self) +{ + return self->end(); +} +CIMGUI_API const T* ImVector_front(ImVector* self) +{ + return &self->front(); +} +CIMGUI_API const T* ImVector_front(ImVector* self) +{ + return &self->front(); +} +CIMGUI_API const T* ImVector_back(ImVector* self) +{ + return &self->back(); +} +CIMGUI_API const T* ImVector_back(ImVector* self) +{ + return &self->back(); +} +CIMGUI_API void ImVector_swap(ImVector* self,ImVector_T rhs) +{ + return self->swap(rhs); +} +CIMGUI_API int ImVector__grow_capacity(ImVector* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API void ImVector_resize(ImVector* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_resizeT(ImVector* self,int new_size,const T v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_reserve(ImVector* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_push_back(ImVector* self,const T v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_pop_back(ImVector* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_push_front(ImVector* self,const T v) +{ + return self->push_front(v); +} +CIMGUI_API T* ImVector_erase(ImVector* self,const T* it) +{ + return self->erase(it); +} +CIMGUI_API T* ImVector_eraseTPtr(ImVector* self,const T* it,const T* it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API T* ImVector_erase_unsorted(ImVector* self,const T* it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API T* ImVector_insert(ImVector* self,const T* it,const T v) +{ + return self->insert(it,v); +} +CIMGUI_API bool ImVector_contains(ImVector* self,const T v) +{ + return self->contains(v); +} +CIMGUI_API int ImVector_index_from_ptr(ImVector* self,const T* it) +{ + return self->index_from_ptr(it); +} CIMGUI_API ImGuiStyle* ImGuiStyle_ImGuiStyle(void) { return IM_NEW(ImGuiStyle)(); diff --git a/cimgui.h b/cimgui.h index f21a9bb..7128493 100644 --- a/cimgui.h +++ b/cimgui.h @@ -502,12 +502,14 @@ enum ImGuiCond_ ImGuiCond_FirstUseEver = 1 << 2, ImGuiCond_Appearing = 1 << 3 }; +struct ImVector typedef struct ImVector{int Size;int Capacity;void* Data;} ImVector; typedef struct ImVector_float {int Size;int Capacity;float* Data;} ImVector_float; typedef struct ImVector_ImWchar {int Size;int Capacity;ImWchar* Data;} ImVector_ImWchar; typedef struct ImVector_ImFontConfig {int Size;int Capacity;ImFontConfig* Data;} ImVector_ImFontConfig; typedef struct ImVector_ImFontGlyph {int Size;int Capacity;ImFontGlyph* Data;} ImVector_ImFontGlyph; typedef struct ImVector_TextRange {int Size;int Capacity;TextRange* Data;} ImVector_TextRange; +typedef struct ImVector_T {int Size;int Capacity;T* Data;} ImVector_T; typedef struct ImVector_CustomRect {int Size;int Capacity;CustomRect* Data;} ImVector_CustomRect; typedef struct ImVector_ImDrawChannel {int Size;int Capacity;ImDrawChannel* Data;} ImVector_ImDrawChannel; typedef struct ImVector_char {int Size;int Capacity;char* Data;} ImVector_char; @@ -888,8 +890,9 @@ inline ImColor_Simple ImColorToSimple(ImColor col) typedef ImFontAtlas::CustomRect CustomRect; typedef ImGuiTextFilter::TextRange TextRange; typedef ImGuiStorage::Pair Pair; -typedef ImVector ImVector_TextRange; +typedef ImVector ImVector_T; typedef ImVector ImVector_ImWchar; +typedef ImVector ImVector_TextRange; #endif //CIMGUI_DEFINE_ENUMS_AND_STRUCTS CIMGUI_API ImVec2* ImVec2_ImVec2(void); CIMGUI_API void ImVec2_destroy(ImVec2* self); @@ -1237,6 +1240,35 @@ CIMGUI_API const char* igSaveIniSettingsToMemory(size_t* out_ini_size); CIMGUI_API void igSetAllocatorFunctions(void*(*alloc_func)(size_t sz,void* user_data),void(*free_func)(void* ptr,void* user_data),void* user_data); CIMGUI_API void* igMemAlloc(size_t size); CIMGUI_API void igMemFree(void* ptr); +CIMGUI_API ImVector* ImVector_ImVector(void); +CIMGUI_API void ImVector_destroy(ImVector* self); +CIMGUI_API bool ImVector_empty(ImVector* self); +CIMGUI_API int ImVector_size(ImVector* self); +CIMGUI_API int ImVector_size_in_bytes(ImVector* self); +CIMGUI_API int ImVector_capacity(ImVector* self); +CIMGUI_API void ImVector_clear(ImVector* self); +CIMGUI_API const T* ImVector_begin(ImVector* self); +CIMGUI_API const T* ImVector_begin(ImVector* self); +CIMGUI_API const T* ImVector_end(ImVector* self); +CIMGUI_API const T* ImVector_end(ImVector* self); +CIMGUI_API const T* ImVector_front(ImVector* self); +CIMGUI_API const T* ImVector_front(ImVector* self); +CIMGUI_API const T* ImVector_back(ImVector* self); +CIMGUI_API const T* ImVector_back(ImVector* self); +CIMGUI_API void ImVector_swap(ImVector* self,ImVector_T rhs); +CIMGUI_API int ImVector__grow_capacity(ImVector* self,int sz); +CIMGUI_API void ImVector_resize(ImVector* self,int new_size); +CIMGUI_API void ImVector_resizeT(ImVector* self,int new_size,const T v); +CIMGUI_API void ImVector_reserve(ImVector* self,int new_capacity); +CIMGUI_API void ImVector_push_back(ImVector* self,const T v); +CIMGUI_API void ImVector_pop_back(ImVector* self); +CIMGUI_API void ImVector_push_front(ImVector* self,const T v); +CIMGUI_API T* ImVector_erase(ImVector* self,const T* it); +CIMGUI_API T* ImVector_eraseTPtr(ImVector* self,const T* it,const T* it_last); +CIMGUI_API T* ImVector_erase_unsorted(ImVector* self,const T* it); +CIMGUI_API T* ImVector_insert(ImVector* self,const T* it,const T v); +CIMGUI_API bool ImVector_contains(ImVector* self,const T v); +CIMGUI_API int ImVector_index_from_ptr(ImVector* self,const T* it); CIMGUI_API ImGuiStyle* ImGuiStyle_ImGuiStyle(void); CIMGUI_API void ImGuiStyle_destroy(ImGuiStyle* self); CIMGUI_API void ImGuiStyle_ScaleAllSizes(ImGuiStyle* self,float scale_factor); diff --git a/generator/cpp2ffi.lua b/generator/cpp2ffi.lua index 144667d..b8653dd 100644 --- a/generator/cpp2ffi.lua +++ b/generator/cpp2ffi.lua @@ -660,6 +660,7 @@ function M.Parser() elseif it.re_name == "struct_re" then local nsp = it.item:match("%b{}"):sub(2,-2) local stname = it.item:match("struct%s+(%S+)") + --if stname=="ImVector" then print"ImVector" end local nspparr,itemsnsp = parseItems(nsp) for insp,itnsp in ipairs(nspparr) do if itnsp.re_name == "function_re" or itnsp.re_name == "functionD_re" then diff --git a/generator/generator.bat b/generator/generator.bat index ec55bba..a17146c 100644 --- a/generator/generator.bat +++ b/generator/generator.bat @@ -10,13 +10,13 @@ :: impl_definitions.lua for implementation function definitions :: set your PATH if necessary for LuaJIT or Lua5.1 or luajit with: (for example) -:: set PATH=%PATH%;C:\luaGL;C:\mingw32\bin; +set PATH=%PATH%;C:\luaGL;C:\mingw32\bin; :: set PATH=%PATH%;C:\luaGL;C:\i686-7.2.0-release-posix-dwarf-rt_v5-rev1\mingw32\bin; :: set PATH=%PATH%;C:\luaGL\sources\luajit-master\luajit-master\bin\mingw32;C:\mingw32\bin; ::process files :: arg[1] compiler name gcc, clang, cl or nocompiler :: arg[2..n] name of implementations to generate -luajit ./generator.lua clang glfw opengl3 opengl2 sdl +luajit ./generator.lua gcc glfw opengl3 opengl2 sdl ::leave console open cmd /k diff --git a/generator/generator.lua b/generator/generator.lua index 89927fa..1e2da1a 100644 --- a/generator/generator.lua +++ b/generator/generator.lua @@ -602,7 +602,7 @@ local function func_parser() and not line:match(functype_re) then --if line:match(functype_re) then print("ft",line) end - if stname~="ImVector" + if stname~="ImVectorNO" --and stname~="GlyphRangesBuilder" and stname~="CustomRect" and stname~="TextRange" and stname~="Pair" and not line:match("operator") then @@ -993,7 +993,7 @@ local function gen_structs_and_enums_table(cdefs) end if line=="" or line:match("^{") then break - elseif structnames[#structnames] ~="ImVector" then --avoid ImVector + elseif structnames[#structnames] ~="ImVectorNO" then --avoid ImVector --local functype_re = "^%s*[%w%s%*]+(%(%*)[%w_]+(%)%([^%(%)]*%))" local functype_re = "^%s*[%w%s%*]+%(%*[%w_]+%)%([^%(%)]*%)" local functype_reex = "^(%s*[%w%s%*]+%(%*)([%w_]+)(%)%([^%(%)]*%))" @@ -1111,7 +1111,7 @@ local function gen_structs_and_enums(cdefs,templates) local structbegin = line:match(struct_re) if structbegin then structnames[#structnames + 1] = structbegin - if #structnames < 2 and structbegin~= "ImVector" then --not inner and not ImVector + if #structnames < 2 and structbegin~= "ImVectorNO" then --not inner and not ImVector table.insert(outtab,linecom.."\n") break end diff --git a/generator/generator2.lua b/generator/generator2.lua index 444a0c9..67ef811 100644 --- a/generator/generator2.lua +++ b/generator/generator2.lua @@ -230,6 +230,7 @@ local function func_header_generate(FP) table.insert(outtab,"#endif //CIMGUI_DEFINE_ENUMS_AND_STRUCTS\n") for _,t in ipairs(FP.funcdefs) do + if t.stname=="ImVector" then print(t.cimguiname) end if t.cimguiname then local cimf = FP.defsT[t.cimguiname] local def = cimf[t.signature] @@ -244,6 +245,7 @@ local function func_header_generate(FP) elseif def.destructor then table.insert(outtab,"CIMGUI_API void "..def.ov_cimguiname..def.args..";"..addcoment.."\n") else --not constructor + if t.stname=="ImVector" then print("2",t.cimguiname) end if def.stname == "" then --ImGui namespace or top level table.insert(outtab,"CIMGUI_API "..def.ret.." ".. def.ov_cimguiname ..(empty and "(void)" or def.args)..";"..addcoment.."\n") else diff --git a/generator/output/cimgui.cpp b/generator/output/cimgui.cpp index 17b56d0..473a04e 100644 --- a/generator/output/cimgui.cpp +++ b/generator/output/cimgui.cpp @@ -1427,6 +1427,122 @@ CIMGUI_API void igMemFree(void* ptr) { return ImGui::MemFree(ptr); } +CIMGUI_API ImVector* ImVector_ImVector(void) +{ + return IM_NEW(ImVector)(); +} +CIMGUI_API void ImVector_destroy(ImVector* self) +{ + IM_DELETE(self); +} +CIMGUI_API bool ImVector_empty(ImVector* self) +{ + return self->empty(); +} +CIMGUI_API int ImVector_size(ImVector* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_size_in_bytes(ImVector* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_capacity(ImVector* self) +{ + return self->capacity(); +} +CIMGUI_API void ImVector_clear(ImVector* self) +{ + return self->clear(); +} +CIMGUI_API const T* ImVector_begin(ImVector* self) +{ + return self->begin(); +} +CIMGUI_API const T* ImVector_begin(ImVector* self) +{ + return self->begin(); +} +CIMGUI_API const T* ImVector_end(ImVector* self) +{ + return self->end(); +} +CIMGUI_API const T* ImVector_end(ImVector* self) +{ + return self->end(); +} +CIMGUI_API const T* ImVector_front(ImVector* self) +{ + return &self->front(); +} +CIMGUI_API const T* ImVector_front(ImVector* self) +{ + return &self->front(); +} +CIMGUI_API const T* ImVector_back(ImVector* self) +{ + return &self->back(); +} +CIMGUI_API const T* ImVector_back(ImVector* self) +{ + return &self->back(); +} +CIMGUI_API void ImVector_swap(ImVector* self,ImVector_T rhs) +{ + return self->swap(rhs); +} +CIMGUI_API int ImVector__grow_capacity(ImVector* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API void ImVector_resize(ImVector* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_resizeT(ImVector* self,int new_size,const T v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_reserve(ImVector* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_push_back(ImVector* self,const T v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_pop_back(ImVector* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_push_front(ImVector* self,const T v) +{ + return self->push_front(v); +} +CIMGUI_API T* ImVector_erase(ImVector* self,const T* it) +{ + return self->erase(it); +} +CIMGUI_API T* ImVector_eraseTPtr(ImVector* self,const T* it,const T* it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API T* ImVector_erase_unsorted(ImVector* self,const T* it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API T* ImVector_insert(ImVector* self,const T* it,const T v) +{ + return self->insert(it,v); +} +CIMGUI_API bool ImVector_contains(ImVector* self,const T v) +{ + return self->contains(v); +} +CIMGUI_API int ImVector_index_from_ptr(ImVector* self,const T* it) +{ + return self->index_from_ptr(it); +} CIMGUI_API ImGuiStyle* ImGuiStyle_ImGuiStyle(void) { return IM_NEW(ImGuiStyle)(); diff --git a/generator/output/cimgui.h b/generator/output/cimgui.h index f21a9bb..7128493 100644 --- a/generator/output/cimgui.h +++ b/generator/output/cimgui.h @@ -502,12 +502,14 @@ enum ImGuiCond_ ImGuiCond_FirstUseEver = 1 << 2, ImGuiCond_Appearing = 1 << 3 }; +struct ImVector typedef struct ImVector{int Size;int Capacity;void* Data;} ImVector; typedef struct ImVector_float {int Size;int Capacity;float* Data;} ImVector_float; typedef struct ImVector_ImWchar {int Size;int Capacity;ImWchar* Data;} ImVector_ImWchar; typedef struct ImVector_ImFontConfig {int Size;int Capacity;ImFontConfig* Data;} ImVector_ImFontConfig; typedef struct ImVector_ImFontGlyph {int Size;int Capacity;ImFontGlyph* Data;} ImVector_ImFontGlyph; typedef struct ImVector_TextRange {int Size;int Capacity;TextRange* Data;} ImVector_TextRange; +typedef struct ImVector_T {int Size;int Capacity;T* Data;} ImVector_T; typedef struct ImVector_CustomRect {int Size;int Capacity;CustomRect* Data;} ImVector_CustomRect; typedef struct ImVector_ImDrawChannel {int Size;int Capacity;ImDrawChannel* Data;} ImVector_ImDrawChannel; typedef struct ImVector_char {int Size;int Capacity;char* Data;} ImVector_char; @@ -888,8 +890,9 @@ inline ImColor_Simple ImColorToSimple(ImColor col) typedef ImFontAtlas::CustomRect CustomRect; typedef ImGuiTextFilter::TextRange TextRange; typedef ImGuiStorage::Pair Pair; -typedef ImVector ImVector_TextRange; +typedef ImVector ImVector_T; typedef ImVector ImVector_ImWchar; +typedef ImVector ImVector_TextRange; #endif //CIMGUI_DEFINE_ENUMS_AND_STRUCTS CIMGUI_API ImVec2* ImVec2_ImVec2(void); CIMGUI_API void ImVec2_destroy(ImVec2* self); @@ -1237,6 +1240,35 @@ CIMGUI_API const char* igSaveIniSettingsToMemory(size_t* out_ini_size); CIMGUI_API void igSetAllocatorFunctions(void*(*alloc_func)(size_t sz,void* user_data),void(*free_func)(void* ptr,void* user_data),void* user_data); CIMGUI_API void* igMemAlloc(size_t size); CIMGUI_API void igMemFree(void* ptr); +CIMGUI_API ImVector* ImVector_ImVector(void); +CIMGUI_API void ImVector_destroy(ImVector* self); +CIMGUI_API bool ImVector_empty(ImVector* self); +CIMGUI_API int ImVector_size(ImVector* self); +CIMGUI_API int ImVector_size_in_bytes(ImVector* self); +CIMGUI_API int ImVector_capacity(ImVector* self); +CIMGUI_API void ImVector_clear(ImVector* self); +CIMGUI_API const T* ImVector_begin(ImVector* self); +CIMGUI_API const T* ImVector_begin(ImVector* self); +CIMGUI_API const T* ImVector_end(ImVector* self); +CIMGUI_API const T* ImVector_end(ImVector* self); +CIMGUI_API const T* ImVector_front(ImVector* self); +CIMGUI_API const T* ImVector_front(ImVector* self); +CIMGUI_API const T* ImVector_back(ImVector* self); +CIMGUI_API const T* ImVector_back(ImVector* self); +CIMGUI_API void ImVector_swap(ImVector* self,ImVector_T rhs); +CIMGUI_API int ImVector__grow_capacity(ImVector* self,int sz); +CIMGUI_API void ImVector_resize(ImVector* self,int new_size); +CIMGUI_API void ImVector_resizeT(ImVector* self,int new_size,const T v); +CIMGUI_API void ImVector_reserve(ImVector* self,int new_capacity); +CIMGUI_API void ImVector_push_back(ImVector* self,const T v); +CIMGUI_API void ImVector_pop_back(ImVector* self); +CIMGUI_API void ImVector_push_front(ImVector* self,const T v); +CIMGUI_API T* ImVector_erase(ImVector* self,const T* it); +CIMGUI_API T* ImVector_eraseTPtr(ImVector* self,const T* it,const T* it_last); +CIMGUI_API T* ImVector_erase_unsorted(ImVector* self,const T* it); +CIMGUI_API T* ImVector_insert(ImVector* self,const T* it,const T v); +CIMGUI_API bool ImVector_contains(ImVector* self,const T v); +CIMGUI_API int ImVector_index_from_ptr(ImVector* self,const T* it); CIMGUI_API ImGuiStyle* ImGuiStyle_ImGuiStyle(void); CIMGUI_API void ImGuiStyle_destroy(ImGuiStyle* self); CIMGUI_API void ImGuiStyle_ScaleAllSizes(ImGuiStyle* self,float scale_factor); diff --git a/generator/output/definitions.json b/generator/output/definitions.json index 0cb0248..8fb9991 100644 --- a/generator/output/definitions.json +++ b/generator/output/definitions.json @@ -1184,12 +1184,12 @@ "type": "const char*" } ], - "argsoriginal": "(const ImVec2& pos,ImU32 col,const char* text_begin,const char* text_end=((void*)0))", + "argsoriginal": "(const ImVec2& pos,ImU32 col,const char* text_begin,const char* text_end=((void *)0))", "call_args": "(pos,col,text_begin,text_end)", "cimguiname": "ImDrawList_AddText", "comment": "", "defaults": { - "text_end": "((void*)0)" + "text_end": "((void *)0)" }, "funcname": "AddText", "ov_cimguiname": "ImDrawList_AddText", @@ -1237,13 +1237,13 @@ "type": "const ImVec4*" } ], - "argsoriginal": "(const ImFont* font,float font_size,const ImVec2& pos,ImU32 col,const char* text_begin,const char* text_end=((void*)0),float wrap_width=0.0f,const ImVec4* cpu_fine_clip_rect=((void*)0))", + "argsoriginal": "(const ImFont* font,float font_size,const ImVec2& pos,ImU32 col,const char* text_begin,const char* text_end=((void *)0),float wrap_width=0.0f,const ImVec4* cpu_fine_clip_rect=((void *)0))", "call_args": "(font,font_size,pos,col,text_begin,text_end,wrap_width,cpu_fine_clip_rect)", "cimguiname": "ImDrawList_AddText", "comment": "", "defaults": { - "cpu_fine_clip_rect": "((void*)0)", - "text_end": "((void*)0)", + "cpu_fine_clip_rect": "((void *)0)", + "text_end": "((void *)0)", "wrap_width": "0.0f" }, "funcname": "AddText", @@ -2426,12 +2426,12 @@ "type": "const ImFontConfig*" } ], - "argsoriginal": "(const ImFontConfig* font_cfg=((void*)0))", + "argsoriginal": "(const ImFontConfig* font_cfg=((void *)0))", "call_args": "(font_cfg)", "cimguiname": "ImFontAtlas_AddFontDefault", "comment": "", "defaults": { - "font_cfg": "((void*)0)" + "font_cfg": "((void *)0)" }, "funcname": "AddFontDefault", "ret": "ImFont*", @@ -2464,13 +2464,13 @@ "type": "const ImWchar*" } ], - "argsoriginal": "(const char* filename,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", + "argsoriginal": "(const char* filename,float size_pixels,const ImFontConfig* font_cfg=((void *)0),const ImWchar* glyph_ranges=((void *)0))", "call_args": "(filename,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromFileTTF", "comment": "", "defaults": { - "font_cfg": "((void*)0)", - "glyph_ranges": "((void*)0)" + "font_cfg": "((void *)0)", + "glyph_ranges": "((void *)0)" }, "funcname": "AddFontFromFileTTF", "ret": "ImFont*", @@ -2503,13 +2503,13 @@ "type": "const ImWchar*" } ], - "argsoriginal": "(const char* compressed_font_data_base85,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", + "argsoriginal": "(const char* compressed_font_data_base85,float size_pixels,const ImFontConfig* font_cfg=((void *)0),const ImWchar* glyph_ranges=((void *)0))", "call_args": "(compressed_font_data_base85,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF", "comment": "", "defaults": { - "font_cfg": "((void*)0)", - "glyph_ranges": "((void*)0)" + "font_cfg": "((void *)0)", + "glyph_ranges": "((void *)0)" }, "funcname": "AddFontFromMemoryCompressedBase85TTF", "ret": "ImFont*", @@ -2546,13 +2546,13 @@ "type": "const ImWchar*" } ], - "argsoriginal": "(const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", + "argsoriginal": "(const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg=((void *)0),const ImWchar* glyph_ranges=((void *)0))", "call_args": "(compressed_font_data,compressed_font_size,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedTTF", "comment": "", "defaults": { - "font_cfg": "((void*)0)", - "glyph_ranges": "((void*)0)" + "font_cfg": "((void *)0)", + "glyph_ranges": "((void *)0)" }, "funcname": "AddFontFromMemoryCompressedTTF", "ret": "ImFont*", @@ -2589,13 +2589,13 @@ "type": "const ImWchar*" } ], - "argsoriginal": "(void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", + "argsoriginal": "(void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg=((void *)0),const ImWchar* glyph_ranges=((void *)0))", "call_args": "(font_data,font_size,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromMemoryTTF", "comment": "", "defaults": { - "font_cfg": "((void*)0)", - "glyph_ranges": "((void*)0)" + "font_cfg": "((void *)0)", + "glyph_ranges": "((void *)0)" }, "funcname": "AddFontFromMemoryTTF", "ret": "ImFont*", @@ -2964,12 +2964,12 @@ "type": "int*" } ], - "argsoriginal": "(unsigned char** out_pixels,int* out_width,int* out_height,int* out_bytes_per_pixel=((void*)0))", + "argsoriginal": "(unsigned char** out_pixels,int* out_width,int* out_height,int* out_bytes_per_pixel=((void *)0))", "call_args": "(out_pixels,out_width,out_height,out_bytes_per_pixel)", "cimguiname": "ImFontAtlas_GetTexDataAsAlpha8", "comment": "", "defaults": { - "out_bytes_per_pixel": "((void*)0)" + "out_bytes_per_pixel": "((void *)0)" }, "funcname": "GetTexDataAsAlpha8", "ret": "void", @@ -3002,12 +3002,12 @@ "type": "int*" } ], - "argsoriginal": "(unsigned char** out_pixels,int* out_width,int* out_height,int* out_bytes_per_pixel=((void*)0))", + "argsoriginal": "(unsigned char** out_pixels,int* out_width,int* out_height,int* out_bytes_per_pixel=((void *)0))", "call_args": "(out_pixels,out_width,out_height,out_bytes_per_pixel)", "cimguiname": "ImFontAtlas_GetTexDataAsRGBA32", "comment": "", "defaults": { - "out_bytes_per_pixel": "((void*)0)" + "out_bytes_per_pixel": "((void *)0)" }, "funcname": "GetTexDataAsRGBA32", "ret": "void", @@ -3192,12 +3192,12 @@ "type": "const char*" } ], - "argsoriginal": "(const char* text,const char* text_end=((void*)0))", + "argsoriginal": "(const char* text,const char* text_end=((void *)0))", "call_args": "(text,text_end)", "cimguiname": "ImFontGlyphRangesBuilder_AddText", "comment": "", "defaults": { - "text_end": "((void*)0)" + "text_end": "((void *)0)" }, "funcname": "AddText", "ret": "void", @@ -3458,13 +3458,13 @@ "type": "const char**" } ], - "argsoriginal": "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void*)0),const char** remaining=((void*)0))", + "argsoriginal": "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void *)0),const char** remaining=((void *)0))", "call_args": "(size,max_width,wrap_width,text_begin,text_end,remaining)", "cimguiname": "ImFont_CalcTextSizeA", "comment": "", "defaults": { - "remaining": "((void*)0)", - "text_end": "((void*)0)" + "remaining": "((void *)0)", + "text_end": "((void *)0)" }, "funcname": "CalcTextSizeA", "ret": "ImVec2", @@ -3507,13 +3507,13 @@ "type": "const char**" } ], - "argsoriginal": "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void*)0),const char** remaining=((void*)0))", + "argsoriginal": "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void *)0),const char** remaining=((void *)0))", "call_args": "(size,max_width,wrap_width,text_begin,text_end,remaining)", "cimguiname": "ImFont_CalcTextSizeA", "comment": "", "defaults": { - "remaining": "((void*)0)", - "text_end": "((void*)0)" + "remaining": "((void *)0)", + "text_end": "((void *)0)" }, "funcname": "CalcTextSizeA", "nonUDT": 1, @@ -3554,13 +3554,13 @@ "type": "const char**" } ], - "argsoriginal": "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void*)0),const char** remaining=((void*)0))", + "argsoriginal": "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void *)0),const char** remaining=((void *)0))", "call_args": "(size,max_width,wrap_width,text_begin,text_end,remaining)", "cimguiname": "ImFont_CalcTextSizeA", "comment": "", "defaults": { - "remaining": "((void*)0)", - "text_end": "((void*)0)" + "remaining": "((void *)0)", + "text_end": "((void *)0)" }, "funcname": "CalcTextSizeA", "nonUDT": 2, @@ -4106,12 +4106,12 @@ "type": "const char*" } ], - "argsoriginal": "(int pos,const char* text,const char* text_end=((void*)0))", + "argsoriginal": "(int pos,const char* text,const char* text_end=((void *)0))", "call_args": "(pos,text,text_end)", "cimguiname": "ImGuiInputTextCallbackData_InsertChars", "comment": "", "defaults": { - "text_end": "((void*)0)" + "text_end": "((void *)0)" }, "funcname": "InsertChars", "ret": "void", @@ -4667,12 +4667,12 @@ "type": "void*" } ], - "argsoriginal": "(ImGuiID key,void* default_val=((void*)0))", + "argsoriginal": "(ImGuiID key,void* default_val=((void *)0))", "call_args": "(key,default_val)", "cimguiname": "ImGuiStorage_GetVoidPtrRef", "comment": "", "defaults": { - "default_val": "((void*)0)" + "default_val": "((void *)0)" }, "funcname": "GetVoidPtrRef", "ret": "void**", @@ -5240,12 +5240,12 @@ "type": "const char*" } ], - "argsoriginal": "(const char* text,const char* text_end=((void*)0))", + "argsoriginal": "(const char* text,const char* text_end=((void *)0))", "call_args": "(text,text_end)", "cimguiname": "ImGuiTextFilter_PassFilter", "comment": "", "defaults": { - "text_end": "((void*)0)" + "text_end": "((void *)0)" }, "funcname": "PassFilter", "ret": "bool", @@ -5396,6 +5396,648 @@ "stname": "ImVec4" } ], + "ImVector_ImVector": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_ImVector", + "comment": "", + "constructor": true, + "defaults": [], + "funcname": "ImVector", + "signature": "()", + "stname": "ImVector" + } + ], + "ImVector__grow_capacity": [ + { + "args": "(ImVector* self,int sz)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + }, + { + "name": "sz", + "type": "int" + } + ], + "argsoriginal": "(int sz)", + "call_args": "(sz)", + "cimguiname": "ImVector__grow_capacity", + "comment": "", + "defaults": [], + "funcname": "_grow_capacity", + "ret": "int", + "signature": "(int)", + "stname": "ImVector" + } + ], + "ImVector_back": [ + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_back", + "comment": "", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_back", + "ret": "T*", + "retref": "&", + "signature": "()", + "stname": "ImVector" + }, + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_back", + "comment": "", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_back", + "ret": "const T*", + "retref": "&", + "signature": "()", + "stname": "ImVector" + } + ], + "ImVector_begin": [ + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_begin", + "comment": "", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_begin", + "ret": "T*", + "signature": "()", + "stname": "ImVector" + }, + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_begin", + "comment": "", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_begin", + "ret": "const T*", + "signature": "()", + "stname": "ImVector" + } + ], + "ImVector_capacity": [ + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_capacity", + "comment": "", + "defaults": [], + "funcname": "capacity", + "ret": "int", + "signature": "()", + "stname": "ImVector" + } + ], + "ImVector_clear": [ + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_clear", + "comment": "", + "defaults": [], + "funcname": "clear", + "ret": "void", + "signature": "()", + "stname": "ImVector" + } + ], + "ImVector_contains": [ + { + "args": "(ImVector* self,const T v)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + }, + { + "name": "v", + "type": "const T" + } + ], + "argsoriginal": "(const T& v)", + "call_args": "(v)", + "cimguiname": "ImVector_contains", + "comment": "", + "defaults": [], + "funcname": "contains", + "ret": "bool", + "signature": "(const T)", + "stname": "ImVector" + } + ], + "ImVector_destroy": [ + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "call_args": "(self)", + "cimguiname": "ImVector_destroy", + "defaults": [], + "destructor": true, + "ov_cimguiname": "ImVector_destroy", + "ret": "void", + "signature": "(ImVector*)", + "stname": "ImVector" + } + ], + "ImVector_empty": [ + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_empty", + "comment": "", + "defaults": [], + "funcname": "empty", + "ret": "bool", + "signature": "()", + "stname": "ImVector" + } + ], + "ImVector_end": [ + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_end", + "comment": "", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_end", + "ret": "T*", + "signature": "()", + "stname": "ImVector" + }, + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_end", + "comment": "", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_end", + "ret": "const T*", + "signature": "()", + "stname": "ImVector" + } + ], + "ImVector_erase": [ + { + "args": "(ImVector* self,const T* it)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + }, + { + "name": "it", + "type": "const T*" + } + ], + "argsoriginal": "(const T* it)", + "call_args": "(it)", + "cimguiname": "ImVector_erase", + "comment": "", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_erase", + "ret": "T*", + "signature": "(const T*)", + "stname": "ImVector" + }, + { + "args": "(ImVector* self,const T* it,const T* it_last)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + }, + { + "name": "it", + "type": "const T*" + }, + { + "name": "it_last", + "type": "const T*" + } + ], + "argsoriginal": "(const T* it,const T* it_last)", + "call_args": "(it,it_last)", + "cimguiname": "ImVector_erase", + "comment": "", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_eraseTPtr", + "ret": "T*", + "signature": "(const T*,const T*)", + "stname": "ImVector" + } + ], + "ImVector_erase_unsorted": [ + { + "args": "(ImVector* self,const T* it)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + }, + { + "name": "it", + "type": "const T*" + } + ], + "argsoriginal": "(const T* it)", + "call_args": "(it)", + "cimguiname": "ImVector_erase_unsorted", + "comment": "", + "defaults": [], + "funcname": "erase_unsorted", + "ret": "T*", + "signature": "(const T*)", + "stname": "ImVector" + } + ], + "ImVector_front": [ + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_front", + "comment": "", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_front", + "ret": "T*", + "retref": "&", + "signature": "()", + "stname": "ImVector" + }, + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_front", + "comment": "", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_front", + "ret": "const T*", + "retref": "&", + "signature": "()", + "stname": "ImVector" + } + ], + "ImVector_index_from_ptr": [ + { + "args": "(ImVector* self,const T* it)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + }, + { + "name": "it", + "type": "const T*" + } + ], + "argsoriginal": "(const T* it)", + "call_args": "(it)", + "cimguiname": "ImVector_index_from_ptr", + "comment": "", + "defaults": [], + "funcname": "index_from_ptr", + "ret": "int", + "signature": "(const T*)", + "stname": "ImVector" + } + ], + "ImVector_insert": [ + { + "args": "(ImVector* self,const T* it,const T v)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + }, + { + "name": "it", + "type": "const T*" + }, + { + "name": "v", + "type": "const T" + } + ], + "argsoriginal": "(const T* it,const T& v)", + "call_args": "(it,v)", + "cimguiname": "ImVector_insert", + "comment": "", + "defaults": [], + "funcname": "insert", + "ret": "T*", + "signature": "(const T*,const T)", + "stname": "ImVector" + } + ], + "ImVector_pop_back": [ + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_pop_back", + "comment": "", + "defaults": [], + "funcname": "pop_back", + "ret": "void", + "signature": "()", + "stname": "ImVector" + } + ], + "ImVector_push_back": [ + { + "args": "(ImVector* self,const T v)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + }, + { + "name": "v", + "type": "const T" + } + ], + "argsoriginal": "(const T& v)", + "call_args": "(v)", + "cimguiname": "ImVector_push_back", + "comment": "", + "defaults": [], + "funcname": "push_back", + "ret": "void", + "signature": "(const T)", + "stname": "ImVector" + } + ], + "ImVector_push_front": [ + { + "args": "(ImVector* self,const T v)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + }, + { + "name": "v", + "type": "const T" + } + ], + "argsoriginal": "(const T& v)", + "call_args": "(v)", + "cimguiname": "ImVector_push_front", + "comment": "", + "defaults": [], + "funcname": "push_front", + "ret": "void", + "signature": "(const T)", + "stname": "ImVector" + } + ], + "ImVector_reserve": [ + { + "args": "(ImVector* self,int new_capacity)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + }, + { + "name": "new_capacity", + "type": "int" + } + ], + "argsoriginal": "(int new_capacity)", + "call_args": "(new_capacity)", + "cimguiname": "ImVector_reserve", + "comment": "", + "defaults": [], + "funcname": "reserve", + "ret": "void", + "signature": "(int)", + "stname": "ImVector" + } + ], + "ImVector_resize": [ + { + "args": "(ImVector* self,int new_size)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + }, + { + "name": "new_size", + "type": "int" + } + ], + "argsoriginal": "(int new_size)", + "call_args": "(new_size)", + "cimguiname": "ImVector_resize", + "comment": "", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_resize", + "ret": "void", + "signature": "(int)", + "stname": "ImVector" + }, + { + "args": "(ImVector* self,int new_size,const T v)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + }, + { + "name": "new_size", + "type": "int" + }, + { + "name": "v", + "type": "const T" + } + ], + "argsoriginal": "(int new_size,const T& v)", + "call_args": "(new_size,v)", + "cimguiname": "ImVector_resize", + "comment": "", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_resizeT", + "ret": "void", + "signature": "(int,const T)", + "stname": "ImVector" + } + ], + "ImVector_size": [ + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_size", + "comment": "", + "defaults": [], + "funcname": "size", + "ret": "int", + "signature": "()", + "stname": "ImVector" + } + ], + "ImVector_size_in_bytes": [ + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_size_in_bytes", + "comment": "", + "defaults": [], + "funcname": "size_in_bytes", + "ret": "int", + "signature": "()", + "stname": "ImVector" + } + ], + "ImVector_swap": [ + { + "args": "(ImVector* self,ImVector_T rhs)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + }, + { + "name": "rhs", + "type": "ImVector_T&" + } + ], + "argsoriginal": "(ImVector& rhs)", + "call_args": "(rhs)", + "cimguiname": "ImVector_swap", + "comment": "", + "defaults": [], + "funcname": "swap", + "ret": "void", + "signature": "(ImVector_T)", + "stname": "ImVector" + } + ], "Pair_Pair": [ { "args": "(ImGuiID _key,int _val_i)", @@ -5714,13 +6356,13 @@ "type": "ImGuiWindowFlags" } ], - "argsoriginal": "(const char* name,bool* p_open=((void*)0),ImGuiWindowFlags flags=0)", + "argsoriginal": "(const char* name,bool* p_open=((void *)0),ImGuiWindowFlags flags=0)", "call_args": "(name,p_open,flags)", "cimguiname": "igBegin", "comment": "", "defaults": { "flags": "0", - "p_open": "((void*)0)" + "p_open": "((void *)0)" }, "funcname": "Begin", "ret": "bool", @@ -6007,13 +6649,13 @@ "type": "int" } ], - "argsoriginal": "(const char* str_id=((void*)0),int mouse_button=1)", + "argsoriginal": "(const char* str_id=((void *)0),int mouse_button=1)", "call_args": "(str_id,mouse_button)", "cimguiname": "igBeginPopupContextItem", "comment": "", "defaults": { "mouse_button": "1", - "str_id": "((void*)0)" + "str_id": "((void *)0)" }, "funcname": "BeginPopupContextItem", "ret": "bool", @@ -6034,13 +6676,13 @@ "type": "int" } ], - "argsoriginal": "(const char* str_id=((void*)0),int mouse_button=1)", + "argsoriginal": "(const char* str_id=((void *)0),int mouse_button=1)", "call_args": "(str_id,mouse_button)", "cimguiname": "igBeginPopupContextVoid", "comment": "", "defaults": { "mouse_button": "1", - "str_id": "((void*)0)" + "str_id": "((void *)0)" }, "funcname": "BeginPopupContextVoid", "ret": "bool", @@ -6065,14 +6707,14 @@ "type": "bool" } ], - "argsoriginal": "(const char* str_id=((void*)0),int mouse_button=1,bool also_over_items=true)", + "argsoriginal": "(const char* str_id=((void *)0),int mouse_button=1,bool also_over_items=true)", "call_args": "(str_id,mouse_button,also_over_items)", "cimguiname": "igBeginPopupContextWindow", "comment": "", "defaults": { "also_over_items": "true", "mouse_button": "1", - "str_id": "((void*)0)" + "str_id": "((void *)0)" }, "funcname": "BeginPopupContextWindow", "ret": "bool", @@ -6097,13 +6739,13 @@ "type": "ImGuiWindowFlags" } ], - "argsoriginal": "(const char* name,bool* p_open=((void*)0),ImGuiWindowFlags flags=0)", + "argsoriginal": "(const char* name,bool* p_open=((void *)0),ImGuiWindowFlags flags=0)", "call_args": "(name,p_open,flags)", "cimguiname": "igBeginPopupModal", "comment": "", "defaults": { "flags": "0", - "p_open": "((void*)0)" + "p_open": "((void *)0)" }, "funcname": "BeginPopupModal", "ret": "bool", @@ -6154,13 +6796,13 @@ "type": "ImGuiTabItemFlags" } ], - "argsoriginal": "(const char* label,bool* p_open=((void*)0),ImGuiTabItemFlags flags=0)", + "argsoriginal": "(const char* label,bool* p_open=((void *)0),ImGuiTabItemFlags flags=0)", "call_args": "(label,p_open,flags)", "cimguiname": "igBeginTabItem", "comment": "", "defaults": { "flags": "0", - "p_open": "((void*)0)" + "p_open": "((void *)0)" }, "funcname": "BeginTabItem", "ret": "bool", @@ -6341,13 +6983,13 @@ "type": "float" } ], - "argsoriginal": "(const char* text,const char* text_end=((void*)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)", + "argsoriginal": "(const char* text,const char* text_end=((void *)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)", "call_args": "(text,text_end,hide_text_after_double_hash,wrap_width)", "cimguiname": "igCalcTextSize", "comment": "", "defaults": { "hide_text_after_double_hash": "false", - "text_end": "((void*)0)", + "text_end": "((void *)0)", "wrap_width": "-1.0f" }, "funcname": "CalcTextSize", @@ -6379,13 +7021,13 @@ "type": "float" } ], - "argsoriginal": "(const char* text,const char* text_end=((void*)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)", + "argsoriginal": "(const char* text,const char* text_end=((void *)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)", "call_args": "(text,text_end,hide_text_after_double_hash,wrap_width)", "cimguiname": "igCalcTextSize", "comment": "", "defaults": { "hide_text_after_double_hash": "false", - "text_end": "((void*)0)", + "text_end": "((void *)0)", "wrap_width": "-1.0f" }, "funcname": "CalcTextSize", @@ -6415,13 +7057,13 @@ "type": "float" } ], - "argsoriginal": "(const char* text,const char* text_end=((void*)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)", + "argsoriginal": "(const char* text,const char* text_end=((void *)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)", "call_args": "(text,text_end,hide_text_after_double_hash,wrap_width)", "cimguiname": "igCalcTextSize", "comment": "", "defaults": { "hide_text_after_double_hash": "false", - "text_end": "((void*)0)", + "text_end": "((void *)0)", "wrap_width": "-1.0f" }, "funcname": "CalcTextSize", @@ -6913,13 +7555,13 @@ "type": "const float*" } ], - "argsoriginal": "(const char* label,float col[4],ImGuiColorEditFlags flags=0,const float* ref_col=((void*)0))", + "argsoriginal": "(const char* label,float col[4],ImGuiColorEditFlags flags=0,const float* ref_col=((void *)0))", "call_args": "(label,col,flags,ref_col)", "cimguiname": "igColorPicker4", "comment": "", "defaults": { "flags": "0", - "ref_col": "((void*)0)" + "ref_col": "((void *)0)" }, "funcname": "ColorPicker4", "ret": "bool", @@ -6944,14 +7586,14 @@ "type": "bool" } ], - "argsoriginal": "(int count=1,const char* id=((void*)0),bool border=true)", + "argsoriginal": "(int count=1,const char* id=((void *)0),bool border=true)", "call_args": "(count,id,border)", "cimguiname": "igColumns", "comment": "", "defaults": { "border": "true", "count": "1", - "id": "((void*)0)" + "id": "((void *)0)" }, "funcname": "Columns", "ret": "void", @@ -7083,12 +7725,12 @@ "type": "ImFontAtlas*" } ], - "argsoriginal": "(ImFontAtlas* shared_font_atlas=((void*)0))", + "argsoriginal": "(ImFontAtlas* shared_font_atlas=((void *)0))", "call_args": "(shared_font_atlas)", "cimguiname": "igCreateContext", "comment": "", "defaults": { - "shared_font_atlas": "((void*)0)" + "shared_font_atlas": "((void *)0)" }, "funcname": "CreateContext", "ret": "ImGuiContext*", @@ -7145,12 +7787,12 @@ "type": "ImGuiContext*" } ], - "argsoriginal": "(ImGuiContext* ctx=((void*)0))", + "argsoriginal": "(ImGuiContext* ctx=((void *)0))", "call_args": "(ctx)", "cimguiname": "igDestroyContext", "comment": "", "defaults": { - "ctx": "((void*)0)" + "ctx": "((void *)0)" }, "funcname": "DestroyContext", "ret": "void", @@ -7399,13 +8041,13 @@ "type": "float" } ], - "argsoriginal": "(const char* label,float* v_current_min,float* v_current_max,float v_speed=1.0f,float v_min=0.0f,float v_max=0.0f,const char* format=\"%.3f\",const char* format_max=((void*)0),float power=1.0f)", + "argsoriginal": "(const char* label,float* v_current_min,float* v_current_max,float v_speed=1.0f,float v_min=0.0f,float v_max=0.0f,const char* format=\"%.3f\",const char* format_max=((void *)0),float power=1.0f)", "call_args": "(label,v_current_min,v_current_max,v_speed,v_min,v_max,format,format_max,power)", "cimguiname": "igDragFloatRange2", "comment": "", "defaults": { "format": "\"%.3f\"", - "format_max": "((void*)0)", + "format_max": "((void *)0)", "power": "1.0f", "v_max": "0.0f", "v_min": "0.0f", @@ -7634,13 +8276,13 @@ "type": "const char*" } ], - "argsoriginal": "(const char* label,int* v_current_min,int* v_current_max,float v_speed=1.0f,int v_min=0,int v_max=0,const char* format=\"%d\",const char* format_max=((void*)0))", + "argsoriginal": "(const char* label,int* v_current_min,int* v_current_max,float v_speed=1.0f,int v_min=0,int v_max=0,const char* format=\"%d\",const char* format_max=((void *)0))", "call_args": "(label,v_current_min,v_current_max,v_speed,v_min,v_max,format,format_max)", "cimguiname": "igDragIntRange2", "comment": "", "defaults": { "format": "\"%d\"", - "format_max": "((void*)0)", + "format_max": "((void *)0)", "v_max": "0", "v_min": "0", "v_speed": "1.0f" @@ -7688,15 +8330,15 @@ "type": "float" } ], - "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,float v_speed,const void* v_min=((void*)0),const void* v_max=((void*)0),const char* format=((void*)0),float power=1.0f)", + "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,float v_speed,const void* v_min=((void *)0),const void* v_max=((void *)0),const char* format=((void *)0),float power=1.0f)", "call_args": "(label,data_type,v,v_speed,v_min,v_max,format,power)", "cimguiname": "igDragScalar", "comment": "", "defaults": { - "format": "((void*)0)", + "format": "((void *)0)", "power": "1.0f", - "v_max": "((void*)0)", - "v_min": "((void*)0)" + "v_max": "((void *)0)", + "v_min": "((void *)0)" }, "funcname": "DragScalar", "ret": "bool", @@ -7745,15 +8387,15 @@ "type": "float" } ], - "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,int components,float v_speed,const void* v_min=((void*)0),const void* v_max=((void*)0),const char* format=((void*)0),float power=1.0f)", + "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,int components,float v_speed,const void* v_min=((void *)0),const void* v_max=((void *)0),const char* format=((void *)0),float power=1.0f)", "call_args": "(label,data_type,v,components,v_speed,v_min,v_max,format,power)", "cimguiname": "igDragScalarN", "comment": "", "defaults": { - "format": "((void*)0)", + "format": "((void *)0)", "power": "1.0f", - "v_max": "((void*)0)", - "v_min": "((void*)0)" + "v_max": "((void *)0)", + "v_min": "((void *)0)" }, "funcname": "DragScalarN", "ret": "bool", @@ -10090,15 +10732,15 @@ "type": "ImGuiInputTextFlags" } ], - "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,const void* step=((void*)0),const void* step_fast=((void*)0),const char* format=((void*)0),ImGuiInputTextFlags flags=0)", + "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,const void* step=((void *)0),const void* step_fast=((void *)0),const char* format=((void *)0),ImGuiInputTextFlags flags=0)", "call_args": "(label,data_type,v,step,step_fast,format,flags)", "cimguiname": "igInputScalar", "comment": "", "defaults": { "flags": "0", - "format": "((void*)0)", - "step": "((void*)0)", - "step_fast": "((void*)0)" + "format": "((void *)0)", + "step": "((void *)0)", + "step_fast": "((void *)0)" }, "funcname": "InputScalar", "ret": "bool", @@ -10143,15 +10785,15 @@ "type": "ImGuiInputTextFlags" } ], - "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,int components,const void* step=((void*)0),const void* step_fast=((void*)0),const char* format=((void*)0),ImGuiInputTextFlags flags=0)", + "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,int components,const void* step=((void *)0),const void* step_fast=((void *)0),const char* format=((void *)0),ImGuiInputTextFlags flags=0)", "call_args": "(label,data_type,v,components,step,step_fast,format,flags)", "cimguiname": "igInputScalarN", "comment": "", "defaults": { "flags": "0", - "format": "((void*)0)", - "step": "((void*)0)", - "step_fast": "((void*)0)" + "format": "((void *)0)", + "step": "((void *)0)", + "step_fast": "((void *)0)" }, "funcname": "InputScalarN", "ret": "bool", @@ -10188,14 +10830,14 @@ "type": "void*" } ], - "argsoriginal": "(const char* label,char* buf,size_t buf_size,ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void*)0),void* user_data=((void*)0))", + "argsoriginal": "(const char* label,char* buf,size_t buf_size,ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void *)0),void* user_data=((void *)0))", "call_args": "(label,buf,buf_size,flags,callback,user_data)", "cimguiname": "igInputText", "comment": "", "defaults": { - "callback": "((void*)0)", + "callback": "((void *)0)", "flags": "0", - "user_data": "((void*)0)" + "user_data": "((void *)0)" }, "funcname": "InputText", "ret": "bool", @@ -10236,15 +10878,15 @@ "type": "void*" } ], - "argsoriginal": "(const char* label,char* buf,size_t buf_size,const ImVec2& size=ImVec2(0,0),ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void*)0),void* user_data=((void*)0))", + "argsoriginal": "(const char* label,char* buf,size_t buf_size,const ImVec2& size=ImVec2(0,0),ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void *)0),void* user_data=((void *)0))", "call_args": "(label,buf,buf_size,size,flags,callback,user_data)", "cimguiname": "igInputTextMultiline", "comment": "", "defaults": { - "callback": "((void*)0)", + "callback": "((void *)0)", "flags": "0", "size": "ImVec2(0,0)", - "user_data": "((void*)0)" + "user_data": "((void *)0)" }, "funcname": "InputTextMultiline", "ret": "bool", @@ -10668,12 +11310,12 @@ "type": "const ImVec2*" } ], - "argsoriginal": "(const ImVec2* mouse_pos=((void*)0))", + "argsoriginal": "(const ImVec2* mouse_pos=((void *)0))", "call_args": "(mouse_pos)", "cimguiname": "igIsMousePosValid", "comment": "", "defaults": { - "mouse_pos": "((void*)0)" + "mouse_pos": "((void *)0)" }, "funcname": "IsMousePosValid", "ret": "bool", @@ -11186,12 +11828,12 @@ "type": "const char*" } ], - "argsoriginal": "(int max_depth=-1,const char* filename=((void*)0))", + "argsoriginal": "(int max_depth=-1,const char* filename=((void *)0))", "call_args": "(max_depth,filename)", "cimguiname": "igLogToFile", "comment": "", "defaults": { - "filename": "((void*)0)", + "filename": "((void *)0)", "max_depth": "-1" }, "funcname": "LogToFile", @@ -11283,14 +11925,14 @@ "type": "bool" } ], - "argsoriginal": "(const char* label,const char* shortcut=((void*)0),bool selected=false,bool enabled=true)", + "argsoriginal": "(const char* label,const char* shortcut=((void *)0),bool selected=false,bool enabled=true)", "call_args": "(label,shortcut,selected,enabled)", "cimguiname": "igMenuItem", "comment": "", "defaults": { "enabled": "true", "selected": "false", - "shortcut": "((void*)0)" + "shortcut": "((void *)0)" }, "funcname": "MenuItem", "ov_cimguiname": "igMenuItemBool", @@ -11410,13 +12052,13 @@ "type": "int" } ], - "argsoriginal": "(const char* str_id=((void*)0),int mouse_button=1)", + "argsoriginal": "(const char* str_id=((void *)0),int mouse_button=1)", "call_args": "(str_id,mouse_button)", "cimguiname": "igOpenPopupOnItemClick", "comment": "", "defaults": { "mouse_button": "1", - "str_id": "((void*)0)" + "str_id": "((void *)0)" }, "funcname": "OpenPopupOnItemClick", "ret": "bool", @@ -11465,13 +12107,13 @@ "type": "int" } ], - "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", + "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void *)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", "call_args": "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)", "cimguiname": "igPlotHistogram", "comment": "", "defaults": { "graph_size": "ImVec2(0,0)", - "overlay_text": "((void*)0)", + "overlay_text": "((void *)0)", "scale_max": "FLT_MAX", "scale_min": "FLT_MAX", "stride": "sizeof(float)", @@ -11525,13 +12167,13 @@ "type": "ImVec2" } ], - "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0))", + "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void *)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0))", "call_args": "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)", "cimguiname": "igPlotHistogram", "comment": "", "defaults": { "graph_size": "ImVec2(0,0)", - "overlay_text": "((void*)0)", + "overlay_text": "((void *)0)", "scale_max": "FLT_MAX", "scale_min": "FLT_MAX", "values_offset": "0" @@ -11584,13 +12226,13 @@ "type": "int" } ], - "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", + "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void *)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", "call_args": "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)", "cimguiname": "igPlotLines", "comment": "", "defaults": { "graph_size": "ImVec2(0,0)", - "overlay_text": "((void*)0)", + "overlay_text": "((void *)0)", "scale_max": "FLT_MAX", "scale_min": "FLT_MAX", "stride": "sizeof(float)", @@ -11644,13 +12286,13 @@ "type": "ImVec2" } ], - "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0))", + "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void *)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0))", "call_args": "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)", "cimguiname": "igPlotLines", "comment": "", "defaults": { "graph_size": "ImVec2(0,0)", - "overlay_text": "((void*)0)", + "overlay_text": "((void *)0)", "scale_max": "FLT_MAX", "scale_min": "FLT_MAX", "values_offset": "0" @@ -11828,12 +12470,12 @@ "type": "const char*" } ], - "argsoriginal": "(float fraction,const ImVec2& size_arg=ImVec2(-1,0),const char* overlay=((void*)0))", + "argsoriginal": "(float fraction,const ImVec2& size_arg=ImVec2(-1,0),const char* overlay=((void *)0))", "call_args": "(fraction,size_arg,overlay)", "cimguiname": "igProgressBar", "comment": "", "defaults": { - "overlay": "((void*)0)", + "overlay": "((void *)0)", "size_arg": "ImVec2(-1,0)" }, "funcname": "ProgressBar", @@ -12295,12 +12937,12 @@ "type": "size_t*" } ], - "argsoriginal": "(size_t* out_ini_size=((void*)0))", + "argsoriginal": "(size_t* out_ini_size=((void *)0))", "call_args": "(out_ini_size)", "cimguiname": "igSaveIniSettingsToMemory", "comment": "", "defaults": { - "out_ini_size": "((void*)0)" + "out_ini_size": "((void *)0)" }, "funcname": "SaveIniSettingsToMemory", "ret": "const char*", @@ -12415,12 +13057,12 @@ "type": "void*" } ], - "argsoriginal": "(void*(*alloc_func)(size_t sz,void* user_data),void(*free_func)(void* ptr,void* user_data),void* user_data=((void*)0))", + "argsoriginal": "(void*(*alloc_func)(size_t sz,void* user_data),void(*free_func)(void* ptr,void* user_data),void* user_data=((void *)0))", "call_args": "(alloc_func,free_func,user_data)", "cimguiname": "igSetAllocatorFunctions", "comment": "", "defaults": { - "user_data": "((void*)0)" + "user_data": "((void *)0)" }, "funcname": "SetAllocatorFunctions", "ret": "void", @@ -12907,13 +13549,13 @@ "type": "void*" } ], - "argsoriginal": "(const ImVec2& size_min,const ImVec2& size_max,ImGuiSizeCallback custom_callback=((void*)0),void* custom_callback_data=((void*)0))", + "argsoriginal": "(const ImVec2& size_min,const ImVec2& size_max,ImGuiSizeCallback custom_callback=((void *)0),void* custom_callback_data=((void *)0))", "call_args": "(size_min,size_max,custom_callback,custom_callback_data)", "cimguiname": "igSetNextWindowSizeConstraints", "comment": "", "defaults": { - "custom_callback": "((void*)0)", - "custom_callback_data": "((void*)0)" + "custom_callback": "((void *)0)", + "custom_callback_data": "((void *)0)" }, "funcname": "SetNextWindowSizeConstraints", "ret": "void", @@ -13330,12 +13972,12 @@ "type": "bool*" } ], - "argsoriginal": "(bool* p_open=((void*)0))", + "argsoriginal": "(bool* p_open=((void *)0))", "call_args": "(p_open)", "cimguiname": "igShowAboutWindow", "comment": "", "defaults": { - "p_open": "((void*)0)" + "p_open": "((void *)0)" }, "funcname": "ShowAboutWindow", "ret": "void", @@ -13352,12 +13994,12 @@ "type": "bool*" } ], - "argsoriginal": "(bool* p_open=((void*)0))", + "argsoriginal": "(bool* p_open=((void *)0))", "call_args": "(p_open)", "cimguiname": "igShowDemoWindow", "comment": "", "defaults": { - "p_open": "((void*)0)" + "p_open": "((void *)0)" }, "funcname": "ShowDemoWindow", "ret": "void", @@ -13394,12 +14036,12 @@ "type": "bool*" } ], - "argsoriginal": "(bool* p_open=((void*)0))", + "argsoriginal": "(bool* p_open=((void *)0))", "call_args": "(p_open)", "cimguiname": "igShowMetricsWindow", "comment": "", "defaults": { - "p_open": "((void*)0)" + "p_open": "((void *)0)" }, "funcname": "ShowMetricsWindow", "ret": "void", @@ -13416,12 +14058,12 @@ "type": "ImGuiStyle*" } ], - "argsoriginal": "(ImGuiStyle* ref=((void*)0))", + "argsoriginal": "(ImGuiStyle* ref=((void *)0))", "call_args": "(ref)", "cimguiname": "igShowStyleEditor", "comment": "", "defaults": { - "ref": "((void*)0)" + "ref": "((void *)0)" }, "funcname": "ShowStyleEditor", "ret": "void", @@ -13861,12 +14503,12 @@ "type": "float" } ], - "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,const void* v_min,const void* v_max,const char* format=((void*)0),float power=1.0f)", + "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,const void* v_min,const void* v_max,const char* format=((void *)0),float power=1.0f)", "call_args": "(label,data_type,v,v_min,v_max,format,power)", "cimguiname": "igSliderScalar", "comment": "", "defaults": { - "format": "((void*)0)", + "format": "((void *)0)", "power": "1.0f" }, "funcname": "SliderScalar", @@ -13912,12 +14554,12 @@ "type": "float" } ], - "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,int components,const void* v_min,const void* v_max,const char* format=((void*)0),float power=1.0f)", + "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,int components,const void* v_min,const void* v_max,const char* format=((void *)0),float power=1.0f)", "call_args": "(label,data_type,v,components,v_min,v_max,format,power)", "cimguiname": "igSliderScalarN", "comment": "", "defaults": { - "format": "((void*)0)", + "format": "((void *)0)", "power": "1.0f" }, "funcname": "SliderScalarN", @@ -13970,12 +14612,12 @@ "type": "ImGuiStyle*" } ], - "argsoriginal": "(ImGuiStyle* dst=((void*)0))", + "argsoriginal": "(ImGuiStyle* dst=((void *)0))", "call_args": "(dst)", "cimguiname": "igStyleColorsClassic", "comment": "", "defaults": { - "dst": "((void*)0)" + "dst": "((void *)0)" }, "funcname": "StyleColorsClassic", "ret": "void", @@ -13992,12 +14634,12 @@ "type": "ImGuiStyle*" } ], - "argsoriginal": "(ImGuiStyle* dst=((void*)0))", + "argsoriginal": "(ImGuiStyle* dst=((void *)0))", "call_args": "(dst)", "cimguiname": "igStyleColorsDark", "comment": "", "defaults": { - "dst": "((void*)0)" + "dst": "((void *)0)" }, "funcname": "StyleColorsDark", "ret": "void", @@ -14014,12 +14656,12 @@ "type": "ImGuiStyle*" } ], - "argsoriginal": "(ImGuiStyle* dst=((void*)0))", + "argsoriginal": "(ImGuiStyle* dst=((void *)0))", "call_args": "(dst)", "cimguiname": "igStyleColorsLight", "comment": "", "defaults": { - "dst": "((void*)0)" + "dst": "((void *)0)" }, "funcname": "StyleColorsLight", "ret": "void", @@ -14171,12 +14813,12 @@ "type": "const char*" } ], - "argsoriginal": "(const char* text,const char* text_end=((void*)0))", + "argsoriginal": "(const char* text,const char* text_end=((void *)0))", "call_args": "(text,text_end)", "cimguiname": "igTextUnformatted", "comment": "", "defaults": { - "text_end": "((void*)0)" + "text_end": "((void *)0)" }, "funcname": "TextUnformatted", "ret": "void", @@ -14603,12 +15245,12 @@ "type": "const void*" } ], - "argsoriginal": "(const void* ptr_id=((void*)0))", + "argsoriginal": "(const void* ptr_id=((void *)0))", "call_args": "(ptr_id)", "cimguiname": "igTreePush", "comment": "", "defaults": { - "ptr_id": "((void*)0)" + "ptr_id": "((void *)0)" }, "funcname": "TreePush", "ov_cimguiname": "igTreePushPtr", @@ -14765,12 +15407,12 @@ "type": "float" } ], - "argsoriginal": "(const char* label,const ImVec2& size,ImGuiDataType data_type,void* v,const void* v_min,const void* v_max,const char* format=((void*)0),float power=1.0f)", + "argsoriginal": "(const char* label,const ImVec2& size,ImGuiDataType data_type,void* v,const void* v_min,const void* v_max,const char* format=((void *)0),float power=1.0f)", "call_args": "(label,size,data_type,v,v_min,v_max,format,power)", "cimguiname": "igVSliderScalar", "comment": "", "defaults": { - "format": "((void*)0)", + "format": "((void *)0)", "power": "1.0f" }, "funcname": "VSliderScalar", @@ -14865,12 +15507,12 @@ "type": "const char*" } ], - "argsoriginal": "(const char* prefix,float v,const char* float_format=((void*)0))", + "argsoriginal": "(const char* prefix,float v,const char* float_format=((void *)0))", "call_args": "(prefix,v,float_format)", "cimguiname": "igValue", "comment": "", "defaults": { - "float_format": "((void*)0)" + "float_format": "((void *)0)" }, "funcname": "Value", "ov_cimguiname": "igValueFloat", diff --git a/generator/output/definitions.lua b/generator/output/definitions.lua index 8c03ca9..7683e44 100644 --- a/generator/output/definitions.lua +++ b/generator/output/definitions.lua @@ -960,12 +960,12 @@ defs["ImDrawList_AddText"][1]["argsT"][4]["type"] = "const char*" defs["ImDrawList_AddText"][1]["argsT"][5] = {} defs["ImDrawList_AddText"][1]["argsT"][5]["name"] = "text_end" defs["ImDrawList_AddText"][1]["argsT"][5]["type"] = "const char*" -defs["ImDrawList_AddText"][1]["argsoriginal"] = "(const ImVec2& pos,ImU32 col,const char* text_begin,const char* text_end=((void*)0))" +defs["ImDrawList_AddText"][1]["argsoriginal"] = "(const ImVec2& pos,ImU32 col,const char* text_begin,const char* text_end=((void *)0))" defs["ImDrawList_AddText"][1]["call_args"] = "(pos,col,text_begin,text_end)" defs["ImDrawList_AddText"][1]["cimguiname"] = "ImDrawList_AddText" defs["ImDrawList_AddText"][1]["comment"] = "" defs["ImDrawList_AddText"][1]["defaults"] = {} -defs["ImDrawList_AddText"][1]["defaults"]["text_end"] = "((void*)0)" +defs["ImDrawList_AddText"][1]["defaults"]["text_end"] = "((void *)0)" defs["ImDrawList_AddText"][1]["funcname"] = "AddText" defs["ImDrawList_AddText"][1]["ov_cimguiname"] = "ImDrawList_AddText" defs["ImDrawList_AddText"][1]["ret"] = "void" @@ -1001,13 +1001,13 @@ defs["ImDrawList_AddText"][2]["argsT"][8]["type"] = "float" defs["ImDrawList_AddText"][2]["argsT"][9] = {} defs["ImDrawList_AddText"][2]["argsT"][9]["name"] = "cpu_fine_clip_rect" defs["ImDrawList_AddText"][2]["argsT"][9]["type"] = "const ImVec4*" -defs["ImDrawList_AddText"][2]["argsoriginal"] = "(const ImFont* font,float font_size,const ImVec2& pos,ImU32 col,const char* text_begin,const char* text_end=((void*)0),float wrap_width=0.0f,const ImVec4* cpu_fine_clip_rect=((void*)0))" +defs["ImDrawList_AddText"][2]["argsoriginal"] = "(const ImFont* font,float font_size,const ImVec2& pos,ImU32 col,const char* text_begin,const char* text_end=((void *)0),float wrap_width=0.0f,const ImVec4* cpu_fine_clip_rect=((void *)0))" defs["ImDrawList_AddText"][2]["call_args"] = "(font,font_size,pos,col,text_begin,text_end,wrap_width,cpu_fine_clip_rect)" defs["ImDrawList_AddText"][2]["cimguiname"] = "ImDrawList_AddText" defs["ImDrawList_AddText"][2]["comment"] = "" defs["ImDrawList_AddText"][2]["defaults"] = {} -defs["ImDrawList_AddText"][2]["defaults"]["cpu_fine_clip_rect"] = "((void*)0)" -defs["ImDrawList_AddText"][2]["defaults"]["text_end"] = "((void*)0)" +defs["ImDrawList_AddText"][2]["defaults"]["cpu_fine_clip_rect"] = "((void *)0)" +defs["ImDrawList_AddText"][2]["defaults"]["text_end"] = "((void *)0)" defs["ImDrawList_AddText"][2]["defaults"]["wrap_width"] = "0.0f" defs["ImDrawList_AddText"][2]["funcname"] = "AddText" defs["ImDrawList_AddText"][2]["ov_cimguiname"] = "ImDrawList_AddTextFontPtr" @@ -1981,12 +1981,12 @@ defs["ImFontAtlas_AddFontDefault"][1]["argsT"][1]["type"] = "ImFontAtlas*" defs["ImFontAtlas_AddFontDefault"][1]["argsT"][2] = {} defs["ImFontAtlas_AddFontDefault"][1]["argsT"][2]["name"] = "font_cfg" defs["ImFontAtlas_AddFontDefault"][1]["argsT"][2]["type"] = "const ImFontConfig*" -defs["ImFontAtlas_AddFontDefault"][1]["argsoriginal"] = "(const ImFontConfig* font_cfg=((void*)0))" +defs["ImFontAtlas_AddFontDefault"][1]["argsoriginal"] = "(const ImFontConfig* font_cfg=((void *)0))" defs["ImFontAtlas_AddFontDefault"][1]["call_args"] = "(font_cfg)" defs["ImFontAtlas_AddFontDefault"][1]["cimguiname"] = "ImFontAtlas_AddFontDefault" defs["ImFontAtlas_AddFontDefault"][1]["comment"] = "" defs["ImFontAtlas_AddFontDefault"][1]["defaults"] = {} -defs["ImFontAtlas_AddFontDefault"][1]["defaults"]["font_cfg"] = "((void*)0)" +defs["ImFontAtlas_AddFontDefault"][1]["defaults"]["font_cfg"] = "((void *)0)" defs["ImFontAtlas_AddFontDefault"][1]["funcname"] = "AddFontDefault" defs["ImFontAtlas_AddFontDefault"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontDefault"][1]["signature"] = "(const ImFontConfig*)" @@ -2011,13 +2011,13 @@ defs["ImFontAtlas_AddFontFromFileTTF"][1]["argsT"][4]["type"] = "const ImFontCon defs["ImFontAtlas_AddFontFromFileTTF"][1]["argsT"][5] = {} defs["ImFontAtlas_AddFontFromFileTTF"][1]["argsT"][5]["name"] = "glyph_ranges" defs["ImFontAtlas_AddFontFromFileTTF"][1]["argsT"][5]["type"] = "const ImWchar*" -defs["ImFontAtlas_AddFontFromFileTTF"][1]["argsoriginal"] = "(const char* filename,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" +defs["ImFontAtlas_AddFontFromFileTTF"][1]["argsoriginal"] = "(const char* filename,float size_pixels,const ImFontConfig* font_cfg=((void *)0),const ImWchar* glyph_ranges=((void *)0))" defs["ImFontAtlas_AddFontFromFileTTF"][1]["call_args"] = "(filename,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromFileTTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromFileTTF" defs["ImFontAtlas_AddFontFromFileTTF"][1]["comment"] = "" defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"] = {} -defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["font_cfg"] = "((void*)0)" -defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["glyph_ranges"] = "((void*)0)" +defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["font_cfg"] = "((void *)0)" +defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["glyph_ranges"] = "((void *)0)" defs["ImFontAtlas_AddFontFromFileTTF"][1]["funcname"] = "AddFontFromFileTTF" defs["ImFontAtlas_AddFontFromFileTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromFileTTF"][1]["signature"] = "(const char*,float,const ImFontConfig*,const ImWchar*)" @@ -2042,13 +2042,13 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["argsT"][4]["type"] defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["argsT"][5] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["argsT"][5]["name"] = "glyph_ranges" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["argsT"][5]["type"] = "const ImWchar*" -defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["argsoriginal"] = "(const char* compressed_font_data_base85,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" +defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["argsoriginal"] = "(const char* compressed_font_data_base85,float size_pixels,const ImFontConfig* font_cfg=((void *)0),const ImWchar* glyph_ranges=((void *)0))" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["call_args"] = "(compressed_font_data_base85,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["comment"] = "" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"] = {} -defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["font_cfg"] = "((void*)0)" -defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["glyph_ranges"] = "((void*)0)" +defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["font_cfg"] = "((void *)0)" +defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["glyph_ranges"] = "((void *)0)" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["funcname"] = "AddFontFromMemoryCompressedBase85TTF" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["signature"] = "(const char*,float,const ImFontConfig*,const ImWchar*)" @@ -2076,13 +2076,13 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][5]["type"] = "con defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][6] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][6]["name"] = "glyph_ranges" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][6]["type"] = "const ImWchar*" -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsoriginal"] = "(const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsoriginal"] = "(const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg=((void *)0),const ImWchar* glyph_ranges=((void *)0))" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["call_args"] = "(compressed_font_data,compressed_font_size,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedTTF" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["comment"] = "" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"] = {} -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["font_cfg"] = "((void*)0)" -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["glyph_ranges"] = "((void*)0)" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["font_cfg"] = "((void *)0)" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["glyph_ranges"] = "((void *)0)" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["funcname"] = "AddFontFromMemoryCompressedTTF" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["signature"] = "(const void*,int,float,const ImFontConfig*,const ImWchar*)" @@ -2110,13 +2110,13 @@ defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][5]["type"] = "const ImFontC defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][6] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][6]["name"] = "glyph_ranges" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][6]["type"] = "const ImWchar*" -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsoriginal"] = "(void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsoriginal"] = "(void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg=((void *)0),const ImWchar* glyph_ranges=((void *)0))" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["call_args"] = "(font_data,font_size,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromMemoryTTF" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["comment"] = "" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"] = {} -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["font_cfg"] = "((void*)0)" -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["glyph_ranges"] = "((void*)0)" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["font_cfg"] = "((void *)0)" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["glyph_ranges"] = "((void *)0)" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["funcname"] = "AddFontFromMemoryTTF" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["signature"] = "(void*,int,float,const ImFontConfig*,const ImWchar*)" @@ -2423,12 +2423,12 @@ defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["argsT"][4]["type"] = "int*" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["argsT"][5] = {} defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["argsT"][5]["name"] = "out_bytes_per_pixel" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["argsT"][5]["type"] = "int*" -defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["argsoriginal"] = "(unsigned char** out_pixels,int* out_width,int* out_height,int* out_bytes_per_pixel=((void*)0))" +defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["argsoriginal"] = "(unsigned char** out_pixels,int* out_width,int* out_height,int* out_bytes_per_pixel=((void *)0))" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["call_args"] = "(out_pixels,out_width,out_height,out_bytes_per_pixel)" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["cimguiname"] = "ImFontAtlas_GetTexDataAsAlpha8" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["comment"] = "" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"] = {} -defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"]["out_bytes_per_pixel"] = "((void*)0)" +defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"]["out_bytes_per_pixel"] = "((void *)0)" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["funcname"] = "GetTexDataAsAlpha8" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["ret"] = "void" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["signature"] = "(unsigned char**,int*,int*,int*)" @@ -2453,12 +2453,12 @@ defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["argsT"][4]["type"] = "int*" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["argsT"][5] = {} defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["argsT"][5]["name"] = "out_bytes_per_pixel" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["argsT"][5]["type"] = "int*" -defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["argsoriginal"] = "(unsigned char** out_pixels,int* out_width,int* out_height,int* out_bytes_per_pixel=((void*)0))" +defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["argsoriginal"] = "(unsigned char** out_pixels,int* out_width,int* out_height,int* out_bytes_per_pixel=((void *)0))" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["call_args"] = "(out_pixels,out_width,out_height,out_bytes_per_pixel)" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["cimguiname"] = "ImFontAtlas_GetTexDataAsRGBA32" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["comment"] = "" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"] = {} -defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"]["out_bytes_per_pixel"] = "((void*)0)" +defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"]["out_bytes_per_pixel"] = "((void *)0)" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["funcname"] = "GetTexDataAsRGBA32" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["ret"] = "void" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["signature"] = "(unsigned char**,int*,int*,int*)" @@ -2614,12 +2614,12 @@ defs["ImFontGlyphRangesBuilder_AddText"][1]["argsT"][2]["type"] = "const char*" defs["ImFontGlyphRangesBuilder_AddText"][1]["argsT"][3] = {} defs["ImFontGlyphRangesBuilder_AddText"][1]["argsT"][3]["name"] = "text_end" defs["ImFontGlyphRangesBuilder_AddText"][1]["argsT"][3]["type"] = "const char*" -defs["ImFontGlyphRangesBuilder_AddText"][1]["argsoriginal"] = "(const char* text,const char* text_end=((void*)0))" +defs["ImFontGlyphRangesBuilder_AddText"][1]["argsoriginal"] = "(const char* text,const char* text_end=((void *)0))" defs["ImFontGlyphRangesBuilder_AddText"][1]["call_args"] = "(text,text_end)" defs["ImFontGlyphRangesBuilder_AddText"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_AddText" defs["ImFontGlyphRangesBuilder_AddText"][1]["comment"] = "" defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"] = {} -defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"]["text_end"] = "((void*)0)" +defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"]["text_end"] = "((void *)0)" defs["ImFontGlyphRangesBuilder_AddText"][1]["funcname"] = "AddText" defs["ImFontGlyphRangesBuilder_AddText"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddText"][1]["signature"] = "(const char*,const char*)" @@ -2831,13 +2831,13 @@ defs["ImFont_CalcTextSizeA"][1]["argsT"][6]["type"] = "const char*" defs["ImFont_CalcTextSizeA"][1]["argsT"][7] = {} defs["ImFont_CalcTextSizeA"][1]["argsT"][7]["name"] = "remaining" defs["ImFont_CalcTextSizeA"][1]["argsT"][7]["type"] = "const char**" -defs["ImFont_CalcTextSizeA"][1]["argsoriginal"] = "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void*)0),const char** remaining=((void*)0))" +defs["ImFont_CalcTextSizeA"][1]["argsoriginal"] = "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void *)0),const char** remaining=((void *)0))" defs["ImFont_CalcTextSizeA"][1]["call_args"] = "(size,max_width,wrap_width,text_begin,text_end,remaining)" defs["ImFont_CalcTextSizeA"][1]["cimguiname"] = "ImFont_CalcTextSizeA" defs["ImFont_CalcTextSizeA"][1]["comment"] = "" defs["ImFont_CalcTextSizeA"][1]["defaults"] = {} -defs["ImFont_CalcTextSizeA"][1]["defaults"]["remaining"] = "((void*)0)" -defs["ImFont_CalcTextSizeA"][1]["defaults"]["text_end"] = "((void*)0)" +defs["ImFont_CalcTextSizeA"][1]["defaults"]["remaining"] = "((void *)0)" +defs["ImFont_CalcTextSizeA"][1]["defaults"]["text_end"] = "((void *)0)" defs["ImFont_CalcTextSizeA"][1]["funcname"] = "CalcTextSizeA" defs["ImFont_CalcTextSizeA"][1]["ret"] = "ImVec2" defs["ImFont_CalcTextSizeA"][1]["signature"] = "(float,float,float,const char*,const char*,const char**)" @@ -2869,7 +2869,7 @@ defs["ImFont_CalcTextSizeA"][2]["argsT"][7]["type"] = "const char*" defs["ImFont_CalcTextSizeA"][2]["argsT"][8] = {} defs["ImFont_CalcTextSizeA"][2]["argsT"][8]["name"] = "remaining" defs["ImFont_CalcTextSizeA"][2]["argsT"][8]["type"] = "const char**" -defs["ImFont_CalcTextSizeA"][2]["argsoriginal"] = "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void*)0),const char** remaining=((void*)0))" +defs["ImFont_CalcTextSizeA"][2]["argsoriginal"] = "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void *)0),const char** remaining=((void *)0))" defs["ImFont_CalcTextSizeA"][2]["call_args"] = "(size,max_width,wrap_width,text_begin,text_end,remaining)" defs["ImFont_CalcTextSizeA"][2]["cimguiname"] = "ImFont_CalcTextSizeA" defs["ImFont_CalcTextSizeA"][2]["comment"] = "" @@ -2904,7 +2904,7 @@ defs["ImFont_CalcTextSizeA"][3]["argsT"][6]["type"] = "const char*" defs["ImFont_CalcTextSizeA"][3]["argsT"][7] = {} defs["ImFont_CalcTextSizeA"][3]["argsT"][7]["name"] = "remaining" defs["ImFont_CalcTextSizeA"][3]["argsT"][7]["type"] = "const char**" -defs["ImFont_CalcTextSizeA"][3]["argsoriginal"] = "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void*)0),const char** remaining=((void*)0))" +defs["ImFont_CalcTextSizeA"][3]["argsoriginal"] = "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void *)0),const char** remaining=((void *)0))" defs["ImFont_CalcTextSizeA"][3]["call_args"] = "(size,max_width,wrap_width,text_begin,text_end,remaining)" defs["ImFont_CalcTextSizeA"][3]["cimguiname"] = "ImFont_CalcTextSizeA" defs["ImFont_CalcTextSizeA"][3]["comment"] = "" @@ -3364,12 +3364,12 @@ defs["ImGuiInputTextCallbackData_InsertChars"][1]["argsT"][3]["type"] = "const c defs["ImGuiInputTextCallbackData_InsertChars"][1]["argsT"][4] = {} defs["ImGuiInputTextCallbackData_InsertChars"][1]["argsT"][4]["name"] = "text_end" defs["ImGuiInputTextCallbackData_InsertChars"][1]["argsT"][4]["type"] = "const char*" -defs["ImGuiInputTextCallbackData_InsertChars"][1]["argsoriginal"] = "(int pos,const char* text,const char* text_end=((void*)0))" +defs["ImGuiInputTextCallbackData_InsertChars"][1]["argsoriginal"] = "(int pos,const char* text,const char* text_end=((void *)0))" defs["ImGuiInputTextCallbackData_InsertChars"][1]["call_args"] = "(pos,text,text_end)" defs["ImGuiInputTextCallbackData_InsertChars"][1]["cimguiname"] = "ImGuiInputTextCallbackData_InsertChars" defs["ImGuiInputTextCallbackData_InsertChars"][1]["comment"] = "" defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"] = {} -defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"]["text_end"] = "((void*)0)" +defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"]["text_end"] = "((void *)0)" defs["ImGuiInputTextCallbackData_InsertChars"][1]["funcname"] = "InsertChars" defs["ImGuiInputTextCallbackData_InsertChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_InsertChars"][1]["signature"] = "(int,const char*,const char*)" @@ -3829,12 +3829,12 @@ defs["ImGuiStorage_GetVoidPtrRef"][1]["argsT"][2]["type"] = "ImGuiID" defs["ImGuiStorage_GetVoidPtrRef"][1]["argsT"][3] = {} defs["ImGuiStorage_GetVoidPtrRef"][1]["argsT"][3]["name"] = "default_val" defs["ImGuiStorage_GetVoidPtrRef"][1]["argsT"][3]["type"] = "void*" -defs["ImGuiStorage_GetVoidPtrRef"][1]["argsoriginal"] = "(ImGuiID key,void* default_val=((void*)0))" +defs["ImGuiStorage_GetVoidPtrRef"][1]["argsoriginal"] = "(ImGuiID key,void* default_val=((void *)0))" defs["ImGuiStorage_GetVoidPtrRef"][1]["call_args"] = "(key,default_val)" defs["ImGuiStorage_GetVoidPtrRef"][1]["cimguiname"] = "ImGuiStorage_GetVoidPtrRef" defs["ImGuiStorage_GetVoidPtrRef"][1]["comment"] = "" defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"] = {} -defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"]["default_val"] = "((void*)0)" +defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"]["default_val"] = "((void *)0)" defs["ImGuiStorage_GetVoidPtrRef"][1]["funcname"] = "GetVoidPtrRef" defs["ImGuiStorage_GetVoidPtrRef"][1]["ret"] = "void**" defs["ImGuiStorage_GetVoidPtrRef"][1]["signature"] = "(ImGuiID,void*)" @@ -4309,12 +4309,12 @@ defs["ImGuiTextFilter_PassFilter"][1]["argsT"][2]["type"] = "const char*" defs["ImGuiTextFilter_PassFilter"][1]["argsT"][3] = {} defs["ImGuiTextFilter_PassFilter"][1]["argsT"][3]["name"] = "text_end" defs["ImGuiTextFilter_PassFilter"][1]["argsT"][3]["type"] = "const char*" -defs["ImGuiTextFilter_PassFilter"][1]["argsoriginal"] = "(const char* text,const char* text_end=((void*)0))" +defs["ImGuiTextFilter_PassFilter"][1]["argsoriginal"] = "(const char* text,const char* text_end=((void *)0))" defs["ImGuiTextFilter_PassFilter"][1]["call_args"] = "(text,text_end)" defs["ImGuiTextFilter_PassFilter"][1]["cimguiname"] = "ImGuiTextFilter_PassFilter" defs["ImGuiTextFilter_PassFilter"][1]["comment"] = "" defs["ImGuiTextFilter_PassFilter"][1]["defaults"] = {} -defs["ImGuiTextFilter_PassFilter"][1]["defaults"]["text_end"] = "((void*)0)" +defs["ImGuiTextFilter_PassFilter"][1]["defaults"]["text_end"] = "((void *)0)" defs["ImGuiTextFilter_PassFilter"][1]["funcname"] = "PassFilter" defs["ImGuiTextFilter_PassFilter"][1]["ret"] = "bool" defs["ImGuiTextFilter_PassFilter"][1]["signature"] = "(const char*,const char*)" @@ -4444,6 +4444,549 @@ defs["ImVec4_destroy"][1]["ret"] = "void" defs["ImVec4_destroy"][1]["signature"] = "(ImVec4*)" defs["ImVec4_destroy"][1]["stname"] = "ImVec4" defs["ImVec4_destroy"]["(ImVec4*)"] = defs["ImVec4_destroy"][1] +defs["ImVector_ImVector"] = {} +defs["ImVector_ImVector"][1] = {} +defs["ImVector_ImVector"][1]["args"] = "()" +defs["ImVector_ImVector"][1]["argsT"] = {} +defs["ImVector_ImVector"][1]["argsoriginal"] = "()" +defs["ImVector_ImVector"][1]["call_args"] = "()" +defs["ImVector_ImVector"][1]["cimguiname"] = "ImVector_ImVector" +defs["ImVector_ImVector"][1]["comment"] = "" +defs["ImVector_ImVector"][1]["constructor"] = true +defs["ImVector_ImVector"][1]["defaults"] = {} +defs["ImVector_ImVector"][1]["funcname"] = "ImVector" +defs["ImVector_ImVector"][1]["signature"] = "()" +defs["ImVector_ImVector"][1]["stname"] = "ImVector" +defs["ImVector_ImVector"]["()"] = defs["ImVector_ImVector"][1] +defs["ImVector__grow_capacity"] = {} +defs["ImVector__grow_capacity"][1] = {} +defs["ImVector__grow_capacity"][1]["args"] = "(ImVector* self,int sz)" +defs["ImVector__grow_capacity"][1]["argsT"] = {} +defs["ImVector__grow_capacity"][1]["argsT"][1] = {} +defs["ImVector__grow_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector__grow_capacity"][1]["argsT"][1]["type"] = "ImVector*" +defs["ImVector__grow_capacity"][1]["argsT"][2] = {} +defs["ImVector__grow_capacity"][1]["argsT"][2]["name"] = "sz" +defs["ImVector__grow_capacity"][1]["argsT"][2]["type"] = "int" +defs["ImVector__grow_capacity"][1]["argsoriginal"] = "(int sz)" +defs["ImVector__grow_capacity"][1]["call_args"] = "(sz)" +defs["ImVector__grow_capacity"][1]["cimguiname"] = "ImVector__grow_capacity" +defs["ImVector__grow_capacity"][1]["comment"] = "" +defs["ImVector__grow_capacity"][1]["defaults"] = {} +defs["ImVector__grow_capacity"][1]["funcname"] = "_grow_capacity" +defs["ImVector__grow_capacity"][1]["ret"] = "int" +defs["ImVector__grow_capacity"][1]["signature"] = "(int)" +defs["ImVector__grow_capacity"][1]["stname"] = "ImVector" +defs["ImVector__grow_capacity"]["(int)"] = defs["ImVector__grow_capacity"][1] +defs["ImVector_back"] = {} +defs["ImVector_back"][1] = {} +defs["ImVector_back"][1]["args"] = "(ImVector* self)" +defs["ImVector_back"][1]["argsT"] = {} +defs["ImVector_back"][1]["argsT"][1] = {} +defs["ImVector_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_back"][1]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_back"][1]["argsoriginal"] = "()" +defs["ImVector_back"][1]["call_args"] = "()" +defs["ImVector_back"][1]["cimguiname"] = "ImVector_back" +defs["ImVector_back"][1]["comment"] = "" +defs["ImVector_back"][1]["defaults"] = {} +defs["ImVector_back"][1]["funcname"] = "back" +defs["ImVector_back"][1]["ov_cimguiname"] = "ImVector_back" +defs["ImVector_back"][1]["ret"] = "T*" +defs["ImVector_back"][1]["retref"] = "&" +defs["ImVector_back"][1]["signature"] = "()" +defs["ImVector_back"][1]["stname"] = "ImVector" +defs["ImVector_back"][2] = {} +defs["ImVector_back"][2]["args"] = "(ImVector* self)" +defs["ImVector_back"][2]["argsT"] = {} +defs["ImVector_back"][2]["argsT"][1] = {} +defs["ImVector_back"][2]["argsT"][1]["name"] = "self" +defs["ImVector_back"][2]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_back"][2]["argsoriginal"] = "()" +defs["ImVector_back"][2]["call_args"] = "()" +defs["ImVector_back"][2]["cimguiname"] = "ImVector_back" +defs["ImVector_back"][2]["comment"] = "" +defs["ImVector_back"][2]["defaults"] = {} +defs["ImVector_back"][2]["funcname"] = "back" +defs["ImVector_back"][2]["ov_cimguiname"] = "ImVector_back" +defs["ImVector_back"][2]["ret"] = "const T*" +defs["ImVector_back"][2]["retref"] = "&" +defs["ImVector_back"][2]["signature"] = "()" +defs["ImVector_back"][2]["stname"] = "ImVector" +defs["ImVector_back"]["()"] = defs["ImVector_back"][2] +defs["ImVector_begin"] = {} +defs["ImVector_begin"][1] = {} +defs["ImVector_begin"][1]["args"] = "(ImVector* self)" +defs["ImVector_begin"][1]["argsT"] = {} +defs["ImVector_begin"][1]["argsT"][1] = {} +defs["ImVector_begin"][1]["argsT"][1]["name"] = "self" +defs["ImVector_begin"][1]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_begin"][1]["argsoriginal"] = "()" +defs["ImVector_begin"][1]["call_args"] = "()" +defs["ImVector_begin"][1]["cimguiname"] = "ImVector_begin" +defs["ImVector_begin"][1]["comment"] = "" +defs["ImVector_begin"][1]["defaults"] = {} +defs["ImVector_begin"][1]["funcname"] = "begin" +defs["ImVector_begin"][1]["ov_cimguiname"] = "ImVector_begin" +defs["ImVector_begin"][1]["ret"] = "T*" +defs["ImVector_begin"][1]["signature"] = "()" +defs["ImVector_begin"][1]["stname"] = "ImVector" +defs["ImVector_begin"][2] = {} +defs["ImVector_begin"][2]["args"] = "(ImVector* self)" +defs["ImVector_begin"][2]["argsT"] = {} +defs["ImVector_begin"][2]["argsT"][1] = {} +defs["ImVector_begin"][2]["argsT"][1]["name"] = "self" +defs["ImVector_begin"][2]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_begin"][2]["argsoriginal"] = "()" +defs["ImVector_begin"][2]["call_args"] = "()" +defs["ImVector_begin"][2]["cimguiname"] = "ImVector_begin" +defs["ImVector_begin"][2]["comment"] = "" +defs["ImVector_begin"][2]["defaults"] = {} +defs["ImVector_begin"][2]["funcname"] = "begin" +defs["ImVector_begin"][2]["ov_cimguiname"] = "ImVector_begin" +defs["ImVector_begin"][2]["ret"] = "const T*" +defs["ImVector_begin"][2]["signature"] = "()" +defs["ImVector_begin"][2]["stname"] = "ImVector" +defs["ImVector_begin"]["()"] = defs["ImVector_begin"][2] +defs["ImVector_capacity"] = {} +defs["ImVector_capacity"][1] = {} +defs["ImVector_capacity"][1]["args"] = "(ImVector* self)" +defs["ImVector_capacity"][1]["argsT"] = {} +defs["ImVector_capacity"][1]["argsT"][1] = {} +defs["ImVector_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_capacity"][1]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_capacity"][1]["argsoriginal"] = "()" +defs["ImVector_capacity"][1]["call_args"] = "()" +defs["ImVector_capacity"][1]["cimguiname"] = "ImVector_capacity" +defs["ImVector_capacity"][1]["comment"] = "" +defs["ImVector_capacity"][1]["defaults"] = {} +defs["ImVector_capacity"][1]["funcname"] = "capacity" +defs["ImVector_capacity"][1]["ret"] = "int" +defs["ImVector_capacity"][1]["signature"] = "()" +defs["ImVector_capacity"][1]["stname"] = "ImVector" +defs["ImVector_capacity"]["()"] = defs["ImVector_capacity"][1] +defs["ImVector_clear"] = {} +defs["ImVector_clear"][1] = {} +defs["ImVector_clear"][1]["args"] = "(ImVector* self)" +defs["ImVector_clear"][1]["argsT"] = {} +defs["ImVector_clear"][1]["argsT"][1] = {} +defs["ImVector_clear"][1]["argsT"][1]["name"] = "self" +defs["ImVector_clear"][1]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_clear"][1]["argsoriginal"] = "()" +defs["ImVector_clear"][1]["call_args"] = "()" +defs["ImVector_clear"][1]["cimguiname"] = "ImVector_clear" +defs["ImVector_clear"][1]["comment"] = "" +defs["ImVector_clear"][1]["defaults"] = {} +defs["ImVector_clear"][1]["funcname"] = "clear" +defs["ImVector_clear"][1]["ret"] = "void" +defs["ImVector_clear"][1]["signature"] = "()" +defs["ImVector_clear"][1]["stname"] = "ImVector" +defs["ImVector_clear"]["()"] = defs["ImVector_clear"][1] +defs["ImVector_contains"] = {} +defs["ImVector_contains"][1] = {} +defs["ImVector_contains"][1]["args"] = "(ImVector* self,const T v)" +defs["ImVector_contains"][1]["argsT"] = {} +defs["ImVector_contains"][1]["argsT"][1] = {} +defs["ImVector_contains"][1]["argsT"][1]["name"] = "self" +defs["ImVector_contains"][1]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_contains"][1]["argsT"][2] = {} +defs["ImVector_contains"][1]["argsT"][2]["name"] = "v" +defs["ImVector_contains"][1]["argsT"][2]["type"] = "const T" +defs["ImVector_contains"][1]["argsoriginal"] = "(const T& v)" +defs["ImVector_contains"][1]["call_args"] = "(v)" +defs["ImVector_contains"][1]["cimguiname"] = "ImVector_contains" +defs["ImVector_contains"][1]["comment"] = "" +defs["ImVector_contains"][1]["defaults"] = {} +defs["ImVector_contains"][1]["funcname"] = "contains" +defs["ImVector_contains"][1]["ret"] = "bool" +defs["ImVector_contains"][1]["signature"] = "(const T)" +defs["ImVector_contains"][1]["stname"] = "ImVector" +defs["ImVector_contains"]["(const T)"] = defs["ImVector_contains"][1] +defs["ImVector_destroy"] = {} +defs["ImVector_destroy"][1] = {} +defs["ImVector_destroy"][1]["args"] = "(ImVector* self)" +defs["ImVector_destroy"][1]["argsT"] = {} +defs["ImVector_destroy"][1]["argsT"][1] = {} +defs["ImVector_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImVector_destroy"][1]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_destroy"][1]["call_args"] = "(self)" +defs["ImVector_destroy"][1]["cimguiname"] = "ImVector_destroy" +defs["ImVector_destroy"][1]["defaults"] = {} +defs["ImVector_destroy"][1]["destructor"] = true +defs["ImVector_destroy"][1]["ov_cimguiname"] = "ImVector_destroy" +defs["ImVector_destroy"][1]["ret"] = "void" +defs["ImVector_destroy"][1]["signature"] = "(ImVector*)" +defs["ImVector_destroy"][1]["stname"] = "ImVector" +defs["ImVector_destroy"]["(ImVector*)"] = defs["ImVector_destroy"][1] +defs["ImVector_empty"] = {} +defs["ImVector_empty"][1] = {} +defs["ImVector_empty"][1]["args"] = "(ImVector* self)" +defs["ImVector_empty"][1]["argsT"] = {} +defs["ImVector_empty"][1]["argsT"][1] = {} +defs["ImVector_empty"][1]["argsT"][1]["name"] = "self" +defs["ImVector_empty"][1]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_empty"][1]["argsoriginal"] = "()" +defs["ImVector_empty"][1]["call_args"] = "()" +defs["ImVector_empty"][1]["cimguiname"] = "ImVector_empty" +defs["ImVector_empty"][1]["comment"] = "" +defs["ImVector_empty"][1]["defaults"] = {} +defs["ImVector_empty"][1]["funcname"] = "empty" +defs["ImVector_empty"][1]["ret"] = "bool" +defs["ImVector_empty"][1]["signature"] = "()" +defs["ImVector_empty"][1]["stname"] = "ImVector" +defs["ImVector_empty"]["()"] = defs["ImVector_empty"][1] +defs["ImVector_end"] = {} +defs["ImVector_end"][1] = {} +defs["ImVector_end"][1]["args"] = "(ImVector* self)" +defs["ImVector_end"][1]["argsT"] = {} +defs["ImVector_end"][1]["argsT"][1] = {} +defs["ImVector_end"][1]["argsT"][1]["name"] = "self" +defs["ImVector_end"][1]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_end"][1]["argsoriginal"] = "()" +defs["ImVector_end"][1]["call_args"] = "()" +defs["ImVector_end"][1]["cimguiname"] = "ImVector_end" +defs["ImVector_end"][1]["comment"] = "" +defs["ImVector_end"][1]["defaults"] = {} +defs["ImVector_end"][1]["funcname"] = "end" +defs["ImVector_end"][1]["ov_cimguiname"] = "ImVector_end" +defs["ImVector_end"][1]["ret"] = "T*" +defs["ImVector_end"][1]["signature"] = "()" +defs["ImVector_end"][1]["stname"] = "ImVector" +defs["ImVector_end"][2] = {} +defs["ImVector_end"][2]["args"] = "(ImVector* self)" +defs["ImVector_end"][2]["argsT"] = {} +defs["ImVector_end"][2]["argsT"][1] = {} +defs["ImVector_end"][2]["argsT"][1]["name"] = "self" +defs["ImVector_end"][2]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_end"][2]["argsoriginal"] = "()" +defs["ImVector_end"][2]["call_args"] = "()" +defs["ImVector_end"][2]["cimguiname"] = "ImVector_end" +defs["ImVector_end"][2]["comment"] = "" +defs["ImVector_end"][2]["defaults"] = {} +defs["ImVector_end"][2]["funcname"] = "end" +defs["ImVector_end"][2]["ov_cimguiname"] = "ImVector_end" +defs["ImVector_end"][2]["ret"] = "const T*" +defs["ImVector_end"][2]["signature"] = "()" +defs["ImVector_end"][2]["stname"] = "ImVector" +defs["ImVector_end"]["()"] = defs["ImVector_end"][2] +defs["ImVector_erase"] = {} +defs["ImVector_erase"][1] = {} +defs["ImVector_erase"][1]["args"] = "(ImVector* self,const T* it)" +defs["ImVector_erase"][1]["argsT"] = {} +defs["ImVector_erase"][1]["argsT"][1] = {} +defs["ImVector_erase"][1]["argsT"][1]["name"] = "self" +defs["ImVector_erase"][1]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_erase"][1]["argsT"][2] = {} +defs["ImVector_erase"][1]["argsT"][2]["name"] = "it" +defs["ImVector_erase"][1]["argsT"][2]["type"] = "const T*" +defs["ImVector_erase"][1]["argsoriginal"] = "(const T* it)" +defs["ImVector_erase"][1]["call_args"] = "(it)" +defs["ImVector_erase"][1]["cimguiname"] = "ImVector_erase" +defs["ImVector_erase"][1]["comment"] = "" +defs["ImVector_erase"][1]["defaults"] = {} +defs["ImVector_erase"][1]["funcname"] = "erase" +defs["ImVector_erase"][1]["ov_cimguiname"] = "ImVector_erase" +defs["ImVector_erase"][1]["ret"] = "T*" +defs["ImVector_erase"][1]["signature"] = "(const T*)" +defs["ImVector_erase"][1]["stname"] = "ImVector" +defs["ImVector_erase"][2] = {} +defs["ImVector_erase"][2]["args"] = "(ImVector* self,const T* it,const T* it_last)" +defs["ImVector_erase"][2]["argsT"] = {} +defs["ImVector_erase"][2]["argsT"][1] = {} +defs["ImVector_erase"][2]["argsT"][1]["name"] = "self" +defs["ImVector_erase"][2]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_erase"][2]["argsT"][2] = {} +defs["ImVector_erase"][2]["argsT"][2]["name"] = "it" +defs["ImVector_erase"][2]["argsT"][2]["type"] = "const T*" +defs["ImVector_erase"][2]["argsT"][3] = {} +defs["ImVector_erase"][2]["argsT"][3]["name"] = "it_last" +defs["ImVector_erase"][2]["argsT"][3]["type"] = "const T*" +defs["ImVector_erase"][2]["argsoriginal"] = "(const T* it,const T* it_last)" +defs["ImVector_erase"][2]["call_args"] = "(it,it_last)" +defs["ImVector_erase"][2]["cimguiname"] = "ImVector_erase" +defs["ImVector_erase"][2]["comment"] = "" +defs["ImVector_erase"][2]["defaults"] = {} +defs["ImVector_erase"][2]["funcname"] = "erase" +defs["ImVector_erase"][2]["ov_cimguiname"] = "ImVector_eraseTPtr" +defs["ImVector_erase"][2]["ret"] = "T*" +defs["ImVector_erase"][2]["signature"] = "(const T*,const T*)" +defs["ImVector_erase"][2]["stname"] = "ImVector" +defs["ImVector_erase"]["(const T*)"] = defs["ImVector_erase"][1] +defs["ImVector_erase"]["(const T*,const T*)"] = defs["ImVector_erase"][2] +defs["ImVector_erase_unsorted"] = {} +defs["ImVector_erase_unsorted"][1] = {} +defs["ImVector_erase_unsorted"][1]["args"] = "(ImVector* self,const T* it)" +defs["ImVector_erase_unsorted"][1]["argsT"] = {} +defs["ImVector_erase_unsorted"][1]["argsT"][1] = {} +defs["ImVector_erase_unsorted"][1]["argsT"][1]["name"] = "self" +defs["ImVector_erase_unsorted"][1]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_erase_unsorted"][1]["argsT"][2] = {} +defs["ImVector_erase_unsorted"][1]["argsT"][2]["name"] = "it" +defs["ImVector_erase_unsorted"][1]["argsT"][2]["type"] = "const T*" +defs["ImVector_erase_unsorted"][1]["argsoriginal"] = "(const T* it)" +defs["ImVector_erase_unsorted"][1]["call_args"] = "(it)" +defs["ImVector_erase_unsorted"][1]["cimguiname"] = "ImVector_erase_unsorted" +defs["ImVector_erase_unsorted"][1]["comment"] = "" +defs["ImVector_erase_unsorted"][1]["defaults"] = {} +defs["ImVector_erase_unsorted"][1]["funcname"] = "erase_unsorted" +defs["ImVector_erase_unsorted"][1]["ret"] = "T*" +defs["ImVector_erase_unsorted"][1]["signature"] = "(const T*)" +defs["ImVector_erase_unsorted"][1]["stname"] = "ImVector" +defs["ImVector_erase_unsorted"]["(const T*)"] = defs["ImVector_erase_unsorted"][1] +defs["ImVector_front"] = {} +defs["ImVector_front"][1] = {} +defs["ImVector_front"][1]["args"] = "(ImVector* self)" +defs["ImVector_front"][1]["argsT"] = {} +defs["ImVector_front"][1]["argsT"][1] = {} +defs["ImVector_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_front"][1]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_front"][1]["argsoriginal"] = "()" +defs["ImVector_front"][1]["call_args"] = "()" +defs["ImVector_front"][1]["cimguiname"] = "ImVector_front" +defs["ImVector_front"][1]["comment"] = "" +defs["ImVector_front"][1]["defaults"] = {} +defs["ImVector_front"][1]["funcname"] = "front" +defs["ImVector_front"][1]["ov_cimguiname"] = "ImVector_front" +defs["ImVector_front"][1]["ret"] = "T*" +defs["ImVector_front"][1]["retref"] = "&" +defs["ImVector_front"][1]["signature"] = "()" +defs["ImVector_front"][1]["stname"] = "ImVector" +defs["ImVector_front"][2] = {} +defs["ImVector_front"][2]["args"] = "(ImVector* self)" +defs["ImVector_front"][2]["argsT"] = {} +defs["ImVector_front"][2]["argsT"][1] = {} +defs["ImVector_front"][2]["argsT"][1]["name"] = "self" +defs["ImVector_front"][2]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_front"][2]["argsoriginal"] = "()" +defs["ImVector_front"][2]["call_args"] = "()" +defs["ImVector_front"][2]["cimguiname"] = "ImVector_front" +defs["ImVector_front"][2]["comment"] = "" +defs["ImVector_front"][2]["defaults"] = {} +defs["ImVector_front"][2]["funcname"] = "front" +defs["ImVector_front"][2]["ov_cimguiname"] = "ImVector_front" +defs["ImVector_front"][2]["ret"] = "const T*" +defs["ImVector_front"][2]["retref"] = "&" +defs["ImVector_front"][2]["signature"] = "()" +defs["ImVector_front"][2]["stname"] = "ImVector" +defs["ImVector_front"]["()"] = defs["ImVector_front"][2] +defs["ImVector_index_from_ptr"] = {} +defs["ImVector_index_from_ptr"][1] = {} +defs["ImVector_index_from_ptr"][1]["args"] = "(ImVector* self,const T* it)" +defs["ImVector_index_from_ptr"][1]["argsT"] = {} +defs["ImVector_index_from_ptr"][1]["argsT"][1] = {} +defs["ImVector_index_from_ptr"][1]["argsT"][1]["name"] = "self" +defs["ImVector_index_from_ptr"][1]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_index_from_ptr"][1]["argsT"][2] = {} +defs["ImVector_index_from_ptr"][1]["argsT"][2]["name"] = "it" +defs["ImVector_index_from_ptr"][1]["argsT"][2]["type"] = "const T*" +defs["ImVector_index_from_ptr"][1]["argsoriginal"] = "(const T* it)" +defs["ImVector_index_from_ptr"][1]["call_args"] = "(it)" +defs["ImVector_index_from_ptr"][1]["cimguiname"] = "ImVector_index_from_ptr" +defs["ImVector_index_from_ptr"][1]["comment"] = "" +defs["ImVector_index_from_ptr"][1]["defaults"] = {} +defs["ImVector_index_from_ptr"][1]["funcname"] = "index_from_ptr" +defs["ImVector_index_from_ptr"][1]["ret"] = "int" +defs["ImVector_index_from_ptr"][1]["signature"] = "(const T*)" +defs["ImVector_index_from_ptr"][1]["stname"] = "ImVector" +defs["ImVector_index_from_ptr"]["(const T*)"] = defs["ImVector_index_from_ptr"][1] +defs["ImVector_insert"] = {} +defs["ImVector_insert"][1] = {} +defs["ImVector_insert"][1]["args"] = "(ImVector* self,const T* it,const T v)" +defs["ImVector_insert"][1]["argsT"] = {} +defs["ImVector_insert"][1]["argsT"][1] = {} +defs["ImVector_insert"][1]["argsT"][1]["name"] = "self" +defs["ImVector_insert"][1]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_insert"][1]["argsT"][2] = {} +defs["ImVector_insert"][1]["argsT"][2]["name"] = "it" +defs["ImVector_insert"][1]["argsT"][2]["type"] = "const T*" +defs["ImVector_insert"][1]["argsT"][3] = {} +defs["ImVector_insert"][1]["argsT"][3]["name"] = "v" +defs["ImVector_insert"][1]["argsT"][3]["type"] = "const T" +defs["ImVector_insert"][1]["argsoriginal"] = "(const T* it,const T& v)" +defs["ImVector_insert"][1]["call_args"] = "(it,v)" +defs["ImVector_insert"][1]["cimguiname"] = "ImVector_insert" +defs["ImVector_insert"][1]["comment"] = "" +defs["ImVector_insert"][1]["defaults"] = {} +defs["ImVector_insert"][1]["funcname"] = "insert" +defs["ImVector_insert"][1]["ret"] = "T*" +defs["ImVector_insert"][1]["signature"] = "(const T*,const T)" +defs["ImVector_insert"][1]["stname"] = "ImVector" +defs["ImVector_insert"]["(const T*,const T)"] = defs["ImVector_insert"][1] +defs["ImVector_pop_back"] = {} +defs["ImVector_pop_back"][1] = {} +defs["ImVector_pop_back"][1]["args"] = "(ImVector* self)" +defs["ImVector_pop_back"][1]["argsT"] = {} +defs["ImVector_pop_back"][1]["argsT"][1] = {} +defs["ImVector_pop_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_pop_back"][1]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_pop_back"][1]["argsoriginal"] = "()" +defs["ImVector_pop_back"][1]["call_args"] = "()" +defs["ImVector_pop_back"][1]["cimguiname"] = "ImVector_pop_back" +defs["ImVector_pop_back"][1]["comment"] = "" +defs["ImVector_pop_back"][1]["defaults"] = {} +defs["ImVector_pop_back"][1]["funcname"] = "pop_back" +defs["ImVector_pop_back"][1]["ret"] = "void" +defs["ImVector_pop_back"][1]["signature"] = "()" +defs["ImVector_pop_back"][1]["stname"] = "ImVector" +defs["ImVector_pop_back"]["()"] = defs["ImVector_pop_back"][1] +defs["ImVector_push_back"] = {} +defs["ImVector_push_back"][1] = {} +defs["ImVector_push_back"][1]["args"] = "(ImVector* self,const T v)" +defs["ImVector_push_back"][1]["argsT"] = {} +defs["ImVector_push_back"][1]["argsT"][1] = {} +defs["ImVector_push_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_push_back"][1]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_push_back"][1]["argsT"][2] = {} +defs["ImVector_push_back"][1]["argsT"][2]["name"] = "v" +defs["ImVector_push_back"][1]["argsT"][2]["type"] = "const T" +defs["ImVector_push_back"][1]["argsoriginal"] = "(const T& v)" +defs["ImVector_push_back"][1]["call_args"] = "(v)" +defs["ImVector_push_back"][1]["cimguiname"] = "ImVector_push_back" +defs["ImVector_push_back"][1]["comment"] = "" +defs["ImVector_push_back"][1]["defaults"] = {} +defs["ImVector_push_back"][1]["funcname"] = "push_back" +defs["ImVector_push_back"][1]["ret"] = "void" +defs["ImVector_push_back"][1]["signature"] = "(const T)" +defs["ImVector_push_back"][1]["stname"] = "ImVector" +defs["ImVector_push_back"]["(const T)"] = defs["ImVector_push_back"][1] +defs["ImVector_push_front"] = {} +defs["ImVector_push_front"][1] = {} +defs["ImVector_push_front"][1]["args"] = "(ImVector* self,const T v)" +defs["ImVector_push_front"][1]["argsT"] = {} +defs["ImVector_push_front"][1]["argsT"][1] = {} +defs["ImVector_push_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_push_front"][1]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_push_front"][1]["argsT"][2] = {} +defs["ImVector_push_front"][1]["argsT"][2]["name"] = "v" +defs["ImVector_push_front"][1]["argsT"][2]["type"] = "const T" +defs["ImVector_push_front"][1]["argsoriginal"] = "(const T& v)" +defs["ImVector_push_front"][1]["call_args"] = "(v)" +defs["ImVector_push_front"][1]["cimguiname"] = "ImVector_push_front" +defs["ImVector_push_front"][1]["comment"] = "" +defs["ImVector_push_front"][1]["defaults"] = {} +defs["ImVector_push_front"][1]["funcname"] = "push_front" +defs["ImVector_push_front"][1]["ret"] = "void" +defs["ImVector_push_front"][1]["signature"] = "(const T)" +defs["ImVector_push_front"][1]["stname"] = "ImVector" +defs["ImVector_push_front"]["(const T)"] = defs["ImVector_push_front"][1] +defs["ImVector_reserve"] = {} +defs["ImVector_reserve"][1] = {} +defs["ImVector_reserve"][1]["args"] = "(ImVector* self,int new_capacity)" +defs["ImVector_reserve"][1]["argsT"] = {} +defs["ImVector_reserve"][1]["argsT"][1] = {} +defs["ImVector_reserve"][1]["argsT"][1]["name"] = "self" +defs["ImVector_reserve"][1]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_reserve"][1]["argsT"][2] = {} +defs["ImVector_reserve"][1]["argsT"][2]["name"] = "new_capacity" +defs["ImVector_reserve"][1]["argsT"][2]["type"] = "int" +defs["ImVector_reserve"][1]["argsoriginal"] = "(int new_capacity)" +defs["ImVector_reserve"][1]["call_args"] = "(new_capacity)" +defs["ImVector_reserve"][1]["cimguiname"] = "ImVector_reserve" +defs["ImVector_reserve"][1]["comment"] = "" +defs["ImVector_reserve"][1]["defaults"] = {} +defs["ImVector_reserve"][1]["funcname"] = "reserve" +defs["ImVector_reserve"][1]["ret"] = "void" +defs["ImVector_reserve"][1]["signature"] = "(int)" +defs["ImVector_reserve"][1]["stname"] = "ImVector" +defs["ImVector_reserve"]["(int)"] = defs["ImVector_reserve"][1] +defs["ImVector_resize"] = {} +defs["ImVector_resize"][1] = {} +defs["ImVector_resize"][1]["args"] = "(ImVector* self,int new_size)" +defs["ImVector_resize"][1]["argsT"] = {} +defs["ImVector_resize"][1]["argsT"][1] = {} +defs["ImVector_resize"][1]["argsT"][1]["name"] = "self" +defs["ImVector_resize"][1]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_resize"][1]["argsT"][2] = {} +defs["ImVector_resize"][1]["argsT"][2]["name"] = "new_size" +defs["ImVector_resize"][1]["argsT"][2]["type"] = "int" +defs["ImVector_resize"][1]["argsoriginal"] = "(int new_size)" +defs["ImVector_resize"][1]["call_args"] = "(new_size)" +defs["ImVector_resize"][1]["cimguiname"] = "ImVector_resize" +defs["ImVector_resize"][1]["comment"] = "" +defs["ImVector_resize"][1]["defaults"] = {} +defs["ImVector_resize"][1]["funcname"] = "resize" +defs["ImVector_resize"][1]["ov_cimguiname"] = "ImVector_resize" +defs["ImVector_resize"][1]["ret"] = "void" +defs["ImVector_resize"][1]["signature"] = "(int)" +defs["ImVector_resize"][1]["stname"] = "ImVector" +defs["ImVector_resize"][2] = {} +defs["ImVector_resize"][2]["args"] = "(ImVector* self,int new_size,const T v)" +defs["ImVector_resize"][2]["argsT"] = {} +defs["ImVector_resize"][2]["argsT"][1] = {} +defs["ImVector_resize"][2]["argsT"][1]["name"] = "self" +defs["ImVector_resize"][2]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_resize"][2]["argsT"][2] = {} +defs["ImVector_resize"][2]["argsT"][2]["name"] = "new_size" +defs["ImVector_resize"][2]["argsT"][2]["type"] = "int" +defs["ImVector_resize"][2]["argsT"][3] = {} +defs["ImVector_resize"][2]["argsT"][3]["name"] = "v" +defs["ImVector_resize"][2]["argsT"][3]["type"] = "const T" +defs["ImVector_resize"][2]["argsoriginal"] = "(int new_size,const T& v)" +defs["ImVector_resize"][2]["call_args"] = "(new_size,v)" +defs["ImVector_resize"][2]["cimguiname"] = "ImVector_resize" +defs["ImVector_resize"][2]["comment"] = "" +defs["ImVector_resize"][2]["defaults"] = {} +defs["ImVector_resize"][2]["funcname"] = "resize" +defs["ImVector_resize"][2]["ov_cimguiname"] = "ImVector_resizeT" +defs["ImVector_resize"][2]["ret"] = "void" +defs["ImVector_resize"][2]["signature"] = "(int,const T)" +defs["ImVector_resize"][2]["stname"] = "ImVector" +defs["ImVector_resize"]["(int)"] = defs["ImVector_resize"][1] +defs["ImVector_resize"]["(int,const T)"] = defs["ImVector_resize"][2] +defs["ImVector_size"] = {} +defs["ImVector_size"][1] = {} +defs["ImVector_size"][1]["args"] = "(ImVector* self)" +defs["ImVector_size"][1]["argsT"] = {} +defs["ImVector_size"][1]["argsT"][1] = {} +defs["ImVector_size"][1]["argsT"][1]["name"] = "self" +defs["ImVector_size"][1]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_size"][1]["argsoriginal"] = "()" +defs["ImVector_size"][1]["call_args"] = "()" +defs["ImVector_size"][1]["cimguiname"] = "ImVector_size" +defs["ImVector_size"][1]["comment"] = "" +defs["ImVector_size"][1]["defaults"] = {} +defs["ImVector_size"][1]["funcname"] = "size" +defs["ImVector_size"][1]["ret"] = "int" +defs["ImVector_size"][1]["signature"] = "()" +defs["ImVector_size"][1]["stname"] = "ImVector" +defs["ImVector_size"]["()"] = defs["ImVector_size"][1] +defs["ImVector_size_in_bytes"] = {} +defs["ImVector_size_in_bytes"][1] = {} +defs["ImVector_size_in_bytes"][1]["args"] = "(ImVector* self)" +defs["ImVector_size_in_bytes"][1]["argsT"] = {} +defs["ImVector_size_in_bytes"][1]["argsT"][1] = {} +defs["ImVector_size_in_bytes"][1]["argsT"][1]["name"] = "self" +defs["ImVector_size_in_bytes"][1]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_size_in_bytes"][1]["argsoriginal"] = "()" +defs["ImVector_size_in_bytes"][1]["call_args"] = "()" +defs["ImVector_size_in_bytes"][1]["cimguiname"] = "ImVector_size_in_bytes" +defs["ImVector_size_in_bytes"][1]["comment"] = "" +defs["ImVector_size_in_bytes"][1]["defaults"] = {} +defs["ImVector_size_in_bytes"][1]["funcname"] = "size_in_bytes" +defs["ImVector_size_in_bytes"][1]["ret"] = "int" +defs["ImVector_size_in_bytes"][1]["signature"] = "()" +defs["ImVector_size_in_bytes"][1]["stname"] = "ImVector" +defs["ImVector_size_in_bytes"]["()"] = defs["ImVector_size_in_bytes"][1] +defs["ImVector_swap"] = {} +defs["ImVector_swap"][1] = {} +defs["ImVector_swap"][1]["args"] = "(ImVector* self,ImVector_T rhs)" +defs["ImVector_swap"][1]["argsT"] = {} +defs["ImVector_swap"][1]["argsT"][1] = {} +defs["ImVector_swap"][1]["argsT"][1]["name"] = "self" +defs["ImVector_swap"][1]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_swap"][1]["argsT"][2] = {} +defs["ImVector_swap"][1]["argsT"][2]["name"] = "rhs" +defs["ImVector_swap"][1]["argsT"][2]["type"] = "ImVector_T&" +defs["ImVector_swap"][1]["argsoriginal"] = "(ImVector& rhs)" +defs["ImVector_swap"][1]["call_args"] = "(rhs)" +defs["ImVector_swap"][1]["cimguiname"] = "ImVector_swap" +defs["ImVector_swap"][1]["comment"] = "" +defs["ImVector_swap"][1]["defaults"] = {} +defs["ImVector_swap"][1]["funcname"] = "swap" +defs["ImVector_swap"][1]["ret"] = "void" +defs["ImVector_swap"][1]["signature"] = "(ImVector_T)" +defs["ImVector_swap"][1]["stname"] = "ImVector" +defs["ImVector_swap"]["(ImVector_T)"] = defs["ImVector_swap"][1] defs["Pair_Pair"] = {} defs["Pair_Pair"][1] = {} defs["Pair_Pair"][1]["args"] = "(ImGuiID _key,int _val_i)" @@ -4714,13 +5257,13 @@ defs["igBegin"][1]["argsT"][2]["type"] = "bool*" defs["igBegin"][1]["argsT"][3] = {} defs["igBegin"][1]["argsT"][3]["name"] = "flags" defs["igBegin"][1]["argsT"][3]["type"] = "ImGuiWindowFlags" -defs["igBegin"][1]["argsoriginal"] = "(const char* name,bool* p_open=((void*)0),ImGuiWindowFlags flags=0)" +defs["igBegin"][1]["argsoriginal"] = "(const char* name,bool* p_open=((void *)0),ImGuiWindowFlags flags=0)" defs["igBegin"][1]["call_args"] = "(name,p_open,flags)" defs["igBegin"][1]["cimguiname"] = "igBegin" defs["igBegin"][1]["comment"] = "" defs["igBegin"][1]["defaults"] = {} defs["igBegin"][1]["defaults"]["flags"] = "0" -defs["igBegin"][1]["defaults"]["p_open"] = "((void*)0)" +defs["igBegin"][1]["defaults"]["p_open"] = "((void *)0)" defs["igBegin"][1]["funcname"] = "Begin" defs["igBegin"][1]["ret"] = "bool" defs["igBegin"][1]["signature"] = "(const char*,bool*,ImGuiWindowFlags)" @@ -4959,13 +5502,13 @@ defs["igBeginPopupContextItem"][1]["argsT"][1]["type"] = "const char*" defs["igBeginPopupContextItem"][1]["argsT"][2] = {} defs["igBeginPopupContextItem"][1]["argsT"][2]["name"] = "mouse_button" defs["igBeginPopupContextItem"][1]["argsT"][2]["type"] = "int" -defs["igBeginPopupContextItem"][1]["argsoriginal"] = "(const char* str_id=((void*)0),int mouse_button=1)" +defs["igBeginPopupContextItem"][1]["argsoriginal"] = "(const char* str_id=((void *)0),int mouse_button=1)" defs["igBeginPopupContextItem"][1]["call_args"] = "(str_id,mouse_button)" defs["igBeginPopupContextItem"][1]["cimguiname"] = "igBeginPopupContextItem" defs["igBeginPopupContextItem"][1]["comment"] = "" defs["igBeginPopupContextItem"][1]["defaults"] = {} defs["igBeginPopupContextItem"][1]["defaults"]["mouse_button"] = "1" -defs["igBeginPopupContextItem"][1]["defaults"]["str_id"] = "((void*)0)" +defs["igBeginPopupContextItem"][1]["defaults"]["str_id"] = "((void *)0)" defs["igBeginPopupContextItem"][1]["funcname"] = "BeginPopupContextItem" defs["igBeginPopupContextItem"][1]["ret"] = "bool" defs["igBeginPopupContextItem"][1]["signature"] = "(const char*,int)" @@ -4981,13 +5524,13 @@ defs["igBeginPopupContextVoid"][1]["argsT"][1]["type"] = "const char*" defs["igBeginPopupContextVoid"][1]["argsT"][2] = {} defs["igBeginPopupContextVoid"][1]["argsT"][2]["name"] = "mouse_button" defs["igBeginPopupContextVoid"][1]["argsT"][2]["type"] = "int" -defs["igBeginPopupContextVoid"][1]["argsoriginal"] = "(const char* str_id=((void*)0),int mouse_button=1)" +defs["igBeginPopupContextVoid"][1]["argsoriginal"] = "(const char* str_id=((void *)0),int mouse_button=1)" defs["igBeginPopupContextVoid"][1]["call_args"] = "(str_id,mouse_button)" defs["igBeginPopupContextVoid"][1]["cimguiname"] = "igBeginPopupContextVoid" defs["igBeginPopupContextVoid"][1]["comment"] = "" defs["igBeginPopupContextVoid"][1]["defaults"] = {} defs["igBeginPopupContextVoid"][1]["defaults"]["mouse_button"] = "1" -defs["igBeginPopupContextVoid"][1]["defaults"]["str_id"] = "((void*)0)" +defs["igBeginPopupContextVoid"][1]["defaults"]["str_id"] = "((void *)0)" defs["igBeginPopupContextVoid"][1]["funcname"] = "BeginPopupContextVoid" defs["igBeginPopupContextVoid"][1]["ret"] = "bool" defs["igBeginPopupContextVoid"][1]["signature"] = "(const char*,int)" @@ -5006,14 +5549,14 @@ defs["igBeginPopupContextWindow"][1]["argsT"][2]["type"] = "int" defs["igBeginPopupContextWindow"][1]["argsT"][3] = {} defs["igBeginPopupContextWindow"][1]["argsT"][3]["name"] = "also_over_items" defs["igBeginPopupContextWindow"][1]["argsT"][3]["type"] = "bool" -defs["igBeginPopupContextWindow"][1]["argsoriginal"] = "(const char* str_id=((void*)0),int mouse_button=1,bool also_over_items=true)" +defs["igBeginPopupContextWindow"][1]["argsoriginal"] = "(const char* str_id=((void *)0),int mouse_button=1,bool also_over_items=true)" defs["igBeginPopupContextWindow"][1]["call_args"] = "(str_id,mouse_button,also_over_items)" defs["igBeginPopupContextWindow"][1]["cimguiname"] = "igBeginPopupContextWindow" defs["igBeginPopupContextWindow"][1]["comment"] = "" defs["igBeginPopupContextWindow"][1]["defaults"] = {} defs["igBeginPopupContextWindow"][1]["defaults"]["also_over_items"] = "true" defs["igBeginPopupContextWindow"][1]["defaults"]["mouse_button"] = "1" -defs["igBeginPopupContextWindow"][1]["defaults"]["str_id"] = "((void*)0)" +defs["igBeginPopupContextWindow"][1]["defaults"]["str_id"] = "((void *)0)" defs["igBeginPopupContextWindow"][1]["funcname"] = "BeginPopupContextWindow" defs["igBeginPopupContextWindow"][1]["ret"] = "bool" defs["igBeginPopupContextWindow"][1]["signature"] = "(const char*,int,bool)" @@ -5032,13 +5575,13 @@ defs["igBeginPopupModal"][1]["argsT"][2]["type"] = "bool*" defs["igBeginPopupModal"][1]["argsT"][3] = {} defs["igBeginPopupModal"][1]["argsT"][3]["name"] = "flags" defs["igBeginPopupModal"][1]["argsT"][3]["type"] = "ImGuiWindowFlags" -defs["igBeginPopupModal"][1]["argsoriginal"] = "(const char* name,bool* p_open=((void*)0),ImGuiWindowFlags flags=0)" +defs["igBeginPopupModal"][1]["argsoriginal"] = "(const char* name,bool* p_open=((void *)0),ImGuiWindowFlags flags=0)" defs["igBeginPopupModal"][1]["call_args"] = "(name,p_open,flags)" defs["igBeginPopupModal"][1]["cimguiname"] = "igBeginPopupModal" defs["igBeginPopupModal"][1]["comment"] = "" defs["igBeginPopupModal"][1]["defaults"] = {} defs["igBeginPopupModal"][1]["defaults"]["flags"] = "0" -defs["igBeginPopupModal"][1]["defaults"]["p_open"] = "((void*)0)" +defs["igBeginPopupModal"][1]["defaults"]["p_open"] = "((void *)0)" defs["igBeginPopupModal"][1]["funcname"] = "BeginPopupModal" defs["igBeginPopupModal"][1]["ret"] = "bool" defs["igBeginPopupModal"][1]["signature"] = "(const char*,bool*,ImGuiWindowFlags)" @@ -5078,13 +5621,13 @@ defs["igBeginTabItem"][1]["argsT"][2]["type"] = "bool*" defs["igBeginTabItem"][1]["argsT"][3] = {} defs["igBeginTabItem"][1]["argsT"][3]["name"] = "flags" defs["igBeginTabItem"][1]["argsT"][3]["type"] = "ImGuiTabItemFlags" -defs["igBeginTabItem"][1]["argsoriginal"] = "(const char* label,bool* p_open=((void*)0),ImGuiTabItemFlags flags=0)" +defs["igBeginTabItem"][1]["argsoriginal"] = "(const char* label,bool* p_open=((void *)0),ImGuiTabItemFlags flags=0)" defs["igBeginTabItem"][1]["call_args"] = "(label,p_open,flags)" defs["igBeginTabItem"][1]["cimguiname"] = "igBeginTabItem" defs["igBeginTabItem"][1]["comment"] = "" defs["igBeginTabItem"][1]["defaults"] = {} defs["igBeginTabItem"][1]["defaults"]["flags"] = "0" -defs["igBeginTabItem"][1]["defaults"]["p_open"] = "((void*)0)" +defs["igBeginTabItem"][1]["defaults"]["p_open"] = "((void *)0)" defs["igBeginTabItem"][1]["funcname"] = "BeginTabItem" defs["igBeginTabItem"][1]["ret"] = "bool" defs["igBeginTabItem"][1]["signature"] = "(const char*,bool*,ImGuiTabItemFlags)" @@ -5236,13 +5779,13 @@ defs["igCalcTextSize"][1]["argsT"][3]["type"] = "bool" defs["igCalcTextSize"][1]["argsT"][4] = {} defs["igCalcTextSize"][1]["argsT"][4]["name"] = "wrap_width" defs["igCalcTextSize"][1]["argsT"][4]["type"] = "float" -defs["igCalcTextSize"][1]["argsoriginal"] = "(const char* text,const char* text_end=((void*)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)" +defs["igCalcTextSize"][1]["argsoriginal"] = "(const char* text,const char* text_end=((void *)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)" defs["igCalcTextSize"][1]["call_args"] = "(text,text_end,hide_text_after_double_hash,wrap_width)" defs["igCalcTextSize"][1]["cimguiname"] = "igCalcTextSize" defs["igCalcTextSize"][1]["comment"] = "" defs["igCalcTextSize"][1]["defaults"] = {} defs["igCalcTextSize"][1]["defaults"]["hide_text_after_double_hash"] = "false" -defs["igCalcTextSize"][1]["defaults"]["text_end"] = "((void*)0)" +defs["igCalcTextSize"][1]["defaults"]["text_end"] = "((void *)0)" defs["igCalcTextSize"][1]["defaults"]["wrap_width"] = "-1.0f" defs["igCalcTextSize"][1]["funcname"] = "CalcTextSize" defs["igCalcTextSize"][1]["ret"] = "ImVec2" @@ -5266,7 +5809,7 @@ defs["igCalcTextSize"][2]["argsT"][4]["type"] = "bool" defs["igCalcTextSize"][2]["argsT"][5] = {} defs["igCalcTextSize"][2]["argsT"][5]["name"] = "wrap_width" defs["igCalcTextSize"][2]["argsT"][5]["type"] = "float" -defs["igCalcTextSize"][2]["argsoriginal"] = "(const char* text,const char* text_end=((void*)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)" +defs["igCalcTextSize"][2]["argsoriginal"] = "(const char* text,const char* text_end=((void *)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)" defs["igCalcTextSize"][2]["call_args"] = "(text,text_end,hide_text_after_double_hash,wrap_width)" defs["igCalcTextSize"][2]["cimguiname"] = "igCalcTextSize" defs["igCalcTextSize"][2]["comment"] = "" @@ -5292,7 +5835,7 @@ defs["igCalcTextSize"][3]["argsT"][3]["type"] = "bool" defs["igCalcTextSize"][3]["argsT"][4] = {} defs["igCalcTextSize"][3]["argsT"][4]["name"] = "wrap_width" defs["igCalcTextSize"][3]["argsT"][4]["type"] = "float" -defs["igCalcTextSize"][3]["argsoriginal"] = "(const char* text,const char* text_end=((void*)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)" +defs["igCalcTextSize"][3]["argsoriginal"] = "(const char* text,const char* text_end=((void *)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)" defs["igCalcTextSize"][3]["call_args"] = "(text,text_end,hide_text_after_double_hash,wrap_width)" defs["igCalcTextSize"][3]["cimguiname"] = "igCalcTextSize" defs["igCalcTextSize"][3]["comment"] = "" @@ -5702,13 +6245,13 @@ defs["igColorPicker4"][1]["argsT"][3]["type"] = "ImGuiColorEditFlags" defs["igColorPicker4"][1]["argsT"][4] = {} defs["igColorPicker4"][1]["argsT"][4]["name"] = "ref_col" defs["igColorPicker4"][1]["argsT"][4]["type"] = "const float*" -defs["igColorPicker4"][1]["argsoriginal"] = "(const char* label,float col[4],ImGuiColorEditFlags flags=0,const float* ref_col=((void*)0))" +defs["igColorPicker4"][1]["argsoriginal"] = "(const char* label,float col[4],ImGuiColorEditFlags flags=0,const float* ref_col=((void *)0))" defs["igColorPicker4"][1]["call_args"] = "(label,col,flags,ref_col)" defs["igColorPicker4"][1]["cimguiname"] = "igColorPicker4" defs["igColorPicker4"][1]["comment"] = "" defs["igColorPicker4"][1]["defaults"] = {} defs["igColorPicker4"][1]["defaults"]["flags"] = "0" -defs["igColorPicker4"][1]["defaults"]["ref_col"] = "((void*)0)" +defs["igColorPicker4"][1]["defaults"]["ref_col"] = "((void *)0)" defs["igColorPicker4"][1]["funcname"] = "ColorPicker4" defs["igColorPicker4"][1]["ret"] = "bool" defs["igColorPicker4"][1]["signature"] = "(const char*,float[4],ImGuiColorEditFlags,const float*)" @@ -5727,14 +6270,14 @@ defs["igColumns"][1]["argsT"][2]["type"] = "const char*" defs["igColumns"][1]["argsT"][3] = {} defs["igColumns"][1]["argsT"][3]["name"] = "border" defs["igColumns"][1]["argsT"][3]["type"] = "bool" -defs["igColumns"][1]["argsoriginal"] = "(int count=1,const char* id=((void*)0),bool border=true)" +defs["igColumns"][1]["argsoriginal"] = "(int count=1,const char* id=((void *)0),bool border=true)" defs["igColumns"][1]["call_args"] = "(count,id,border)" defs["igColumns"][1]["cimguiname"] = "igColumns" defs["igColumns"][1]["comment"] = "" defs["igColumns"][1]["defaults"] = {} defs["igColumns"][1]["defaults"]["border"] = "true" defs["igColumns"][1]["defaults"]["count"] = "1" -defs["igColumns"][1]["defaults"]["id"] = "((void*)0)" +defs["igColumns"][1]["defaults"]["id"] = "((void *)0)" defs["igColumns"][1]["funcname"] = "Columns" defs["igColumns"][1]["ret"] = "void" defs["igColumns"][1]["signature"] = "(int,const char*,bool)" @@ -5840,12 +6383,12 @@ defs["igCreateContext"][1]["argsT"] = {} defs["igCreateContext"][1]["argsT"][1] = {} defs["igCreateContext"][1]["argsT"][1]["name"] = "shared_font_atlas" defs["igCreateContext"][1]["argsT"][1]["type"] = "ImFontAtlas*" -defs["igCreateContext"][1]["argsoriginal"] = "(ImFontAtlas* shared_font_atlas=((void*)0))" +defs["igCreateContext"][1]["argsoriginal"] = "(ImFontAtlas* shared_font_atlas=((void *)0))" defs["igCreateContext"][1]["call_args"] = "(shared_font_atlas)" defs["igCreateContext"][1]["cimguiname"] = "igCreateContext" defs["igCreateContext"][1]["comment"] = "" defs["igCreateContext"][1]["defaults"] = {} -defs["igCreateContext"][1]["defaults"]["shared_font_atlas"] = "((void*)0)" +defs["igCreateContext"][1]["defaults"]["shared_font_atlas"] = "((void *)0)" defs["igCreateContext"][1]["funcname"] = "CreateContext" defs["igCreateContext"][1]["ret"] = "ImGuiContext*" defs["igCreateContext"][1]["signature"] = "(ImFontAtlas*)" @@ -5890,12 +6433,12 @@ defs["igDestroyContext"][1]["argsT"] = {} defs["igDestroyContext"][1]["argsT"][1] = {} defs["igDestroyContext"][1]["argsT"][1]["name"] = "ctx" defs["igDestroyContext"][1]["argsT"][1]["type"] = "ImGuiContext*" -defs["igDestroyContext"][1]["argsoriginal"] = "(ImGuiContext* ctx=((void*)0))" +defs["igDestroyContext"][1]["argsoriginal"] = "(ImGuiContext* ctx=((void *)0))" defs["igDestroyContext"][1]["call_args"] = "(ctx)" defs["igDestroyContext"][1]["cimguiname"] = "igDestroyContext" defs["igDestroyContext"][1]["comment"] = "" defs["igDestroyContext"][1]["defaults"] = {} -defs["igDestroyContext"][1]["defaults"]["ctx"] = "((void*)0)" +defs["igDestroyContext"][1]["defaults"]["ctx"] = "((void *)0)" defs["igDestroyContext"][1]["funcname"] = "DestroyContext" defs["igDestroyContext"][1]["ret"] = "void" defs["igDestroyContext"][1]["signature"] = "(ImGuiContext*)" @@ -6092,13 +6635,13 @@ defs["igDragFloatRange2"][1]["argsT"][8]["type"] = "const char*" defs["igDragFloatRange2"][1]["argsT"][9] = {} defs["igDragFloatRange2"][1]["argsT"][9]["name"] = "power" defs["igDragFloatRange2"][1]["argsT"][9]["type"] = "float" -defs["igDragFloatRange2"][1]["argsoriginal"] = "(const char* label,float* v_current_min,float* v_current_max,float v_speed=1.0f,float v_min=0.0f,float v_max=0.0f,const char* format=\"%.3f\",const char* format_max=((void*)0),float power=1.0f)" +defs["igDragFloatRange2"][1]["argsoriginal"] = "(const char* label,float* v_current_min,float* v_current_max,float v_speed=1.0f,float v_min=0.0f,float v_max=0.0f,const char* format=\"%.3f\",const char* format_max=((void *)0),float power=1.0f)" defs["igDragFloatRange2"][1]["call_args"] = "(label,v_current_min,v_current_max,v_speed,v_min,v_max,format,format_max,power)" defs["igDragFloatRange2"][1]["cimguiname"] = "igDragFloatRange2" defs["igDragFloatRange2"][1]["comment"] = "" defs["igDragFloatRange2"][1]["defaults"] = {} defs["igDragFloatRange2"][1]["defaults"]["format"] = "\"%.3f\"" -defs["igDragFloatRange2"][1]["defaults"]["format_max"] = "((void*)0)" +defs["igDragFloatRange2"][1]["defaults"]["format_max"] = "((void *)0)" defs["igDragFloatRange2"][1]["defaults"]["power"] = "1.0f" defs["igDragFloatRange2"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloatRange2"][1]["defaults"]["v_min"] = "0.0f" @@ -6280,13 +6823,13 @@ defs["igDragIntRange2"][1]["argsT"][7]["type"] = "const char*" defs["igDragIntRange2"][1]["argsT"][8] = {} defs["igDragIntRange2"][1]["argsT"][8]["name"] = "format_max" defs["igDragIntRange2"][1]["argsT"][8]["type"] = "const char*" -defs["igDragIntRange2"][1]["argsoriginal"] = "(const char* label,int* v_current_min,int* v_current_max,float v_speed=1.0f,int v_min=0,int v_max=0,const char* format=\"%d\",const char* format_max=((void*)0))" +defs["igDragIntRange2"][1]["argsoriginal"] = "(const char* label,int* v_current_min,int* v_current_max,float v_speed=1.0f,int v_min=0,int v_max=0,const char* format=\"%d\",const char* format_max=((void *)0))" defs["igDragIntRange2"][1]["call_args"] = "(label,v_current_min,v_current_max,v_speed,v_min,v_max,format,format_max)" defs["igDragIntRange2"][1]["cimguiname"] = "igDragIntRange2" defs["igDragIntRange2"][1]["comment"] = "" defs["igDragIntRange2"][1]["defaults"] = {} defs["igDragIntRange2"][1]["defaults"]["format"] = "\"%d\"" -defs["igDragIntRange2"][1]["defaults"]["format_max"] = "((void*)0)" +defs["igDragIntRange2"][1]["defaults"]["format_max"] = "((void *)0)" defs["igDragIntRange2"][1]["defaults"]["v_max"] = "0" defs["igDragIntRange2"][1]["defaults"]["v_min"] = "0" defs["igDragIntRange2"][1]["defaults"]["v_speed"] = "1.0f" @@ -6323,15 +6866,15 @@ defs["igDragScalar"][1]["argsT"][7]["type"] = "const char*" defs["igDragScalar"][1]["argsT"][8] = {} defs["igDragScalar"][1]["argsT"][8]["name"] = "power" defs["igDragScalar"][1]["argsT"][8]["type"] = "float" -defs["igDragScalar"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,float v_speed,const void* v_min=((void*)0),const void* v_max=((void*)0),const char* format=((void*)0),float power=1.0f)" +defs["igDragScalar"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,float v_speed,const void* v_min=((void *)0),const void* v_max=((void *)0),const char* format=((void *)0),float power=1.0f)" defs["igDragScalar"][1]["call_args"] = "(label,data_type,v,v_speed,v_min,v_max,format,power)" defs["igDragScalar"][1]["cimguiname"] = "igDragScalar" defs["igDragScalar"][1]["comment"] = "" defs["igDragScalar"][1]["defaults"] = {} -defs["igDragScalar"][1]["defaults"]["format"] = "((void*)0)" +defs["igDragScalar"][1]["defaults"]["format"] = "((void *)0)" defs["igDragScalar"][1]["defaults"]["power"] = "1.0f" -defs["igDragScalar"][1]["defaults"]["v_max"] = "((void*)0)" -defs["igDragScalar"][1]["defaults"]["v_min"] = "((void*)0)" +defs["igDragScalar"][1]["defaults"]["v_max"] = "((void *)0)" +defs["igDragScalar"][1]["defaults"]["v_min"] = "((void *)0)" defs["igDragScalar"][1]["funcname"] = "DragScalar" defs["igDragScalar"][1]["ret"] = "bool" defs["igDragScalar"][1]["signature"] = "(const char*,ImGuiDataType,void*,float,const void*,const void*,const char*,float)" @@ -6368,15 +6911,15 @@ defs["igDragScalarN"][1]["argsT"][8]["type"] = "const char*" defs["igDragScalarN"][1]["argsT"][9] = {} defs["igDragScalarN"][1]["argsT"][9]["name"] = "power" defs["igDragScalarN"][1]["argsT"][9]["type"] = "float" -defs["igDragScalarN"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,int components,float v_speed,const void* v_min=((void*)0),const void* v_max=((void*)0),const char* format=((void*)0),float power=1.0f)" +defs["igDragScalarN"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,int components,float v_speed,const void* v_min=((void *)0),const void* v_max=((void *)0),const char* format=((void *)0),float power=1.0f)" defs["igDragScalarN"][1]["call_args"] = "(label,data_type,v,components,v_speed,v_min,v_max,format,power)" defs["igDragScalarN"][1]["cimguiname"] = "igDragScalarN" defs["igDragScalarN"][1]["comment"] = "" defs["igDragScalarN"][1]["defaults"] = {} -defs["igDragScalarN"][1]["defaults"]["format"] = "((void*)0)" +defs["igDragScalarN"][1]["defaults"]["format"] = "((void *)0)" defs["igDragScalarN"][1]["defaults"]["power"] = "1.0f" -defs["igDragScalarN"][1]["defaults"]["v_max"] = "((void*)0)" -defs["igDragScalarN"][1]["defaults"]["v_min"] = "((void*)0)" +defs["igDragScalarN"][1]["defaults"]["v_max"] = "((void *)0)" +defs["igDragScalarN"][1]["defaults"]["v_min"] = "((void *)0)" defs["igDragScalarN"][1]["funcname"] = "DragScalarN" defs["igDragScalarN"][1]["ret"] = "bool" defs["igDragScalarN"][1]["signature"] = "(const char*,ImGuiDataType,void*,int,float,const void*,const void*,const char*,float)" @@ -8462,15 +9005,15 @@ defs["igInputScalar"][1]["argsT"][6]["type"] = "const char*" defs["igInputScalar"][1]["argsT"][7] = {} defs["igInputScalar"][1]["argsT"][7]["name"] = "flags" defs["igInputScalar"][1]["argsT"][7]["type"] = "ImGuiInputTextFlags" -defs["igInputScalar"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,const void* step=((void*)0),const void* step_fast=((void*)0),const char* format=((void*)0),ImGuiInputTextFlags flags=0)" +defs["igInputScalar"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,const void* step=((void *)0),const void* step_fast=((void *)0),const char* format=((void *)0),ImGuiInputTextFlags flags=0)" defs["igInputScalar"][1]["call_args"] = "(label,data_type,v,step,step_fast,format,flags)" defs["igInputScalar"][1]["cimguiname"] = "igInputScalar" defs["igInputScalar"][1]["comment"] = "" defs["igInputScalar"][1]["defaults"] = {} defs["igInputScalar"][1]["defaults"]["flags"] = "0" -defs["igInputScalar"][1]["defaults"]["format"] = "((void*)0)" -defs["igInputScalar"][1]["defaults"]["step"] = "((void*)0)" -defs["igInputScalar"][1]["defaults"]["step_fast"] = "((void*)0)" +defs["igInputScalar"][1]["defaults"]["format"] = "((void *)0)" +defs["igInputScalar"][1]["defaults"]["step"] = "((void *)0)" +defs["igInputScalar"][1]["defaults"]["step_fast"] = "((void *)0)" defs["igInputScalar"][1]["funcname"] = "InputScalar" defs["igInputScalar"][1]["ret"] = "bool" defs["igInputScalar"][1]["signature"] = "(const char*,ImGuiDataType,void*,const void*,const void*,const char*,ImGuiInputTextFlags)" @@ -8504,15 +9047,15 @@ defs["igInputScalarN"][1]["argsT"][7]["type"] = "const char*" defs["igInputScalarN"][1]["argsT"][8] = {} defs["igInputScalarN"][1]["argsT"][8]["name"] = "flags" defs["igInputScalarN"][1]["argsT"][8]["type"] = "ImGuiInputTextFlags" -defs["igInputScalarN"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,int components,const void* step=((void*)0),const void* step_fast=((void*)0),const char* format=((void*)0),ImGuiInputTextFlags flags=0)" +defs["igInputScalarN"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,int components,const void* step=((void *)0),const void* step_fast=((void *)0),const char* format=((void *)0),ImGuiInputTextFlags flags=0)" defs["igInputScalarN"][1]["call_args"] = "(label,data_type,v,components,step,step_fast,format,flags)" defs["igInputScalarN"][1]["cimguiname"] = "igInputScalarN" defs["igInputScalarN"][1]["comment"] = "" defs["igInputScalarN"][1]["defaults"] = {} defs["igInputScalarN"][1]["defaults"]["flags"] = "0" -defs["igInputScalarN"][1]["defaults"]["format"] = "((void*)0)" -defs["igInputScalarN"][1]["defaults"]["step"] = "((void*)0)" -defs["igInputScalarN"][1]["defaults"]["step_fast"] = "((void*)0)" +defs["igInputScalarN"][1]["defaults"]["format"] = "((void *)0)" +defs["igInputScalarN"][1]["defaults"]["step"] = "((void *)0)" +defs["igInputScalarN"][1]["defaults"]["step_fast"] = "((void *)0)" defs["igInputScalarN"][1]["funcname"] = "InputScalarN" defs["igInputScalarN"][1]["ret"] = "bool" defs["igInputScalarN"][1]["signature"] = "(const char*,ImGuiDataType,void*,int,const void*,const void*,const char*,ImGuiInputTextFlags)" @@ -8540,14 +9083,14 @@ defs["igInputText"][1]["argsT"][5]["type"] = "ImGuiInputTextCallback" defs["igInputText"][1]["argsT"][6] = {} defs["igInputText"][1]["argsT"][6]["name"] = "user_data" defs["igInputText"][1]["argsT"][6]["type"] = "void*" -defs["igInputText"][1]["argsoriginal"] = "(const char* label,char* buf,size_t buf_size,ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void*)0),void* user_data=((void*)0))" +defs["igInputText"][1]["argsoriginal"] = "(const char* label,char* buf,size_t buf_size,ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void *)0),void* user_data=((void *)0))" defs["igInputText"][1]["call_args"] = "(label,buf,buf_size,flags,callback,user_data)" defs["igInputText"][1]["cimguiname"] = "igInputText" defs["igInputText"][1]["comment"] = "" defs["igInputText"][1]["defaults"] = {} -defs["igInputText"][1]["defaults"]["callback"] = "((void*)0)" +defs["igInputText"][1]["defaults"]["callback"] = "((void *)0)" defs["igInputText"][1]["defaults"]["flags"] = "0" -defs["igInputText"][1]["defaults"]["user_data"] = "((void*)0)" +defs["igInputText"][1]["defaults"]["user_data"] = "((void *)0)" defs["igInputText"][1]["funcname"] = "InputText" defs["igInputText"][1]["ret"] = "bool" defs["igInputText"][1]["signature"] = "(const char*,char*,size_t,ImGuiInputTextFlags,ImGuiInputTextCallback,void*)" @@ -8578,15 +9121,15 @@ defs["igInputTextMultiline"][1]["argsT"][6]["type"] = "ImGuiInputTextCallback" defs["igInputTextMultiline"][1]["argsT"][7] = {} defs["igInputTextMultiline"][1]["argsT"][7]["name"] = "user_data" defs["igInputTextMultiline"][1]["argsT"][7]["type"] = "void*" -defs["igInputTextMultiline"][1]["argsoriginal"] = "(const char* label,char* buf,size_t buf_size,const ImVec2& size=ImVec2(0,0),ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void*)0),void* user_data=((void*)0))" +defs["igInputTextMultiline"][1]["argsoriginal"] = "(const char* label,char* buf,size_t buf_size,const ImVec2& size=ImVec2(0,0),ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void *)0),void* user_data=((void *)0))" defs["igInputTextMultiline"][1]["call_args"] = "(label,buf,buf_size,size,flags,callback,user_data)" defs["igInputTextMultiline"][1]["cimguiname"] = "igInputTextMultiline" defs["igInputTextMultiline"][1]["comment"] = "" defs["igInputTextMultiline"][1]["defaults"] = {} -defs["igInputTextMultiline"][1]["defaults"]["callback"] = "((void*)0)" +defs["igInputTextMultiline"][1]["defaults"]["callback"] = "((void *)0)" defs["igInputTextMultiline"][1]["defaults"]["flags"] = "0" defs["igInputTextMultiline"][1]["defaults"]["size"] = "ImVec2(0,0)" -defs["igInputTextMultiline"][1]["defaults"]["user_data"] = "((void*)0)" +defs["igInputTextMultiline"][1]["defaults"]["user_data"] = "((void *)0)" defs["igInputTextMultiline"][1]["funcname"] = "InputTextMultiline" defs["igInputTextMultiline"][1]["ret"] = "bool" defs["igInputTextMultiline"][1]["signature"] = "(const char*,char*,size_t,const ImVec2,ImGuiInputTextFlags,ImGuiInputTextCallback,void*)" @@ -8951,12 +9494,12 @@ defs["igIsMousePosValid"][1]["argsT"] = {} defs["igIsMousePosValid"][1]["argsT"][1] = {} defs["igIsMousePosValid"][1]["argsT"][1]["name"] = "mouse_pos" defs["igIsMousePosValid"][1]["argsT"][1]["type"] = "const ImVec2*" -defs["igIsMousePosValid"][1]["argsoriginal"] = "(const ImVec2* mouse_pos=((void*)0))" +defs["igIsMousePosValid"][1]["argsoriginal"] = "(const ImVec2* mouse_pos=((void *)0))" defs["igIsMousePosValid"][1]["call_args"] = "(mouse_pos)" defs["igIsMousePosValid"][1]["cimguiname"] = "igIsMousePosValid" defs["igIsMousePosValid"][1]["comment"] = "" defs["igIsMousePosValid"][1]["defaults"] = {} -defs["igIsMousePosValid"][1]["defaults"]["mouse_pos"] = "((void*)0)" +defs["igIsMousePosValid"][1]["defaults"]["mouse_pos"] = "((void *)0)" defs["igIsMousePosValid"][1]["funcname"] = "IsMousePosValid" defs["igIsMousePosValid"][1]["ret"] = "bool" defs["igIsMousePosValid"][1]["signature"] = "(const ImVec2*)" @@ -9387,12 +9930,12 @@ defs["igLogToFile"][1]["argsT"][1]["type"] = "int" defs["igLogToFile"][1]["argsT"][2] = {} defs["igLogToFile"][1]["argsT"][2]["name"] = "filename" defs["igLogToFile"][1]["argsT"][2]["type"] = "const char*" -defs["igLogToFile"][1]["argsoriginal"] = "(int max_depth=-1,const char* filename=((void*)0))" +defs["igLogToFile"][1]["argsoriginal"] = "(int max_depth=-1,const char* filename=((void *)0))" defs["igLogToFile"][1]["call_args"] = "(max_depth,filename)" defs["igLogToFile"][1]["cimguiname"] = "igLogToFile" defs["igLogToFile"][1]["comment"] = "" defs["igLogToFile"][1]["defaults"] = {} -defs["igLogToFile"][1]["defaults"]["filename"] = "((void*)0)" +defs["igLogToFile"][1]["defaults"]["filename"] = "((void *)0)" defs["igLogToFile"][1]["defaults"]["max_depth"] = "-1" defs["igLogToFile"][1]["funcname"] = "LogToFile" defs["igLogToFile"][1]["ret"] = "void" @@ -9467,14 +10010,14 @@ defs["igMenuItem"][1]["argsT"][3]["type"] = "bool" defs["igMenuItem"][1]["argsT"][4] = {} defs["igMenuItem"][1]["argsT"][4]["name"] = "enabled" defs["igMenuItem"][1]["argsT"][4]["type"] = "bool" -defs["igMenuItem"][1]["argsoriginal"] = "(const char* label,const char* shortcut=((void*)0),bool selected=false,bool enabled=true)" +defs["igMenuItem"][1]["argsoriginal"] = "(const char* label,const char* shortcut=((void *)0),bool selected=false,bool enabled=true)" defs["igMenuItem"][1]["call_args"] = "(label,shortcut,selected,enabled)" defs["igMenuItem"][1]["cimguiname"] = "igMenuItem" defs["igMenuItem"][1]["comment"] = "" defs["igMenuItem"][1]["defaults"] = {} defs["igMenuItem"][1]["defaults"]["enabled"] = "true" defs["igMenuItem"][1]["defaults"]["selected"] = "false" -defs["igMenuItem"][1]["defaults"]["shortcut"] = "((void*)0)" +defs["igMenuItem"][1]["defaults"]["shortcut"] = "((void *)0)" defs["igMenuItem"][1]["funcname"] = "MenuItem" defs["igMenuItem"][1]["ov_cimguiname"] = "igMenuItemBool" defs["igMenuItem"][1]["ret"] = "bool" @@ -9577,13 +10120,13 @@ defs["igOpenPopupOnItemClick"][1]["argsT"][1]["type"] = "const char*" defs["igOpenPopupOnItemClick"][1]["argsT"][2] = {} defs["igOpenPopupOnItemClick"][1]["argsT"][2]["name"] = "mouse_button" defs["igOpenPopupOnItemClick"][1]["argsT"][2]["type"] = "int" -defs["igOpenPopupOnItemClick"][1]["argsoriginal"] = "(const char* str_id=((void*)0),int mouse_button=1)" +defs["igOpenPopupOnItemClick"][1]["argsoriginal"] = "(const char* str_id=((void *)0),int mouse_button=1)" defs["igOpenPopupOnItemClick"][1]["call_args"] = "(str_id,mouse_button)" defs["igOpenPopupOnItemClick"][1]["cimguiname"] = "igOpenPopupOnItemClick" defs["igOpenPopupOnItemClick"][1]["comment"] = "" defs["igOpenPopupOnItemClick"][1]["defaults"] = {} defs["igOpenPopupOnItemClick"][1]["defaults"]["mouse_button"] = "1" -defs["igOpenPopupOnItemClick"][1]["defaults"]["str_id"] = "((void*)0)" +defs["igOpenPopupOnItemClick"][1]["defaults"]["str_id"] = "((void *)0)" defs["igOpenPopupOnItemClick"][1]["funcname"] = "OpenPopupOnItemClick" defs["igOpenPopupOnItemClick"][1]["ret"] = "bool" defs["igOpenPopupOnItemClick"][1]["signature"] = "(const char*,int)" @@ -9620,13 +10163,13 @@ defs["igPlotHistogram"][1]["argsT"][8]["type"] = "ImVec2" defs["igPlotHistogram"][1]["argsT"][9] = {} defs["igPlotHistogram"][1]["argsT"][9]["name"] = "stride" defs["igPlotHistogram"][1]["argsT"][9]["type"] = "int" -defs["igPlotHistogram"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" +defs["igPlotHistogram"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void *)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" defs["igPlotHistogram"][1]["call_args"] = "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)" defs["igPlotHistogram"][1]["cimguiname"] = "igPlotHistogram" defs["igPlotHistogram"][1]["comment"] = "" defs["igPlotHistogram"][1]["defaults"] = {} defs["igPlotHistogram"][1]["defaults"]["graph_size"] = "ImVec2(0,0)" -defs["igPlotHistogram"][1]["defaults"]["overlay_text"] = "((void*)0)" +defs["igPlotHistogram"][1]["defaults"]["overlay_text"] = "((void *)0)" defs["igPlotHistogram"][1]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotHistogram"][1]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotHistogram"][1]["defaults"]["stride"] = "sizeof(float)" @@ -9668,13 +10211,13 @@ defs["igPlotHistogram"][2]["argsT"][8]["type"] = "float" defs["igPlotHistogram"][2]["argsT"][9] = {} defs["igPlotHistogram"][2]["argsT"][9]["name"] = "graph_size" defs["igPlotHistogram"][2]["argsT"][9]["type"] = "ImVec2" -defs["igPlotHistogram"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0))" +defs["igPlotHistogram"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void *)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0))" defs["igPlotHistogram"][2]["call_args"] = "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)" defs["igPlotHistogram"][2]["cimguiname"] = "igPlotHistogram" defs["igPlotHistogram"][2]["comment"] = "" defs["igPlotHistogram"][2]["defaults"] = {} defs["igPlotHistogram"][2]["defaults"]["graph_size"] = "ImVec2(0,0)" -defs["igPlotHistogram"][2]["defaults"]["overlay_text"] = "((void*)0)" +defs["igPlotHistogram"][2]["defaults"]["overlay_text"] = "((void *)0)" defs["igPlotHistogram"][2]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotHistogram"][2]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotHistogram"][2]["defaults"]["values_offset"] = "0" @@ -9716,13 +10259,13 @@ defs["igPlotLines"][1]["argsT"][8]["type"] = "ImVec2" defs["igPlotLines"][1]["argsT"][9] = {} defs["igPlotLines"][1]["argsT"][9]["name"] = "stride" defs["igPlotLines"][1]["argsT"][9]["type"] = "int" -defs["igPlotLines"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" +defs["igPlotLines"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void *)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" defs["igPlotLines"][1]["call_args"] = "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)" defs["igPlotLines"][1]["cimguiname"] = "igPlotLines" defs["igPlotLines"][1]["comment"] = "" defs["igPlotLines"][1]["defaults"] = {} defs["igPlotLines"][1]["defaults"]["graph_size"] = "ImVec2(0,0)" -defs["igPlotLines"][1]["defaults"]["overlay_text"] = "((void*)0)" +defs["igPlotLines"][1]["defaults"]["overlay_text"] = "((void *)0)" defs["igPlotLines"][1]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotLines"][1]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotLines"][1]["defaults"]["stride"] = "sizeof(float)" @@ -9764,13 +10307,13 @@ defs["igPlotLines"][2]["argsT"][8]["type"] = "float" defs["igPlotLines"][2]["argsT"][9] = {} defs["igPlotLines"][2]["argsT"][9]["name"] = "graph_size" defs["igPlotLines"][2]["argsT"][9]["type"] = "ImVec2" -defs["igPlotLines"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0))" +defs["igPlotLines"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void *)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0))" defs["igPlotLines"][2]["call_args"] = "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)" defs["igPlotLines"][2]["cimguiname"] = "igPlotLines" defs["igPlotLines"][2]["comment"] = "" defs["igPlotLines"][2]["defaults"] = {} defs["igPlotLines"][2]["defaults"]["graph_size"] = "ImVec2(0,0)" -defs["igPlotLines"][2]["defaults"]["overlay_text"] = "((void*)0)" +defs["igPlotLines"][2]["defaults"]["overlay_text"] = "((void *)0)" defs["igPlotLines"][2]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotLines"][2]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotLines"][2]["defaults"]["values_offset"] = "0" @@ -9928,12 +10471,12 @@ defs["igProgressBar"][1]["argsT"][2]["type"] = "const ImVec2" defs["igProgressBar"][1]["argsT"][3] = {} defs["igProgressBar"][1]["argsT"][3]["name"] = "overlay" defs["igProgressBar"][1]["argsT"][3]["type"] = "const char*" -defs["igProgressBar"][1]["argsoriginal"] = "(float fraction,const ImVec2& size_arg=ImVec2(-1,0),const char* overlay=((void*)0))" +defs["igProgressBar"][1]["argsoriginal"] = "(float fraction,const ImVec2& size_arg=ImVec2(-1,0),const char* overlay=((void *)0))" defs["igProgressBar"][1]["call_args"] = "(fraction,size_arg,overlay)" defs["igProgressBar"][1]["cimguiname"] = "igProgressBar" defs["igProgressBar"][1]["comment"] = "" defs["igProgressBar"][1]["defaults"] = {} -defs["igProgressBar"][1]["defaults"]["overlay"] = "((void*)0)" +defs["igProgressBar"][1]["defaults"]["overlay"] = "((void *)0)" defs["igProgressBar"][1]["defaults"]["size_arg"] = "ImVec2(-1,0)" defs["igProgressBar"][1]["funcname"] = "ProgressBar" defs["igProgressBar"][1]["ret"] = "void" @@ -10325,12 +10868,12 @@ defs["igSaveIniSettingsToMemory"][1]["argsT"] = {} defs["igSaveIniSettingsToMemory"][1]["argsT"][1] = {} defs["igSaveIniSettingsToMemory"][1]["argsT"][1]["name"] = "out_ini_size" defs["igSaveIniSettingsToMemory"][1]["argsT"][1]["type"] = "size_t*" -defs["igSaveIniSettingsToMemory"][1]["argsoriginal"] = "(size_t* out_ini_size=((void*)0))" +defs["igSaveIniSettingsToMemory"][1]["argsoriginal"] = "(size_t* out_ini_size=((void *)0))" defs["igSaveIniSettingsToMemory"][1]["call_args"] = "(out_ini_size)" defs["igSaveIniSettingsToMemory"][1]["cimguiname"] = "igSaveIniSettingsToMemory" defs["igSaveIniSettingsToMemory"][1]["comment"] = "" defs["igSaveIniSettingsToMemory"][1]["defaults"] = {} -defs["igSaveIniSettingsToMemory"][1]["defaults"]["out_ini_size"] = "((void*)0)" +defs["igSaveIniSettingsToMemory"][1]["defaults"]["out_ini_size"] = "((void *)0)" defs["igSaveIniSettingsToMemory"][1]["funcname"] = "SaveIniSettingsToMemory" defs["igSaveIniSettingsToMemory"][1]["ret"] = "const char*" defs["igSaveIniSettingsToMemory"][1]["signature"] = "(size_t*)" @@ -10425,12 +10968,12 @@ defs["igSetAllocatorFunctions"][1]["argsT"][2]["type"] = "void(*)(void* ptr,void defs["igSetAllocatorFunctions"][1]["argsT"][3] = {} defs["igSetAllocatorFunctions"][1]["argsT"][3]["name"] = "user_data" defs["igSetAllocatorFunctions"][1]["argsT"][3]["type"] = "void*" -defs["igSetAllocatorFunctions"][1]["argsoriginal"] = "(void*(*alloc_func)(size_t sz,void* user_data),void(*free_func)(void* ptr,void* user_data),void* user_data=((void*)0))" +defs["igSetAllocatorFunctions"][1]["argsoriginal"] = "(void*(*alloc_func)(size_t sz,void* user_data),void(*free_func)(void* ptr,void* user_data),void* user_data=((void *)0))" defs["igSetAllocatorFunctions"][1]["call_args"] = "(alloc_func,free_func,user_data)" defs["igSetAllocatorFunctions"][1]["cimguiname"] = "igSetAllocatorFunctions" defs["igSetAllocatorFunctions"][1]["comment"] = "" defs["igSetAllocatorFunctions"][1]["defaults"] = {} -defs["igSetAllocatorFunctions"][1]["defaults"]["user_data"] = "((void*)0)" +defs["igSetAllocatorFunctions"][1]["defaults"]["user_data"] = "((void *)0)" defs["igSetAllocatorFunctions"][1]["funcname"] = "SetAllocatorFunctions" defs["igSetAllocatorFunctions"][1]["ret"] = "void" defs["igSetAllocatorFunctions"][1]["signature"] = "(void*(*)(size_t,void*),void(*)(void*,void*),void*)" @@ -10837,13 +11380,13 @@ defs["igSetNextWindowSizeConstraints"][1]["argsT"][3]["type"] = "ImGuiSizeCallba defs["igSetNextWindowSizeConstraints"][1]["argsT"][4] = {} defs["igSetNextWindowSizeConstraints"][1]["argsT"][4]["name"] = "custom_callback_data" defs["igSetNextWindowSizeConstraints"][1]["argsT"][4]["type"] = "void*" -defs["igSetNextWindowSizeConstraints"][1]["argsoriginal"] = "(const ImVec2& size_min,const ImVec2& size_max,ImGuiSizeCallback custom_callback=((void*)0),void* custom_callback_data=((void*)0))" +defs["igSetNextWindowSizeConstraints"][1]["argsoriginal"] = "(const ImVec2& size_min,const ImVec2& size_max,ImGuiSizeCallback custom_callback=((void *)0),void* custom_callback_data=((void *)0))" defs["igSetNextWindowSizeConstraints"][1]["call_args"] = "(size_min,size_max,custom_callback,custom_callback_data)" defs["igSetNextWindowSizeConstraints"][1]["cimguiname"] = "igSetNextWindowSizeConstraints" defs["igSetNextWindowSizeConstraints"][1]["comment"] = "" defs["igSetNextWindowSizeConstraints"][1]["defaults"] = {} -defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback"] = "((void*)0)" -defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback_data"] = "((void*)0)" +defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback"] = "((void *)0)" +defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback_data"] = "((void *)0)" defs["igSetNextWindowSizeConstraints"][1]["funcname"] = "SetNextWindowSizeConstraints" defs["igSetNextWindowSizeConstraints"][1]["ret"] = "void" defs["igSetNextWindowSizeConstraints"][1]["signature"] = "(const ImVec2,const ImVec2,ImGuiSizeCallback,void*)" @@ -11191,12 +11734,12 @@ defs["igShowAboutWindow"][1]["argsT"] = {} defs["igShowAboutWindow"][1]["argsT"][1] = {} defs["igShowAboutWindow"][1]["argsT"][1]["name"] = "p_open" defs["igShowAboutWindow"][1]["argsT"][1]["type"] = "bool*" -defs["igShowAboutWindow"][1]["argsoriginal"] = "(bool* p_open=((void*)0))" +defs["igShowAboutWindow"][1]["argsoriginal"] = "(bool* p_open=((void *)0))" defs["igShowAboutWindow"][1]["call_args"] = "(p_open)" defs["igShowAboutWindow"][1]["cimguiname"] = "igShowAboutWindow" defs["igShowAboutWindow"][1]["comment"] = "" defs["igShowAboutWindow"][1]["defaults"] = {} -defs["igShowAboutWindow"][1]["defaults"]["p_open"] = "((void*)0)" +defs["igShowAboutWindow"][1]["defaults"]["p_open"] = "((void *)0)" defs["igShowAboutWindow"][1]["funcname"] = "ShowAboutWindow" defs["igShowAboutWindow"][1]["ret"] = "void" defs["igShowAboutWindow"][1]["signature"] = "(bool*)" @@ -11209,12 +11752,12 @@ defs["igShowDemoWindow"][1]["argsT"] = {} defs["igShowDemoWindow"][1]["argsT"][1] = {} defs["igShowDemoWindow"][1]["argsT"][1]["name"] = "p_open" defs["igShowDemoWindow"][1]["argsT"][1]["type"] = "bool*" -defs["igShowDemoWindow"][1]["argsoriginal"] = "(bool* p_open=((void*)0))" +defs["igShowDemoWindow"][1]["argsoriginal"] = "(bool* p_open=((void *)0))" defs["igShowDemoWindow"][1]["call_args"] = "(p_open)" defs["igShowDemoWindow"][1]["cimguiname"] = "igShowDemoWindow" defs["igShowDemoWindow"][1]["comment"] = "" defs["igShowDemoWindow"][1]["defaults"] = {} -defs["igShowDemoWindow"][1]["defaults"]["p_open"] = "((void*)0)" +defs["igShowDemoWindow"][1]["defaults"]["p_open"] = "((void *)0)" defs["igShowDemoWindow"][1]["funcname"] = "ShowDemoWindow" defs["igShowDemoWindow"][1]["ret"] = "void" defs["igShowDemoWindow"][1]["signature"] = "(bool*)" @@ -11244,12 +11787,12 @@ defs["igShowMetricsWindow"][1]["argsT"] = {} defs["igShowMetricsWindow"][1]["argsT"][1] = {} defs["igShowMetricsWindow"][1]["argsT"][1]["name"] = "p_open" defs["igShowMetricsWindow"][1]["argsT"][1]["type"] = "bool*" -defs["igShowMetricsWindow"][1]["argsoriginal"] = "(bool* p_open=((void*)0))" +defs["igShowMetricsWindow"][1]["argsoriginal"] = "(bool* p_open=((void *)0))" defs["igShowMetricsWindow"][1]["call_args"] = "(p_open)" defs["igShowMetricsWindow"][1]["cimguiname"] = "igShowMetricsWindow" defs["igShowMetricsWindow"][1]["comment"] = "" defs["igShowMetricsWindow"][1]["defaults"] = {} -defs["igShowMetricsWindow"][1]["defaults"]["p_open"] = "((void*)0)" +defs["igShowMetricsWindow"][1]["defaults"]["p_open"] = "((void *)0)" defs["igShowMetricsWindow"][1]["funcname"] = "ShowMetricsWindow" defs["igShowMetricsWindow"][1]["ret"] = "void" defs["igShowMetricsWindow"][1]["signature"] = "(bool*)" @@ -11262,12 +11805,12 @@ defs["igShowStyleEditor"][1]["argsT"] = {} defs["igShowStyleEditor"][1]["argsT"][1] = {} defs["igShowStyleEditor"][1]["argsT"][1]["name"] = "ref" defs["igShowStyleEditor"][1]["argsT"][1]["type"] = "ImGuiStyle*" -defs["igShowStyleEditor"][1]["argsoriginal"] = "(ImGuiStyle* ref=((void*)0))" +defs["igShowStyleEditor"][1]["argsoriginal"] = "(ImGuiStyle* ref=((void *)0))" defs["igShowStyleEditor"][1]["call_args"] = "(ref)" defs["igShowStyleEditor"][1]["cimguiname"] = "igShowStyleEditor" defs["igShowStyleEditor"][1]["comment"] = "" defs["igShowStyleEditor"][1]["defaults"] = {} -defs["igShowStyleEditor"][1]["defaults"]["ref"] = "((void*)0)" +defs["igShowStyleEditor"][1]["defaults"]["ref"] = "((void *)0)" defs["igShowStyleEditor"][1]["funcname"] = "ShowStyleEditor" defs["igShowStyleEditor"][1]["ret"] = "void" defs["igShowStyleEditor"][1]["signature"] = "(ImGuiStyle*)" @@ -11617,12 +12160,12 @@ defs["igSliderScalar"][1]["argsT"][6]["type"] = "const char*" defs["igSliderScalar"][1]["argsT"][7] = {} defs["igSliderScalar"][1]["argsT"][7]["name"] = "power" defs["igSliderScalar"][1]["argsT"][7]["type"] = "float" -defs["igSliderScalar"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,const void* v_min,const void* v_max,const char* format=((void*)0),float power=1.0f)" +defs["igSliderScalar"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,const void* v_min,const void* v_max,const char* format=((void *)0),float power=1.0f)" defs["igSliderScalar"][1]["call_args"] = "(label,data_type,v,v_min,v_max,format,power)" defs["igSliderScalar"][1]["cimguiname"] = "igSliderScalar" defs["igSliderScalar"][1]["comment"] = "" defs["igSliderScalar"][1]["defaults"] = {} -defs["igSliderScalar"][1]["defaults"]["format"] = "((void*)0)" +defs["igSliderScalar"][1]["defaults"]["format"] = "((void *)0)" defs["igSliderScalar"][1]["defaults"]["power"] = "1.0f" defs["igSliderScalar"][1]["funcname"] = "SliderScalar" defs["igSliderScalar"][1]["ret"] = "bool" @@ -11657,12 +12200,12 @@ defs["igSliderScalarN"][1]["argsT"][7]["type"] = "const char*" defs["igSliderScalarN"][1]["argsT"][8] = {} defs["igSliderScalarN"][1]["argsT"][8]["name"] = "power" defs["igSliderScalarN"][1]["argsT"][8]["type"] = "float" -defs["igSliderScalarN"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,int components,const void* v_min,const void* v_max,const char* format=((void*)0),float power=1.0f)" +defs["igSliderScalarN"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,int components,const void* v_min,const void* v_max,const char* format=((void *)0),float power=1.0f)" defs["igSliderScalarN"][1]["call_args"] = "(label,data_type,v,components,v_min,v_max,format,power)" defs["igSliderScalarN"][1]["cimguiname"] = "igSliderScalarN" defs["igSliderScalarN"][1]["comment"] = "" defs["igSliderScalarN"][1]["defaults"] = {} -defs["igSliderScalarN"][1]["defaults"]["format"] = "((void*)0)" +defs["igSliderScalarN"][1]["defaults"]["format"] = "((void *)0)" defs["igSliderScalarN"][1]["defaults"]["power"] = "1.0f" defs["igSliderScalarN"][1]["funcname"] = "SliderScalarN" defs["igSliderScalarN"][1]["ret"] = "bool" @@ -11707,12 +12250,12 @@ defs["igStyleColorsClassic"][1]["argsT"] = {} defs["igStyleColorsClassic"][1]["argsT"][1] = {} defs["igStyleColorsClassic"][1]["argsT"][1]["name"] = "dst" defs["igStyleColorsClassic"][1]["argsT"][1]["type"] = "ImGuiStyle*" -defs["igStyleColorsClassic"][1]["argsoriginal"] = "(ImGuiStyle* dst=((void*)0))" +defs["igStyleColorsClassic"][1]["argsoriginal"] = "(ImGuiStyle* dst=((void *)0))" defs["igStyleColorsClassic"][1]["call_args"] = "(dst)" defs["igStyleColorsClassic"][1]["cimguiname"] = "igStyleColorsClassic" defs["igStyleColorsClassic"][1]["comment"] = "" defs["igStyleColorsClassic"][1]["defaults"] = {} -defs["igStyleColorsClassic"][1]["defaults"]["dst"] = "((void*)0)" +defs["igStyleColorsClassic"][1]["defaults"]["dst"] = "((void *)0)" defs["igStyleColorsClassic"][1]["funcname"] = "StyleColorsClassic" defs["igStyleColorsClassic"][1]["ret"] = "void" defs["igStyleColorsClassic"][1]["signature"] = "(ImGuiStyle*)" @@ -11725,12 +12268,12 @@ defs["igStyleColorsDark"][1]["argsT"] = {} defs["igStyleColorsDark"][1]["argsT"][1] = {} defs["igStyleColorsDark"][1]["argsT"][1]["name"] = "dst" defs["igStyleColorsDark"][1]["argsT"][1]["type"] = "ImGuiStyle*" -defs["igStyleColorsDark"][1]["argsoriginal"] = "(ImGuiStyle* dst=((void*)0))" +defs["igStyleColorsDark"][1]["argsoriginal"] = "(ImGuiStyle* dst=((void *)0))" defs["igStyleColorsDark"][1]["call_args"] = "(dst)" defs["igStyleColorsDark"][1]["cimguiname"] = "igStyleColorsDark" defs["igStyleColorsDark"][1]["comment"] = "" defs["igStyleColorsDark"][1]["defaults"] = {} -defs["igStyleColorsDark"][1]["defaults"]["dst"] = "((void*)0)" +defs["igStyleColorsDark"][1]["defaults"]["dst"] = "((void *)0)" defs["igStyleColorsDark"][1]["funcname"] = "StyleColorsDark" defs["igStyleColorsDark"][1]["ret"] = "void" defs["igStyleColorsDark"][1]["signature"] = "(ImGuiStyle*)" @@ -11743,12 +12286,12 @@ defs["igStyleColorsLight"][1]["argsT"] = {} defs["igStyleColorsLight"][1]["argsT"][1] = {} defs["igStyleColorsLight"][1]["argsT"][1]["name"] = "dst" defs["igStyleColorsLight"][1]["argsT"][1]["type"] = "ImGuiStyle*" -defs["igStyleColorsLight"][1]["argsoriginal"] = "(ImGuiStyle* dst=((void*)0))" +defs["igStyleColorsLight"][1]["argsoriginal"] = "(ImGuiStyle* dst=((void *)0))" defs["igStyleColorsLight"][1]["call_args"] = "(dst)" defs["igStyleColorsLight"][1]["cimguiname"] = "igStyleColorsLight" defs["igStyleColorsLight"][1]["comment"] = "" defs["igStyleColorsLight"][1]["defaults"] = {} -defs["igStyleColorsLight"][1]["defaults"]["dst"] = "((void*)0)" +defs["igStyleColorsLight"][1]["defaults"]["dst"] = "((void *)0)" defs["igStyleColorsLight"][1]["funcname"] = "StyleColorsLight" defs["igStyleColorsLight"][1]["ret"] = "void" defs["igStyleColorsLight"][1]["signature"] = "(ImGuiStyle*)" @@ -11873,12 +12416,12 @@ defs["igTextUnformatted"][1]["argsT"][1]["type"] = "const char*" defs["igTextUnformatted"][1]["argsT"][2] = {} defs["igTextUnformatted"][1]["argsT"][2]["name"] = "text_end" defs["igTextUnformatted"][1]["argsT"][2]["type"] = "const char*" -defs["igTextUnformatted"][1]["argsoriginal"] = "(const char* text,const char* text_end=((void*)0))" +defs["igTextUnformatted"][1]["argsoriginal"] = "(const char* text,const char* text_end=((void *)0))" defs["igTextUnformatted"][1]["call_args"] = "(text,text_end)" defs["igTextUnformatted"][1]["cimguiname"] = "igTextUnformatted" defs["igTextUnformatted"][1]["comment"] = "" defs["igTextUnformatted"][1]["defaults"] = {} -defs["igTextUnformatted"][1]["defaults"]["text_end"] = "((void*)0)" +defs["igTextUnformatted"][1]["defaults"]["text_end"] = "((void *)0)" defs["igTextUnformatted"][1]["funcname"] = "TextUnformatted" defs["igTextUnformatted"][1]["ret"] = "void" defs["igTextUnformatted"][1]["signature"] = "(const char*,const char*)" @@ -12238,12 +12781,12 @@ defs["igTreePush"][2]["argsT"] = {} defs["igTreePush"][2]["argsT"][1] = {} defs["igTreePush"][2]["argsT"][1]["name"] = "ptr_id" defs["igTreePush"][2]["argsT"][1]["type"] = "const void*" -defs["igTreePush"][2]["argsoriginal"] = "(const void* ptr_id=((void*)0))" +defs["igTreePush"][2]["argsoriginal"] = "(const void* ptr_id=((void *)0))" defs["igTreePush"][2]["call_args"] = "(ptr_id)" defs["igTreePush"][2]["cimguiname"] = "igTreePush" defs["igTreePush"][2]["comment"] = "" defs["igTreePush"][2]["defaults"] = {} -defs["igTreePush"][2]["defaults"]["ptr_id"] = "((void*)0)" +defs["igTreePush"][2]["defaults"]["ptr_id"] = "((void *)0)" defs["igTreePush"][2]["funcname"] = "TreePush" defs["igTreePush"][2]["ov_cimguiname"] = "igTreePushPtr" defs["igTreePush"][2]["ret"] = "void" @@ -12367,12 +12910,12 @@ defs["igVSliderScalar"][1]["argsT"][7]["type"] = "const char*" defs["igVSliderScalar"][1]["argsT"][8] = {} defs["igVSliderScalar"][1]["argsT"][8]["name"] = "power" defs["igVSliderScalar"][1]["argsT"][8]["type"] = "float" -defs["igVSliderScalar"][1]["argsoriginal"] = "(const char* label,const ImVec2& size,ImGuiDataType data_type,void* v,const void* v_min,const void* v_max,const char* format=((void*)0),float power=1.0f)" +defs["igVSliderScalar"][1]["argsoriginal"] = "(const char* label,const ImVec2& size,ImGuiDataType data_type,void* v,const void* v_min,const void* v_max,const char* format=((void *)0),float power=1.0f)" defs["igVSliderScalar"][1]["call_args"] = "(label,size,data_type,v,v_min,v_max,format,power)" defs["igVSliderScalar"][1]["cimguiname"] = "igVSliderScalar" defs["igVSliderScalar"][1]["comment"] = "" defs["igVSliderScalar"][1]["defaults"] = {} -defs["igVSliderScalar"][1]["defaults"]["format"] = "((void*)0)" +defs["igVSliderScalar"][1]["defaults"]["format"] = "((void *)0)" defs["igVSliderScalar"][1]["defaults"]["power"] = "1.0f" defs["igVSliderScalar"][1]["funcname"] = "VSliderScalar" defs["igVSliderScalar"][1]["ret"] = "bool" @@ -12449,12 +12992,12 @@ defs["igValue"][4]["argsT"][2]["type"] = "float" defs["igValue"][4]["argsT"][3] = {} defs["igValue"][4]["argsT"][3]["name"] = "float_format" defs["igValue"][4]["argsT"][3]["type"] = "const char*" -defs["igValue"][4]["argsoriginal"] = "(const char* prefix,float v,const char* float_format=((void*)0))" +defs["igValue"][4]["argsoriginal"] = "(const char* prefix,float v,const char* float_format=((void *)0))" defs["igValue"][4]["call_args"] = "(prefix,v,float_format)" defs["igValue"][4]["cimguiname"] = "igValue" defs["igValue"][4]["comment"] = "" defs["igValue"][4]["defaults"] = {} -defs["igValue"][4]["defaults"]["float_format"] = "((void*)0)" +defs["igValue"][4]["defaults"]["float_format"] = "((void *)0)" defs["igValue"][4]["funcname"] = "Value" defs["igValue"][4]["ov_cimguiname"] = "igValueFloat" defs["igValue"][4]["ret"] = "void" diff --git a/generator/output/overloads.txt b/generator/output/overloads.txt index ee9f7bb..b2ed9be 100644 --- a/generator/output/overloads.txt +++ b/generator/output/overloads.txt @@ -6,6 +6,12 @@ igCombo 3 ImVec4_ImVec4 2 1 nil ImVec4_ImVec4 () 2 nil ImVec4_ImVec4Float (float,float,float,float) +TextRange_TextRange 2 +1 nil TextRange_TextRange () +2 nil TextRange_TextRangeStr (const char*,const char*) +igTreePush 2 +1 void igTreePushStr (const char*) +2 void igTreePushPtr (const void*) igValue 4 1 void igValueBool (const char*,bool) 2 void igValueInt (const char*,int) @@ -14,18 +20,21 @@ igValue 4 igPushStyleVar 2 1 void igPushStyleVarFloat (ImGuiStyleVar,float) 2 void igPushStyleVarVec2 (ImGuiStyleVar,const ImVec2) +ImVector_end 2 +1 T* ImVector_end () +2 const T* ImVector_end () igIsRectVisible 2 1 bool igIsRectVisible (const ImVec2) 2 bool igIsRectVisibleVec2 (const ImVec2,const ImVec2) igRadioButton 2 1 bool igRadioButtonBool (const char*,bool) 2 bool igRadioButtonIntPtr (const char*,int*,int) -igTreePush 2 -1 void igTreePushStr (const char*) -2 void igTreePushPtr (const void*) igSetWindowSize 2 1 void igSetWindowSizeVec2 (const ImVec2,ImGuiCond) 2 void igSetWindowSizeStr (const char*,const ImVec2,ImGuiCond) +igPushStyleColor 2 +1 void igPushStyleColorU32 (ImGuiCol,ImU32) +2 void igPushStyleColor (ImGuiCol,const ImVec4) igSetWindowCollapsed 2 1 void igSetWindowCollapsedBool (bool,ImGuiCond) 2 void igSetWindowCollapsedStr (const char*,bool,ImGuiCond) @@ -35,25 +44,28 @@ igPlotLines 2 ImVec2_ImVec2 2 1 nil ImVec2_ImVec2 () 2 nil ImVec2_ImVec2Float (float,float) +ImVector_back 2 +1 T* ImVector_back () +2 const T* ImVector_back () igPlotHistogram 2 1 void igPlotHistogramFloatPtr (const char*,const float*,int,int,const char*,float,float,ImVec2,int) 2 void igPlotHistogramFnPtr (const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2) igTreeNodeExV 2 1 bool igTreeNodeExVStr (const char*,ImGuiTreeNodeFlags,const char*,va_list) 2 bool igTreeNodeExVPtr (const void*,ImGuiTreeNodeFlags,const char*,va_list) -igPushStyleColor 2 -1 void igPushStyleColorU32 (ImGuiCol,ImU32) -2 void igPushStyleColor (ImGuiCol,const ImVec4) igGetID 3 1 ImGuiID igGetIDStr (const char*) 2 ImGuiID igGetIDRange (const char*,const char*) 3 ImGuiID igGetIDPtr (const void*) -igBeginChild 2 -1 bool igBeginChild (const char*,const ImVec2,bool,ImGuiWindowFlags) -2 bool igBeginChildID (ImGuiID,const ImVec2,bool,ImGuiWindowFlags) ImDrawList_AddText 2 1 void ImDrawList_AddText (const ImVec2,ImU32,const char*,const char*) 2 void ImDrawList_AddTextFontPtr (const ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*) +ImVector_begin 2 +1 T* ImVector_begin () +2 const T* ImVector_begin () +igBeginChild 2 +1 bool igBeginChild (const char*,const ImVec2,bool,ImGuiWindowFlags) +2 bool igBeginChildID (ImGuiID,const ImVec2,bool,ImGuiWindowFlags) igSelectable 2 1 bool igSelectable (const char*,bool,ImGuiSelectableFlags,const ImVec2) 2 bool igSelectableBoolPtr (const char*,bool*,ImGuiSelectableFlags,const ImVec2) @@ -69,9 +81,15 @@ Pair_Pair 3 1 nil Pair_PairInt (ImGuiID,int) 2 nil Pair_PairFloat (ImGuiID,float) 3 nil Pair_PairPtr (ImGuiID,void*) -TextRange_TextRange 2 -1 nil TextRange_TextRange () -2 nil TextRange_TextRangeStr (const char*,const char*) +ImVector_erase 2 +1 T* ImVector_erase (const T*) +2 T* ImVector_eraseTPtr (const T*,const T*) +ImVector_resize 2 +1 void ImVector_resize (int) +2 void ImVector_resizeT (int,const T) +ImVector_front 2 +1 T* ImVector_front () +2 const T* ImVector_front () ImColor_ImColor 5 1 nil ImColor_ImColor () 2 nil ImColor_ImColorInt (int,int,int,int) @@ -108,4 +126,4 @@ igTreeNode 3 igTreeNodeV 2 1 bool igTreeNodeVStr (const char*,const char*,va_list) 2 bool igTreeNodeVPtr (const void*,const char*,va_list) -77 overloaded \ No newline at end of file +89 overloaded \ No newline at end of file diff --git a/generator/output/structs_and_enums.json b/generator/output/structs_and_enums.json index 6820c9e..6b34237 100644 --- a/generator/output/structs_and_enums.json +++ b/generator/output/structs_and_enums.json @@ -2739,7 +2739,32 @@ "type": "float" } ], - "ImVector": [], + "ImVector": [ + { + "name": "Size", + "type": "int" + }, + { + "name": "Capacity", + "type": "int" + }, + { + "name": "Data", + "type": "T*" + }, + { + "name": "value_type", + "type": "typedef T" + }, + { + "name": "iterator", + "type": "typedef value_type*" + }, + { + "name": "const_iterator", + "type": "typedef const value_type*" + } + ], "Pair": [ { "name": "key", diff --git a/generator/output/structs_and_enums.lua b/generator/output/structs_and_enums.lua index 75cbdb2..f042c8c 100644 --- a/generator/output/structs_and_enums.lua +++ b/generator/output/structs_and_enums.lua @@ -2121,6 +2121,24 @@ defs["structs"]["ImVec4"][4] = {} defs["structs"]["ImVec4"][4]["name"] = "w" defs["structs"]["ImVec4"][4]["type"] = "float" defs["structs"]["ImVector"] = {} +defs["structs"]["ImVector"][1] = {} +defs["structs"]["ImVector"][1]["name"] = "Size" +defs["structs"]["ImVector"][1]["type"] = "int" +defs["structs"]["ImVector"][2] = {} +defs["structs"]["ImVector"][2]["name"] = "Capacity" +defs["structs"]["ImVector"][2]["type"] = "int" +defs["structs"]["ImVector"][3] = {} +defs["structs"]["ImVector"][3]["name"] = "Data" +defs["structs"]["ImVector"][3]["type"] = "T*" +defs["structs"]["ImVector"][4] = {} +defs["structs"]["ImVector"][4]["name"] = "value_type" +defs["structs"]["ImVector"][4]["type"] = "typedef T" +defs["structs"]["ImVector"][5] = {} +defs["structs"]["ImVector"][5]["name"] = "iterator" +defs["structs"]["ImVector"][5]["type"] = "typedef value_type*" +defs["structs"]["ImVector"][6] = {} +defs["structs"]["ImVector"][6]["name"] = "const_iterator" +defs["structs"]["ImVector"][6]["type"] = "typedef const value_type*" defs["structs"]["Pair"] = {} defs["structs"]["Pair"][1] = {} defs["structs"]["Pair"][1]["name"] = "key" From 490effa34167ac9a7a6f110a09b48843a5082224 Mon Sep 17 00:00:00 2001 From: sonoro1234 Date: Tue, 12 Feb 2019 18:52:00 +0100 Subject: [PATCH 02/12] get template typenames --- generator/cpp2ffi.lua | 91 ++++++++++++++++++++++++++++++++++++++-- generator/generator2.lua | 12 ++++-- 2 files changed, 96 insertions(+), 7 deletions(-) diff --git a/generator/cpp2ffi.lua b/generator/cpp2ffi.lua index b8653dd..00d8557 100644 --- a/generator/cpp2ffi.lua +++ b/generator/cpp2ffi.lua @@ -1,5 +1,80 @@ local M = {} +local function ToStr(t,dometatables) + local function basicToStr (o) + if type(o) == "number" or type(o)=="boolean" then + return tostring(o) + elseif type(o) == "string" then + return string.format("%q", o) + else + return tostring(o) --"nil" + end + end + local strTG = {} + --local basicToStr= basicSerialize --tostring + if type(t) ~="table" then return basicToStr(t) end + local recG = 0 + local nameG="SELF"..recG + local ancest ={} + local function _ToStr(t,strT,rec,name) + if ancest[t] then + strT[#strT + 1]=ancest[t] + return + end + rec = rec + 1 + ancest[t]=name + strT[#strT + 1]='{' + local count=0 + ------------- + --if t.name then strT[#strT + 1]=string.rep("\t",rec).."name:"..tostring(t.name) end + ---------------- + for k,v in pairs(t) do + count=count+1 + strT[#strT + 1]="\n" + local kstr + if type(k) == "table" then + local name2=string.format("%s.KEY%d",name,count) + strT[#strT + 1]=string.rep("\t",rec).."[" + local strTK = {} + _ToStr(k,strTK,rec,name2) + kstr=table.concat(strTK) + strT[#strT + 1]=kstr.."]=" + else + kstr = basicToStr(k) + strT[#strT + 1]=string.rep("\t",rec).."["..kstr.."]=" + end + + if type(v) == "table" then + local name2=string.format("%s[%s]",name,kstr) + _ToStr(v,strT,rec,name2) + else + strT[#strT + 1]=basicToStr(v) + end + end + if dometatables then + local mt = getmetatable(t) + if mt then + local namemt = string.format("%s.METATABLE",name) + local strMT = {} + _ToStr(mt,strMT,rec,namemt) + local metastr=table.concat(strMT) + strT[#strT + 1] = "\n"..string.rep("\t",rec).."[METATABLE]="..metastr + end + end + strT[#strT + 1]='}' + rec = rec - 1 + return + end + _ToStr(t,strTG,recG,nameG) + return table.concat(strTG) +end +function M.prtable(...) + for i=1, select('#', ...) do + local t = select(i, ...) + print(ToStr(t)) + print("\n") + end +end local function str_split(str, pat) local t = {} local fpat = "(.-)" .. pat @@ -285,10 +360,12 @@ local function parseFunction(self,stname,lineorig,namespace) local ttype,template = argscsinpars:match("([^%s,%(%)]+)%s*<(.+)>") local te="" if template then + if self.typenames[stname] ~= template then --rule out template typename te = template:gsub("%s","_") te = te:gsub("%*","Ptr") self.templates[ttype] = self.templates[ttype] or {} self.templates[ttype][template] = te + end end --end argscsinpars = argscsinpars:gsub("<([%w_%*]+)>","_"..te) --ImVector @@ -379,6 +456,7 @@ local function parseFunction(self,stname,lineorig,namespace) for k,def in args:gmatch('([%w_]+)=([%w_%(%)%s,%*%.%-%+%%"]+)[,%)]') do defT.defaults[k]=def end + defT.templated = self.typenames[stname] and true defT.namespace = namespace defT.cimguiname = cimguiname defT.stname = stname @@ -587,6 +665,7 @@ function M.Parser() par.embeded_structs = {} par.inerstructs = {} par.templates = {} + par.typenames = {} par.typedefs_dict = {} par.cname_overloads = {} par.manuals = {} @@ -643,7 +722,8 @@ function M.Parser() printItems(items) end par.parseFunction = parseFunction - + + --get all function definitions and template structs function par:parseFunctions() for i,it in ipairs(itemsarr) do if it.re_name == "function_re" or it.re_name == "functionD_re" then @@ -658,9 +738,14 @@ function M.Parser() end end elseif it.re_name == "struct_re" then + --check template struct + local typename = it.item:match("%s*template%s*<%s*typename%s*(%S+)%s*>") local nsp = it.item:match("%b{}"):sub(2,-2) local stname = it.item:match("struct%s+(%S+)") - --if stname=="ImVector" then print"ImVector" end + if typename then -- it is a struct template + self.typenames = self.typenames or {} + self.typenames[stname] = typename + end local nspparr,itemsnsp = parseItems(nsp) for insp,itnsp in ipairs(nspparr) do if itnsp.re_name == "function_re" or itnsp.re_name == "functionD_re" then @@ -724,7 +809,7 @@ function M.Parser() return table.concat(outtab,""),stname,outtab end function par:gen_structs_and_enums() - local outtab = {} + local outtab = {} local outtabpre = {} local typedefs_table = {} diff --git a/generator/generator2.lua b/generator/generator2.lua index 67ef811..5e69a8d 100644 --- a/generator/generator2.lua +++ b/generator/generator2.lua @@ -230,13 +230,14 @@ local function func_header_generate(FP) table.insert(outtab,"#endif //CIMGUI_DEFINE_ENUMS_AND_STRUCTS\n") for _,t in ipairs(FP.funcdefs) do - if t.stname=="ImVector" then print(t.cimguiname) end + --if t.stname=="ImVector" then print(t.cimguiname) end if t.cimguiname then local cimf = FP.defsT[t.cimguiname] local def = cimf[t.signature] assert(def,t.signature..t.cimguiname) local manual = FP.get_manuals(def) if not manual then + --if FP.templates[t.stname] then print(t.cimguiname) end local addcoment = def.comment or "" local empty = def.args:match("^%(%)") --no args if def.constructor then @@ -245,7 +246,8 @@ local function func_header_generate(FP) elseif def.destructor then table.insert(outtab,"CIMGUI_API void "..def.ov_cimguiname..def.args..";"..addcoment.."\n") else --not constructor - if t.stname=="ImVector" then print("2",t.cimguiname) end + --if t.stname=="ImVector" then print("2",t.cimguiname) end + if def.stname == "" then --ImGui namespace or top level table.insert(outtab,"CIMGUI_API "..def.ret.." ".. def.ov_cimguiname ..(empty and "(void)" or def.args)..";"..addcoment.."\n") else @@ -441,11 +443,13 @@ local function generate_templates(code,templates) end --generate cimgui.cpp cimgui.h local function cimgui_generation(parser) - +cpp2ffi.prtable(parser.templates) +cpp2ffi.prtable(parser.typenames) local hstrfile = read_data"./cimgui_template.h" local outpre,outpost = parser:gen_structs_and_enums() - + --parser.templates get completely defined here + --cpp2ffi.prtable(parser.templates) local outtab = {} generate_templates(outtab,parser.templates) local cstructsstr = outpre..table.concat(outtab,"")..outpost From 23f2a1f026722a9328c3c5ca84e1683e2bc6715b Mon Sep 17 00:00:00 2001 From: sonoro1234 Date: Tue, 12 Feb 2019 19:40:00 +0100 Subject: [PATCH 03/12] get template typenames generated --- cimgui.cpp | 6 +- cimgui.h | 94 +- generator/generator2.lua | 1 + generator/output/cimgui.cpp | 6 +- generator/output/cimgui.h | 94 +- generator/output/cimgui_impl.h | 5 +- generator/output/definitions.json | 1997 +++++++++++++++++------- generator/output/definitions.lua | 1929 +++++++++++++++++------ generator/output/impl_definitions.json | 58 +- generator/output/impl_definitions.lua | 58 +- generator/output/overloads.txt | 5 +- generator/output/typedefs_dict.json | 1 + generator/output/typedefs_dict.lua | 1 + 13 files changed, 3049 insertions(+), 1206 deletions(-) diff --git a/cimgui.cpp b/cimgui.cpp index 473a04e..36cad03 100644 --- a/cimgui.cpp +++ b/cimgui.cpp @@ -1435,6 +1435,10 @@ CIMGUI_API void ImVector_destroy(ImVector* self) { IM_DELETE(self); } +CIMGUI_API ImVector* ImVector_ImVectorVector_(const ImVector_ src) +{ + return IM_NEW(ImVector)(src); +} CIMGUI_API bool ImVector_empty(ImVector* self) { return self->empty(); @@ -1487,7 +1491,7 @@ CIMGUI_API const T* ImVector_back(ImVector* self) { return &self->back(); } -CIMGUI_API void ImVector_swap(ImVector* self,ImVector_T rhs) +CIMGUI_API void ImVector_swap(ImVector* self,ImVector_ rhs) { return self->swap(rhs); } diff --git a/cimgui.h b/cimgui.h index 7128493..98a8fdf 100644 --- a/cimgui.h +++ b/cimgui.h @@ -43,9 +43,9 @@ typedef struct ImColor_Simple { ImVec4_Simple Value;} ImColor_Simple; #ifdef CIMGUI_DEFINE_ENUMS_AND_STRUCTS typedef struct CustomRect CustomRect; -typedef unsigned short ImDrawIdx;; typedef struct Pair Pair; typedef struct TextRange TextRange; +typedef struct ImVector ImVector; typedef struct ImVec4 ImVec4; typedef struct ImVec2 ImVec2; typedef struct ImGuiTextFilter ImGuiTextFilter; @@ -71,6 +71,7 @@ typedef struct ImDrawList ImDrawList; typedef struct ImDrawData ImDrawData; typedef struct ImDrawCmd ImDrawCmd; typedef struct ImDrawChannel ImDrawChannel; + struct ImDrawChannel; struct ImDrawCmd; struct ImDrawData; @@ -128,6 +129,26 @@ typedef signed int ImS32; typedef unsigned int ImU32; typedef int64_t ImS64; typedef uint64_t ImU64; +typedef void (*ImDrawCallback)(const ImDrawList* parent_list, const ImDrawCmd* cmd); +typedef unsigned short ImDrawIdx;typedef struct ImVector{int Size;int Capacity;void* Data;} ImVector; +typedef struct ImVector_float {int Size;int Capacity;float* Data;} ImVector_float; +typedef struct ImVector_ImWchar {int Size;int Capacity;ImWchar* Data;} ImVector_ImWchar; +typedef struct ImVector_ImFontConfig {int Size;int Capacity;ImFontConfig* Data;} ImVector_ImFontConfig; +typedef struct ImVector_ImFontGlyph {int Size;int Capacity;ImFontGlyph* Data;} ImVector_ImFontGlyph; +typedef struct ImVector_TextRange {int Size;int Capacity;TextRange* Data;} ImVector_TextRange; +typedef struct ImVector_CustomRect {int Size;int Capacity;CustomRect* Data;} ImVector_CustomRect; +typedef struct ImVector_ImDrawChannel {int Size;int Capacity;ImDrawChannel* Data;} ImVector_ImDrawChannel; +typedef struct ImVector_char {int Size;int Capacity;char* Data;} ImVector_char; +typedef struct ImVector_ImTextureID {int Size;int Capacity;ImTextureID* Data;} ImVector_ImTextureID; +typedef struct ImVector_ImDrawVert {int Size;int Capacity;ImDrawVert* Data;} ImVector_ImDrawVert; +typedef struct ImVector_int {int Size;int Capacity;int* Data;} ImVector_int; +typedef struct ImVector_Pair {int Size;int Capacity;Pair* Data;} ImVector_Pair; +typedef struct ImVector_ImFontPtr {int Size;int Capacity;ImFont** Data;} ImVector_ImFontPtr; +typedef struct ImVector_ImVec4 {int Size;int Capacity;ImVec4* Data;} ImVector_ImVec4; +typedef struct ImVector_ImDrawCmd {int Size;int Capacity;ImDrawCmd* Data;} ImVector_ImDrawCmd; +typedef struct ImVector_ImDrawIdx {int Size;int Capacity;ImDrawIdx* Data;} ImVector_ImDrawIdx; +typedef struct ImVector_ImVec2 {int Size;int Capacity;ImVec2* Data;} ImVector_ImVec2; + struct ImVec2 { float x, y; @@ -502,26 +523,16 @@ enum ImGuiCond_ ImGuiCond_FirstUseEver = 1 << 2, ImGuiCond_Appearing = 1 << 3 }; +template struct ImVector -typedef struct ImVector{int Size;int Capacity;void* Data;} ImVector; -typedef struct ImVector_float {int Size;int Capacity;float* Data;} ImVector_float; -typedef struct ImVector_ImWchar {int Size;int Capacity;ImWchar* Data;} ImVector_ImWchar; -typedef struct ImVector_ImFontConfig {int Size;int Capacity;ImFontConfig* Data;} ImVector_ImFontConfig; -typedef struct ImVector_ImFontGlyph {int Size;int Capacity;ImFontGlyph* Data;} ImVector_ImFontGlyph; -typedef struct ImVector_TextRange {int Size;int Capacity;TextRange* Data;} ImVector_TextRange; -typedef struct ImVector_T {int Size;int Capacity;T* Data;} ImVector_T; -typedef struct ImVector_CustomRect {int Size;int Capacity;CustomRect* Data;} ImVector_CustomRect; -typedef struct ImVector_ImDrawChannel {int Size;int Capacity;ImDrawChannel* Data;} ImVector_ImDrawChannel; -typedef struct ImVector_char {int Size;int Capacity;char* Data;} ImVector_char; -typedef struct ImVector_ImTextureID {int Size;int Capacity;ImTextureID* Data;} ImVector_ImTextureID; -typedef struct ImVector_ImDrawVert {int Size;int Capacity;ImDrawVert* Data;} ImVector_ImDrawVert; -typedef struct ImVector_int {int Size;int Capacity;int* Data;} ImVector_int; -typedef struct ImVector_Pair {int Size;int Capacity;Pair* Data;} ImVector_Pair; -typedef struct ImVector_ImFontPtr {int Size;int Capacity;ImFont** Data;} ImVector_ImFontPtr; -typedef struct ImVector_ImVec4 {int Size;int Capacity;ImVec4* Data;} ImVector_ImVec4; -typedef struct ImVector_ImDrawCmd {int Size;int Capacity;ImDrawCmd* Data;} ImVector_ImDrawCmd; -typedef struct ImVector_ImDrawIdx {int Size;int Capacity;ImDrawIdx* Data;} ImVector_ImDrawIdx; -typedef struct ImVector_ImVec2 {int Size;int Capacity;ImVec2* Data;} ImVector_ImVec2; +{ + int Size; + int Capacity; + T* Data; + typedef T value_type; + typedef value_type* iterator; + typedef const value_type* const_iterator; +}; struct ImGuiStyle { float Alpha; @@ -698,7 +709,6 @@ struct ImColor { ImVec4 Value; }; -typedef void (*ImDrawCallback)(const ImDrawList* parent_list, const ImDrawCmd* cmd); struct ImDrawCmd { unsigned int ElemCount; @@ -837,6 +847,16 @@ struct ImFont float Ascent, Descent; bool DirtyLookupTables; int MetricsTotalSurface; +}; + struct TextRange + { + const char* b; + const char* e; +}; + struct Pair + { + ImGuiID key; + union { int val_i; float val_f; void* val_p; }; }; struct CustomRect { @@ -846,18 +866,7 @@ struct ImFont float GlyphAdvanceX; ImVec2 GlyphOffset; ImFont* Font; - }; - struct TextRange - { - const char* b; - const char* e; - }; - struct Pair - { - ImGuiID key; - union { int val_i; float val_f; void* val_p; }; - }; - +}; #else struct GLFWwindow; struct SDL_Window; @@ -890,9 +899,23 @@ inline ImColor_Simple ImColorToSimple(ImColor col) typedef ImFontAtlas::CustomRect CustomRect; typedef ImGuiTextFilter::TextRange TextRange; typedef ImGuiStorage::Pair Pair; -typedef ImVector ImVector_T; +typedef ImVector ImVector_float; typedef ImVector ImVector_ImWchar; +typedef ImVector ImVector_ImFontConfig; +typedef ImVector ImVector_ImFontGlyph; typedef ImVector ImVector_TextRange; +typedef ImVector ImVector_CustomRect; +typedef ImVector ImVector_ImDrawChannel; +typedef ImVector ImVector_char; +typedef ImVector ImVector_ImTextureID; +typedef ImVector ImVector_ImDrawVert; +typedef ImVector ImVector_int; +typedef ImVector ImVector_Pair; +typedef ImVector ImVector_ImFontPtr; +typedef ImVector ImVector_ImVec4; +typedef ImVector ImVector_ImDrawCmd; +typedef ImVector ImVector_ImDrawIdx; +typedef ImVector ImVector_ImVec2; #endif //CIMGUI_DEFINE_ENUMS_AND_STRUCTS CIMGUI_API ImVec2* ImVec2_ImVec2(void); CIMGUI_API void ImVec2_destroy(ImVec2* self); @@ -1242,6 +1265,7 @@ CIMGUI_API void* igMemAlloc(size_t size); CIMGUI_API void igMemFree(void* ptr); CIMGUI_API ImVector* ImVector_ImVector(void); CIMGUI_API void ImVector_destroy(ImVector* self); +CIMGUI_API ImVector* ImVector_ImVectorVector_(const ImVector_ src); CIMGUI_API bool ImVector_empty(ImVector* self); CIMGUI_API int ImVector_size(ImVector* self); CIMGUI_API int ImVector_size_in_bytes(ImVector* self); @@ -1255,7 +1279,7 @@ CIMGUI_API const T* ImVector_front(ImVector* self); CIMGUI_API const T* ImVector_front(ImVector* self); CIMGUI_API const T* ImVector_back(ImVector* self); CIMGUI_API const T* ImVector_back(ImVector* self); -CIMGUI_API void ImVector_swap(ImVector* self,ImVector_T rhs); +CIMGUI_API void ImVector_swap(ImVector* self,ImVector_ rhs); CIMGUI_API int ImVector__grow_capacity(ImVector* self,int sz); CIMGUI_API void ImVector_resize(ImVector* self,int new_size); CIMGUI_API void ImVector_resizeT(ImVector* self,int new_size,const T v); diff --git a/generator/generator2.lua b/generator/generator2.lua index 5e69a8d..a2b9fd4 100644 --- a/generator/generator2.lua +++ b/generator/generator2.lua @@ -450,6 +450,7 @@ cpp2ffi.prtable(parser.typenames) local outpre,outpost = parser:gen_structs_and_enums() --parser.templates get completely defined here --cpp2ffi.prtable(parser.templates) + local outtab = {} generate_templates(outtab,parser.templates) local cstructsstr = outpre..table.concat(outtab,"")..outpost diff --git a/generator/output/cimgui.cpp b/generator/output/cimgui.cpp index 473a04e..36cad03 100644 --- a/generator/output/cimgui.cpp +++ b/generator/output/cimgui.cpp @@ -1435,6 +1435,10 @@ CIMGUI_API void ImVector_destroy(ImVector* self) { IM_DELETE(self); } +CIMGUI_API ImVector* ImVector_ImVectorVector_(const ImVector_ src) +{ + return IM_NEW(ImVector)(src); +} CIMGUI_API bool ImVector_empty(ImVector* self) { return self->empty(); @@ -1487,7 +1491,7 @@ CIMGUI_API const T* ImVector_back(ImVector* self) { return &self->back(); } -CIMGUI_API void ImVector_swap(ImVector* self,ImVector_T rhs) +CIMGUI_API void ImVector_swap(ImVector* self,ImVector_ rhs) { return self->swap(rhs); } diff --git a/generator/output/cimgui.h b/generator/output/cimgui.h index 7128493..98a8fdf 100644 --- a/generator/output/cimgui.h +++ b/generator/output/cimgui.h @@ -43,9 +43,9 @@ typedef struct ImColor_Simple { ImVec4_Simple Value;} ImColor_Simple; #ifdef CIMGUI_DEFINE_ENUMS_AND_STRUCTS typedef struct CustomRect CustomRect; -typedef unsigned short ImDrawIdx;; typedef struct Pair Pair; typedef struct TextRange TextRange; +typedef struct ImVector ImVector; typedef struct ImVec4 ImVec4; typedef struct ImVec2 ImVec2; typedef struct ImGuiTextFilter ImGuiTextFilter; @@ -71,6 +71,7 @@ typedef struct ImDrawList ImDrawList; typedef struct ImDrawData ImDrawData; typedef struct ImDrawCmd ImDrawCmd; typedef struct ImDrawChannel ImDrawChannel; + struct ImDrawChannel; struct ImDrawCmd; struct ImDrawData; @@ -128,6 +129,26 @@ typedef signed int ImS32; typedef unsigned int ImU32; typedef int64_t ImS64; typedef uint64_t ImU64; +typedef void (*ImDrawCallback)(const ImDrawList* parent_list, const ImDrawCmd* cmd); +typedef unsigned short ImDrawIdx;typedef struct ImVector{int Size;int Capacity;void* Data;} ImVector; +typedef struct ImVector_float {int Size;int Capacity;float* Data;} ImVector_float; +typedef struct ImVector_ImWchar {int Size;int Capacity;ImWchar* Data;} ImVector_ImWchar; +typedef struct ImVector_ImFontConfig {int Size;int Capacity;ImFontConfig* Data;} ImVector_ImFontConfig; +typedef struct ImVector_ImFontGlyph {int Size;int Capacity;ImFontGlyph* Data;} ImVector_ImFontGlyph; +typedef struct ImVector_TextRange {int Size;int Capacity;TextRange* Data;} ImVector_TextRange; +typedef struct ImVector_CustomRect {int Size;int Capacity;CustomRect* Data;} ImVector_CustomRect; +typedef struct ImVector_ImDrawChannel {int Size;int Capacity;ImDrawChannel* Data;} ImVector_ImDrawChannel; +typedef struct ImVector_char {int Size;int Capacity;char* Data;} ImVector_char; +typedef struct ImVector_ImTextureID {int Size;int Capacity;ImTextureID* Data;} ImVector_ImTextureID; +typedef struct ImVector_ImDrawVert {int Size;int Capacity;ImDrawVert* Data;} ImVector_ImDrawVert; +typedef struct ImVector_int {int Size;int Capacity;int* Data;} ImVector_int; +typedef struct ImVector_Pair {int Size;int Capacity;Pair* Data;} ImVector_Pair; +typedef struct ImVector_ImFontPtr {int Size;int Capacity;ImFont** Data;} ImVector_ImFontPtr; +typedef struct ImVector_ImVec4 {int Size;int Capacity;ImVec4* Data;} ImVector_ImVec4; +typedef struct ImVector_ImDrawCmd {int Size;int Capacity;ImDrawCmd* Data;} ImVector_ImDrawCmd; +typedef struct ImVector_ImDrawIdx {int Size;int Capacity;ImDrawIdx* Data;} ImVector_ImDrawIdx; +typedef struct ImVector_ImVec2 {int Size;int Capacity;ImVec2* Data;} ImVector_ImVec2; + struct ImVec2 { float x, y; @@ -502,26 +523,16 @@ enum ImGuiCond_ ImGuiCond_FirstUseEver = 1 << 2, ImGuiCond_Appearing = 1 << 3 }; +template struct ImVector -typedef struct ImVector{int Size;int Capacity;void* Data;} ImVector; -typedef struct ImVector_float {int Size;int Capacity;float* Data;} ImVector_float; -typedef struct ImVector_ImWchar {int Size;int Capacity;ImWchar* Data;} ImVector_ImWchar; -typedef struct ImVector_ImFontConfig {int Size;int Capacity;ImFontConfig* Data;} ImVector_ImFontConfig; -typedef struct ImVector_ImFontGlyph {int Size;int Capacity;ImFontGlyph* Data;} ImVector_ImFontGlyph; -typedef struct ImVector_TextRange {int Size;int Capacity;TextRange* Data;} ImVector_TextRange; -typedef struct ImVector_T {int Size;int Capacity;T* Data;} ImVector_T; -typedef struct ImVector_CustomRect {int Size;int Capacity;CustomRect* Data;} ImVector_CustomRect; -typedef struct ImVector_ImDrawChannel {int Size;int Capacity;ImDrawChannel* Data;} ImVector_ImDrawChannel; -typedef struct ImVector_char {int Size;int Capacity;char* Data;} ImVector_char; -typedef struct ImVector_ImTextureID {int Size;int Capacity;ImTextureID* Data;} ImVector_ImTextureID; -typedef struct ImVector_ImDrawVert {int Size;int Capacity;ImDrawVert* Data;} ImVector_ImDrawVert; -typedef struct ImVector_int {int Size;int Capacity;int* Data;} ImVector_int; -typedef struct ImVector_Pair {int Size;int Capacity;Pair* Data;} ImVector_Pair; -typedef struct ImVector_ImFontPtr {int Size;int Capacity;ImFont** Data;} ImVector_ImFontPtr; -typedef struct ImVector_ImVec4 {int Size;int Capacity;ImVec4* Data;} ImVector_ImVec4; -typedef struct ImVector_ImDrawCmd {int Size;int Capacity;ImDrawCmd* Data;} ImVector_ImDrawCmd; -typedef struct ImVector_ImDrawIdx {int Size;int Capacity;ImDrawIdx* Data;} ImVector_ImDrawIdx; -typedef struct ImVector_ImVec2 {int Size;int Capacity;ImVec2* Data;} ImVector_ImVec2; +{ + int Size; + int Capacity; + T* Data; + typedef T value_type; + typedef value_type* iterator; + typedef const value_type* const_iterator; +}; struct ImGuiStyle { float Alpha; @@ -698,7 +709,6 @@ struct ImColor { ImVec4 Value; }; -typedef void (*ImDrawCallback)(const ImDrawList* parent_list, const ImDrawCmd* cmd); struct ImDrawCmd { unsigned int ElemCount; @@ -837,6 +847,16 @@ struct ImFont float Ascent, Descent; bool DirtyLookupTables; int MetricsTotalSurface; +}; + struct TextRange + { + const char* b; + const char* e; +}; + struct Pair + { + ImGuiID key; + union { int val_i; float val_f; void* val_p; }; }; struct CustomRect { @@ -846,18 +866,7 @@ struct ImFont float GlyphAdvanceX; ImVec2 GlyphOffset; ImFont* Font; - }; - struct TextRange - { - const char* b; - const char* e; - }; - struct Pair - { - ImGuiID key; - union { int val_i; float val_f; void* val_p; }; - }; - +}; #else struct GLFWwindow; struct SDL_Window; @@ -890,9 +899,23 @@ inline ImColor_Simple ImColorToSimple(ImColor col) typedef ImFontAtlas::CustomRect CustomRect; typedef ImGuiTextFilter::TextRange TextRange; typedef ImGuiStorage::Pair Pair; -typedef ImVector ImVector_T; +typedef ImVector ImVector_float; typedef ImVector ImVector_ImWchar; +typedef ImVector ImVector_ImFontConfig; +typedef ImVector ImVector_ImFontGlyph; typedef ImVector ImVector_TextRange; +typedef ImVector ImVector_CustomRect; +typedef ImVector ImVector_ImDrawChannel; +typedef ImVector ImVector_char; +typedef ImVector ImVector_ImTextureID; +typedef ImVector ImVector_ImDrawVert; +typedef ImVector ImVector_int; +typedef ImVector ImVector_Pair; +typedef ImVector ImVector_ImFontPtr; +typedef ImVector ImVector_ImVec4; +typedef ImVector ImVector_ImDrawCmd; +typedef ImVector ImVector_ImDrawIdx; +typedef ImVector ImVector_ImVec2; #endif //CIMGUI_DEFINE_ENUMS_AND_STRUCTS CIMGUI_API ImVec2* ImVec2_ImVec2(void); CIMGUI_API void ImVec2_destroy(ImVec2* self); @@ -1242,6 +1265,7 @@ CIMGUI_API void* igMemAlloc(size_t size); CIMGUI_API void igMemFree(void* ptr); CIMGUI_API ImVector* ImVector_ImVector(void); CIMGUI_API void ImVector_destroy(ImVector* self); +CIMGUI_API ImVector* ImVector_ImVectorVector_(const ImVector_ src); CIMGUI_API bool ImVector_empty(ImVector* self); CIMGUI_API int ImVector_size(ImVector* self); CIMGUI_API int ImVector_size_in_bytes(ImVector* self); @@ -1255,7 +1279,7 @@ CIMGUI_API const T* ImVector_front(ImVector* self); CIMGUI_API const T* ImVector_front(ImVector* self); CIMGUI_API const T* ImVector_back(ImVector* self); CIMGUI_API const T* ImVector_back(ImVector* self); -CIMGUI_API void ImVector_swap(ImVector* self,ImVector_T rhs); +CIMGUI_API void ImVector_swap(ImVector* self,ImVector_ rhs); CIMGUI_API int ImVector__grow_capacity(ImVector* self,int sz); CIMGUI_API void ImVector_resize(ImVector* self,int new_size); CIMGUI_API void ImVector_resizeT(ImVector* self,int new_size,const T v); diff --git a/generator/output/cimgui_impl.h b/generator/output/cimgui_impl.h index 77aba11..2704212 100644 --- a/generator/output/cimgui_impl.h +++ b/generator/output/cimgui_impl.h @@ -1,9 +1,10 @@ typedef struct SDL_Window SDL_Window; typedef struct GLFWwindow GLFWwindow; + struct GLFWwindow; + struct SDL_Window; -typedef union SDL_Event SDL_Event; -CIMGUI_API bool ImGui_ImplGlfw_InitForOpenGL(GLFWwindow* window,bool install_callbacks); +typedef union SDL_Event SDL_Event;CIMGUI_API bool ImGui_ImplGlfw_InitForOpenGL(GLFWwindow* window,bool install_callbacks); CIMGUI_API bool ImGui_ImplGlfw_InitForVulkan(GLFWwindow* window,bool install_callbacks); CIMGUI_API void ImGui_ImplGlfw_Shutdown(); CIMGUI_API void ImGui_ImplGlfw_NewFrame(); diff --git a/generator/output/definitions.json b/generator/output/definitions.json index 8fb9991..04b34a9 100644 --- a/generator/output/definitions.json +++ b/generator/output/definitions.json @@ -10,6 +10,7 @@ "constructor": true, "defaults": [], "funcname": "CustomRect", + "ov_cimguiname": "CustomRect_CustomRect", "signature": "()", "stname": "CustomRect" } @@ -29,6 +30,7 @@ "comment": "", "defaults": [], "funcname": "IsPacked", + "ov_cimguiname": "CustomRect_IsPacked", "ret": "bool", "signature": "()", "stname": "CustomRect" @@ -86,6 +88,7 @@ "a": "1.0f" }, "funcname": "HSV", + "ov_cimguiname": "ImColor_HSV", "ret": "ImColor", "signature": "(float,float,float,float)", "stname": "ImColor" @@ -325,6 +328,7 @@ "a": "1.0f" }, "funcname": "SetHSV", + "ov_cimguiname": "ImColor_SetHSV", "ret": "void", "signature": "(float,float,float,float)", "stname": "ImColor" @@ -360,6 +364,7 @@ "constructor": true, "defaults": [], "funcname": "ImDrawCmd", + "ov_cimguiname": "ImDrawCmd_ImDrawCmd", "signature": "()", "stname": "ImDrawCmd" } @@ -398,6 +403,7 @@ "comment": "", "defaults": [], "funcname": "Clear", + "ov_cimguiname": "ImDrawData_Clear", "ret": "void", "signature": "()", "stname": "ImDrawData" @@ -418,6 +424,7 @@ "comment": "", "defaults": [], "funcname": "DeIndexAllBuffers", + "ov_cimguiname": "ImDrawData_DeIndexAllBuffers", "ret": "void", "signature": "()", "stname": "ImDrawData" @@ -434,6 +441,7 @@ "constructor": true, "defaults": [], "funcname": "ImDrawData", + "ov_cimguiname": "ImDrawData_ImDrawData", "signature": "()", "stname": "ImDrawData" } @@ -457,6 +465,7 @@ "comment": "", "defaults": [], "funcname": "ScaleClipRects", + "ov_cimguiname": "ImDrawData_ScaleClipRects", "ret": "void", "signature": "(const ImVec2)", "stname": "ImDrawData" @@ -526,6 +535,7 @@ "num_segments": "0" }, "funcname": "AddBezierCurve", + "ov_cimguiname": "ImDrawList_AddBezierCurve", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", "stname": "ImDrawList" @@ -554,6 +564,7 @@ "comment": "", "defaults": [], "funcname": "AddCallback", + "ov_cimguiname": "ImDrawList_AddCallback", "ret": "void", "signature": "(ImDrawCallback,void*)", "stname": "ImDrawList" @@ -597,6 +608,7 @@ "thickness": "1.0f" }, "funcname": "AddCircle", + "ov_cimguiname": "ImDrawList_AddCircle", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", "stname": "ImDrawList" @@ -635,6 +647,7 @@ "num_segments": "12" }, "funcname": "AddCircleFilled", + "ov_cimguiname": "ImDrawList_AddCircleFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", "stname": "ImDrawList" @@ -667,6 +680,7 @@ "comment": "", "defaults": [], "funcname": "AddConvexPolyFilled", + "ov_cimguiname": "ImDrawList_AddConvexPolyFilled", "ret": "void", "signature": "(const ImVec2*,const int,ImU32)", "stname": "ImDrawList" @@ -687,6 +701,7 @@ "comment": "", "defaults": [], "funcname": "AddDrawCmd", + "ov_cimguiname": "ImDrawList_AddDrawCmd", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -735,6 +750,7 @@ "uv_b": "ImVec2(1,1)" }, "funcname": "AddImage", + "ov_cimguiname": "ImDrawList_AddImage", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", "stname": "ImDrawList" @@ -801,6 +817,7 @@ "uv_d": "ImVec2(0,1)" }, "funcname": "AddImageQuad", + "ov_cimguiname": "ImDrawList_AddImageQuad", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", "stname": "ImDrawList" @@ -855,6 +872,7 @@ "rounding_corners": "ImDrawCornerFlags_All" }, "funcname": "AddImageRounded", + "ov_cimguiname": "ImDrawList_AddImageRounded", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", "stname": "ImDrawList" @@ -893,6 +911,7 @@ "thickness": "1.0f" }, "funcname": "AddLine", + "ov_cimguiname": "ImDrawList_AddLine", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float)", "stname": "ImDrawList" @@ -933,6 +952,7 @@ "comment": "", "defaults": [], "funcname": "AddPolyline", + "ov_cimguiname": "ImDrawList_AddPolyline", "ret": "void", "signature": "(const ImVec2*,const int,ImU32,bool,float)", "stname": "ImDrawList" @@ -979,6 +999,7 @@ "thickness": "1.0f" }, "funcname": "AddQuad", + "ov_cimguiname": "ImDrawList_AddQuad", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)", "stname": "ImDrawList" @@ -1019,6 +1040,7 @@ "comment": "", "defaults": [], "funcname": "AddQuadFilled", + "ov_cimguiname": "ImDrawList_AddQuadFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", "stname": "ImDrawList" @@ -1067,6 +1089,7 @@ "thickness": "1.0f" }, "funcname": "AddRect", + "ov_cimguiname": "ImDrawList_AddRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,int,float)", "stname": "ImDrawList" @@ -1110,6 +1133,7 @@ "rounding_corners_flags": "ImDrawCornerFlags_All" }, "funcname": "AddRectFilled", + "ov_cimguiname": "ImDrawList_AddRectFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,int)", "stname": "ImDrawList" @@ -1154,6 +1178,7 @@ "comment": "", "defaults": [], "funcname": "AddRectFilledMultiColor", + "ov_cimguiname": "ImDrawList_AddRectFilledMultiColor", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)", "stname": "ImDrawList" @@ -1184,12 +1209,12 @@ "type": "const char*" } ], - "argsoriginal": "(const ImVec2& pos,ImU32 col,const char* text_begin,const char* text_end=((void *)0))", + "argsoriginal": "(const ImVec2& pos,ImU32 col,const char* text_begin,const char* text_end=((void*)0))", "call_args": "(pos,col,text_begin,text_end)", "cimguiname": "ImDrawList_AddText", "comment": "", "defaults": { - "text_end": "((void *)0)" + "text_end": "((void*)0)" }, "funcname": "AddText", "ov_cimguiname": "ImDrawList_AddText", @@ -1237,13 +1262,13 @@ "type": "const ImVec4*" } ], - "argsoriginal": "(const ImFont* font,float font_size,const ImVec2& pos,ImU32 col,const char* text_begin,const char* text_end=((void *)0),float wrap_width=0.0f,const ImVec4* cpu_fine_clip_rect=((void *)0))", + "argsoriginal": "(const ImFont* font,float font_size,const ImVec2& pos,ImU32 col,const char* text_begin,const char* text_end=((void*)0),float wrap_width=0.0f,const ImVec4* cpu_fine_clip_rect=((void*)0))", "call_args": "(font,font_size,pos,col,text_begin,text_end,wrap_width,cpu_fine_clip_rect)", "cimguiname": "ImDrawList_AddText", "comment": "", "defaults": { - "cpu_fine_clip_rect": "((void *)0)", - "text_end": "((void *)0)", + "cpu_fine_clip_rect": "((void*)0)", + "text_end": "((void*)0)", "wrap_width": "0.0f" }, "funcname": "AddText", @@ -1290,6 +1315,7 @@ "thickness": "1.0f" }, "funcname": "AddTriangle", + "ov_cimguiname": "ImDrawList_AddTriangle", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)", "stname": "ImDrawList" @@ -1326,6 +1352,7 @@ "comment": "", "defaults": [], "funcname": "AddTriangleFilled", + "ov_cimguiname": "ImDrawList_AddTriangleFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32)", "stname": "ImDrawList" @@ -1346,6 +1373,7 @@ "comment": "", "defaults": [], "funcname": "ChannelsMerge", + "ov_cimguiname": "ImDrawList_ChannelsMerge", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -1370,6 +1398,7 @@ "comment": "", "defaults": [], "funcname": "ChannelsSetCurrent", + "ov_cimguiname": "ImDrawList_ChannelsSetCurrent", "ret": "void", "signature": "(int)", "stname": "ImDrawList" @@ -1394,6 +1423,7 @@ "comment": "", "defaults": [], "funcname": "ChannelsSplit", + "ov_cimguiname": "ImDrawList_ChannelsSplit", "ret": "void", "signature": "(int)", "stname": "ImDrawList" @@ -1414,6 +1444,7 @@ "comment": "", "defaults": [], "funcname": "Clear", + "ov_cimguiname": "ImDrawList_Clear", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -1434,6 +1465,7 @@ "comment": "", "defaults": [], "funcname": "ClearFreeMemory", + "ov_cimguiname": "ImDrawList_ClearFreeMemory", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -1454,6 +1486,7 @@ "comment": "", "defaults": [], "funcname": "CloneOutput", + "ov_cimguiname": "ImDrawList_CloneOutput", "ret": "ImDrawList*", "signature": "()", "stname": "ImDrawList" @@ -1474,6 +1507,7 @@ "comment": "", "defaults": [], "funcname": "GetClipRectMax", + "ov_cimguiname": "ImDrawList_GetClipRectMax", "ret": "ImVec2", "signature": "()", "stname": "ImDrawList" @@ -1539,6 +1573,7 @@ "comment": "", "defaults": [], "funcname": "GetClipRectMin", + "ov_cimguiname": "ImDrawList_GetClipRectMin", "ret": "ImVec2", "signature": "()", "stname": "ImDrawList" @@ -1605,6 +1640,7 @@ "constructor": true, "defaults": [], "funcname": "ImDrawList", + "ov_cimguiname": "ImDrawList_ImDrawList", "signature": "(const ImDrawListSharedData*)", "stname": "ImDrawList" } @@ -1646,6 +1682,7 @@ "num_segments": "10" }, "funcname": "PathArcTo", + "ov_cimguiname": "ImDrawList_PathArcTo", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", "stname": "ImDrawList" @@ -1682,6 +1719,7 @@ "comment": "", "defaults": [], "funcname": "PathArcToFast", + "ov_cimguiname": "ImDrawList_PathArcToFast", "ret": "void", "signature": "(const ImVec2,float,int,int)", "stname": "ImDrawList" @@ -1720,6 +1758,7 @@ "num_segments": "0" }, "funcname": "PathBezierCurveTo", + "ov_cimguiname": "ImDrawList_PathBezierCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,int)", "stname": "ImDrawList" @@ -1740,6 +1779,7 @@ "comment": "", "defaults": [], "funcname": "PathClear", + "ov_cimguiname": "ImDrawList_PathClear", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -1764,6 +1804,7 @@ "comment": "", "defaults": [], "funcname": "PathFillConvex", + "ov_cimguiname": "ImDrawList_PathFillConvex", "ret": "void", "signature": "(ImU32)", "stname": "ImDrawList" @@ -1788,6 +1829,7 @@ "comment": "", "defaults": [], "funcname": "PathLineTo", + "ov_cimguiname": "ImDrawList_PathLineTo", "ret": "void", "signature": "(const ImVec2)", "stname": "ImDrawList" @@ -1812,6 +1854,7 @@ "comment": "", "defaults": [], "funcname": "PathLineToMergeDuplicate", + "ov_cimguiname": "ImDrawList_PathLineToMergeDuplicate", "ret": "void", "signature": "(const ImVec2)", "stname": "ImDrawList" @@ -1851,6 +1894,7 @@ "rounding_corners_flags": "ImDrawCornerFlags_All" }, "funcname": "PathRect", + "ov_cimguiname": "ImDrawList_PathRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,float,int)", "stname": "ImDrawList" @@ -1885,6 +1929,7 @@ "thickness": "1.0f" }, "funcname": "PathStroke", + "ov_cimguiname": "ImDrawList_PathStroke", "ret": "void", "signature": "(ImU32,bool,float)", "stname": "ImDrawList" @@ -1905,6 +1950,7 @@ "comment": "", "defaults": [], "funcname": "PopClipRect", + "ov_cimguiname": "ImDrawList_PopClipRect", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -1925,6 +1971,7 @@ "comment": "", "defaults": [], "funcname": "PopTextureID", + "ov_cimguiname": "ImDrawList_PopTextureID", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -1981,6 +2028,7 @@ "comment": "", "defaults": [], "funcname": "PrimQuadUV", + "ov_cimguiname": "ImDrawList_PrimQuadUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", "stname": "ImDrawList" @@ -2013,6 +2061,7 @@ "comment": "", "defaults": [], "funcname": "PrimRect", + "ov_cimguiname": "ImDrawList_PrimRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", "stname": "ImDrawList" @@ -2053,6 +2102,7 @@ "comment": "", "defaults": [], "funcname": "PrimRectUV", + "ov_cimguiname": "ImDrawList_PrimRectUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", "stname": "ImDrawList" @@ -2081,6 +2131,7 @@ "comment": "", "defaults": [], "funcname": "PrimReserve", + "ov_cimguiname": "ImDrawList_PrimReserve", "ret": "void", "signature": "(int,int)", "stname": "ImDrawList" @@ -2113,6 +2164,7 @@ "comment": "", "defaults": [], "funcname": "PrimVtx", + "ov_cimguiname": "ImDrawList_PrimVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", "stname": "ImDrawList" @@ -2137,6 +2189,7 @@ "comment": "", "defaults": [], "funcname": "PrimWriteIdx", + "ov_cimguiname": "ImDrawList_PrimWriteIdx", "ret": "void", "signature": "(ImDrawIdx)", "stname": "ImDrawList" @@ -2169,6 +2222,7 @@ "comment": "", "defaults": [], "funcname": "PrimWriteVtx", + "ov_cimguiname": "ImDrawList_PrimWriteVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", "stname": "ImDrawList" @@ -2203,6 +2257,7 @@ "intersect_with_current_clip_rect": "false" }, "funcname": "PushClipRect", + "ov_cimguiname": "ImDrawList_PushClipRect", "ret": "void", "signature": "(ImVec2,ImVec2,bool)", "stname": "ImDrawList" @@ -2223,6 +2278,7 @@ "comment": "", "defaults": [], "funcname": "PushClipRectFullScreen", + "ov_cimguiname": "ImDrawList_PushClipRectFullScreen", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -2247,6 +2303,7 @@ "comment": "", "defaults": [], "funcname": "PushTextureID", + "ov_cimguiname": "ImDrawList_PushTextureID", "ret": "void", "signature": "(ImTextureID)", "stname": "ImDrawList" @@ -2267,6 +2324,7 @@ "comment": "", "defaults": [], "funcname": "UpdateClipRect", + "ov_cimguiname": "ImDrawList_UpdateClipRect", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -2287,6 +2345,7 @@ "comment": "", "defaults": [], "funcname": "UpdateTextureID", + "ov_cimguiname": "ImDrawList_UpdateTextureID", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -2352,6 +2411,7 @@ "offset": "ImVec2(0,0)" }, "funcname": "AddCustomRectFontGlyph", + "ov_cimguiname": "ImFontAtlas_AddCustomRectFontGlyph", "ret": "int", "signature": "(ImFont*,ImWchar,int,int,float,const ImVec2)", "stname": "ImFontAtlas" @@ -2384,6 +2444,7 @@ "comment": "", "defaults": [], "funcname": "AddCustomRectRegular", + "ov_cimguiname": "ImFontAtlas_AddCustomRectRegular", "ret": "int", "signature": "(unsigned int,int,int)", "stname": "ImFontAtlas" @@ -2408,6 +2469,7 @@ "comment": "", "defaults": [], "funcname": "AddFont", + "ov_cimguiname": "ImFontAtlas_AddFont", "ret": "ImFont*", "signature": "(const ImFontConfig*)", "stname": "ImFontAtlas" @@ -2426,14 +2488,15 @@ "type": "const ImFontConfig*" } ], - "argsoriginal": "(const ImFontConfig* font_cfg=((void *)0))", + "argsoriginal": "(const ImFontConfig* font_cfg=((void*)0))", "call_args": "(font_cfg)", "cimguiname": "ImFontAtlas_AddFontDefault", "comment": "", "defaults": { - "font_cfg": "((void *)0)" + "font_cfg": "((void*)0)" }, "funcname": "AddFontDefault", + "ov_cimguiname": "ImFontAtlas_AddFontDefault", "ret": "ImFont*", "signature": "(const ImFontConfig*)", "stname": "ImFontAtlas" @@ -2464,15 +2527,16 @@ "type": "const ImWchar*" } ], - "argsoriginal": "(const char* filename,float size_pixels,const ImFontConfig* font_cfg=((void *)0),const ImWchar* glyph_ranges=((void *)0))", + "argsoriginal": "(const char* filename,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", "call_args": "(filename,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromFileTTF", "comment": "", "defaults": { - "font_cfg": "((void *)0)", - "glyph_ranges": "((void *)0)" + "font_cfg": "((void*)0)", + "glyph_ranges": "((void*)0)" }, "funcname": "AddFontFromFileTTF", + "ov_cimguiname": "ImFontAtlas_AddFontFromFileTTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", "stname": "ImFontAtlas" @@ -2503,15 +2567,16 @@ "type": "const ImWchar*" } ], - "argsoriginal": "(const char* compressed_font_data_base85,float size_pixels,const ImFontConfig* font_cfg=((void *)0),const ImWchar* glyph_ranges=((void *)0))", + "argsoriginal": "(const char* compressed_font_data_base85,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", "call_args": "(compressed_font_data_base85,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF", "comment": "", "defaults": { - "font_cfg": "((void *)0)", - "glyph_ranges": "((void *)0)" + "font_cfg": "((void*)0)", + "glyph_ranges": "((void*)0)" }, "funcname": "AddFontFromMemoryCompressedBase85TTF", + "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", "stname": "ImFontAtlas" @@ -2546,15 +2611,16 @@ "type": "const ImWchar*" } ], - "argsoriginal": "(const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg=((void *)0),const ImWchar* glyph_ranges=((void *)0))", + "argsoriginal": "(const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", "call_args": "(compressed_font_data,compressed_font_size,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedTTF", "comment": "", "defaults": { - "font_cfg": "((void *)0)", - "glyph_ranges": "((void *)0)" + "font_cfg": "((void*)0)", + "glyph_ranges": "((void*)0)" }, "funcname": "AddFontFromMemoryCompressedTTF", + "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedTTF", "ret": "ImFont*", "signature": "(const void*,int,float,const ImFontConfig*,const ImWchar*)", "stname": "ImFontAtlas" @@ -2589,15 +2655,16 @@ "type": "const ImWchar*" } ], - "argsoriginal": "(void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg=((void *)0),const ImWchar* glyph_ranges=((void *)0))", + "argsoriginal": "(void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", "call_args": "(font_data,font_size,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromMemoryTTF", "comment": "", "defaults": { - "font_cfg": "((void *)0)", - "glyph_ranges": "((void *)0)" + "font_cfg": "((void*)0)", + "glyph_ranges": "((void*)0)" }, "funcname": "AddFontFromMemoryTTF", + "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryTTF", "ret": "ImFont*", "signature": "(void*,int,float,const ImFontConfig*,const ImWchar*)", "stname": "ImFontAtlas" @@ -2618,6 +2685,7 @@ "comment": "", "defaults": [], "funcname": "Build", + "ov_cimguiname": "ImFontAtlas_Build", "ret": "bool", "signature": "()", "stname": "ImFontAtlas" @@ -2650,6 +2718,7 @@ "comment": "", "defaults": [], "funcname": "CalcCustomRectUV", + "ov_cimguiname": "ImFontAtlas_CalcCustomRectUV", "ret": "void", "signature": "(const CustomRect*,ImVec2*,ImVec2*)", "stname": "ImFontAtlas" @@ -2670,6 +2739,7 @@ "comment": "", "defaults": [], "funcname": "Clear", + "ov_cimguiname": "ImFontAtlas_Clear", "ret": "void", "signature": "()", "stname": "ImFontAtlas" @@ -2690,6 +2760,7 @@ "comment": "", "defaults": [], "funcname": "ClearFonts", + "ov_cimguiname": "ImFontAtlas_ClearFonts", "ret": "void", "signature": "()", "stname": "ImFontAtlas" @@ -2710,6 +2781,7 @@ "comment": "", "defaults": [], "funcname": "ClearInputData", + "ov_cimguiname": "ImFontAtlas_ClearInputData", "ret": "void", "signature": "()", "stname": "ImFontAtlas" @@ -2730,6 +2802,7 @@ "comment": "", "defaults": [], "funcname": "ClearTexData", + "ov_cimguiname": "ImFontAtlas_ClearTexData", "ret": "void", "signature": "()", "stname": "ImFontAtlas" @@ -2754,6 +2827,7 @@ "comment": "", "defaults": [], "funcname": "GetCustomRectByIndex", + "ov_cimguiname": "ImFontAtlas_GetCustomRectByIndex", "ret": "const CustomRect*", "signature": "(int)", "stname": "ImFontAtlas" @@ -2774,6 +2848,7 @@ "comment": "", "defaults": [], "funcname": "GetGlyphRangesChineseFull", + "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", "ret": "const ImWchar*", "signature": "()", "stname": "ImFontAtlas" @@ -2794,6 +2869,7 @@ "comment": "", "defaults": [], "funcname": "GetGlyphRangesChineseSimplifiedCommon", + "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", "ret": "const ImWchar*", "signature": "()", "stname": "ImFontAtlas" @@ -2814,6 +2890,7 @@ "comment": "", "defaults": [], "funcname": "GetGlyphRangesCyrillic", + "ov_cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", "ret": "const ImWchar*", "signature": "()", "stname": "ImFontAtlas" @@ -2834,6 +2911,7 @@ "comment": "", "defaults": [], "funcname": "GetGlyphRangesDefault", + "ov_cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "ret": "const ImWchar*", "signature": "()", "stname": "ImFontAtlas" @@ -2854,6 +2932,7 @@ "comment": "", "defaults": [], "funcname": "GetGlyphRangesJapanese", + "ov_cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", "ret": "const ImWchar*", "signature": "()", "stname": "ImFontAtlas" @@ -2874,6 +2953,7 @@ "comment": "", "defaults": [], "funcname": "GetGlyphRangesKorean", + "ov_cimguiname": "ImFontAtlas_GetGlyphRangesKorean", "ret": "const ImWchar*", "signature": "()", "stname": "ImFontAtlas" @@ -2894,6 +2974,7 @@ "comment": "", "defaults": [], "funcname": "GetGlyphRangesThai", + "ov_cimguiname": "ImFontAtlas_GetGlyphRangesThai", "ret": "const ImWchar*", "signature": "()", "stname": "ImFontAtlas" @@ -2934,6 +3015,7 @@ "comment": "", "defaults": [], "funcname": "GetMouseCursorTexData", + "ov_cimguiname": "ImFontAtlas_GetMouseCursorTexData", "ret": "bool", "signature": "(ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])", "stname": "ImFontAtlas" @@ -2964,14 +3046,15 @@ "type": "int*" } ], - "argsoriginal": "(unsigned char** out_pixels,int* out_width,int* out_height,int* out_bytes_per_pixel=((void *)0))", + "argsoriginal": "(unsigned char** out_pixels,int* out_width,int* out_height,int* out_bytes_per_pixel=((void*)0))", "call_args": "(out_pixels,out_width,out_height,out_bytes_per_pixel)", "cimguiname": "ImFontAtlas_GetTexDataAsAlpha8", "comment": "", "defaults": { - "out_bytes_per_pixel": "((void *)0)" + "out_bytes_per_pixel": "((void*)0)" }, "funcname": "GetTexDataAsAlpha8", + "ov_cimguiname": "ImFontAtlas_GetTexDataAsAlpha8", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", "stname": "ImFontAtlas" @@ -3002,14 +3085,15 @@ "type": "int*" } ], - "argsoriginal": "(unsigned char** out_pixels,int* out_width,int* out_height,int* out_bytes_per_pixel=((void *)0))", + "argsoriginal": "(unsigned char** out_pixels,int* out_width,int* out_height,int* out_bytes_per_pixel=((void*)0))", "call_args": "(out_pixels,out_width,out_height,out_bytes_per_pixel)", "cimguiname": "ImFontAtlas_GetTexDataAsRGBA32", "comment": "", "defaults": { - "out_bytes_per_pixel": "((void *)0)" + "out_bytes_per_pixel": "((void*)0)" }, "funcname": "GetTexDataAsRGBA32", + "ov_cimguiname": "ImFontAtlas_GetTexDataAsRGBA32", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", "stname": "ImFontAtlas" @@ -3026,6 +3110,7 @@ "constructor": true, "defaults": [], "funcname": "ImFontAtlas", + "ov_cimguiname": "ImFontAtlas_ImFontAtlas", "signature": "()", "stname": "ImFontAtlas" } @@ -3045,6 +3130,7 @@ "comment": "", "defaults": [], "funcname": "IsBuilt", + "ov_cimguiname": "ImFontAtlas_IsBuilt", "ret": "bool", "signature": "()", "stname": "ImFontAtlas" @@ -3069,6 +3155,7 @@ "comment": "", "defaults": [], "funcname": "SetTexID", + "ov_cimguiname": "ImFontAtlas_SetTexID", "ret": "void", "signature": "(ImTextureID)", "stname": "ImFontAtlas" @@ -3104,6 +3191,7 @@ "constructor": true, "defaults": [], "funcname": "ImFontConfig", + "ov_cimguiname": "ImFontConfig_ImFontConfig", "signature": "()", "stname": "ImFontConfig" } @@ -3146,6 +3234,7 @@ "comment": "", "defaults": [], "funcname": "AddChar", + "ov_cimguiname": "ImFontGlyphRangesBuilder_AddChar", "ret": "void", "signature": "(ImWchar)", "stname": "ImFontGlyphRangesBuilder" @@ -3170,6 +3259,7 @@ "comment": "", "defaults": [], "funcname": "AddRanges", + "ov_cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "ret": "void", "signature": "(const ImWchar*)", "stname": "ImFontGlyphRangesBuilder" @@ -3192,14 +3282,15 @@ "type": "const char*" } ], - "argsoriginal": "(const char* text,const char* text_end=((void *)0))", + "argsoriginal": "(const char* text,const char* text_end=((void*)0))", "call_args": "(text,text_end)", "cimguiname": "ImFontGlyphRangesBuilder_AddText", "comment": "", "defaults": { - "text_end": "((void *)0)" + "text_end": "((void*)0)" }, "funcname": "AddText", + "ov_cimguiname": "ImFontGlyphRangesBuilder_AddText", "ret": "void", "signature": "(const char*,const char*)", "stname": "ImFontGlyphRangesBuilder" @@ -3224,6 +3315,7 @@ "comment": "", "defaults": [], "funcname": "BuildRanges", + "ov_cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "ret": "void", "signature": "(ImVector_ImWchar*)", "stname": "ImFontGlyphRangesBuilder" @@ -3248,6 +3340,7 @@ "comment": "", "defaults": [], "funcname": "GetBit", + "ov_cimguiname": "ImFontGlyphRangesBuilder_GetBit", "ret": "bool", "signature": "(int)", "stname": "ImFontGlyphRangesBuilder" @@ -3264,6 +3357,7 @@ "constructor": true, "defaults": [], "funcname": "ImFontGlyphRangesBuilder", + "ov_cimguiname": "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder", "signature": "()", "stname": "ImFontGlyphRangesBuilder" } @@ -3287,6 +3381,7 @@ "comment": "", "defaults": [], "funcname": "SetBit", + "ov_cimguiname": "ImFontGlyphRangesBuilder_SetBit", "ret": "void", "signature": "(int)", "stname": "ImFontGlyphRangesBuilder" @@ -3366,6 +3461,7 @@ "comment": "", "defaults": [], "funcname": "AddGlyph", + "ov_cimguiname": "ImFont_AddGlyph", "ret": "void", "signature": "(ImWchar,float,float,float,float,float,float,float,float,float)", "stname": "ImFont" @@ -3400,6 +3496,7 @@ "overwrite_dst": "true" }, "funcname": "AddRemapChar", + "ov_cimguiname": "ImFont_AddRemapChar", "ret": "void", "signature": "(ImWchar,ImWchar,bool)", "stname": "ImFont" @@ -3420,6 +3517,7 @@ "comment": "", "defaults": [], "funcname": "BuildLookupTable", + "ov_cimguiname": "ImFont_BuildLookupTable", "ret": "void", "signature": "()", "stname": "ImFont" @@ -3458,15 +3556,16 @@ "type": "const char**" } ], - "argsoriginal": "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void *)0),const char** remaining=((void *)0))", + "argsoriginal": "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void*)0),const char** remaining=((void*)0))", "call_args": "(size,max_width,wrap_width,text_begin,text_end,remaining)", "cimguiname": "ImFont_CalcTextSizeA", "comment": "", "defaults": { - "remaining": "((void *)0)", - "text_end": "((void *)0)" + "remaining": "((void*)0)", + "text_end": "((void*)0)" }, "funcname": "CalcTextSizeA", + "ov_cimguiname": "ImFont_CalcTextSizeA", "ret": "ImVec2", "signature": "(float,float,float,const char*,const char*,const char**)", "stname": "ImFont" @@ -3507,13 +3606,13 @@ "type": "const char**" } ], - "argsoriginal": "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void *)0),const char** remaining=((void *)0))", + "argsoriginal": "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void*)0),const char** remaining=((void*)0))", "call_args": "(size,max_width,wrap_width,text_begin,text_end,remaining)", "cimguiname": "ImFont_CalcTextSizeA", "comment": "", "defaults": { - "remaining": "((void *)0)", - "text_end": "((void *)0)" + "remaining": "((void*)0)", + "text_end": "((void*)0)" }, "funcname": "CalcTextSizeA", "nonUDT": 1, @@ -3554,13 +3653,13 @@ "type": "const char**" } ], - "argsoriginal": "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void *)0),const char** remaining=((void *)0))", + "argsoriginal": "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void*)0),const char** remaining=((void*)0))", "call_args": "(size,max_width,wrap_width,text_begin,text_end,remaining)", "cimguiname": "ImFont_CalcTextSizeA", "comment": "", "defaults": { - "remaining": "((void *)0)", - "text_end": "((void *)0)" + "remaining": "((void*)0)", + "text_end": "((void*)0)" }, "funcname": "CalcTextSizeA", "nonUDT": 2, @@ -3602,6 +3701,7 @@ "comment": "", "defaults": [], "funcname": "CalcWordWrapPositionA", + "ov_cimguiname": "ImFont_CalcWordWrapPositionA", "ret": "const char*", "signature": "(float,const char*,const char*,float)", "stname": "ImFont" @@ -3622,6 +3722,7 @@ "comment": "", "defaults": [], "funcname": "ClearOutputData", + "ov_cimguiname": "ImFont_ClearOutputData", "ret": "void", "signature": "()", "stname": "ImFont" @@ -3646,6 +3747,7 @@ "comment": "", "defaults": [], "funcname": "FindGlyph", + "ov_cimguiname": "ImFont_FindGlyph", "ret": "const ImFontGlyph*", "signature": "(ImWchar)", "stname": "ImFont" @@ -3670,6 +3772,7 @@ "comment": "", "defaults": [], "funcname": "FindGlyphNoFallback", + "ov_cimguiname": "ImFont_FindGlyphNoFallback", "ret": "const ImFontGlyph*", "signature": "(ImWchar)", "stname": "ImFont" @@ -3694,6 +3797,7 @@ "comment": "", "defaults": [], "funcname": "GetCharAdvance", + "ov_cimguiname": "ImFont_GetCharAdvance", "ret": "float", "signature": "(ImWchar)", "stname": "ImFont" @@ -3714,6 +3818,7 @@ "comment": "", "defaults": [], "funcname": "GetDebugName", + "ov_cimguiname": "ImFont_GetDebugName", "ret": "const char*", "signature": "()", "stname": "ImFont" @@ -3738,6 +3843,7 @@ "comment": "", "defaults": [], "funcname": "GrowIndex", + "ov_cimguiname": "ImFont_GrowIndex", "ret": "void", "signature": "(int)", "stname": "ImFont" @@ -3754,6 +3860,7 @@ "constructor": true, "defaults": [], "funcname": "ImFont", + "ov_cimguiname": "ImFont_ImFont", "signature": "()", "stname": "ImFont" } @@ -3773,6 +3880,7 @@ "comment": "", "defaults": [], "funcname": "IsLoaded", + "ov_cimguiname": "ImFont_IsLoaded", "ret": "bool", "signature": "()", "stname": "ImFont" @@ -3813,6 +3921,7 @@ "comment": "", "defaults": [], "funcname": "RenderChar", + "ov_cimguiname": "ImFont_RenderChar", "ret": "void", "signature": "(ImDrawList*,float,ImVec2,ImU32,ImWchar)", "stname": "ImFont" @@ -3872,6 +3981,7 @@ "wrap_width": "0.0f" }, "funcname": "RenderText", + "ov_cimguiname": "ImFont_RenderText", "ret": "void", "signature": "(ImDrawList*,float,ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)", "stname": "ImFont" @@ -3896,6 +4006,7 @@ "comment": "", "defaults": [], "funcname": "SetFallbackChar", + "ov_cimguiname": "ImFont_SetFallbackChar", "ret": "void", "signature": "(ImWchar)", "stname": "ImFont" @@ -3939,6 +4050,7 @@ "comment": "", "defaults": [], "funcname": "AddInputCharacter", + "ov_cimguiname": "ImGuiIO_AddInputCharacter", "ret": "void", "signature": "(ImWchar)", "stname": "ImGuiIO" @@ -3963,6 +4075,7 @@ "comment": "", "defaults": [], "funcname": "AddInputCharactersUTF8", + "ov_cimguiname": "ImGuiIO_AddInputCharactersUTF8", "ret": "void", "signature": "(const char*)", "stname": "ImGuiIO" @@ -3983,6 +4096,7 @@ "comment": "", "defaults": [], "funcname": "ClearInputCharacters", + "ov_cimguiname": "ImGuiIO_ClearInputCharacters", "ret": "void", "signature": "()", "stname": "ImGuiIO" @@ -3999,6 +4113,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiIO", + "ov_cimguiname": "ImGuiIO_ImGuiIO", "signature": "()", "stname": "ImGuiIO" } @@ -4045,6 +4160,7 @@ "comment": "", "defaults": [], "funcname": "DeleteChars", + "ov_cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "ret": "void", "signature": "(int,int)", "stname": "ImGuiInputTextCallbackData" @@ -4065,6 +4181,7 @@ "comment": "", "defaults": [], "funcname": "HasSelection", + "ov_cimguiname": "ImGuiInputTextCallbackData_HasSelection", "ret": "bool", "signature": "()", "stname": "ImGuiInputTextCallbackData" @@ -4081,6 +4198,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiInputTextCallbackData", + "ov_cimguiname": "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData", "signature": "()", "stname": "ImGuiInputTextCallbackData" } @@ -4106,14 +4224,15 @@ "type": "const char*" } ], - "argsoriginal": "(int pos,const char* text,const char* text_end=((void *)0))", + "argsoriginal": "(int pos,const char* text,const char* text_end=((void*)0))", "call_args": "(pos,text,text_end)", "cimguiname": "ImGuiInputTextCallbackData_InsertChars", "comment": "", "defaults": { - "text_end": "((void *)0)" + "text_end": "((void*)0)" }, "funcname": "InsertChars", + "ov_cimguiname": "ImGuiInputTextCallbackData_InsertChars", "ret": "void", "signature": "(int,const char*,const char*)", "stname": "ImGuiInputTextCallbackData" @@ -4163,6 +4282,7 @@ "items_height": "-1.0f" }, "funcname": "Begin", + "ov_cimguiname": "ImGuiListClipper_Begin", "ret": "void", "signature": "(int,float)", "stname": "ImGuiListClipper" @@ -4183,6 +4303,7 @@ "comment": "", "defaults": [], "funcname": "End", + "ov_cimguiname": "ImGuiListClipper_End", "ret": "void", "signature": "()", "stname": "ImGuiListClipper" @@ -4211,6 +4332,7 @@ "items_height": "-1.0f" }, "funcname": "ImGuiListClipper", + "ov_cimguiname": "ImGuiListClipper_ImGuiListClipper", "signature": "(int,float)", "stname": "ImGuiListClipper" } @@ -4230,6 +4352,7 @@ "comment": "", "defaults": [], "funcname": "Step", + "ov_cimguiname": "ImGuiListClipper_Step", "ret": "bool", "signature": "()", "stname": "ImGuiListClipper" @@ -4265,6 +4388,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiOnceUponAFrame", + "ov_cimguiname": "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame", "signature": "()", "stname": "ImGuiOnceUponAFrame" } @@ -4303,6 +4427,7 @@ "comment": "", "defaults": [], "funcname": "Clear", + "ov_cimguiname": "ImGuiPayload_Clear", "ret": "void", "signature": "()", "stname": "ImGuiPayload" @@ -4319,6 +4444,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiPayload", + "ov_cimguiname": "ImGuiPayload_ImGuiPayload", "signature": "()", "stname": "ImGuiPayload" } @@ -4342,6 +4468,7 @@ "comment": "", "defaults": [], "funcname": "IsDataType", + "ov_cimguiname": "ImGuiPayload_IsDataType", "ret": "bool", "signature": "(const char*)", "stname": "ImGuiPayload" @@ -4362,6 +4489,7 @@ "comment": "", "defaults": [], "funcname": "IsDelivery", + "ov_cimguiname": "ImGuiPayload_IsDelivery", "ret": "bool", "signature": "()", "stname": "ImGuiPayload" @@ -4382,6 +4510,7 @@ "comment": "", "defaults": [], "funcname": "IsPreview", + "ov_cimguiname": "ImGuiPayload_IsPreview", "ret": "bool", "signature": "()", "stname": "ImGuiPayload" @@ -4421,6 +4550,7 @@ "comment": "", "defaults": [], "funcname": "BuildSortByKey", + "ov_cimguiname": "ImGuiStorage_BuildSortByKey", "ret": "void", "signature": "()", "stname": "ImGuiStorage" @@ -4441,6 +4571,7 @@ "comment": "", "defaults": [], "funcname": "Clear", + "ov_cimguiname": "ImGuiStorage_Clear", "ret": "void", "signature": "()", "stname": "ImGuiStorage" @@ -4471,6 +4602,7 @@ "default_val": "false" }, "funcname": "GetBool", + "ov_cimguiname": "ImGuiStorage_GetBool", "ret": "bool", "signature": "(ImGuiID,bool)", "stname": "ImGuiStorage" @@ -4501,6 +4633,7 @@ "default_val": "false" }, "funcname": "GetBoolRef", + "ov_cimguiname": "ImGuiStorage_GetBoolRef", "ret": "bool*", "signature": "(ImGuiID,bool)", "stname": "ImGuiStorage" @@ -4531,6 +4664,7 @@ "default_val": "0.0f" }, "funcname": "GetFloat", + "ov_cimguiname": "ImGuiStorage_GetFloat", "ret": "float", "signature": "(ImGuiID,float)", "stname": "ImGuiStorage" @@ -4561,6 +4695,7 @@ "default_val": "0.0f" }, "funcname": "GetFloatRef", + "ov_cimguiname": "ImGuiStorage_GetFloatRef", "ret": "float*", "signature": "(ImGuiID,float)", "stname": "ImGuiStorage" @@ -4591,6 +4726,7 @@ "default_val": "0" }, "funcname": "GetInt", + "ov_cimguiname": "ImGuiStorage_GetInt", "ret": "int", "signature": "(ImGuiID,int)", "stname": "ImGuiStorage" @@ -4621,6 +4757,7 @@ "default_val": "0" }, "funcname": "GetIntRef", + "ov_cimguiname": "ImGuiStorage_GetIntRef", "ret": "int*", "signature": "(ImGuiID,int)", "stname": "ImGuiStorage" @@ -4645,6 +4782,7 @@ "comment": "", "defaults": [], "funcname": "GetVoidPtr", + "ov_cimguiname": "ImGuiStorage_GetVoidPtr", "ret": "void*", "signature": "(ImGuiID)", "stname": "ImGuiStorage" @@ -4667,14 +4805,15 @@ "type": "void*" } ], - "argsoriginal": "(ImGuiID key,void* default_val=((void *)0))", + "argsoriginal": "(ImGuiID key,void* default_val=((void*)0))", "call_args": "(key,default_val)", "cimguiname": "ImGuiStorage_GetVoidPtrRef", "comment": "", "defaults": { - "default_val": "((void *)0)" + "default_val": "((void*)0)" }, "funcname": "GetVoidPtrRef", + "ov_cimguiname": "ImGuiStorage_GetVoidPtrRef", "ret": "void**", "signature": "(ImGuiID,void*)", "stname": "ImGuiStorage" @@ -4699,6 +4838,7 @@ "comment": "", "defaults": [], "funcname": "SetAllInt", + "ov_cimguiname": "ImGuiStorage_SetAllInt", "ret": "void", "signature": "(int)", "stname": "ImGuiStorage" @@ -4727,6 +4867,7 @@ "comment": "", "defaults": [], "funcname": "SetBool", + "ov_cimguiname": "ImGuiStorage_SetBool", "ret": "void", "signature": "(ImGuiID,bool)", "stname": "ImGuiStorage" @@ -4755,6 +4896,7 @@ "comment": "", "defaults": [], "funcname": "SetFloat", + "ov_cimguiname": "ImGuiStorage_SetFloat", "ret": "void", "signature": "(ImGuiID,float)", "stname": "ImGuiStorage" @@ -4783,6 +4925,7 @@ "comment": "", "defaults": [], "funcname": "SetInt", + "ov_cimguiname": "ImGuiStorage_SetInt", "ret": "void", "signature": "(ImGuiID,int)", "stname": "ImGuiStorage" @@ -4811,6 +4954,7 @@ "comment": "", "defaults": [], "funcname": "SetVoidPtr", + "ov_cimguiname": "ImGuiStorage_SetVoidPtr", "ret": "void", "signature": "(ImGuiID,void*)", "stname": "ImGuiStorage" @@ -4827,6 +4971,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiStyle", + "ov_cimguiname": "ImGuiStyle_ImGuiStyle", "signature": "()", "stname": "ImGuiStyle" } @@ -4850,6 +4995,7 @@ "comment": "", "defaults": [], "funcname": "ScaleAllSizes", + "ov_cimguiname": "ImGuiStyle_ScaleAllSizes", "ret": "void", "signature": "(float)", "stname": "ImGuiStyle" @@ -4885,6 +5031,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiTextBuffer", + "ov_cimguiname": "ImGuiTextBuffer_ImGuiTextBuffer", "signature": "()", "stname": "ImGuiTextBuffer" } @@ -4914,6 +5061,7 @@ "funcname": "appendf", "isvararg": "...)", "manual": true, + "ov_cimguiname": "ImGuiTextBuffer_appendf", "ret": "void", "signature": "(const char*,...)", "stname": "ImGuiTextBuffer" @@ -4942,6 +5090,7 @@ "comment": "", "defaults": [], "funcname": "appendfv", + "ov_cimguiname": "ImGuiTextBuffer_appendfv", "ret": "void", "signature": "(const char*,va_list)", "stname": "ImGuiTextBuffer" @@ -4962,6 +5111,7 @@ "comment": "", "defaults": [], "funcname": "begin", + "ov_cimguiname": "ImGuiTextBuffer_begin", "ret": "const char*", "signature": "()", "stname": "ImGuiTextBuffer" @@ -4982,6 +5132,7 @@ "comment": "", "defaults": [], "funcname": "c_str", + "ov_cimguiname": "ImGuiTextBuffer_c_str", "ret": "const char*", "signature": "()", "stname": "ImGuiTextBuffer" @@ -5002,6 +5153,7 @@ "comment": "", "defaults": [], "funcname": "clear", + "ov_cimguiname": "ImGuiTextBuffer_clear", "ret": "void", "signature": "()", "stname": "ImGuiTextBuffer" @@ -5041,6 +5193,7 @@ "comment": "", "defaults": [], "funcname": "empty", + "ov_cimguiname": "ImGuiTextBuffer_empty", "ret": "bool", "signature": "()", "stname": "ImGuiTextBuffer" @@ -5061,6 +5214,7 @@ "comment": "", "defaults": [], "funcname": "end", + "ov_cimguiname": "ImGuiTextBuffer_end", "ret": "const char*", "signature": "()", "stname": "ImGuiTextBuffer" @@ -5085,6 +5239,7 @@ "comment": "", "defaults": [], "funcname": "reserve", + "ov_cimguiname": "ImGuiTextBuffer_reserve", "ret": "void", "signature": "(int)", "stname": "ImGuiTextBuffer" @@ -5105,6 +5260,7 @@ "comment": "", "defaults": [], "funcname": "size", + "ov_cimguiname": "ImGuiTextBuffer_size", "ret": "int", "signature": "()", "stname": "ImGuiTextBuffer" @@ -5125,6 +5281,7 @@ "comment": "", "defaults": [], "funcname": "Build", + "ov_cimguiname": "ImGuiTextFilter_Build", "ret": "void", "signature": "()", "stname": "ImGuiTextFilter" @@ -5145,6 +5302,7 @@ "comment": "", "defaults": [], "funcname": "Clear", + "ov_cimguiname": "ImGuiTextFilter_Clear", "ret": "void", "signature": "()", "stname": "ImGuiTextFilter" @@ -5176,6 +5334,7 @@ "width": "0.0f" }, "funcname": "Draw", + "ov_cimguiname": "ImGuiTextFilter_Draw", "ret": "bool", "signature": "(const char*,float)", "stname": "ImGuiTextFilter" @@ -5199,6 +5358,7 @@ "default_filter": "\"\"" }, "funcname": "ImGuiTextFilter", + "ov_cimguiname": "ImGuiTextFilter_ImGuiTextFilter", "signature": "(const char*)", "stname": "ImGuiTextFilter" } @@ -5218,6 +5378,7 @@ "comment": "", "defaults": [], "funcname": "IsActive", + "ov_cimguiname": "ImGuiTextFilter_IsActive", "ret": "bool", "signature": "()", "stname": "ImGuiTextFilter" @@ -5240,14 +5401,15 @@ "type": "const char*" } ], - "argsoriginal": "(const char* text,const char* text_end=((void *)0))", + "argsoriginal": "(const char* text,const char* text_end=((void*)0))", "call_args": "(text,text_end)", "cimguiname": "ImGuiTextFilter_PassFilter", "comment": "", "defaults": { - "text_end": "((void *)0)" + "text_end": "((void*)0)" }, "funcname": "PassFilter", + "ov_cimguiname": "ImGuiTextFilter_PassFilter", "ret": "bool", "signature": "(const char*,const char*)", "stname": "ImGuiTextFilter" @@ -5407,8 +5569,30 @@ "constructor": true, "defaults": [], "funcname": "ImVector", + "ov_cimguiname": "ImVector_ImVector", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true + }, + { + "args": "(const ImVector_ src)", + "argsT": [ + { + "name": "src", + "type": "const ImVector_" + } + ], + "argsoriginal": "(const ImVector& src)", + "call_args": "(src)", + "cimguiname": "ImVector_ImVector", + "comment": "", + "constructor": true, + "defaults": [], + "funcname": "ImVector", + "ov_cimguiname": "ImVector_ImVectorVector_", + "signature": "(const ImVector_)", + "stname": "ImVector", + "templated": true } ], "ImVector__grow_capacity": [ @@ -5430,9 +5614,11 @@ "comment": "", "defaults": [], "funcname": "_grow_capacity", + "ov_cimguiname": "ImVector__grow_capacity", "ret": "int", "signature": "(int)", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_back": [ @@ -5454,7 +5640,8 @@ "ret": "T*", "retref": "&", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true }, { "args": "(ImVector* self)", @@ -5474,7 +5661,8 @@ "ret": "const T*", "retref": "&", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_begin": [ @@ -5495,7 +5683,8 @@ "ov_cimguiname": "ImVector_begin", "ret": "T*", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true }, { "args": "(ImVector* self)", @@ -5514,7 +5703,8 @@ "ov_cimguiname": "ImVector_begin", "ret": "const T*", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_capacity": [ @@ -5532,9 +5722,11 @@ "comment": "", "defaults": [], "funcname": "capacity", + "ov_cimguiname": "ImVector_capacity", "ret": "int", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_clear": [ @@ -5552,9 +5744,11 @@ "comment": "", "defaults": [], "funcname": "clear", + "ov_cimguiname": "ImVector_clear", "ret": "void", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_contains": [ @@ -5576,9 +5770,11 @@ "comment": "", "defaults": [], "funcname": "contains", + "ov_cimguiname": "ImVector_contains", "ret": "bool", "signature": "(const T)", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_destroy": [ @@ -5615,9 +5811,11 @@ "comment": "", "defaults": [], "funcname": "empty", + "ov_cimguiname": "ImVector_empty", "ret": "bool", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_end": [ @@ -5638,7 +5836,8 @@ "ov_cimguiname": "ImVector_end", "ret": "T*", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true }, { "args": "(ImVector* self)", @@ -5657,7 +5856,8 @@ "ov_cimguiname": "ImVector_end", "ret": "const T*", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_erase": [ @@ -5682,7 +5882,8 @@ "ov_cimguiname": "ImVector_erase", "ret": "T*", "signature": "(const T*)", - "stname": "ImVector" + "stname": "ImVector", + "templated": true }, { "args": "(ImVector* self,const T* it,const T* it_last)", @@ -5709,7 +5910,8 @@ "ov_cimguiname": "ImVector_eraseTPtr", "ret": "T*", "signature": "(const T*,const T*)", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_erase_unsorted": [ @@ -5731,9 +5933,11 @@ "comment": "", "defaults": [], "funcname": "erase_unsorted", + "ov_cimguiname": "ImVector_erase_unsorted", "ret": "T*", "signature": "(const T*)", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_front": [ @@ -5755,7 +5959,8 @@ "ret": "T*", "retref": "&", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true }, { "args": "(ImVector* self)", @@ -5775,7 +5980,8 @@ "ret": "const T*", "retref": "&", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_index_from_ptr": [ @@ -5797,9 +6003,11 @@ "comment": "", "defaults": [], "funcname": "index_from_ptr", + "ov_cimguiname": "ImVector_index_from_ptr", "ret": "int", "signature": "(const T*)", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_insert": [ @@ -5825,9 +6033,11 @@ "comment": "", "defaults": [], "funcname": "insert", + "ov_cimguiname": "ImVector_insert", "ret": "T*", "signature": "(const T*,const T)", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_pop_back": [ @@ -5845,9 +6055,11 @@ "comment": "", "defaults": [], "funcname": "pop_back", + "ov_cimguiname": "ImVector_pop_back", "ret": "void", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_push_back": [ @@ -5869,9 +6081,11 @@ "comment": "", "defaults": [], "funcname": "push_back", + "ov_cimguiname": "ImVector_push_back", "ret": "void", "signature": "(const T)", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_push_front": [ @@ -5893,9 +6107,11 @@ "comment": "", "defaults": [], "funcname": "push_front", + "ov_cimguiname": "ImVector_push_front", "ret": "void", "signature": "(const T)", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_reserve": [ @@ -5917,9 +6133,11 @@ "comment": "", "defaults": [], "funcname": "reserve", + "ov_cimguiname": "ImVector_reserve", "ret": "void", "signature": "(int)", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_resize": [ @@ -5944,7 +6162,8 @@ "ov_cimguiname": "ImVector_resize", "ret": "void", "signature": "(int)", - "stname": "ImVector" + "stname": "ImVector", + "templated": true }, { "args": "(ImVector* self,int new_size,const T v)", @@ -5971,7 +6190,8 @@ "ov_cimguiname": "ImVector_resizeT", "ret": "void", "signature": "(int,const T)", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_size": [ @@ -5989,9 +6209,11 @@ "comment": "", "defaults": [], "funcname": "size", + "ov_cimguiname": "ImVector_size", "ret": "int", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_size_in_bytes": [ @@ -6009,14 +6231,16 @@ "comment": "", "defaults": [], "funcname": "size_in_bytes", + "ov_cimguiname": "ImVector_size_in_bytes", "ret": "int", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_swap": [ { - "args": "(ImVector* self,ImVector_T rhs)", + "args": "(ImVector* self,ImVector_ rhs)", "argsT": [ { "name": "self", @@ -6024,7 +6248,7 @@ }, { "name": "rhs", - "type": "ImVector_T&" + "type": "ImVector_&" } ], "argsoriginal": "(ImVector& rhs)", @@ -6033,9 +6257,11 @@ "comment": "", "defaults": [], "funcname": "swap", + "ov_cimguiname": "ImVector_swap", "ret": "void", - "signature": "(ImVector_T)", - "stname": "ImVector" + "signature": "(ImVector_)", + "stname": "ImVector", + "templated": true } ], "Pair_Pair": [ @@ -6182,6 +6408,7 @@ "comment": "", "defaults": [], "funcname": "begin", + "ov_cimguiname": "TextRange_begin", "ret": "const char*", "signature": "()", "stname": "TextRange" @@ -6221,6 +6448,7 @@ "comment": "", "defaults": [], "funcname": "empty", + "ov_cimguiname": "TextRange_empty", "ret": "bool", "signature": "()", "stname": "TextRange" @@ -6241,6 +6469,7 @@ "comment": "", "defaults": [], "funcname": "end", + "ov_cimguiname": "TextRange_end", "ret": "const char*", "signature": "()", "stname": "TextRange" @@ -6269,6 +6498,7 @@ "comment": "", "defaults": [], "funcname": "split", + "ov_cimguiname": "TextRange_split", "ret": "void", "signature": "(char,ImVector_TextRange*)", "stname": "TextRange" @@ -6295,9 +6525,11 @@ "flags": "0" }, "funcname": "AcceptDragDropPayload", + "namespace": "ImGui", + "ov_cimguiname": "igAcceptDragDropPayload", "ret": "const ImGuiPayload*", "signature": "(const char*,ImGuiDragDropFlags)", - "stname": "ImGui" + "stname": "" } ], "igAlignTextToFramePadding": [ @@ -6310,9 +6542,11 @@ "comment": "", "defaults": [], "funcname": "AlignTextToFramePadding", + "namespace": "ImGui", + "ov_cimguiname": "igAlignTextToFramePadding", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igArrowButton": [ @@ -6334,9 +6568,11 @@ "comment": "", "defaults": [], "funcname": "ArrowButton", + "namespace": "ImGui", + "ov_cimguiname": "igArrowButton", "ret": "bool", "signature": "(const char*,ImGuiDir)", - "stname": "ImGui" + "stname": "" } ], "igBegin": [ @@ -6356,18 +6592,20 @@ "type": "ImGuiWindowFlags" } ], - "argsoriginal": "(const char* name,bool* p_open=((void *)0),ImGuiWindowFlags flags=0)", + "argsoriginal": "(const char* name,bool* p_open=((void*)0),ImGuiWindowFlags flags=0)", "call_args": "(name,p_open,flags)", "cimguiname": "igBegin", "comment": "", "defaults": { "flags": "0", - "p_open": "((void *)0)" + "p_open": "((void*)0)" }, "funcname": "Begin", + "namespace": "ImGui", + "ov_cimguiname": "igBegin", "ret": "bool", "signature": "(const char*,bool*,ImGuiWindowFlags)", - "stname": "ImGui" + "stname": "" } ], "igBeginChild": [ @@ -6401,10 +6639,11 @@ "size": "ImVec2(0,0)" }, "funcname": "BeginChild", + "namespace": "ImGui", "ov_cimguiname": "igBeginChild", "ret": "bool", "signature": "(const char*,const ImVec2,bool,ImGuiWindowFlags)", - "stname": "ImGui" + "stname": "" }, { "args": "(ImGuiID id,const ImVec2 size,bool border,ImGuiWindowFlags flags)", @@ -6436,10 +6675,11 @@ "size": "ImVec2(0,0)" }, "funcname": "BeginChild", + "namespace": "ImGui", "ov_cimguiname": "igBeginChildID", "ret": "bool", "signature": "(ImGuiID,const ImVec2,bool,ImGuiWindowFlags)", - "stname": "ImGui" + "stname": "" } ], "igBeginChildFrame": [ @@ -6467,9 +6707,11 @@ "flags": "0" }, "funcname": "BeginChildFrame", + "namespace": "ImGui", + "ov_cimguiname": "igBeginChildFrame", "ret": "bool", "signature": "(ImGuiID,const ImVec2,ImGuiWindowFlags)", - "stname": "ImGui" + "stname": "" } ], "igBeginCombo": [ @@ -6497,9 +6739,11 @@ "flags": "0" }, "funcname": "BeginCombo", + "namespace": "ImGui", + "ov_cimguiname": "igBeginCombo", "ret": "bool", "signature": "(const char*,const char*,ImGuiComboFlags)", - "stname": "ImGui" + "stname": "" } ], "igBeginDragDropSource": [ @@ -6519,9 +6763,11 @@ "flags": "0" }, "funcname": "BeginDragDropSource", + "namespace": "ImGui", + "ov_cimguiname": "igBeginDragDropSource", "ret": "bool", "signature": "(ImGuiDragDropFlags)", - "stname": "ImGui" + "stname": "" } ], "igBeginDragDropTarget": [ @@ -6534,9 +6780,11 @@ "comment": "", "defaults": [], "funcname": "BeginDragDropTarget", + "namespace": "ImGui", + "ov_cimguiname": "igBeginDragDropTarget", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igBeginGroup": [ @@ -6549,9 +6797,11 @@ "comment": "", "defaults": [], "funcname": "BeginGroup", + "namespace": "ImGui", + "ov_cimguiname": "igBeginGroup", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igBeginMainMenuBar": [ @@ -6564,9 +6814,11 @@ "comment": "", "defaults": [], "funcname": "BeginMainMenuBar", + "namespace": "ImGui", + "ov_cimguiname": "igBeginMainMenuBar", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igBeginMenu": [ @@ -6590,9 +6842,11 @@ "enabled": "true" }, "funcname": "BeginMenu", + "namespace": "ImGui", + "ov_cimguiname": "igBeginMenu", "ret": "bool", "signature": "(const char*,bool)", - "stname": "ImGui" + "stname": "" } ], "igBeginMenuBar": [ @@ -6605,9 +6859,11 @@ "comment": "", "defaults": [], "funcname": "BeginMenuBar", + "namespace": "ImGui", + "ov_cimguiname": "igBeginMenuBar", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igBeginPopup": [ @@ -6631,9 +6887,11 @@ "flags": "0" }, "funcname": "BeginPopup", + "namespace": "ImGui", + "ov_cimguiname": "igBeginPopup", "ret": "bool", "signature": "(const char*,ImGuiWindowFlags)", - "stname": "ImGui" + "stname": "" } ], "igBeginPopupContextItem": [ @@ -6649,18 +6907,20 @@ "type": "int" } ], - "argsoriginal": "(const char* str_id=((void *)0),int mouse_button=1)", + "argsoriginal": "(const char* str_id=((void*)0),int mouse_button=1)", "call_args": "(str_id,mouse_button)", "cimguiname": "igBeginPopupContextItem", "comment": "", "defaults": { "mouse_button": "1", - "str_id": "((void *)0)" + "str_id": "((void*)0)" }, "funcname": "BeginPopupContextItem", + "namespace": "ImGui", + "ov_cimguiname": "igBeginPopupContextItem", "ret": "bool", "signature": "(const char*,int)", - "stname": "ImGui" + "stname": "" } ], "igBeginPopupContextVoid": [ @@ -6676,18 +6936,20 @@ "type": "int" } ], - "argsoriginal": "(const char* str_id=((void *)0),int mouse_button=1)", + "argsoriginal": "(const char* str_id=((void*)0),int mouse_button=1)", "call_args": "(str_id,mouse_button)", "cimguiname": "igBeginPopupContextVoid", "comment": "", "defaults": { "mouse_button": "1", - "str_id": "((void *)0)" + "str_id": "((void*)0)" }, "funcname": "BeginPopupContextVoid", + "namespace": "ImGui", + "ov_cimguiname": "igBeginPopupContextVoid", "ret": "bool", "signature": "(const char*,int)", - "stname": "ImGui" + "stname": "" } ], "igBeginPopupContextWindow": [ @@ -6707,19 +6969,21 @@ "type": "bool" } ], - "argsoriginal": "(const char* str_id=((void *)0),int mouse_button=1,bool also_over_items=true)", + "argsoriginal": "(const char* str_id=((void*)0),int mouse_button=1,bool also_over_items=true)", "call_args": "(str_id,mouse_button,also_over_items)", "cimguiname": "igBeginPopupContextWindow", "comment": "", "defaults": { "also_over_items": "true", "mouse_button": "1", - "str_id": "((void *)0)" + "str_id": "((void*)0)" }, "funcname": "BeginPopupContextWindow", + "namespace": "ImGui", + "ov_cimguiname": "igBeginPopupContextWindow", "ret": "bool", "signature": "(const char*,int,bool)", - "stname": "ImGui" + "stname": "" } ], "igBeginPopupModal": [ @@ -6739,18 +7003,20 @@ "type": "ImGuiWindowFlags" } ], - "argsoriginal": "(const char* name,bool* p_open=((void *)0),ImGuiWindowFlags flags=0)", + "argsoriginal": "(const char* name,bool* p_open=((void*)0),ImGuiWindowFlags flags=0)", "call_args": "(name,p_open,flags)", "cimguiname": "igBeginPopupModal", "comment": "", "defaults": { "flags": "0", - "p_open": "((void *)0)" + "p_open": "((void*)0)" }, "funcname": "BeginPopupModal", + "namespace": "ImGui", + "ov_cimguiname": "igBeginPopupModal", "ret": "bool", "signature": "(const char*,bool*,ImGuiWindowFlags)", - "stname": "ImGui" + "stname": "" } ], "igBeginTabBar": [ @@ -6774,9 +7040,11 @@ "flags": "0" }, "funcname": "BeginTabBar", + "namespace": "ImGui", + "ov_cimguiname": "igBeginTabBar", "ret": "bool", "signature": "(const char*,ImGuiTabBarFlags)", - "stname": "ImGui" + "stname": "" } ], "igBeginTabItem": [ @@ -6796,18 +7064,20 @@ "type": "ImGuiTabItemFlags" } ], - "argsoriginal": "(const char* label,bool* p_open=((void *)0),ImGuiTabItemFlags flags=0)", + "argsoriginal": "(const char* label,bool* p_open=((void*)0),ImGuiTabItemFlags flags=0)", "call_args": "(label,p_open,flags)", "cimguiname": "igBeginTabItem", "comment": "", "defaults": { "flags": "0", - "p_open": "((void *)0)" + "p_open": "((void*)0)" }, "funcname": "BeginTabItem", + "namespace": "ImGui", + "ov_cimguiname": "igBeginTabItem", "ret": "bool", "signature": "(const char*,bool*,ImGuiTabItemFlags)", - "stname": "ImGui" + "stname": "" } ], "igBeginTooltip": [ @@ -6820,9 +7090,11 @@ "comment": "", "defaults": [], "funcname": "BeginTooltip", + "namespace": "ImGui", + "ov_cimguiname": "igBeginTooltip", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igBullet": [ @@ -6835,9 +7107,11 @@ "comment": "", "defaults": [], "funcname": "Bullet", + "namespace": "ImGui", + "ov_cimguiname": "igBullet", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igBulletText": [ @@ -6860,9 +7134,11 @@ "defaults": [], "funcname": "BulletText", "isvararg": "...)", + "namespace": "ImGui", + "ov_cimguiname": "igBulletText", "ret": "void", "signature": "(const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igBulletTextV": [ @@ -6884,9 +7160,11 @@ "comment": "", "defaults": [], "funcname": "BulletTextV", + "namespace": "ImGui", + "ov_cimguiname": "igBulletTextV", "ret": "void", "signature": "(const char*,va_list)", - "stname": "ImGui" + "stname": "" } ], "igButton": [ @@ -6910,9 +7188,11 @@ "size": "ImVec2(0,0)" }, "funcname": "Button", + "namespace": "ImGui", + "ov_cimguiname": "igButton", "ret": "bool", "signature": "(const char*,const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igCalcItemWidth": [ @@ -6925,9 +7205,11 @@ "comment": "", "defaults": [], "funcname": "CalcItemWidth", + "namespace": "ImGui", + "ov_cimguiname": "igCalcItemWidth", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igCalcListClipping": [ @@ -6957,9 +7239,11 @@ "comment": "", "defaults": [], "funcname": "CalcListClipping", + "namespace": "ImGui", + "ov_cimguiname": "igCalcListClipping", "ret": "void", "signature": "(int,float,int*,int*)", - "stname": "ImGui" + "stname": "" } ], "igCalcTextSize": [ @@ -6983,19 +7267,21 @@ "type": "float" } ], - "argsoriginal": "(const char* text,const char* text_end=((void *)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)", + "argsoriginal": "(const char* text,const char* text_end=((void*)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)", "call_args": "(text,text_end,hide_text_after_double_hash,wrap_width)", "cimguiname": "igCalcTextSize", "comment": "", "defaults": { "hide_text_after_double_hash": "false", - "text_end": "((void *)0)", + "text_end": "((void*)0)", "wrap_width": "-1.0f" }, "funcname": "CalcTextSize", + "namespace": "ImGui", + "ov_cimguiname": "igCalcTextSize", "ret": "ImVec2", "signature": "(const char*,const char*,bool,float)", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut,const char* text,const char* text_end,bool hide_text_after_double_hash,float wrap_width)", @@ -7021,21 +7307,22 @@ "type": "float" } ], - "argsoriginal": "(const char* text,const char* text_end=((void *)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)", + "argsoriginal": "(const char* text,const char* text_end=((void*)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)", "call_args": "(text,text_end,hide_text_after_double_hash,wrap_width)", "cimguiname": "igCalcTextSize", "comment": "", "defaults": { "hide_text_after_double_hash": "false", - "text_end": "((void *)0)", + "text_end": "((void*)0)", "wrap_width": "-1.0f" }, "funcname": "CalcTextSize", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcTextSize_nonUDT", "ret": "void", "signature": "(const char*,const char*,bool,float)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* text,const char* text_end,bool hide_text_after_double_hash,float wrap_width)", @@ -7057,22 +7344,23 @@ "type": "float" } ], - "argsoriginal": "(const char* text,const char* text_end=((void *)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)", + "argsoriginal": "(const char* text,const char* text_end=((void*)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)", "call_args": "(text,text_end,hide_text_after_double_hash,wrap_width)", "cimguiname": "igCalcTextSize", "comment": "", "defaults": { "hide_text_after_double_hash": "false", - "text_end": "((void *)0)", + "text_end": "((void*)0)", "wrap_width": "-1.0f" }, "funcname": "CalcTextSize", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igCalcTextSize_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "(const char*,const char*,bool,float)", - "stname": "ImGui" + "stname": "" } ], "igCaptureKeyboardFromApp": [ @@ -7092,9 +7380,11 @@ "want_capture_keyboard_value": "true" }, "funcname": "CaptureKeyboardFromApp", + "namespace": "ImGui", + "ov_cimguiname": "igCaptureKeyboardFromApp", "ret": "void", "signature": "(bool)", - "stname": "ImGui" + "stname": "" } ], "igCaptureMouseFromApp": [ @@ -7114,9 +7404,11 @@ "want_capture_mouse_value": "true" }, "funcname": "CaptureMouseFromApp", + "namespace": "ImGui", + "ov_cimguiname": "igCaptureMouseFromApp", "ret": "void", "signature": "(bool)", - "stname": "ImGui" + "stname": "" } ], "igCheckbox": [ @@ -7138,9 +7430,11 @@ "comment": "", "defaults": [], "funcname": "Checkbox", + "namespace": "ImGui", + "ov_cimguiname": "igCheckbox", "ret": "bool", "signature": "(const char*,bool*)", - "stname": "ImGui" + "stname": "" } ], "igCheckboxFlags": [ @@ -7166,9 +7460,11 @@ "comment": "", "defaults": [], "funcname": "CheckboxFlags", + "namespace": "ImGui", + "ov_cimguiname": "igCheckboxFlags", "ret": "bool", "signature": "(const char*,unsigned int*,unsigned int)", - "stname": "ImGui" + "stname": "" } ], "igCloseCurrentPopup": [ @@ -7181,9 +7477,11 @@ "comment": "", "defaults": [], "funcname": "CloseCurrentPopup", + "namespace": "ImGui", + "ov_cimguiname": "igCloseCurrentPopup", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igCollapsingHeader": [ @@ -7207,10 +7505,11 @@ "flags": "0" }, "funcname": "CollapsingHeader", + "namespace": "ImGui", "ov_cimguiname": "igCollapsingHeader", "ret": "bool", "signature": "(const char*,ImGuiTreeNodeFlags)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* label,bool* p_open,ImGuiTreeNodeFlags flags)", @@ -7236,10 +7535,11 @@ "flags": "0" }, "funcname": "CollapsingHeader", + "namespace": "ImGui", "ov_cimguiname": "igCollapsingHeaderBoolPtr", "ret": "bool", "signature": "(const char*,bool*,ImGuiTreeNodeFlags)", - "stname": "ImGui" + "stname": "" } ], "igColorButton": [ @@ -7272,9 +7572,11 @@ "size": "ImVec2(0,0)" }, "funcname": "ColorButton", + "namespace": "ImGui", + "ov_cimguiname": "igColorButton", "ret": "bool", "signature": "(const char*,const ImVec4,ImGuiColorEditFlags,ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igColorConvertFloat4ToU32": [ @@ -7292,9 +7594,11 @@ "comment": "", "defaults": [], "funcname": "ColorConvertFloat4ToU32", + "namespace": "ImGui", + "ov_cimguiname": "igColorConvertFloat4ToU32", "ret": "ImU32", "signature": "(const ImVec4)", - "stname": "ImGui" + "stname": "" } ], "igColorConvertHSVtoRGB": [ @@ -7333,9 +7637,11 @@ "defaults": [], "funcname": "ColorConvertHSVtoRGB", "manual": true, + "namespace": "ImGui", + "ov_cimguiname": "igColorConvertHSVtoRGB", "ret": "void", "signature": "(float,float,float,float,float,float)", - "stname": "ImGui" + "stname": "" } ], "igColorConvertRGBtoHSV": [ @@ -7374,9 +7680,11 @@ "defaults": [], "funcname": "ColorConvertRGBtoHSV", "manual": true, + "namespace": "ImGui", + "ov_cimguiname": "igColorConvertRGBtoHSV", "ret": "void", "signature": "(float,float,float,float,float,float)", - "stname": "ImGui" + "stname": "" } ], "igColorConvertU32ToFloat4": [ @@ -7394,9 +7702,11 @@ "comment": "", "defaults": [], "funcname": "ColorConvertU32ToFloat4", + "namespace": "ImGui", + "ov_cimguiname": "igColorConvertU32ToFloat4", "ret": "ImVec4", "signature": "(ImU32)", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec4 *pOut,ImU32 in)", @@ -7416,11 +7726,12 @@ "comment": "", "defaults": [], "funcname": "ColorConvertU32ToFloat4", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igColorConvertU32ToFloat4_nonUDT", "ret": "void", "signature": "(ImU32)", - "stname": "ImGui" + "stname": "" }, { "args": "(ImU32 in)", @@ -7436,12 +7747,13 @@ "comment": "", "defaults": [], "funcname": "ColorConvertU32ToFloat4", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igColorConvertU32ToFloat4_nonUDT2", "ret": "ImVec4_Simple", "retorig": "ImVec4", "signature": "(ImU32)", - "stname": "ImGui" + "stname": "" } ], "igColorEdit3": [ @@ -7469,9 +7781,11 @@ "flags": "0" }, "funcname": "ColorEdit3", + "namespace": "ImGui", + "ov_cimguiname": "igColorEdit3", "ret": "bool", "signature": "(const char*,float[3],ImGuiColorEditFlags)", - "stname": "ImGui" + "stname": "" } ], "igColorEdit4": [ @@ -7499,9 +7813,11 @@ "flags": "0" }, "funcname": "ColorEdit4", + "namespace": "ImGui", + "ov_cimguiname": "igColorEdit4", "ret": "bool", "signature": "(const char*,float[4],ImGuiColorEditFlags)", - "stname": "ImGui" + "stname": "" } ], "igColorPicker3": [ @@ -7529,9 +7845,11 @@ "flags": "0" }, "funcname": "ColorPicker3", + "namespace": "ImGui", + "ov_cimguiname": "igColorPicker3", "ret": "bool", "signature": "(const char*,float[3],ImGuiColorEditFlags)", - "stname": "ImGui" + "stname": "" } ], "igColorPicker4": [ @@ -7555,18 +7873,20 @@ "type": "const float*" } ], - "argsoriginal": "(const char* label,float col[4],ImGuiColorEditFlags flags=0,const float* ref_col=((void *)0))", + "argsoriginal": "(const char* label,float col[4],ImGuiColorEditFlags flags=0,const float* ref_col=((void*)0))", "call_args": "(label,col,flags,ref_col)", "cimguiname": "igColorPicker4", "comment": "", "defaults": { "flags": "0", - "ref_col": "((void *)0)" + "ref_col": "((void*)0)" }, "funcname": "ColorPicker4", + "namespace": "ImGui", + "ov_cimguiname": "igColorPicker4", "ret": "bool", "signature": "(const char*,float[4],ImGuiColorEditFlags,const float*)", - "stname": "ImGui" + "stname": "" } ], "igColumns": [ @@ -7586,19 +7906,21 @@ "type": "bool" } ], - "argsoriginal": "(int count=1,const char* id=((void *)0),bool border=true)", + "argsoriginal": "(int count=1,const char* id=((void*)0),bool border=true)", "call_args": "(count,id,border)", "cimguiname": "igColumns", "comment": "", "defaults": { "border": "true", "count": "1", - "id": "((void *)0)" + "id": "((void*)0)" }, "funcname": "Columns", + "namespace": "ImGui", + "ov_cimguiname": "igColumns", "ret": "void", "signature": "(int,const char*,bool)", - "stname": "ImGui" + "stname": "" } ], "igCombo": [ @@ -7634,10 +7956,11 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", + "namespace": "ImGui", "ov_cimguiname": "igCombo", "ret": "bool", "signature": "(const char*,int*,const char* const[],int,int)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* label,int* current_item,const char* items_separated_by_zeros,int popup_max_height_in_items)", @@ -7667,10 +7990,11 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", + "namespace": "ImGui", "ov_cimguiname": "igComboStr", "ret": "bool", "signature": "(const char*,int*,const char*,int)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items)", @@ -7710,10 +8034,11 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", + "namespace": "ImGui", "ov_cimguiname": "igComboFnPtr", "ret": "bool", "signature": "(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)", - "stname": "ImGui" + "stname": "" } ], "igCreateContext": [ @@ -7725,17 +8050,19 @@ "type": "ImFontAtlas*" } ], - "argsoriginal": "(ImFontAtlas* shared_font_atlas=((void *)0))", + "argsoriginal": "(ImFontAtlas* shared_font_atlas=((void*)0))", "call_args": "(shared_font_atlas)", "cimguiname": "igCreateContext", "comment": "", "defaults": { - "shared_font_atlas": "((void *)0)" + "shared_font_atlas": "((void*)0)" }, "funcname": "CreateContext", + "namespace": "ImGui", + "ov_cimguiname": "igCreateContext", "ret": "ImGuiContext*", "signature": "(ImFontAtlas*)", - "stname": "ImGui" + "stname": "" } ], "igDebugCheckVersionAndDataLayout": [ @@ -7773,9 +8100,11 @@ "comment": "", "defaults": [], "funcname": "DebugCheckVersionAndDataLayout", + "namespace": "ImGui", + "ov_cimguiname": "igDebugCheckVersionAndDataLayout", "ret": "bool", "signature": "(const char*,size_t,size_t,size_t,size_t,size_t)", - "stname": "ImGui" + "stname": "" } ], "igDestroyContext": [ @@ -7787,17 +8116,19 @@ "type": "ImGuiContext*" } ], - "argsoriginal": "(ImGuiContext* ctx=((void *)0))", + "argsoriginal": "(ImGuiContext* ctx=((void*)0))", "call_args": "(ctx)", "cimguiname": "igDestroyContext", "comment": "", "defaults": { - "ctx": "((void *)0)" + "ctx": "((void*)0)" }, "funcname": "DestroyContext", + "namespace": "ImGui", + "ov_cimguiname": "igDestroyContext", "ret": "void", "signature": "(ImGuiContext*)", - "stname": "ImGui" + "stname": "" } ], "igDragFloat": [ @@ -7845,9 +8176,11 @@ "v_speed": "1.0f" }, "funcname": "DragFloat", + "namespace": "ImGui", + "ov_cimguiname": "igDragFloat", "ret": "bool", "signature": "(const char*,float*,float,float,float,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igDragFloat2": [ @@ -7895,9 +8228,11 @@ "v_speed": "1.0f" }, "funcname": "DragFloat2", + "namespace": "ImGui", + "ov_cimguiname": "igDragFloat2", "ret": "bool", "signature": "(const char*,float[2],float,float,float,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igDragFloat3": [ @@ -7945,9 +8280,11 @@ "v_speed": "1.0f" }, "funcname": "DragFloat3", + "namespace": "ImGui", + "ov_cimguiname": "igDragFloat3", "ret": "bool", "signature": "(const char*,float[3],float,float,float,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igDragFloat4": [ @@ -7995,9 +8332,11 @@ "v_speed": "1.0f" }, "funcname": "DragFloat4", + "namespace": "ImGui", + "ov_cimguiname": "igDragFloat4", "ret": "bool", "signature": "(const char*,float[4],float,float,float,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igDragFloatRange2": [ @@ -8041,22 +8380,24 @@ "type": "float" } ], - "argsoriginal": "(const char* label,float* v_current_min,float* v_current_max,float v_speed=1.0f,float v_min=0.0f,float v_max=0.0f,const char* format=\"%.3f\",const char* format_max=((void *)0),float power=1.0f)", + "argsoriginal": "(const char* label,float* v_current_min,float* v_current_max,float v_speed=1.0f,float v_min=0.0f,float v_max=0.0f,const char* format=\"%.3f\",const char* format_max=((void*)0),float power=1.0f)", "call_args": "(label,v_current_min,v_current_max,v_speed,v_min,v_max,format,format_max,power)", "cimguiname": "igDragFloatRange2", "comment": "", "defaults": { "format": "\"%.3f\"", - "format_max": "((void *)0)", + "format_max": "((void*)0)", "power": "1.0f", "v_max": "0.0f", "v_min": "0.0f", "v_speed": "1.0f" }, "funcname": "DragFloatRange2", + "namespace": "ImGui", + "ov_cimguiname": "igDragFloatRange2", "ret": "bool", "signature": "(const char*,float*,float*,float,float,float,const char*,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igDragInt": [ @@ -8099,9 +8440,11 @@ "v_speed": "1.0f" }, "funcname": "DragInt", + "namespace": "ImGui", + "ov_cimguiname": "igDragInt", "ret": "bool", "signature": "(const char*,int*,float,int,int,const char*)", - "stname": "ImGui" + "stname": "" } ], "igDragInt2": [ @@ -8144,9 +8487,11 @@ "v_speed": "1.0f" }, "funcname": "DragInt2", + "namespace": "ImGui", + "ov_cimguiname": "igDragInt2", "ret": "bool", "signature": "(const char*,int[2],float,int,int,const char*)", - "stname": "ImGui" + "stname": "" } ], "igDragInt3": [ @@ -8189,9 +8534,11 @@ "v_speed": "1.0f" }, "funcname": "DragInt3", + "namespace": "ImGui", + "ov_cimguiname": "igDragInt3", "ret": "bool", "signature": "(const char*,int[3],float,int,int,const char*)", - "stname": "ImGui" + "stname": "" } ], "igDragInt4": [ @@ -8234,9 +8581,11 @@ "v_speed": "1.0f" }, "funcname": "DragInt4", + "namespace": "ImGui", + "ov_cimguiname": "igDragInt4", "ret": "bool", "signature": "(const char*,int[4],float,int,int,const char*)", - "stname": "ImGui" + "stname": "" } ], "igDragIntRange2": [ @@ -8276,21 +8625,23 @@ "type": "const char*" } ], - "argsoriginal": "(const char* label,int* v_current_min,int* v_current_max,float v_speed=1.0f,int v_min=0,int v_max=0,const char* format=\"%d\",const char* format_max=((void *)0))", + "argsoriginal": "(const char* label,int* v_current_min,int* v_current_max,float v_speed=1.0f,int v_min=0,int v_max=0,const char* format=\"%d\",const char* format_max=((void*)0))", "call_args": "(label,v_current_min,v_current_max,v_speed,v_min,v_max,format,format_max)", "cimguiname": "igDragIntRange2", "comment": "", "defaults": { "format": "\"%d\"", - "format_max": "((void *)0)", + "format_max": "((void*)0)", "v_max": "0", "v_min": "0", "v_speed": "1.0f" }, "funcname": "DragIntRange2", + "namespace": "ImGui", + "ov_cimguiname": "igDragIntRange2", "ret": "bool", "signature": "(const char*,int*,int*,float,int,int,const char*,const char*)", - "stname": "ImGui" + "stname": "" } ], "igDragScalar": [ @@ -8330,20 +8681,22 @@ "type": "float" } ], - "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,float v_speed,const void* v_min=((void *)0),const void* v_max=((void *)0),const char* format=((void *)0),float power=1.0f)", + "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,float v_speed,const void* v_min=((void*)0),const void* v_max=((void*)0),const char* format=((void*)0),float power=1.0f)", "call_args": "(label,data_type,v,v_speed,v_min,v_max,format,power)", "cimguiname": "igDragScalar", "comment": "", "defaults": { - "format": "((void *)0)", + "format": "((void*)0)", "power": "1.0f", - "v_max": "((void *)0)", - "v_min": "((void *)0)" + "v_max": "((void*)0)", + "v_min": "((void*)0)" }, "funcname": "DragScalar", + "namespace": "ImGui", + "ov_cimguiname": "igDragScalar", "ret": "bool", "signature": "(const char*,ImGuiDataType,void*,float,const void*,const void*,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igDragScalarN": [ @@ -8387,20 +8740,22 @@ "type": "float" } ], - "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,int components,float v_speed,const void* v_min=((void *)0),const void* v_max=((void *)0),const char* format=((void *)0),float power=1.0f)", + "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,int components,float v_speed,const void* v_min=((void*)0),const void* v_max=((void*)0),const char* format=((void*)0),float power=1.0f)", "call_args": "(label,data_type,v,components,v_speed,v_min,v_max,format,power)", "cimguiname": "igDragScalarN", "comment": "", "defaults": { - "format": "((void *)0)", + "format": "((void*)0)", "power": "1.0f", - "v_max": "((void *)0)", - "v_min": "((void *)0)" + "v_max": "((void*)0)", + "v_min": "((void*)0)" }, "funcname": "DragScalarN", + "namespace": "ImGui", + "ov_cimguiname": "igDragScalarN", "ret": "bool", "signature": "(const char*,ImGuiDataType,void*,int,float,const void*,const void*,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igDummy": [ @@ -8418,9 +8773,11 @@ "comment": "", "defaults": [], "funcname": "Dummy", + "namespace": "ImGui", + "ov_cimguiname": "igDummy", "ret": "void", "signature": "(const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igEnd": [ @@ -8433,9 +8790,11 @@ "comment": "", "defaults": [], "funcname": "End", + "namespace": "ImGui", + "ov_cimguiname": "igEnd", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndChild": [ @@ -8448,9 +8807,11 @@ "comment": "", "defaults": [], "funcname": "EndChild", + "namespace": "ImGui", + "ov_cimguiname": "igEndChild", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndChildFrame": [ @@ -8463,9 +8824,11 @@ "comment": "", "defaults": [], "funcname": "EndChildFrame", + "namespace": "ImGui", + "ov_cimguiname": "igEndChildFrame", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndCombo": [ @@ -8478,9 +8841,11 @@ "comment": "", "defaults": [], "funcname": "EndCombo", + "namespace": "ImGui", + "ov_cimguiname": "igEndCombo", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndDragDropSource": [ @@ -8493,9 +8858,11 @@ "comment": "", "defaults": [], "funcname": "EndDragDropSource", + "namespace": "ImGui", + "ov_cimguiname": "igEndDragDropSource", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndDragDropTarget": [ @@ -8508,9 +8875,11 @@ "comment": "", "defaults": [], "funcname": "EndDragDropTarget", + "namespace": "ImGui", + "ov_cimguiname": "igEndDragDropTarget", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndFrame": [ @@ -8523,9 +8892,11 @@ "comment": "", "defaults": [], "funcname": "EndFrame", + "namespace": "ImGui", + "ov_cimguiname": "igEndFrame", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndGroup": [ @@ -8538,9 +8909,11 @@ "comment": "", "defaults": [], "funcname": "EndGroup", + "namespace": "ImGui", + "ov_cimguiname": "igEndGroup", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndMainMenuBar": [ @@ -8553,9 +8926,11 @@ "comment": "", "defaults": [], "funcname": "EndMainMenuBar", + "namespace": "ImGui", + "ov_cimguiname": "igEndMainMenuBar", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndMenu": [ @@ -8568,9 +8943,11 @@ "comment": "", "defaults": [], "funcname": "EndMenu", + "namespace": "ImGui", + "ov_cimguiname": "igEndMenu", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndMenuBar": [ @@ -8583,9 +8960,11 @@ "comment": "", "defaults": [], "funcname": "EndMenuBar", + "namespace": "ImGui", + "ov_cimguiname": "igEndMenuBar", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndPopup": [ @@ -8598,9 +8977,11 @@ "comment": "", "defaults": [], "funcname": "EndPopup", + "namespace": "ImGui", + "ov_cimguiname": "igEndPopup", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndTabBar": [ @@ -8613,9 +8994,11 @@ "comment": "", "defaults": [], "funcname": "EndTabBar", + "namespace": "ImGui", + "ov_cimguiname": "igEndTabBar", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndTabItem": [ @@ -8628,9 +9011,11 @@ "comment": "", "defaults": [], "funcname": "EndTabItem", + "namespace": "ImGui", + "ov_cimguiname": "igEndTabItem", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndTooltip": [ @@ -8643,9 +9028,11 @@ "comment": "", "defaults": [], "funcname": "EndTooltip", + "namespace": "ImGui", + "ov_cimguiname": "igEndTooltip", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetClipboardText": [ @@ -8658,9 +9045,11 @@ "comment": "", "defaults": [], "funcname": "GetClipboardText", + "namespace": "ImGui", + "ov_cimguiname": "igGetClipboardText", "ret": "const char*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetColorU32": [ @@ -8684,10 +9073,11 @@ "alpha_mul": "1.0f" }, "funcname": "GetColorU32", + "namespace": "ImGui", "ov_cimguiname": "igGetColorU32", "ret": "ImU32", "signature": "(ImGuiCol,float)", - "stname": "ImGui" + "stname": "" }, { "args": "(const ImVec4 col)", @@ -8703,10 +9093,11 @@ "comment": "", "defaults": [], "funcname": "GetColorU32", + "namespace": "ImGui", "ov_cimguiname": "igGetColorU32Vec4", "ret": "ImU32", "signature": "(const ImVec4)", - "stname": "ImGui" + "stname": "" }, { "args": "(ImU32 col)", @@ -8722,10 +9113,11 @@ "comment": "", "defaults": [], "funcname": "GetColorU32", + "namespace": "ImGui", "ov_cimguiname": "igGetColorU32U32", "ret": "ImU32", "signature": "(ImU32)", - "stname": "ImGui" + "stname": "" } ], "igGetColumnIndex": [ @@ -8738,9 +9130,11 @@ "comment": "", "defaults": [], "funcname": "GetColumnIndex", + "namespace": "ImGui", + "ov_cimguiname": "igGetColumnIndex", "ret": "int", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetColumnOffset": [ @@ -8760,9 +9154,11 @@ "column_index": "-1" }, "funcname": "GetColumnOffset", + "namespace": "ImGui", + "ov_cimguiname": "igGetColumnOffset", "ret": "float", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igGetColumnWidth": [ @@ -8782,9 +9178,11 @@ "column_index": "-1" }, "funcname": "GetColumnWidth", + "namespace": "ImGui", + "ov_cimguiname": "igGetColumnWidth", "ret": "float", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igGetColumnsCount": [ @@ -8797,9 +9195,11 @@ "comment": "", "defaults": [], "funcname": "GetColumnsCount", + "namespace": "ImGui", + "ov_cimguiname": "igGetColumnsCount", "ret": "int", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetContentRegionAvail": [ @@ -8812,9 +9212,11 @@ "comment": "", "defaults": [], "funcname": "GetContentRegionAvail", + "namespace": "ImGui", + "ov_cimguiname": "igGetContentRegionAvail", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -8830,11 +9232,12 @@ "comment": "", "defaults": [], "funcname": "GetContentRegionAvail", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionAvail_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -8845,12 +9248,13 @@ "comment": "", "defaults": [], "funcname": "GetContentRegionAvail", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetContentRegionAvail_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetContentRegionAvailWidth": [ @@ -8863,9 +9267,11 @@ "comment": "", "defaults": [], "funcname": "GetContentRegionAvailWidth", + "namespace": "ImGui", + "ov_cimguiname": "igGetContentRegionAvailWidth", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetContentRegionMax": [ @@ -8878,9 +9284,11 @@ "comment": "", "defaults": [], "funcname": "GetContentRegionMax", + "namespace": "ImGui", + "ov_cimguiname": "igGetContentRegionMax", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -8896,11 +9304,12 @@ "comment": "", "defaults": [], "funcname": "GetContentRegionMax", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionMax_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -8911,12 +9320,13 @@ "comment": "", "defaults": [], "funcname": "GetContentRegionMax", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetContentRegionMax_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetCurrentContext": [ @@ -8929,9 +9339,11 @@ "comment": "", "defaults": [], "funcname": "GetCurrentContext", + "namespace": "ImGui", + "ov_cimguiname": "igGetCurrentContext", "ret": "ImGuiContext*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetCursorPos": [ @@ -8944,9 +9356,11 @@ "comment": "", "defaults": [], "funcname": "GetCursorPos", + "namespace": "ImGui", + "ov_cimguiname": "igGetCursorPos", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -8962,11 +9376,12 @@ "comment": "", "defaults": [], "funcname": "GetCursorPos", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorPos_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -8977,12 +9392,13 @@ "comment": "", "defaults": [], "funcname": "GetCursorPos", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetCursorPos_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetCursorPosX": [ @@ -8995,9 +9411,11 @@ "comment": "", "defaults": [], "funcname": "GetCursorPosX", + "namespace": "ImGui", + "ov_cimguiname": "igGetCursorPosX", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetCursorPosY": [ @@ -9010,9 +9428,11 @@ "comment": "", "defaults": [], "funcname": "GetCursorPosY", + "namespace": "ImGui", + "ov_cimguiname": "igGetCursorPosY", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetCursorScreenPos": [ @@ -9025,9 +9445,11 @@ "comment": "", "defaults": [], "funcname": "GetCursorScreenPos", + "namespace": "ImGui", + "ov_cimguiname": "igGetCursorScreenPos", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -9043,11 +9465,12 @@ "comment": "", "defaults": [], "funcname": "GetCursorScreenPos", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorScreenPos_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -9058,12 +9481,13 @@ "comment": "", "defaults": [], "funcname": "GetCursorScreenPos", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetCursorScreenPos_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetCursorStartPos": [ @@ -9076,9 +9500,11 @@ "comment": "", "defaults": [], "funcname": "GetCursorStartPos", + "namespace": "ImGui", + "ov_cimguiname": "igGetCursorStartPos", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -9094,11 +9520,12 @@ "comment": "", "defaults": [], "funcname": "GetCursorStartPos", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorStartPos_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -9109,12 +9536,13 @@ "comment": "", "defaults": [], "funcname": "GetCursorStartPos", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetCursorStartPos_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetDragDropPayload": [ @@ -9127,9 +9555,11 @@ "comment": "", "defaults": [], "funcname": "GetDragDropPayload", + "namespace": "ImGui", + "ov_cimguiname": "igGetDragDropPayload", "ret": "const ImGuiPayload*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetDrawData": [ @@ -9142,9 +9572,11 @@ "comment": "", "defaults": [], "funcname": "GetDrawData", + "namespace": "ImGui", + "ov_cimguiname": "igGetDrawData", "ret": "ImDrawData*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetDrawListSharedData": [ @@ -9157,9 +9589,11 @@ "comment": "", "defaults": [], "funcname": "GetDrawListSharedData", + "namespace": "ImGui", + "ov_cimguiname": "igGetDrawListSharedData", "ret": "ImDrawListSharedData*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetFont": [ @@ -9172,9 +9606,11 @@ "comment": "", "defaults": [], "funcname": "GetFont", + "namespace": "ImGui", + "ov_cimguiname": "igGetFont", "ret": "ImFont*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetFontSize": [ @@ -9187,9 +9623,11 @@ "comment": "", "defaults": [], "funcname": "GetFontSize", + "namespace": "ImGui", + "ov_cimguiname": "igGetFontSize", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetFontTexUvWhitePixel": [ @@ -9202,9 +9640,11 @@ "comment": "", "defaults": [], "funcname": "GetFontTexUvWhitePixel", + "namespace": "ImGui", + "ov_cimguiname": "igGetFontTexUvWhitePixel", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -9220,11 +9660,12 @@ "comment": "", "defaults": [], "funcname": "GetFontTexUvWhitePixel", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetFontTexUvWhitePixel_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -9235,12 +9676,13 @@ "comment": "", "defaults": [], "funcname": "GetFontTexUvWhitePixel", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetFontTexUvWhitePixel_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetFrameCount": [ @@ -9253,9 +9695,11 @@ "comment": "", "defaults": [], "funcname": "GetFrameCount", + "namespace": "ImGui", + "ov_cimguiname": "igGetFrameCount", "ret": "int", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetFrameHeight": [ @@ -9268,9 +9712,11 @@ "comment": "", "defaults": [], "funcname": "GetFrameHeight", + "namespace": "ImGui", + "ov_cimguiname": "igGetFrameHeight", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetFrameHeightWithSpacing": [ @@ -9283,9 +9729,11 @@ "comment": "", "defaults": [], "funcname": "GetFrameHeightWithSpacing", + "namespace": "ImGui", + "ov_cimguiname": "igGetFrameHeightWithSpacing", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetID": [ @@ -9303,10 +9751,11 @@ "comment": "", "defaults": [], "funcname": "GetID", + "namespace": "ImGui", "ov_cimguiname": "igGetIDStr", "ret": "ImGuiID", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* str_id_begin,const char* str_id_end)", @@ -9326,10 +9775,11 @@ "comment": "", "defaults": [], "funcname": "GetID", + "namespace": "ImGui", "ov_cimguiname": "igGetIDRange", "ret": "ImGuiID", "signature": "(const char*,const char*)", - "stname": "ImGui" + "stname": "" }, { "args": "(const void* ptr_id)", @@ -9345,10 +9795,11 @@ "comment": "", "defaults": [], "funcname": "GetID", + "namespace": "ImGui", "ov_cimguiname": "igGetIDPtr", "ret": "ImGuiID", "signature": "(const void*)", - "stname": "ImGui" + "stname": "" } ], "igGetIO": [ @@ -9361,10 +9812,12 @@ "comment": "", "defaults": [], "funcname": "GetIO", + "namespace": "ImGui", + "ov_cimguiname": "igGetIO", "ret": "ImGuiIO*", "retref": "&", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetItemRectMax": [ @@ -9377,9 +9830,11 @@ "comment": "", "defaults": [], "funcname": "GetItemRectMax", + "namespace": "ImGui", + "ov_cimguiname": "igGetItemRectMax", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -9395,11 +9850,12 @@ "comment": "", "defaults": [], "funcname": "GetItemRectMax", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMax_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -9410,12 +9866,13 @@ "comment": "", "defaults": [], "funcname": "GetItemRectMax", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetItemRectMax_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetItemRectMin": [ @@ -9428,9 +9885,11 @@ "comment": "", "defaults": [], "funcname": "GetItemRectMin", + "namespace": "ImGui", + "ov_cimguiname": "igGetItemRectMin", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -9446,11 +9905,12 @@ "comment": "", "defaults": [], "funcname": "GetItemRectMin", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMin_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -9461,12 +9921,13 @@ "comment": "", "defaults": [], "funcname": "GetItemRectMin", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetItemRectMin_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetItemRectSize": [ @@ -9479,9 +9940,11 @@ "comment": "", "defaults": [], "funcname": "GetItemRectSize", + "namespace": "ImGui", + "ov_cimguiname": "igGetItemRectSize", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -9497,11 +9960,12 @@ "comment": "", "defaults": [], "funcname": "GetItemRectSize", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectSize_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -9512,12 +9976,13 @@ "comment": "", "defaults": [], "funcname": "GetItemRectSize", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetItemRectSize_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetKeyIndex": [ @@ -9535,9 +10000,11 @@ "comment": "", "defaults": [], "funcname": "GetKeyIndex", + "namespace": "ImGui", + "ov_cimguiname": "igGetKeyIndex", "ret": "int", "signature": "(ImGuiKey)", - "stname": "ImGui" + "stname": "" } ], "igGetKeyPressedAmount": [ @@ -9563,9 +10030,11 @@ "comment": "", "defaults": [], "funcname": "GetKeyPressedAmount", + "namespace": "ImGui", + "ov_cimguiname": "igGetKeyPressedAmount", "ret": "int", "signature": "(int,float,float)", - "stname": "ImGui" + "stname": "" } ], "igGetMouseCursor": [ @@ -9578,9 +10047,11 @@ "comment": "", "defaults": [], "funcname": "GetMouseCursor", + "namespace": "ImGui", + "ov_cimguiname": "igGetMouseCursor", "ret": "ImGuiMouseCursor", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetMouseDragDelta": [ @@ -9605,9 +10076,11 @@ "lock_threshold": "-1.0f" }, "funcname": "GetMouseDragDelta", + "namespace": "ImGui", + "ov_cimguiname": "igGetMouseDragDelta", "ret": "ImVec2", "signature": "(int,float)", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut,int button,float lock_threshold)", @@ -9634,11 +10107,12 @@ "lock_threshold": "-1.0f" }, "funcname": "GetMouseDragDelta", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMouseDragDelta_nonUDT", "ret": "void", "signature": "(int,float)", - "stname": "ImGui" + "stname": "" }, { "args": "(int button,float lock_threshold)", @@ -9661,12 +10135,13 @@ "lock_threshold": "-1.0f" }, "funcname": "GetMouseDragDelta", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetMouseDragDelta_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "(int,float)", - "stname": "ImGui" + "stname": "" } ], "igGetMousePos": [ @@ -9679,9 +10154,11 @@ "comment": "", "defaults": [], "funcname": "GetMousePos", + "namespace": "ImGui", + "ov_cimguiname": "igGetMousePos", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -9697,11 +10174,12 @@ "comment": "", "defaults": [], "funcname": "GetMousePos", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePos_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -9712,12 +10190,13 @@ "comment": "", "defaults": [], "funcname": "GetMousePos", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetMousePos_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetMousePosOnOpeningCurrentPopup": [ @@ -9730,9 +10209,11 @@ "comment": "", "defaults": [], "funcname": "GetMousePosOnOpeningCurrentPopup", + "namespace": "ImGui", + "ov_cimguiname": "igGetMousePosOnOpeningCurrentPopup", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -9748,11 +10229,12 @@ "comment": "", "defaults": [], "funcname": "GetMousePosOnOpeningCurrentPopup", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePosOnOpeningCurrentPopup_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -9763,12 +10245,13 @@ "comment": "", "defaults": [], "funcname": "GetMousePosOnOpeningCurrentPopup", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetMousePosOnOpeningCurrentPopup_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetOverlayDrawList": [ @@ -9781,9 +10264,11 @@ "comment": "", "defaults": [], "funcname": "GetOverlayDrawList", + "namespace": "ImGui", + "ov_cimguiname": "igGetOverlayDrawList", "ret": "ImDrawList*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetScrollMaxX": [ @@ -9796,9 +10281,11 @@ "comment": "", "defaults": [], "funcname": "GetScrollMaxX", + "namespace": "ImGui", + "ov_cimguiname": "igGetScrollMaxX", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetScrollMaxY": [ @@ -9811,9 +10298,11 @@ "comment": "", "defaults": [], "funcname": "GetScrollMaxY", + "namespace": "ImGui", + "ov_cimguiname": "igGetScrollMaxY", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetScrollX": [ @@ -9826,9 +10315,11 @@ "comment": "", "defaults": [], "funcname": "GetScrollX", + "namespace": "ImGui", + "ov_cimguiname": "igGetScrollX", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetScrollY": [ @@ -9841,9 +10332,11 @@ "comment": "", "defaults": [], "funcname": "GetScrollY", + "namespace": "ImGui", + "ov_cimguiname": "igGetScrollY", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetStateStorage": [ @@ -9856,9 +10349,11 @@ "comment": "", "defaults": [], "funcname": "GetStateStorage", + "namespace": "ImGui", + "ov_cimguiname": "igGetStateStorage", "ret": "ImGuiStorage*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetStyle": [ @@ -9871,10 +10366,12 @@ "comment": "", "defaults": [], "funcname": "GetStyle", + "namespace": "ImGui", + "ov_cimguiname": "igGetStyle", "ret": "ImGuiStyle*", "retref": "&", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetStyleColorName": [ @@ -9892,9 +10389,11 @@ "comment": "", "defaults": [], "funcname": "GetStyleColorName", + "namespace": "ImGui", + "ov_cimguiname": "igGetStyleColorName", "ret": "const char*", "signature": "(ImGuiCol)", - "stname": "ImGui" + "stname": "" } ], "igGetStyleColorVec4": [ @@ -9912,10 +10411,12 @@ "comment": "", "defaults": [], "funcname": "GetStyleColorVec4", + "namespace": "ImGui", + "ov_cimguiname": "igGetStyleColorVec4", "ret": "const ImVec4*", "retref": "&", "signature": "(ImGuiCol)", - "stname": "ImGui" + "stname": "" } ], "igGetTextLineHeight": [ @@ -9928,9 +10429,11 @@ "comment": "", "defaults": [], "funcname": "GetTextLineHeight", + "namespace": "ImGui", + "ov_cimguiname": "igGetTextLineHeight", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetTextLineHeightWithSpacing": [ @@ -9943,9 +10446,11 @@ "comment": "", "defaults": [], "funcname": "GetTextLineHeightWithSpacing", + "namespace": "ImGui", + "ov_cimguiname": "igGetTextLineHeightWithSpacing", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetTime": [ @@ -9958,9 +10463,11 @@ "comment": "", "defaults": [], "funcname": "GetTime", + "namespace": "ImGui", + "ov_cimguiname": "igGetTime", "ret": "double", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetTreeNodeToLabelSpacing": [ @@ -9973,9 +10480,11 @@ "comment": "", "defaults": [], "funcname": "GetTreeNodeToLabelSpacing", + "namespace": "ImGui", + "ov_cimguiname": "igGetTreeNodeToLabelSpacing", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetVersion": [ @@ -9988,9 +10497,11 @@ "comment": "", "defaults": [], "funcname": "GetVersion", + "namespace": "ImGui", + "ov_cimguiname": "igGetVersion", "ret": "const char*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetWindowContentRegionMax": [ @@ -10003,9 +10514,11 @@ "comment": "", "defaults": [], "funcname": "GetWindowContentRegionMax", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowContentRegionMax", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -10021,11 +10534,12 @@ "comment": "", "defaults": [], "funcname": "GetWindowContentRegionMax", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowContentRegionMax_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -10036,12 +10550,13 @@ "comment": "", "defaults": [], "funcname": "GetWindowContentRegionMax", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetWindowContentRegionMax_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetWindowContentRegionMin": [ @@ -10054,9 +10569,11 @@ "comment": "", "defaults": [], "funcname": "GetWindowContentRegionMin", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowContentRegionMin", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -10072,11 +10589,12 @@ "comment": "", "defaults": [], "funcname": "GetWindowContentRegionMin", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowContentRegionMin_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -10087,12 +10605,13 @@ "comment": "", "defaults": [], "funcname": "GetWindowContentRegionMin", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetWindowContentRegionMin_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetWindowContentRegionWidth": [ @@ -10105,9 +10624,11 @@ "comment": "", "defaults": [], "funcname": "GetWindowContentRegionWidth", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowContentRegionWidth", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetWindowDrawList": [ @@ -10120,9 +10641,11 @@ "comment": "", "defaults": [], "funcname": "GetWindowDrawList", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowDrawList", "ret": "ImDrawList*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetWindowHeight": [ @@ -10135,9 +10658,11 @@ "comment": "", "defaults": [], "funcname": "GetWindowHeight", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowHeight", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetWindowPos": [ @@ -10150,9 +10675,11 @@ "comment": "", "defaults": [], "funcname": "GetWindowPos", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowPos", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -10168,11 +10695,12 @@ "comment": "", "defaults": [], "funcname": "GetWindowPos", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowPos_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -10183,12 +10711,13 @@ "comment": "", "defaults": [], "funcname": "GetWindowPos", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetWindowPos_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetWindowSize": [ @@ -10201,9 +10730,11 @@ "comment": "", "defaults": [], "funcname": "GetWindowSize", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowSize", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -10219,11 +10750,12 @@ "comment": "", "defaults": [], "funcname": "GetWindowSize", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowSize_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -10234,12 +10766,13 @@ "comment": "", "defaults": [], "funcname": "GetWindowSize", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetWindowSize_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetWindowWidth": [ @@ -10252,9 +10785,11 @@ "comment": "", "defaults": [], "funcname": "GetWindowWidth", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowWidth", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igImage": [ @@ -10297,9 +10832,11 @@ "uv1": "ImVec2(1,1)" }, "funcname": "Image", + "namespace": "ImGui", + "ov_cimguiname": "igImage", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4)", - "stname": "ImGui" + "stname": "" } ], "igImageButton": [ @@ -10347,9 +10884,11 @@ "uv1": "ImVec2(1,1)" }, "funcname": "ImageButton", + "namespace": "ImGui", + "ov_cimguiname": "igImageButton", "ret": "bool", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,int,const ImVec4,const ImVec4)", - "stname": "ImGui" + "stname": "" } ], "igIndent": [ @@ -10369,9 +10908,11 @@ "indent_w": "0.0f" }, "funcname": "Indent", + "namespace": "ImGui", + "ov_cimguiname": "igIndent", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igInputDouble": [ @@ -10414,9 +10955,11 @@ "step_fast": "0.0" }, "funcname": "InputDouble", + "namespace": "ImGui", + "ov_cimguiname": "igInputDouble", "ret": "bool", "signature": "(const char*,double*,double,double,const char*,ImGuiInputTextFlags)", - "stname": "ImGui" + "stname": "" } ], "igInputFloat": [ @@ -10459,9 +11002,11 @@ "step_fast": "0.0f" }, "funcname": "InputFloat", + "namespace": "ImGui", + "ov_cimguiname": "igInputFloat", "ret": "bool", "signature": "(const char*,float*,float,float,const char*,ImGuiInputTextFlags)", - "stname": "ImGui" + "stname": "" } ], "igInputFloat2": [ @@ -10494,9 +11039,11 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat2", + "namespace": "ImGui", + "ov_cimguiname": "igInputFloat2", "ret": "bool", "signature": "(const char*,float[2],const char*,ImGuiInputTextFlags)", - "stname": "ImGui" + "stname": "" } ], "igInputFloat3": [ @@ -10529,9 +11076,11 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat3", + "namespace": "ImGui", + "ov_cimguiname": "igInputFloat3", "ret": "bool", "signature": "(const char*,float[3],const char*,ImGuiInputTextFlags)", - "stname": "ImGui" + "stname": "" } ], "igInputFloat4": [ @@ -10564,9 +11113,11 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat4", + "namespace": "ImGui", + "ov_cimguiname": "igInputFloat4", "ret": "bool", "signature": "(const char*,float[4],const char*,ImGuiInputTextFlags)", - "stname": "ImGui" + "stname": "" } ], "igInputInt": [ @@ -10604,9 +11155,11 @@ "step_fast": "100" }, "funcname": "InputInt", + "namespace": "ImGui", + "ov_cimguiname": "igInputInt", "ret": "bool", "signature": "(const char*,int*,int,int,ImGuiInputTextFlags)", - "stname": "ImGui" + "stname": "" } ], "igInputInt2": [ @@ -10634,9 +11187,11 @@ "flags": "0" }, "funcname": "InputInt2", + "namespace": "ImGui", + "ov_cimguiname": "igInputInt2", "ret": "bool", "signature": "(const char*,int[2],ImGuiInputTextFlags)", - "stname": "ImGui" + "stname": "" } ], "igInputInt3": [ @@ -10664,9 +11219,11 @@ "flags": "0" }, "funcname": "InputInt3", + "namespace": "ImGui", + "ov_cimguiname": "igInputInt3", "ret": "bool", "signature": "(const char*,int[3],ImGuiInputTextFlags)", - "stname": "ImGui" + "stname": "" } ], "igInputInt4": [ @@ -10694,9 +11251,11 @@ "flags": "0" }, "funcname": "InputInt4", + "namespace": "ImGui", + "ov_cimguiname": "igInputInt4", "ret": "bool", "signature": "(const char*,int[4],ImGuiInputTextFlags)", - "stname": "ImGui" + "stname": "" } ], "igInputScalar": [ @@ -10732,20 +11291,22 @@ "type": "ImGuiInputTextFlags" } ], - "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,const void* step=((void *)0),const void* step_fast=((void *)0),const char* format=((void *)0),ImGuiInputTextFlags flags=0)", + "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,const void* step=((void*)0),const void* step_fast=((void*)0),const char* format=((void*)0),ImGuiInputTextFlags flags=0)", "call_args": "(label,data_type,v,step,step_fast,format,flags)", "cimguiname": "igInputScalar", "comment": "", "defaults": { "flags": "0", - "format": "((void *)0)", - "step": "((void *)0)", - "step_fast": "((void *)0)" + "format": "((void*)0)", + "step": "((void*)0)", + "step_fast": "((void*)0)" }, "funcname": "InputScalar", + "namespace": "ImGui", + "ov_cimguiname": "igInputScalar", "ret": "bool", "signature": "(const char*,ImGuiDataType,void*,const void*,const void*,const char*,ImGuiInputTextFlags)", - "stname": "ImGui" + "stname": "" } ], "igInputScalarN": [ @@ -10785,20 +11346,22 @@ "type": "ImGuiInputTextFlags" } ], - "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,int components,const void* step=((void *)0),const void* step_fast=((void *)0),const char* format=((void *)0),ImGuiInputTextFlags flags=0)", + "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,int components,const void* step=((void*)0),const void* step_fast=((void*)0),const char* format=((void*)0),ImGuiInputTextFlags flags=0)", "call_args": "(label,data_type,v,components,step,step_fast,format,flags)", "cimguiname": "igInputScalarN", "comment": "", "defaults": { "flags": "0", - "format": "((void *)0)", - "step": "((void *)0)", - "step_fast": "((void *)0)" + "format": "((void*)0)", + "step": "((void*)0)", + "step_fast": "((void*)0)" }, "funcname": "InputScalarN", + "namespace": "ImGui", + "ov_cimguiname": "igInputScalarN", "ret": "bool", "signature": "(const char*,ImGuiDataType,void*,int,const void*,const void*,const char*,ImGuiInputTextFlags)", - "stname": "ImGui" + "stname": "" } ], "igInputText": [ @@ -10830,19 +11393,21 @@ "type": "void*" } ], - "argsoriginal": "(const char* label,char* buf,size_t buf_size,ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void *)0),void* user_data=((void *)0))", + "argsoriginal": "(const char* label,char* buf,size_t buf_size,ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void*)0),void* user_data=((void*)0))", "call_args": "(label,buf,buf_size,flags,callback,user_data)", "cimguiname": "igInputText", "comment": "", "defaults": { - "callback": "((void *)0)", + "callback": "((void*)0)", "flags": "0", - "user_data": "((void *)0)" + "user_data": "((void*)0)" }, "funcname": "InputText", + "namespace": "ImGui", + "ov_cimguiname": "igInputText", "ret": "bool", "signature": "(const char*,char*,size_t,ImGuiInputTextFlags,ImGuiInputTextCallback,void*)", - "stname": "ImGui" + "stname": "" } ], "igInputTextMultiline": [ @@ -10878,20 +11443,22 @@ "type": "void*" } ], - "argsoriginal": "(const char* label,char* buf,size_t buf_size,const ImVec2& size=ImVec2(0,0),ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void *)0),void* user_data=((void *)0))", + "argsoriginal": "(const char* label,char* buf,size_t buf_size,const ImVec2& size=ImVec2(0,0),ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void*)0),void* user_data=((void*)0))", "call_args": "(label,buf,buf_size,size,flags,callback,user_data)", "cimguiname": "igInputTextMultiline", "comment": "", "defaults": { - "callback": "((void *)0)", + "callback": "((void*)0)", "flags": "0", "size": "ImVec2(0,0)", - "user_data": "((void *)0)" + "user_data": "((void*)0)" }, "funcname": "InputTextMultiline", + "namespace": "ImGui", + "ov_cimguiname": "igInputTextMultiline", "ret": "bool", "signature": "(const char*,char*,size_t,const ImVec2,ImGuiInputTextFlags,ImGuiInputTextCallback,void*)", - "stname": "ImGui" + "stname": "" } ], "igInvisibleButton": [ @@ -10913,9 +11480,11 @@ "comment": "", "defaults": [], "funcname": "InvisibleButton", + "namespace": "ImGui", + "ov_cimguiname": "igInvisibleButton", "ret": "bool", "signature": "(const char*,const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igIsAnyItemActive": [ @@ -10928,9 +11497,11 @@ "comment": "", "defaults": [], "funcname": "IsAnyItemActive", + "namespace": "ImGui", + "ov_cimguiname": "igIsAnyItemActive", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsAnyItemFocused": [ @@ -10943,9 +11514,11 @@ "comment": "", "defaults": [], "funcname": "IsAnyItemFocused", + "namespace": "ImGui", + "ov_cimguiname": "igIsAnyItemFocused", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsAnyItemHovered": [ @@ -10958,9 +11531,11 @@ "comment": "", "defaults": [], "funcname": "IsAnyItemHovered", + "namespace": "ImGui", + "ov_cimguiname": "igIsAnyItemHovered", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsAnyMouseDown": [ @@ -10973,9 +11548,11 @@ "comment": "", "defaults": [], "funcname": "IsAnyMouseDown", + "namespace": "ImGui", + "ov_cimguiname": "igIsAnyMouseDown", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsItemActive": [ @@ -10988,9 +11565,11 @@ "comment": "", "defaults": [], "funcname": "IsItemActive", + "namespace": "ImGui", + "ov_cimguiname": "igIsItemActive", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsItemClicked": [ @@ -11010,9 +11589,11 @@ "mouse_button": "0" }, "funcname": "IsItemClicked", + "namespace": "ImGui", + "ov_cimguiname": "igIsItemClicked", "ret": "bool", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igIsItemDeactivated": [ @@ -11025,9 +11606,11 @@ "comment": "", "defaults": [], "funcname": "IsItemDeactivated", + "namespace": "ImGui", + "ov_cimguiname": "igIsItemDeactivated", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsItemDeactivatedAfterEdit": [ @@ -11040,9 +11623,11 @@ "comment": "", "defaults": [], "funcname": "IsItemDeactivatedAfterEdit", + "namespace": "ImGui", + "ov_cimguiname": "igIsItemDeactivatedAfterEdit", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsItemEdited": [ @@ -11055,9 +11640,11 @@ "comment": "", "defaults": [], "funcname": "IsItemEdited", + "namespace": "ImGui", + "ov_cimguiname": "igIsItemEdited", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsItemFocused": [ @@ -11070,9 +11657,11 @@ "comment": "", "defaults": [], "funcname": "IsItemFocused", + "namespace": "ImGui", + "ov_cimguiname": "igIsItemFocused", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsItemHovered": [ @@ -11092,9 +11681,11 @@ "flags": "0" }, "funcname": "IsItemHovered", + "namespace": "ImGui", + "ov_cimguiname": "igIsItemHovered", "ret": "bool", "signature": "(ImGuiHoveredFlags)", - "stname": "ImGui" + "stname": "" } ], "igIsItemVisible": [ @@ -11107,9 +11698,11 @@ "comment": "", "defaults": [], "funcname": "IsItemVisible", + "namespace": "ImGui", + "ov_cimguiname": "igIsItemVisible", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsKeyDown": [ @@ -11127,9 +11720,11 @@ "comment": "", "defaults": [], "funcname": "IsKeyDown", + "namespace": "ImGui", + "ov_cimguiname": "igIsKeyDown", "ret": "bool", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igIsKeyPressed": [ @@ -11153,9 +11748,11 @@ "repeat": "true" }, "funcname": "IsKeyPressed", + "namespace": "ImGui", + "ov_cimguiname": "igIsKeyPressed", "ret": "bool", "signature": "(int,bool)", - "stname": "ImGui" + "stname": "" } ], "igIsKeyReleased": [ @@ -11173,9 +11770,11 @@ "comment": "", "defaults": [], "funcname": "IsKeyReleased", + "namespace": "ImGui", + "ov_cimguiname": "igIsKeyReleased", "ret": "bool", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igIsMouseClicked": [ @@ -11199,9 +11798,11 @@ "repeat": "false" }, "funcname": "IsMouseClicked", + "namespace": "ImGui", + "ov_cimguiname": "igIsMouseClicked", "ret": "bool", "signature": "(int,bool)", - "stname": "ImGui" + "stname": "" } ], "igIsMouseDoubleClicked": [ @@ -11219,9 +11820,11 @@ "comment": "", "defaults": [], "funcname": "IsMouseDoubleClicked", + "namespace": "ImGui", + "ov_cimguiname": "igIsMouseDoubleClicked", "ret": "bool", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igIsMouseDown": [ @@ -11239,9 +11842,11 @@ "comment": "", "defaults": [], "funcname": "IsMouseDown", + "namespace": "ImGui", + "ov_cimguiname": "igIsMouseDown", "ret": "bool", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igIsMouseDragging": [ @@ -11266,9 +11871,11 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragging", + "namespace": "ImGui", + "ov_cimguiname": "igIsMouseDragging", "ret": "bool", "signature": "(int,float)", - "stname": "ImGui" + "stname": "" } ], "igIsMouseHoveringRect": [ @@ -11296,9 +11903,11 @@ "clip": "true" }, "funcname": "IsMouseHoveringRect", + "namespace": "ImGui", + "ov_cimguiname": "igIsMouseHoveringRect", "ret": "bool", "signature": "(const ImVec2,const ImVec2,bool)", - "stname": "ImGui" + "stname": "" } ], "igIsMousePosValid": [ @@ -11310,17 +11919,19 @@ "type": "const ImVec2*" } ], - "argsoriginal": "(const ImVec2* mouse_pos=((void *)0))", + "argsoriginal": "(const ImVec2* mouse_pos=((void*)0))", "call_args": "(mouse_pos)", "cimguiname": "igIsMousePosValid", "comment": "", "defaults": { - "mouse_pos": "((void *)0)" + "mouse_pos": "((void*)0)" }, "funcname": "IsMousePosValid", + "namespace": "ImGui", + "ov_cimguiname": "igIsMousePosValid", "ret": "bool", "signature": "(const ImVec2*)", - "stname": "ImGui" + "stname": "" } ], "igIsMouseReleased": [ @@ -11338,9 +11949,11 @@ "comment": "", "defaults": [], "funcname": "IsMouseReleased", + "namespace": "ImGui", + "ov_cimguiname": "igIsMouseReleased", "ret": "bool", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igIsPopupOpen": [ @@ -11358,9 +11971,11 @@ "comment": "", "defaults": [], "funcname": "IsPopupOpen", + "namespace": "ImGui", + "ov_cimguiname": "igIsPopupOpen", "ret": "bool", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igIsRectVisible": [ @@ -11378,10 +11993,11 @@ "comment": "", "defaults": [], "funcname": "IsRectVisible", + "namespace": "ImGui", "ov_cimguiname": "igIsRectVisible", "ret": "bool", "signature": "(const ImVec2)", - "stname": "ImGui" + "stname": "" }, { "args": "(const ImVec2 rect_min,const ImVec2 rect_max)", @@ -11401,10 +12017,11 @@ "comment": "", "defaults": [], "funcname": "IsRectVisible", + "namespace": "ImGui", "ov_cimguiname": "igIsRectVisibleVec2", "ret": "bool", "signature": "(const ImVec2,const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igIsWindowAppearing": [ @@ -11417,9 +12034,11 @@ "comment": "", "defaults": [], "funcname": "IsWindowAppearing", + "namespace": "ImGui", + "ov_cimguiname": "igIsWindowAppearing", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsWindowCollapsed": [ @@ -11432,9 +12051,11 @@ "comment": "", "defaults": [], "funcname": "IsWindowCollapsed", + "namespace": "ImGui", + "ov_cimguiname": "igIsWindowCollapsed", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsWindowFocused": [ @@ -11454,9 +12075,11 @@ "flags": "0" }, "funcname": "IsWindowFocused", + "namespace": "ImGui", + "ov_cimguiname": "igIsWindowFocused", "ret": "bool", "signature": "(ImGuiFocusedFlags)", - "stname": "ImGui" + "stname": "" } ], "igIsWindowHovered": [ @@ -11476,9 +12099,11 @@ "flags": "0" }, "funcname": "IsWindowHovered", + "namespace": "ImGui", + "ov_cimguiname": "igIsWindowHovered", "ret": "bool", "signature": "(ImGuiHoveredFlags)", - "stname": "ImGui" + "stname": "" } ], "igLabelText": [ @@ -11505,9 +12130,11 @@ "defaults": [], "funcname": "LabelText", "isvararg": "...)", + "namespace": "ImGui", + "ov_cimguiname": "igLabelText", "ret": "void", "signature": "(const char*,const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igLabelTextV": [ @@ -11533,9 +12160,11 @@ "comment": "", "defaults": [], "funcname": "LabelTextV", + "namespace": "ImGui", + "ov_cimguiname": "igLabelTextV", "ret": "void", "signature": "(const char*,const char*,va_list)", - "stname": "ImGui" + "stname": "" } ], "igListBox": [ @@ -11571,10 +12200,11 @@ "height_in_items": "-1" }, "funcname": "ListBox", + "namespace": "ImGui", "ov_cimguiname": "igListBoxStr_arr", "ret": "bool", "signature": "(const char*,int*,const char* const[],int,int)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items)", @@ -11614,10 +12244,11 @@ "height_in_items": "-1" }, "funcname": "ListBox", + "namespace": "ImGui", "ov_cimguiname": "igListBoxFnPtr", "ret": "bool", "signature": "(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)", - "stname": "ImGui" + "stname": "" } ], "igListBoxFooter": [ @@ -11630,9 +12261,11 @@ "comment": "", "defaults": [], "funcname": "ListBoxFooter", + "namespace": "ImGui", + "ov_cimguiname": "igListBoxFooter", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igListBoxHeader": [ @@ -11656,10 +12289,11 @@ "size": "ImVec2(0,0)" }, "funcname": "ListBoxHeader", + "namespace": "ImGui", "ov_cimguiname": "igListBoxHeaderVec2", "ret": "bool", "signature": "(const char*,const ImVec2)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* label,int items_count,int height_in_items)", @@ -11685,10 +12319,11 @@ "height_in_items": "-1" }, "funcname": "ListBoxHeader", + "namespace": "ImGui", "ov_cimguiname": "igListBoxHeaderInt", "ret": "bool", "signature": "(const char*,int,int)", - "stname": "ImGui" + "stname": "" } ], "igLoadIniSettingsFromDisk": [ @@ -11706,9 +12341,11 @@ "comment": "", "defaults": [], "funcname": "LoadIniSettingsFromDisk", + "namespace": "ImGui", + "ov_cimguiname": "igLoadIniSettingsFromDisk", "ret": "void", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igLoadIniSettingsFromMemory": [ @@ -11732,9 +12369,11 @@ "ini_size": "0" }, "funcname": "LoadIniSettingsFromMemory", + "namespace": "ImGui", + "ov_cimguiname": "igLoadIniSettingsFromMemory", "ret": "void", "signature": "(const char*,size_t)", - "stname": "ImGui" + "stname": "" } ], "igLogButtons": [ @@ -11747,9 +12386,11 @@ "comment": "", "defaults": [], "funcname": "LogButtons", + "namespace": "ImGui", + "ov_cimguiname": "igLogButtons", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igLogFinish": [ @@ -11762,9 +12403,11 @@ "comment": "", "defaults": [], "funcname": "LogFinish", + "namespace": "ImGui", + "ov_cimguiname": "igLogFinish", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igLogText": [ @@ -11788,9 +12431,11 @@ "funcname": "LogText", "isvararg": "...)", "manual": true, + "namespace": "ImGui", + "ov_cimguiname": "igLogText", "ret": "void", "signature": "(const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igLogToClipboard": [ @@ -11810,9 +12455,11 @@ "max_depth": "-1" }, "funcname": "LogToClipboard", + "namespace": "ImGui", + "ov_cimguiname": "igLogToClipboard", "ret": "void", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igLogToFile": [ @@ -11828,18 +12475,20 @@ "type": "const char*" } ], - "argsoriginal": "(int max_depth=-1,const char* filename=((void *)0))", + "argsoriginal": "(int max_depth=-1,const char* filename=((void*)0))", "call_args": "(max_depth,filename)", "cimguiname": "igLogToFile", "comment": "", "defaults": { - "filename": "((void *)0)", + "filename": "((void*)0)", "max_depth": "-1" }, "funcname": "LogToFile", + "namespace": "ImGui", + "ov_cimguiname": "igLogToFile", "ret": "void", "signature": "(int,const char*)", - "stname": "ImGui" + "stname": "" } ], "igLogToTTY": [ @@ -11859,9 +12508,11 @@ "max_depth": "-1" }, "funcname": "LogToTTY", + "namespace": "ImGui", + "ov_cimguiname": "igLogToTTY", "ret": "void", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igMemAlloc": [ @@ -11879,9 +12530,11 @@ "comment": "", "defaults": [], "funcname": "MemAlloc", + "namespace": "ImGui", + "ov_cimguiname": "igMemAlloc", "ret": "void*", "signature": "(size_t)", - "stname": "ImGui" + "stname": "" } ], "igMemFree": [ @@ -11899,9 +12552,11 @@ "comment": "", "defaults": [], "funcname": "MemFree", + "namespace": "ImGui", + "ov_cimguiname": "igMemFree", "ret": "void", "signature": "(void*)", - "stname": "ImGui" + "stname": "" } ], "igMenuItem": [ @@ -11925,20 +12580,21 @@ "type": "bool" } ], - "argsoriginal": "(const char* label,const char* shortcut=((void *)0),bool selected=false,bool enabled=true)", + "argsoriginal": "(const char* label,const char* shortcut=((void*)0),bool selected=false,bool enabled=true)", "call_args": "(label,shortcut,selected,enabled)", "cimguiname": "igMenuItem", "comment": "", "defaults": { "enabled": "true", "selected": "false", - "shortcut": "((void *)0)" + "shortcut": "((void*)0)" }, "funcname": "MenuItem", + "namespace": "ImGui", "ov_cimguiname": "igMenuItemBool", "ret": "bool", "signature": "(const char*,const char*,bool,bool)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* label,const char* shortcut,bool* p_selected,bool enabled)", @@ -11968,10 +12624,11 @@ "enabled": "true" }, "funcname": "MenuItem", + "namespace": "ImGui", "ov_cimguiname": "igMenuItemBoolPtr", "ret": "bool", "signature": "(const char*,const char*,bool*,bool)", - "stname": "ImGui" + "stname": "" } ], "igNewFrame": [ @@ -11984,9 +12641,11 @@ "comment": "", "defaults": [], "funcname": "NewFrame", + "namespace": "ImGui", + "ov_cimguiname": "igNewFrame", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igNewLine": [ @@ -11999,9 +12658,11 @@ "comment": "", "defaults": [], "funcname": "NewLine", + "namespace": "ImGui", + "ov_cimguiname": "igNewLine", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igNextColumn": [ @@ -12014,9 +12675,11 @@ "comment": "", "defaults": [], "funcname": "NextColumn", + "namespace": "ImGui", + "ov_cimguiname": "igNextColumn", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igOpenPopup": [ @@ -12034,9 +12697,11 @@ "comment": "", "defaults": [], "funcname": "OpenPopup", + "namespace": "ImGui", + "ov_cimguiname": "igOpenPopup", "ret": "void", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igOpenPopupOnItemClick": [ @@ -12052,18 +12717,20 @@ "type": "int" } ], - "argsoriginal": "(const char* str_id=((void *)0),int mouse_button=1)", + "argsoriginal": "(const char* str_id=((void*)0),int mouse_button=1)", "call_args": "(str_id,mouse_button)", "cimguiname": "igOpenPopupOnItemClick", "comment": "", "defaults": { "mouse_button": "1", - "str_id": "((void *)0)" + "str_id": "((void*)0)" }, "funcname": "OpenPopupOnItemClick", + "namespace": "ImGui", + "ov_cimguiname": "igOpenPopupOnItemClick", "ret": "bool", "signature": "(const char*,int)", - "stname": "ImGui" + "stname": "" } ], "igPlotHistogram": [ @@ -12107,23 +12774,24 @@ "type": "int" } ], - "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void *)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", + "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", "call_args": "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)", "cimguiname": "igPlotHistogram", "comment": "", "defaults": { "graph_size": "ImVec2(0,0)", - "overlay_text": "((void *)0)", + "overlay_text": "((void*)0)", "scale_max": "FLT_MAX", "scale_min": "FLT_MAX", "stride": "sizeof(float)", "values_offset": "0" }, "funcname": "PlotHistogram", + "namespace": "ImGui", "ov_cimguiname": "igPlotHistogramFloatPtr", "ret": "void", "signature": "(const char*,const float*,int,int,const char*,float,float,ImVec2,int)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 graph_size)", @@ -12167,22 +12835,23 @@ "type": "ImVec2" } ], - "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void *)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0))", + "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0))", "call_args": "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)", "cimguiname": "igPlotHistogram", "comment": "", "defaults": { "graph_size": "ImVec2(0,0)", - "overlay_text": "((void *)0)", + "overlay_text": "((void*)0)", "scale_max": "FLT_MAX", "scale_min": "FLT_MAX", "values_offset": "0" }, "funcname": "PlotHistogram", + "namespace": "ImGui", "ov_cimguiname": "igPlotHistogramFnPtr", "ret": "void", "signature": "(const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igPlotLines": [ @@ -12226,23 +12895,24 @@ "type": "int" } ], - "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void *)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", + "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", "call_args": "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)", "cimguiname": "igPlotLines", "comment": "", "defaults": { "graph_size": "ImVec2(0,0)", - "overlay_text": "((void *)0)", + "overlay_text": "((void*)0)", "scale_max": "FLT_MAX", "scale_min": "FLT_MAX", "stride": "sizeof(float)", "values_offset": "0" }, "funcname": "PlotLines", + "namespace": "ImGui", "ov_cimguiname": "igPlotLines", "ret": "void", "signature": "(const char*,const float*,int,int,const char*,float,float,ImVec2,int)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 graph_size)", @@ -12286,22 +12956,23 @@ "type": "ImVec2" } ], - "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void *)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0))", + "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0))", "call_args": "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)", "cimguiname": "igPlotLines", "comment": "", "defaults": { "graph_size": "ImVec2(0,0)", - "overlay_text": "((void *)0)", + "overlay_text": "((void*)0)", "scale_max": "FLT_MAX", "scale_min": "FLT_MAX", "values_offset": "0" }, "funcname": "PlotLines", + "namespace": "ImGui", "ov_cimguiname": "igPlotLinesFnPtr", "ret": "void", "signature": "(const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igPopAllowKeyboardFocus": [ @@ -12314,9 +12985,11 @@ "comment": "", "defaults": [], "funcname": "PopAllowKeyboardFocus", + "namespace": "ImGui", + "ov_cimguiname": "igPopAllowKeyboardFocus", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igPopButtonRepeat": [ @@ -12329,9 +13002,11 @@ "comment": "", "defaults": [], "funcname": "PopButtonRepeat", + "namespace": "ImGui", + "ov_cimguiname": "igPopButtonRepeat", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igPopClipRect": [ @@ -12344,9 +13019,11 @@ "comment": "", "defaults": [], "funcname": "PopClipRect", + "namespace": "ImGui", + "ov_cimguiname": "igPopClipRect", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igPopFont": [ @@ -12359,9 +13036,11 @@ "comment": "", "defaults": [], "funcname": "PopFont", + "namespace": "ImGui", + "ov_cimguiname": "igPopFont", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igPopID": [ @@ -12374,9 +13053,11 @@ "comment": "", "defaults": [], "funcname": "PopID", + "namespace": "ImGui", + "ov_cimguiname": "igPopID", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igPopItemWidth": [ @@ -12389,9 +13070,11 @@ "comment": "", "defaults": [], "funcname": "PopItemWidth", + "namespace": "ImGui", + "ov_cimguiname": "igPopItemWidth", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igPopStyleColor": [ @@ -12411,9 +13094,11 @@ "count": "1" }, "funcname": "PopStyleColor", + "namespace": "ImGui", + "ov_cimguiname": "igPopStyleColor", "ret": "void", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igPopStyleVar": [ @@ -12433,9 +13118,11 @@ "count": "1" }, "funcname": "PopStyleVar", + "namespace": "ImGui", + "ov_cimguiname": "igPopStyleVar", "ret": "void", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igPopTextWrapPos": [ @@ -12448,9 +13135,11 @@ "comment": "", "defaults": [], "funcname": "PopTextWrapPos", + "namespace": "ImGui", + "ov_cimguiname": "igPopTextWrapPos", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igProgressBar": [ @@ -12470,18 +13159,20 @@ "type": "const char*" } ], - "argsoriginal": "(float fraction,const ImVec2& size_arg=ImVec2(-1,0),const char* overlay=((void *)0))", + "argsoriginal": "(float fraction,const ImVec2& size_arg=ImVec2(-1,0),const char* overlay=((void*)0))", "call_args": "(fraction,size_arg,overlay)", "cimguiname": "igProgressBar", "comment": "", "defaults": { - "overlay": "((void *)0)", + "overlay": "((void*)0)", "size_arg": "ImVec2(-1,0)" }, "funcname": "ProgressBar", + "namespace": "ImGui", + "ov_cimguiname": "igProgressBar", "ret": "void", "signature": "(float,const ImVec2,const char*)", - "stname": "ImGui" + "stname": "" } ], "igPushAllowKeyboardFocus": [ @@ -12499,9 +13190,11 @@ "comment": "", "defaults": [], "funcname": "PushAllowKeyboardFocus", + "namespace": "ImGui", + "ov_cimguiname": "igPushAllowKeyboardFocus", "ret": "void", "signature": "(bool)", - "stname": "ImGui" + "stname": "" } ], "igPushButtonRepeat": [ @@ -12519,9 +13212,11 @@ "comment": "", "defaults": [], "funcname": "PushButtonRepeat", + "namespace": "ImGui", + "ov_cimguiname": "igPushButtonRepeat", "ret": "void", "signature": "(bool)", - "stname": "ImGui" + "stname": "" } ], "igPushClipRect": [ @@ -12547,9 +13242,11 @@ "comment": "", "defaults": [], "funcname": "PushClipRect", + "namespace": "ImGui", + "ov_cimguiname": "igPushClipRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,bool)", - "stname": "ImGui" + "stname": "" } ], "igPushFont": [ @@ -12567,9 +13264,11 @@ "comment": "", "defaults": [], "funcname": "PushFont", + "namespace": "ImGui", + "ov_cimguiname": "igPushFont", "ret": "void", "signature": "(ImFont*)", - "stname": "ImGui" + "stname": "" } ], "igPushID": [ @@ -12587,10 +13286,11 @@ "comment": "", "defaults": [], "funcname": "PushID", + "namespace": "ImGui", "ov_cimguiname": "igPushIDStr", "ret": "void", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* str_id_begin,const char* str_id_end)", @@ -12610,10 +13310,11 @@ "comment": "", "defaults": [], "funcname": "PushID", + "namespace": "ImGui", "ov_cimguiname": "igPushIDRange", "ret": "void", "signature": "(const char*,const char*)", - "stname": "ImGui" + "stname": "" }, { "args": "(const void* ptr_id)", @@ -12629,10 +13330,11 @@ "comment": "", "defaults": [], "funcname": "PushID", + "namespace": "ImGui", "ov_cimguiname": "igPushIDPtr", "ret": "void", "signature": "(const void*)", - "stname": "ImGui" + "stname": "" }, { "args": "(int int_id)", @@ -12648,10 +13350,11 @@ "comment": "", "defaults": [], "funcname": "PushID", + "namespace": "ImGui", "ov_cimguiname": "igPushIDInt", "ret": "void", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igPushItemWidth": [ @@ -12669,9 +13372,11 @@ "comment": "", "defaults": [], "funcname": "PushItemWidth", + "namespace": "ImGui", + "ov_cimguiname": "igPushItemWidth", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igPushStyleColor": [ @@ -12693,10 +13398,11 @@ "comment": "", "defaults": [], "funcname": "PushStyleColor", + "namespace": "ImGui", "ov_cimguiname": "igPushStyleColorU32", "ret": "void", "signature": "(ImGuiCol,ImU32)", - "stname": "ImGui" + "stname": "" }, { "args": "(ImGuiCol idx,const ImVec4 col)", @@ -12716,10 +13422,11 @@ "comment": "", "defaults": [], "funcname": "PushStyleColor", + "namespace": "ImGui", "ov_cimguiname": "igPushStyleColor", "ret": "void", "signature": "(ImGuiCol,const ImVec4)", - "stname": "ImGui" + "stname": "" } ], "igPushStyleVar": [ @@ -12741,10 +13448,11 @@ "comment": "", "defaults": [], "funcname": "PushStyleVar", + "namespace": "ImGui", "ov_cimguiname": "igPushStyleVarFloat", "ret": "void", "signature": "(ImGuiStyleVar,float)", - "stname": "ImGui" + "stname": "" }, { "args": "(ImGuiStyleVar idx,const ImVec2 val)", @@ -12764,10 +13472,11 @@ "comment": "", "defaults": [], "funcname": "PushStyleVar", + "namespace": "ImGui", "ov_cimguiname": "igPushStyleVarVec2", "ret": "void", "signature": "(ImGuiStyleVar,const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igPushTextWrapPos": [ @@ -12787,9 +13496,11 @@ "wrap_local_pos_x": "0.0f" }, "funcname": "PushTextWrapPos", + "namespace": "ImGui", + "ov_cimguiname": "igPushTextWrapPos", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igRadioButton": [ @@ -12811,10 +13522,11 @@ "comment": "", "defaults": [], "funcname": "RadioButton", + "namespace": "ImGui", "ov_cimguiname": "igRadioButtonBool", "ret": "bool", "signature": "(const char*,bool)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* label,int* v,int v_button)", @@ -12838,10 +13550,11 @@ "comment": "", "defaults": [], "funcname": "RadioButton", + "namespace": "ImGui", "ov_cimguiname": "igRadioButtonIntPtr", "ret": "bool", "signature": "(const char*,int*,int)", - "stname": "ImGui" + "stname": "" } ], "igRender": [ @@ -12854,9 +13567,11 @@ "comment": "", "defaults": [], "funcname": "Render", + "namespace": "ImGui", + "ov_cimguiname": "igRender", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igResetMouseDragDelta": [ @@ -12876,9 +13591,11 @@ "button": "0" }, "funcname": "ResetMouseDragDelta", + "namespace": "ImGui", + "ov_cimguiname": "igResetMouseDragDelta", "ret": "void", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igSameLine": [ @@ -12903,9 +13620,11 @@ "spacing_w": "-1.0f" }, "funcname": "SameLine", + "namespace": "ImGui", + "ov_cimguiname": "igSameLine", "ret": "void", "signature": "(float,float)", - "stname": "ImGui" + "stname": "" } ], "igSaveIniSettingsToDisk": [ @@ -12923,9 +13642,11 @@ "comment": "", "defaults": [], "funcname": "SaveIniSettingsToDisk", + "namespace": "ImGui", + "ov_cimguiname": "igSaveIniSettingsToDisk", "ret": "void", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igSaveIniSettingsToMemory": [ @@ -12937,17 +13658,19 @@ "type": "size_t*" } ], - "argsoriginal": "(size_t* out_ini_size=((void *)0))", + "argsoriginal": "(size_t* out_ini_size=((void*)0))", "call_args": "(out_ini_size)", "cimguiname": "igSaveIniSettingsToMemory", "comment": "", "defaults": { - "out_ini_size": "((void *)0)" + "out_ini_size": "((void*)0)" }, "funcname": "SaveIniSettingsToMemory", + "namespace": "ImGui", + "ov_cimguiname": "igSaveIniSettingsToMemory", "ret": "const char*", "signature": "(size_t*)", - "stname": "ImGui" + "stname": "" } ], "igSelectable": [ @@ -12981,10 +13704,11 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", + "namespace": "ImGui", "ov_cimguiname": "igSelectable", "ret": "bool", "signature": "(const char*,bool,ImGuiSelectableFlags,const ImVec2)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* label,bool* p_selected,ImGuiSelectableFlags flags,const ImVec2 size)", @@ -13015,10 +13739,11 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", + "namespace": "ImGui", "ov_cimguiname": "igSelectableBoolPtr", "ret": "bool", "signature": "(const char*,bool*,ImGuiSelectableFlags,const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igSeparator": [ @@ -13031,9 +13756,11 @@ "comment": "", "defaults": [], "funcname": "Separator", + "namespace": "ImGui", + "ov_cimguiname": "igSeparator", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igSetAllocatorFunctions": [ @@ -13057,17 +13784,19 @@ "type": "void*" } ], - "argsoriginal": "(void*(*alloc_func)(size_t sz,void* user_data),void(*free_func)(void* ptr,void* user_data),void* user_data=((void *)0))", + "argsoriginal": "(void*(*alloc_func)(size_t sz,void* user_data),void(*free_func)(void* ptr,void* user_data),void* user_data=((void*)0))", "call_args": "(alloc_func,free_func,user_data)", "cimguiname": "igSetAllocatorFunctions", "comment": "", "defaults": { - "user_data": "((void *)0)" + "user_data": "((void*)0)" }, "funcname": "SetAllocatorFunctions", + "namespace": "ImGui", + "ov_cimguiname": "igSetAllocatorFunctions", "ret": "void", "signature": "(void*(*)(size_t,void*),void(*)(void*,void*),void*)", - "stname": "ImGui" + "stname": "" } ], "igSetClipboardText": [ @@ -13085,9 +13814,11 @@ "comment": "", "defaults": [], "funcname": "SetClipboardText", + "namespace": "ImGui", + "ov_cimguiname": "igSetClipboardText", "ret": "void", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igSetColorEditOptions": [ @@ -13105,9 +13836,11 @@ "comment": "", "defaults": [], "funcname": "SetColorEditOptions", + "namespace": "ImGui", + "ov_cimguiname": "igSetColorEditOptions", "ret": "void", "signature": "(ImGuiColorEditFlags)", - "stname": "ImGui" + "stname": "" } ], "igSetColumnOffset": [ @@ -13129,9 +13862,11 @@ "comment": "", "defaults": [], "funcname": "SetColumnOffset", + "namespace": "ImGui", + "ov_cimguiname": "igSetColumnOffset", "ret": "void", "signature": "(int,float)", - "stname": "ImGui" + "stname": "" } ], "igSetColumnWidth": [ @@ -13153,9 +13888,11 @@ "comment": "", "defaults": [], "funcname": "SetColumnWidth", + "namespace": "ImGui", + "ov_cimguiname": "igSetColumnWidth", "ret": "void", "signature": "(int,float)", - "stname": "ImGui" + "stname": "" } ], "igSetCurrentContext": [ @@ -13173,9 +13910,11 @@ "comment": "", "defaults": [], "funcname": "SetCurrentContext", + "namespace": "ImGui", + "ov_cimguiname": "igSetCurrentContext", "ret": "void", "signature": "(ImGuiContext*)", - "stname": "ImGui" + "stname": "" } ], "igSetCursorPos": [ @@ -13193,9 +13932,11 @@ "comment": "", "defaults": [], "funcname": "SetCursorPos", + "namespace": "ImGui", + "ov_cimguiname": "igSetCursorPos", "ret": "void", "signature": "(const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igSetCursorPosX": [ @@ -13213,9 +13954,11 @@ "comment": "", "defaults": [], "funcname": "SetCursorPosX", + "namespace": "ImGui", + "ov_cimguiname": "igSetCursorPosX", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igSetCursorPosY": [ @@ -13233,9 +13976,11 @@ "comment": "", "defaults": [], "funcname": "SetCursorPosY", + "namespace": "ImGui", + "ov_cimguiname": "igSetCursorPosY", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igSetCursorScreenPos": [ @@ -13253,9 +13998,11 @@ "comment": "", "defaults": [], "funcname": "SetCursorScreenPos", + "namespace": "ImGui", + "ov_cimguiname": "igSetCursorScreenPos", "ret": "void", "signature": "(const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igSetDragDropPayload": [ @@ -13287,9 +14034,11 @@ "cond": "0" }, "funcname": "SetDragDropPayload", + "namespace": "ImGui", + "ov_cimguiname": "igSetDragDropPayload", "ret": "bool", "signature": "(const char*,const void*,size_t,ImGuiCond)", - "stname": "ImGui" + "stname": "" } ], "igSetItemAllowOverlap": [ @@ -13302,9 +14051,11 @@ "comment": "", "defaults": [], "funcname": "SetItemAllowOverlap", + "namespace": "ImGui", + "ov_cimguiname": "igSetItemAllowOverlap", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igSetItemDefaultFocus": [ @@ -13317,9 +14068,11 @@ "comment": "", "defaults": [], "funcname": "SetItemDefaultFocus", + "namespace": "ImGui", + "ov_cimguiname": "igSetItemDefaultFocus", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igSetKeyboardFocusHere": [ @@ -13339,9 +14092,11 @@ "offset": "0" }, "funcname": "SetKeyboardFocusHere", + "namespace": "ImGui", + "ov_cimguiname": "igSetKeyboardFocusHere", "ret": "void", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igSetMouseCursor": [ @@ -13359,9 +14114,11 @@ "comment": "", "defaults": [], "funcname": "SetMouseCursor", + "namespace": "ImGui", + "ov_cimguiname": "igSetMouseCursor", "ret": "void", "signature": "(ImGuiMouseCursor)", - "stname": "ImGui" + "stname": "" } ], "igSetNextTreeNodeOpen": [ @@ -13385,9 +14142,11 @@ "cond": "0" }, "funcname": "SetNextTreeNodeOpen", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextTreeNodeOpen", "ret": "void", "signature": "(bool,ImGuiCond)", - "stname": "ImGui" + "stname": "" } ], "igSetNextWindowBgAlpha": [ @@ -13405,9 +14164,11 @@ "comment": "", "defaults": [], "funcname": "SetNextWindowBgAlpha", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextWindowBgAlpha", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igSetNextWindowCollapsed": [ @@ -13431,9 +14192,11 @@ "cond": "0" }, "funcname": "SetNextWindowCollapsed", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextWindowCollapsed", "ret": "void", "signature": "(bool,ImGuiCond)", - "stname": "ImGui" + "stname": "" } ], "igSetNextWindowContentSize": [ @@ -13451,9 +14214,11 @@ "comment": "", "defaults": [], "funcname": "SetNextWindowContentSize", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextWindowContentSize", "ret": "void", "signature": "(const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igSetNextWindowFocus": [ @@ -13466,9 +14231,11 @@ "comment": "", "defaults": [], "funcname": "SetNextWindowFocus", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextWindowFocus", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igSetNextWindowPos": [ @@ -13497,9 +14264,11 @@ "pivot": "ImVec2(0,0)" }, "funcname": "SetNextWindowPos", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextWindowPos", "ret": "void", "signature": "(const ImVec2,ImGuiCond,const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igSetNextWindowSize": [ @@ -13523,9 +14292,11 @@ "cond": "0" }, "funcname": "SetNextWindowSize", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextWindowSize", "ret": "void", "signature": "(const ImVec2,ImGuiCond)", - "stname": "ImGui" + "stname": "" } ], "igSetNextWindowSizeConstraints": [ @@ -13549,18 +14320,20 @@ "type": "void*" } ], - "argsoriginal": "(const ImVec2& size_min,const ImVec2& size_max,ImGuiSizeCallback custom_callback=((void *)0),void* custom_callback_data=((void *)0))", + "argsoriginal": "(const ImVec2& size_min,const ImVec2& size_max,ImGuiSizeCallback custom_callback=((void*)0),void* custom_callback_data=((void*)0))", "call_args": "(size_min,size_max,custom_callback,custom_callback_data)", "cimguiname": "igSetNextWindowSizeConstraints", "comment": "", "defaults": { - "custom_callback": "((void *)0)", - "custom_callback_data": "((void *)0)" + "custom_callback": "((void*)0)", + "custom_callback_data": "((void*)0)" }, "funcname": "SetNextWindowSizeConstraints", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextWindowSizeConstraints", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImGuiSizeCallback,void*)", - "stname": "ImGui" + "stname": "" } ], "igSetScrollFromPosY": [ @@ -13584,9 +14357,11 @@ "center_y_ratio": "0.5f" }, "funcname": "SetScrollFromPosY", + "namespace": "ImGui", + "ov_cimguiname": "igSetScrollFromPosY", "ret": "void", "signature": "(float,float)", - "stname": "ImGui" + "stname": "" } ], "igSetScrollHereY": [ @@ -13606,9 +14381,11 @@ "center_y_ratio": "0.5f" }, "funcname": "SetScrollHereY", + "namespace": "ImGui", + "ov_cimguiname": "igSetScrollHereY", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igSetScrollX": [ @@ -13626,9 +14403,11 @@ "comment": "", "defaults": [], "funcname": "SetScrollX", + "namespace": "ImGui", + "ov_cimguiname": "igSetScrollX", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igSetScrollY": [ @@ -13646,9 +14425,11 @@ "comment": "", "defaults": [], "funcname": "SetScrollY", + "namespace": "ImGui", + "ov_cimguiname": "igSetScrollY", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igSetStateStorage": [ @@ -13666,9 +14447,11 @@ "comment": "", "defaults": [], "funcname": "SetStateStorage", + "namespace": "ImGui", + "ov_cimguiname": "igSetStateStorage", "ret": "void", "signature": "(ImGuiStorage*)", - "stname": "ImGui" + "stname": "" } ], "igSetTabItemClosed": [ @@ -13686,9 +14469,11 @@ "comment": "", "defaults": [], "funcname": "SetTabItemClosed", + "namespace": "ImGui", + "ov_cimguiname": "igSetTabItemClosed", "ret": "void", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igSetTooltip": [ @@ -13711,9 +14496,11 @@ "defaults": [], "funcname": "SetTooltip", "isvararg": "...)", + "namespace": "ImGui", + "ov_cimguiname": "igSetTooltip", "ret": "void", "signature": "(const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igSetTooltipV": [ @@ -13735,9 +14522,11 @@ "comment": "", "defaults": [], "funcname": "SetTooltipV", + "namespace": "ImGui", + "ov_cimguiname": "igSetTooltipV", "ret": "void", "signature": "(const char*,va_list)", - "stname": "ImGui" + "stname": "" } ], "igSetWindowCollapsed": [ @@ -13761,10 +14550,11 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", + "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsedBool", "ret": "void", "signature": "(bool,ImGuiCond)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* name,bool collapsed,ImGuiCond cond)", @@ -13790,10 +14580,11 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", + "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsedStr", "ret": "void", "signature": "(const char*,bool,ImGuiCond)", - "stname": "ImGui" + "stname": "" } ], "igSetWindowFocus": [ @@ -13806,10 +14597,11 @@ "comment": "", "defaults": [], "funcname": "SetWindowFocus", + "namespace": "ImGui", "ov_cimguiname": "igSetWindowFocus", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* name)", @@ -13825,10 +14617,11 @@ "comment": "", "defaults": [], "funcname": "SetWindowFocus", + "namespace": "ImGui", "ov_cimguiname": "igSetWindowFocusStr", "ret": "void", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igSetWindowFontScale": [ @@ -13846,9 +14639,11 @@ "comment": "", "defaults": [], "funcname": "SetWindowFontScale", + "namespace": "ImGui", + "ov_cimguiname": "igSetWindowFontScale", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igSetWindowPos": [ @@ -13872,10 +14667,11 @@ "cond": "0" }, "funcname": "SetWindowPos", + "namespace": "ImGui", "ov_cimguiname": "igSetWindowPosVec2", "ret": "void", "signature": "(const ImVec2,ImGuiCond)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* name,const ImVec2 pos,ImGuiCond cond)", @@ -13901,10 +14697,11 @@ "cond": "0" }, "funcname": "SetWindowPos", + "namespace": "ImGui", "ov_cimguiname": "igSetWindowPosStr", "ret": "void", "signature": "(const char*,const ImVec2,ImGuiCond)", - "stname": "ImGui" + "stname": "" } ], "igSetWindowSize": [ @@ -13928,10 +14725,11 @@ "cond": "0" }, "funcname": "SetWindowSize", + "namespace": "ImGui", "ov_cimguiname": "igSetWindowSizeVec2", "ret": "void", "signature": "(const ImVec2,ImGuiCond)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* name,const ImVec2 size,ImGuiCond cond)", @@ -13957,10 +14755,11 @@ "cond": "0" }, "funcname": "SetWindowSize", + "namespace": "ImGui", "ov_cimguiname": "igSetWindowSizeStr", "ret": "void", "signature": "(const char*,const ImVec2,ImGuiCond)", - "stname": "ImGui" + "stname": "" } ], "igShowAboutWindow": [ @@ -13972,17 +14771,19 @@ "type": "bool*" } ], - "argsoriginal": "(bool* p_open=((void *)0))", + "argsoriginal": "(bool* p_open=((void*)0))", "call_args": "(p_open)", "cimguiname": "igShowAboutWindow", "comment": "", "defaults": { - "p_open": "((void *)0)" + "p_open": "((void*)0)" }, "funcname": "ShowAboutWindow", + "namespace": "ImGui", + "ov_cimguiname": "igShowAboutWindow", "ret": "void", "signature": "(bool*)", - "stname": "ImGui" + "stname": "" } ], "igShowDemoWindow": [ @@ -13994,17 +14795,19 @@ "type": "bool*" } ], - "argsoriginal": "(bool* p_open=((void *)0))", + "argsoriginal": "(bool* p_open=((void*)0))", "call_args": "(p_open)", "cimguiname": "igShowDemoWindow", "comment": "", "defaults": { - "p_open": "((void *)0)" + "p_open": "((void*)0)" }, "funcname": "ShowDemoWindow", + "namespace": "ImGui", + "ov_cimguiname": "igShowDemoWindow", "ret": "void", "signature": "(bool*)", - "stname": "ImGui" + "stname": "" } ], "igShowFontSelector": [ @@ -14022,9 +14825,11 @@ "comment": "", "defaults": [], "funcname": "ShowFontSelector", + "namespace": "ImGui", + "ov_cimguiname": "igShowFontSelector", "ret": "void", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igShowMetricsWindow": [ @@ -14036,17 +14841,19 @@ "type": "bool*" } ], - "argsoriginal": "(bool* p_open=((void *)0))", + "argsoriginal": "(bool* p_open=((void*)0))", "call_args": "(p_open)", "cimguiname": "igShowMetricsWindow", "comment": "", "defaults": { - "p_open": "((void *)0)" + "p_open": "((void*)0)" }, "funcname": "ShowMetricsWindow", + "namespace": "ImGui", + "ov_cimguiname": "igShowMetricsWindow", "ret": "void", "signature": "(bool*)", - "stname": "ImGui" + "stname": "" } ], "igShowStyleEditor": [ @@ -14058,17 +14865,19 @@ "type": "ImGuiStyle*" } ], - "argsoriginal": "(ImGuiStyle* ref=((void *)0))", + "argsoriginal": "(ImGuiStyle* ref=((void*)0))", "call_args": "(ref)", "cimguiname": "igShowStyleEditor", "comment": "", "defaults": { - "ref": "((void *)0)" + "ref": "((void*)0)" }, "funcname": "ShowStyleEditor", + "namespace": "ImGui", + "ov_cimguiname": "igShowStyleEditor", "ret": "void", "signature": "(ImGuiStyle*)", - "stname": "ImGui" + "stname": "" } ], "igShowStyleSelector": [ @@ -14086,9 +14895,11 @@ "comment": "", "defaults": [], "funcname": "ShowStyleSelector", + "namespace": "ImGui", + "ov_cimguiname": "igShowStyleSelector", "ret": "bool", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igShowUserGuide": [ @@ -14101,9 +14912,11 @@ "comment": "", "defaults": [], "funcname": "ShowUserGuide", + "namespace": "ImGui", + "ov_cimguiname": "igShowUserGuide", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igSliderAngle": [ @@ -14141,9 +14954,11 @@ "v_degrees_min": "-360.0f" }, "funcname": "SliderAngle", + "namespace": "ImGui", + "ov_cimguiname": "igSliderAngle", "ret": "bool", "signature": "(const char*,float*,float,float,const char*)", - "stname": "ImGui" + "stname": "" } ], "igSliderFloat": [ @@ -14184,9 +14999,11 @@ "power": "1.0f" }, "funcname": "SliderFloat", + "namespace": "ImGui", + "ov_cimguiname": "igSliderFloat", "ret": "bool", "signature": "(const char*,float*,float,float,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igSliderFloat2": [ @@ -14227,9 +15044,11 @@ "power": "1.0f" }, "funcname": "SliderFloat2", + "namespace": "ImGui", + "ov_cimguiname": "igSliderFloat2", "ret": "bool", "signature": "(const char*,float[2],float,float,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igSliderFloat3": [ @@ -14270,9 +15089,11 @@ "power": "1.0f" }, "funcname": "SliderFloat3", + "namespace": "ImGui", + "ov_cimguiname": "igSliderFloat3", "ret": "bool", "signature": "(const char*,float[3],float,float,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igSliderFloat4": [ @@ -14313,9 +15134,11 @@ "power": "1.0f" }, "funcname": "SliderFloat4", + "namespace": "ImGui", + "ov_cimguiname": "igSliderFloat4", "ret": "bool", "signature": "(const char*,float[4],float,float,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igSliderInt": [ @@ -14351,9 +15174,11 @@ "format": "\"%d\"" }, "funcname": "SliderInt", + "namespace": "ImGui", + "ov_cimguiname": "igSliderInt", "ret": "bool", "signature": "(const char*,int*,int,int,const char*)", - "stname": "ImGui" + "stname": "" } ], "igSliderInt2": [ @@ -14389,9 +15214,11 @@ "format": "\"%d\"" }, "funcname": "SliderInt2", + "namespace": "ImGui", + "ov_cimguiname": "igSliderInt2", "ret": "bool", "signature": "(const char*,int[2],int,int,const char*)", - "stname": "ImGui" + "stname": "" } ], "igSliderInt3": [ @@ -14427,9 +15254,11 @@ "format": "\"%d\"" }, "funcname": "SliderInt3", + "namespace": "ImGui", + "ov_cimguiname": "igSliderInt3", "ret": "bool", "signature": "(const char*,int[3],int,int,const char*)", - "stname": "ImGui" + "stname": "" } ], "igSliderInt4": [ @@ -14465,9 +15294,11 @@ "format": "\"%d\"" }, "funcname": "SliderInt4", + "namespace": "ImGui", + "ov_cimguiname": "igSliderInt4", "ret": "bool", "signature": "(const char*,int[4],int,int,const char*)", - "stname": "ImGui" + "stname": "" } ], "igSliderScalar": [ @@ -14503,18 +15334,20 @@ "type": "float" } ], - "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,const void* v_min,const void* v_max,const char* format=((void *)0),float power=1.0f)", + "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,const void* v_min,const void* v_max,const char* format=((void*)0),float power=1.0f)", "call_args": "(label,data_type,v,v_min,v_max,format,power)", "cimguiname": "igSliderScalar", "comment": "", "defaults": { - "format": "((void *)0)", + "format": "((void*)0)", "power": "1.0f" }, "funcname": "SliderScalar", + "namespace": "ImGui", + "ov_cimguiname": "igSliderScalar", "ret": "bool", "signature": "(const char*,ImGuiDataType,void*,const void*,const void*,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igSliderScalarN": [ @@ -14554,18 +15387,20 @@ "type": "float" } ], - "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,int components,const void* v_min,const void* v_max,const char* format=((void *)0),float power=1.0f)", + "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,int components,const void* v_min,const void* v_max,const char* format=((void*)0),float power=1.0f)", "call_args": "(label,data_type,v,components,v_min,v_max,format,power)", "cimguiname": "igSliderScalarN", "comment": "", "defaults": { - "format": "((void *)0)", + "format": "((void*)0)", "power": "1.0f" }, "funcname": "SliderScalarN", + "namespace": "ImGui", + "ov_cimguiname": "igSliderScalarN", "ret": "bool", "signature": "(const char*,ImGuiDataType,void*,int,const void*,const void*,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igSmallButton": [ @@ -14583,9 +15418,11 @@ "comment": "", "defaults": [], "funcname": "SmallButton", + "namespace": "ImGui", + "ov_cimguiname": "igSmallButton", "ret": "bool", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igSpacing": [ @@ -14598,9 +15435,11 @@ "comment": "", "defaults": [], "funcname": "Spacing", + "namespace": "ImGui", + "ov_cimguiname": "igSpacing", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igStyleColorsClassic": [ @@ -14612,17 +15451,19 @@ "type": "ImGuiStyle*" } ], - "argsoriginal": "(ImGuiStyle* dst=((void *)0))", + "argsoriginal": "(ImGuiStyle* dst=((void*)0))", "call_args": "(dst)", "cimguiname": "igStyleColorsClassic", "comment": "", "defaults": { - "dst": "((void *)0)" + "dst": "((void*)0)" }, "funcname": "StyleColorsClassic", + "namespace": "ImGui", + "ov_cimguiname": "igStyleColorsClassic", "ret": "void", "signature": "(ImGuiStyle*)", - "stname": "ImGui" + "stname": "" } ], "igStyleColorsDark": [ @@ -14634,17 +15475,19 @@ "type": "ImGuiStyle*" } ], - "argsoriginal": "(ImGuiStyle* dst=((void *)0))", + "argsoriginal": "(ImGuiStyle* dst=((void*)0))", "call_args": "(dst)", "cimguiname": "igStyleColorsDark", "comment": "", "defaults": { - "dst": "((void *)0)" + "dst": "((void*)0)" }, "funcname": "StyleColorsDark", + "namespace": "ImGui", + "ov_cimguiname": "igStyleColorsDark", "ret": "void", "signature": "(ImGuiStyle*)", - "stname": "ImGui" + "stname": "" } ], "igStyleColorsLight": [ @@ -14656,17 +15499,19 @@ "type": "ImGuiStyle*" } ], - "argsoriginal": "(ImGuiStyle* dst=((void *)0))", + "argsoriginal": "(ImGuiStyle* dst=((void*)0))", "call_args": "(dst)", "cimguiname": "igStyleColorsLight", "comment": "", "defaults": { - "dst": "((void *)0)" + "dst": "((void*)0)" }, "funcname": "StyleColorsLight", + "namespace": "ImGui", + "ov_cimguiname": "igStyleColorsLight", "ret": "void", "signature": "(ImGuiStyle*)", - "stname": "ImGui" + "stname": "" } ], "igText": [ @@ -14689,9 +15534,11 @@ "defaults": [], "funcname": "Text", "isvararg": "...)", + "namespace": "ImGui", + "ov_cimguiname": "igText", "ret": "void", "signature": "(const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igTextColored": [ @@ -14718,9 +15565,11 @@ "defaults": [], "funcname": "TextColored", "isvararg": "...)", + "namespace": "ImGui", + "ov_cimguiname": "igTextColored", "ret": "void", "signature": "(const ImVec4,const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igTextColoredV": [ @@ -14746,9 +15595,11 @@ "comment": "", "defaults": [], "funcname": "TextColoredV", + "namespace": "ImGui", + "ov_cimguiname": "igTextColoredV", "ret": "void", "signature": "(const ImVec4,const char*,va_list)", - "stname": "ImGui" + "stname": "" } ], "igTextDisabled": [ @@ -14771,9 +15622,11 @@ "defaults": [], "funcname": "TextDisabled", "isvararg": "...)", + "namespace": "ImGui", + "ov_cimguiname": "igTextDisabled", "ret": "void", "signature": "(const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igTextDisabledV": [ @@ -14795,9 +15648,11 @@ "comment": "", "defaults": [], "funcname": "TextDisabledV", + "namespace": "ImGui", + "ov_cimguiname": "igTextDisabledV", "ret": "void", "signature": "(const char*,va_list)", - "stname": "ImGui" + "stname": "" } ], "igTextUnformatted": [ @@ -14813,17 +15668,19 @@ "type": "const char*" } ], - "argsoriginal": "(const char* text,const char* text_end=((void *)0))", + "argsoriginal": "(const char* text,const char* text_end=((void*)0))", "call_args": "(text,text_end)", "cimguiname": "igTextUnformatted", "comment": "", "defaults": { - "text_end": "((void *)0)" + "text_end": "((void*)0)" }, "funcname": "TextUnformatted", + "namespace": "ImGui", + "ov_cimguiname": "igTextUnformatted", "ret": "void", "signature": "(const char*,const char*)", - "stname": "ImGui" + "stname": "" } ], "igTextV": [ @@ -14845,9 +15702,11 @@ "comment": "", "defaults": [], "funcname": "TextV", + "namespace": "ImGui", + "ov_cimguiname": "igTextV", "ret": "void", "signature": "(const char*,va_list)", - "stname": "ImGui" + "stname": "" } ], "igTextWrapped": [ @@ -14870,9 +15729,11 @@ "defaults": [], "funcname": "TextWrapped", "isvararg": "...)", + "namespace": "ImGui", + "ov_cimguiname": "igTextWrapped", "ret": "void", "signature": "(const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igTextWrappedV": [ @@ -14894,9 +15755,11 @@ "comment": "", "defaults": [], "funcname": "TextWrappedV", + "namespace": "ImGui", + "ov_cimguiname": "igTextWrappedV", "ret": "void", "signature": "(const char*,va_list)", - "stname": "ImGui" + "stname": "" } ], "igTreeAdvanceToLabelPos": [ @@ -14909,9 +15772,11 @@ "comment": "", "defaults": [], "funcname": "TreeAdvanceToLabelPos", + "namespace": "ImGui", + "ov_cimguiname": "igTreeAdvanceToLabelPos", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igTreeNode": [ @@ -14929,10 +15794,11 @@ "comment": "", "defaults": [], "funcname": "TreeNode", + "namespace": "ImGui", "ov_cimguiname": "igTreeNodeStr", "ret": "bool", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* str_id,const char* fmt,...)", @@ -14957,10 +15823,11 @@ "defaults": [], "funcname": "TreeNode", "isvararg": "...)", + "namespace": "ImGui", "ov_cimguiname": "igTreeNodeStrStr", "ret": "bool", "signature": "(const char*,const char*,...)", - "stname": "ImGui" + "stname": "" }, { "args": "(const void* ptr_id,const char* fmt,...)", @@ -14985,10 +15852,11 @@ "defaults": [], "funcname": "TreeNode", "isvararg": "...)", + "namespace": "ImGui", "ov_cimguiname": "igTreeNodePtr", "ret": "bool", "signature": "(const void*,const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igTreeNodeEx": [ @@ -15012,10 +15880,11 @@ "flags": "0" }, "funcname": "TreeNodeEx", + "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExStr", "ret": "bool", "signature": "(const char*,ImGuiTreeNodeFlags)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* str_id,ImGuiTreeNodeFlags flags,const char* fmt,...)", @@ -15044,10 +15913,11 @@ "defaults": [], "funcname": "TreeNodeEx", "isvararg": "...)", + "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExStrStr", "ret": "bool", "signature": "(const char*,ImGuiTreeNodeFlags,const char*,...)", - "stname": "ImGui" + "stname": "" }, { "args": "(const void* ptr_id,ImGuiTreeNodeFlags flags,const char* fmt,...)", @@ -15076,10 +15946,11 @@ "defaults": [], "funcname": "TreeNodeEx", "isvararg": "...)", + "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExPtr", "ret": "bool", "signature": "(const void*,ImGuiTreeNodeFlags,const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igTreeNodeExV": [ @@ -15109,10 +15980,11 @@ "comment": "", "defaults": [], "funcname": "TreeNodeExV", + "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExVStr", "ret": "bool", "signature": "(const char*,ImGuiTreeNodeFlags,const char*,va_list)", - "stname": "ImGui" + "stname": "" }, { "args": "(const void* ptr_id,ImGuiTreeNodeFlags flags,const char* fmt,va_list args)", @@ -15140,10 +16012,11 @@ "comment": "", "defaults": [], "funcname": "TreeNodeExV", + "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExVPtr", "ret": "bool", "signature": "(const void*,ImGuiTreeNodeFlags,const char*,va_list)", - "stname": "ImGui" + "stname": "" } ], "igTreeNodeV": [ @@ -15169,10 +16042,11 @@ "comment": "", "defaults": [], "funcname": "TreeNodeV", + "namespace": "ImGui", "ov_cimguiname": "igTreeNodeVStr", "ret": "bool", "signature": "(const char*,const char*,va_list)", - "stname": "ImGui" + "stname": "" }, { "args": "(const void* ptr_id,const char* fmt,va_list args)", @@ -15196,10 +16070,11 @@ "comment": "", "defaults": [], "funcname": "TreeNodeV", + "namespace": "ImGui", "ov_cimguiname": "igTreeNodeVPtr", "ret": "bool", "signature": "(const void*,const char*,va_list)", - "stname": "ImGui" + "stname": "" } ], "igTreePop": [ @@ -15212,9 +16087,11 @@ "comment": "", "defaults": [], "funcname": "TreePop", + "namespace": "ImGui", + "ov_cimguiname": "igTreePop", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igTreePush": [ @@ -15232,10 +16109,11 @@ "comment": "", "defaults": [], "funcname": "TreePush", + "namespace": "ImGui", "ov_cimguiname": "igTreePushStr", "ret": "void", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" }, { "args": "(const void* ptr_id)", @@ -15245,18 +16123,19 @@ "type": "const void*" } ], - "argsoriginal": "(const void* ptr_id=((void *)0))", + "argsoriginal": "(const void* ptr_id=((void*)0))", "call_args": "(ptr_id)", "cimguiname": "igTreePush", "comment": "", "defaults": { - "ptr_id": "((void *)0)" + "ptr_id": "((void*)0)" }, "funcname": "TreePush", + "namespace": "ImGui", "ov_cimguiname": "igTreePushPtr", "ret": "void", "signature": "(const void*)", - "stname": "ImGui" + "stname": "" } ], "igUnindent": [ @@ -15276,9 +16155,11 @@ "indent_w": "0.0f" }, "funcname": "Unindent", + "namespace": "ImGui", + "ov_cimguiname": "igUnindent", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igVSliderFloat": [ @@ -15323,9 +16204,11 @@ "power": "1.0f" }, "funcname": "VSliderFloat", + "namespace": "ImGui", + "ov_cimguiname": "igVSliderFloat", "ret": "bool", "signature": "(const char*,const ImVec2,float*,float,float,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igVSliderInt": [ @@ -15365,9 +16248,11 @@ "format": "\"%d\"" }, "funcname": "VSliderInt", + "namespace": "ImGui", + "ov_cimguiname": "igVSliderInt", "ret": "bool", "signature": "(const char*,const ImVec2,int*,int,int,const char*)", - "stname": "ImGui" + "stname": "" } ], "igVSliderScalar": [ @@ -15407,18 +16292,20 @@ "type": "float" } ], - "argsoriginal": "(const char* label,const ImVec2& size,ImGuiDataType data_type,void* v,const void* v_min,const void* v_max,const char* format=((void *)0),float power=1.0f)", + "argsoriginal": "(const char* label,const ImVec2& size,ImGuiDataType data_type,void* v,const void* v_min,const void* v_max,const char* format=((void*)0),float power=1.0f)", "call_args": "(label,size,data_type,v,v_min,v_max,format,power)", "cimguiname": "igVSliderScalar", "comment": "", "defaults": { - "format": "((void *)0)", + "format": "((void*)0)", "power": "1.0f" }, "funcname": "VSliderScalar", + "namespace": "ImGui", + "ov_cimguiname": "igVSliderScalar", "ret": "bool", "signature": "(const char*,const ImVec2,ImGuiDataType,void*,const void*,const void*,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igValue": [ @@ -15440,10 +16327,11 @@ "comment": "", "defaults": [], "funcname": "Value", + "namespace": "ImGui", "ov_cimguiname": "igValueBool", "ret": "void", "signature": "(const char*,bool)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* prefix,int v)", @@ -15463,10 +16351,11 @@ "comment": "", "defaults": [], "funcname": "Value", + "namespace": "ImGui", "ov_cimguiname": "igValueInt", "ret": "void", "signature": "(const char*,int)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* prefix,unsigned int v)", @@ -15486,10 +16375,11 @@ "comment": "", "defaults": [], "funcname": "Value", + "namespace": "ImGui", "ov_cimguiname": "igValueUint", "ret": "void", "signature": "(const char*,unsigned int)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* prefix,float v,const char* float_format)", @@ -15507,18 +16397,19 @@ "type": "const char*" } ], - "argsoriginal": "(const char* prefix,float v,const char* float_format=((void *)0))", + "argsoriginal": "(const char* prefix,float v,const char* float_format=((void*)0))", "call_args": "(prefix,v,float_format)", "cimguiname": "igValue", "comment": "", "defaults": { - "float_format": "((void *)0)" + "float_format": "((void*)0)" }, "funcname": "Value", + "namespace": "ImGui", "ov_cimguiname": "igValueFloat", "ret": "void", "signature": "(const char*,float,const char*)", - "stname": "ImGui" + "stname": "" } ] } \ No newline at end of file diff --git a/generator/output/definitions.lua b/generator/output/definitions.lua index 7683e44..14c0df7 100644 --- a/generator/output/definitions.lua +++ b/generator/output/definitions.lua @@ -10,6 +10,7 @@ defs["CustomRect_CustomRect"][1]["comment"] = "" defs["CustomRect_CustomRect"][1]["constructor"] = true defs["CustomRect_CustomRect"][1]["defaults"] = {} defs["CustomRect_CustomRect"][1]["funcname"] = "CustomRect" +defs["CustomRect_CustomRect"][1]["ov_cimguiname"] = "CustomRect_CustomRect" defs["CustomRect_CustomRect"][1]["signature"] = "()" defs["CustomRect_CustomRect"][1]["stname"] = "CustomRect" defs["CustomRect_CustomRect"]["()"] = defs["CustomRect_CustomRect"][1] @@ -26,6 +27,7 @@ defs["CustomRect_IsPacked"][1]["cimguiname"] = "CustomRect_IsPacked" defs["CustomRect_IsPacked"][1]["comment"] = "" defs["CustomRect_IsPacked"][1]["defaults"] = {} defs["CustomRect_IsPacked"][1]["funcname"] = "IsPacked" +defs["CustomRect_IsPacked"][1]["ov_cimguiname"] = "CustomRect_IsPacked" defs["CustomRect_IsPacked"][1]["ret"] = "bool" defs["CustomRect_IsPacked"][1]["signature"] = "()" defs["CustomRect_IsPacked"][1]["stname"] = "CustomRect" @@ -72,6 +74,7 @@ defs["ImColor_HSV"][1]["comment"] = "" defs["ImColor_HSV"][1]["defaults"] = {} defs["ImColor_HSV"][1]["defaults"]["a"] = "1.0f" defs["ImColor_HSV"][1]["funcname"] = "HSV" +defs["ImColor_HSV"][1]["ov_cimguiname"] = "ImColor_HSV" defs["ImColor_HSV"][1]["ret"] = "ImColor" defs["ImColor_HSV"][1]["signature"] = "(float,float,float,float)" defs["ImColor_HSV"][1]["stname"] = "ImColor" @@ -269,6 +272,7 @@ defs["ImColor_SetHSV"][1]["comment"] = "" defs["ImColor_SetHSV"][1]["defaults"] = {} defs["ImColor_SetHSV"][1]["defaults"]["a"] = "1.0f" defs["ImColor_SetHSV"][1]["funcname"] = "SetHSV" +defs["ImColor_SetHSV"][1]["ov_cimguiname"] = "ImColor_SetHSV" defs["ImColor_SetHSV"][1]["ret"] = "void" defs["ImColor_SetHSV"][1]["signature"] = "(float,float,float,float)" defs["ImColor_SetHSV"][1]["stname"] = "ImColor" @@ -300,6 +304,7 @@ defs["ImDrawCmd_ImDrawCmd"][1]["comment"] = "" defs["ImDrawCmd_ImDrawCmd"][1]["constructor"] = true defs["ImDrawCmd_ImDrawCmd"][1]["defaults"] = {} defs["ImDrawCmd_ImDrawCmd"][1]["funcname"] = "ImDrawCmd" +defs["ImDrawCmd_ImDrawCmd"][1]["ov_cimguiname"] = "ImDrawCmd_ImDrawCmd" defs["ImDrawCmd_ImDrawCmd"][1]["signature"] = "()" defs["ImDrawCmd_ImDrawCmd"][1]["stname"] = "ImDrawCmd" defs["ImDrawCmd_ImDrawCmd"]["()"] = defs["ImDrawCmd_ImDrawCmd"][1] @@ -332,6 +337,7 @@ defs["ImDrawData_Clear"][1]["cimguiname"] = "ImDrawData_Clear" defs["ImDrawData_Clear"][1]["comment"] = "" defs["ImDrawData_Clear"][1]["defaults"] = {} defs["ImDrawData_Clear"][1]["funcname"] = "Clear" +defs["ImDrawData_Clear"][1]["ov_cimguiname"] = "ImDrawData_Clear" defs["ImDrawData_Clear"][1]["ret"] = "void" defs["ImDrawData_Clear"][1]["signature"] = "()" defs["ImDrawData_Clear"][1]["stname"] = "ImDrawData" @@ -349,6 +355,7 @@ defs["ImDrawData_DeIndexAllBuffers"][1]["cimguiname"] = "ImDrawData_DeIndexAllBu defs["ImDrawData_DeIndexAllBuffers"][1]["comment"] = "" defs["ImDrawData_DeIndexAllBuffers"][1]["defaults"] = {} defs["ImDrawData_DeIndexAllBuffers"][1]["funcname"] = "DeIndexAllBuffers" +defs["ImDrawData_DeIndexAllBuffers"][1]["ov_cimguiname"] = "ImDrawData_DeIndexAllBuffers" defs["ImDrawData_DeIndexAllBuffers"][1]["ret"] = "void" defs["ImDrawData_DeIndexAllBuffers"][1]["signature"] = "()" defs["ImDrawData_DeIndexAllBuffers"][1]["stname"] = "ImDrawData" @@ -364,6 +371,7 @@ defs["ImDrawData_ImDrawData"][1]["comment"] = "" defs["ImDrawData_ImDrawData"][1]["constructor"] = true defs["ImDrawData_ImDrawData"][1]["defaults"] = {} defs["ImDrawData_ImDrawData"][1]["funcname"] = "ImDrawData" +defs["ImDrawData_ImDrawData"][1]["ov_cimguiname"] = "ImDrawData_ImDrawData" defs["ImDrawData_ImDrawData"][1]["signature"] = "()" defs["ImDrawData_ImDrawData"][1]["stname"] = "ImDrawData" defs["ImDrawData_ImDrawData"]["()"] = defs["ImDrawData_ImDrawData"][1] @@ -383,6 +391,7 @@ defs["ImDrawData_ScaleClipRects"][1]["cimguiname"] = "ImDrawData_ScaleClipRects" defs["ImDrawData_ScaleClipRects"][1]["comment"] = "" defs["ImDrawData_ScaleClipRects"][1]["defaults"] = {} defs["ImDrawData_ScaleClipRects"][1]["funcname"] = "ScaleClipRects" +defs["ImDrawData_ScaleClipRects"][1]["ov_cimguiname"] = "ImDrawData_ScaleClipRects" defs["ImDrawData_ScaleClipRects"][1]["ret"] = "void" defs["ImDrawData_ScaleClipRects"][1]["signature"] = "(const ImVec2)" defs["ImDrawData_ScaleClipRects"][1]["stname"] = "ImDrawData" @@ -438,6 +447,7 @@ defs["ImDrawList_AddBezierCurve"][1]["comment"] = "" defs["ImDrawList_AddBezierCurve"][1]["defaults"] = {} defs["ImDrawList_AddBezierCurve"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddBezierCurve"][1]["funcname"] = "AddBezierCurve" +defs["ImDrawList_AddBezierCurve"][1]["ov_cimguiname"] = "ImDrawList_AddBezierCurve" defs["ImDrawList_AddBezierCurve"][1]["ret"] = "void" defs["ImDrawList_AddBezierCurve"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)" defs["ImDrawList_AddBezierCurve"][1]["stname"] = "ImDrawList" @@ -461,6 +471,7 @@ defs["ImDrawList_AddCallback"][1]["cimguiname"] = "ImDrawList_AddCallback" defs["ImDrawList_AddCallback"][1]["comment"] = "" defs["ImDrawList_AddCallback"][1]["defaults"] = {} defs["ImDrawList_AddCallback"][1]["funcname"] = "AddCallback" +defs["ImDrawList_AddCallback"][1]["ov_cimguiname"] = "ImDrawList_AddCallback" defs["ImDrawList_AddCallback"][1]["ret"] = "void" defs["ImDrawList_AddCallback"][1]["signature"] = "(ImDrawCallback,void*)" defs["ImDrawList_AddCallback"][1]["stname"] = "ImDrawList" @@ -495,6 +506,7 @@ defs["ImDrawList_AddCircle"][1]["defaults"] = {} defs["ImDrawList_AddCircle"][1]["defaults"]["num_segments"] = "12" defs["ImDrawList_AddCircle"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddCircle"][1]["funcname"] = "AddCircle" +defs["ImDrawList_AddCircle"][1]["ov_cimguiname"] = "ImDrawList_AddCircle" defs["ImDrawList_AddCircle"][1]["ret"] = "void" defs["ImDrawList_AddCircle"][1]["signature"] = "(const ImVec2,float,ImU32,int,float)" defs["ImDrawList_AddCircle"][1]["stname"] = "ImDrawList" @@ -525,6 +537,7 @@ defs["ImDrawList_AddCircleFilled"][1]["comment"] = "" defs["ImDrawList_AddCircleFilled"][1]["defaults"] = {} defs["ImDrawList_AddCircleFilled"][1]["defaults"]["num_segments"] = "12" defs["ImDrawList_AddCircleFilled"][1]["funcname"] = "AddCircleFilled" +defs["ImDrawList_AddCircleFilled"][1]["ov_cimguiname"] = "ImDrawList_AddCircleFilled" defs["ImDrawList_AddCircleFilled"][1]["ret"] = "void" defs["ImDrawList_AddCircleFilled"][1]["signature"] = "(const ImVec2,float,ImU32,int)" defs["ImDrawList_AddCircleFilled"][1]["stname"] = "ImDrawList" @@ -551,6 +564,7 @@ defs["ImDrawList_AddConvexPolyFilled"][1]["cimguiname"] = "ImDrawList_AddConvexP defs["ImDrawList_AddConvexPolyFilled"][1]["comment"] = "" defs["ImDrawList_AddConvexPolyFilled"][1]["defaults"] = {} defs["ImDrawList_AddConvexPolyFilled"][1]["funcname"] = "AddConvexPolyFilled" +defs["ImDrawList_AddConvexPolyFilled"][1]["ov_cimguiname"] = "ImDrawList_AddConvexPolyFilled" defs["ImDrawList_AddConvexPolyFilled"][1]["ret"] = "void" defs["ImDrawList_AddConvexPolyFilled"][1]["signature"] = "(const ImVec2*,const int,ImU32)" defs["ImDrawList_AddConvexPolyFilled"][1]["stname"] = "ImDrawList" @@ -568,6 +582,7 @@ defs["ImDrawList_AddDrawCmd"][1]["cimguiname"] = "ImDrawList_AddDrawCmd" defs["ImDrawList_AddDrawCmd"][1]["comment"] = "" defs["ImDrawList_AddDrawCmd"][1]["defaults"] = {} defs["ImDrawList_AddDrawCmd"][1]["funcname"] = "AddDrawCmd" +defs["ImDrawList_AddDrawCmd"][1]["ov_cimguiname"] = "ImDrawList_AddDrawCmd" defs["ImDrawList_AddDrawCmd"][1]["ret"] = "void" defs["ImDrawList_AddDrawCmd"][1]["signature"] = "()" defs["ImDrawList_AddDrawCmd"][1]["stname"] = "ImDrawList" @@ -606,6 +621,7 @@ defs["ImDrawList_AddImage"][1]["defaults"]["col"] = "0xFFFFFFFF" defs["ImDrawList_AddImage"][1]["defaults"]["uv_a"] = "ImVec2(0,0)" defs["ImDrawList_AddImage"][1]["defaults"]["uv_b"] = "ImVec2(1,1)" defs["ImDrawList_AddImage"][1]["funcname"] = "AddImage" +defs["ImDrawList_AddImage"][1]["ov_cimguiname"] = "ImDrawList_AddImage" defs["ImDrawList_AddImage"][1]["ret"] = "void" defs["ImDrawList_AddImage"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" defs["ImDrawList_AddImage"][1]["stname"] = "ImDrawList" @@ -658,6 +674,7 @@ defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv_b"] = "ImVec2(1,0)" defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv_c"] = "ImVec2(1,1)" defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv_d"] = "ImVec2(0,1)" defs["ImDrawList_AddImageQuad"][1]["funcname"] = "AddImageQuad" +defs["ImDrawList_AddImageQuad"][1]["ov_cimguiname"] = "ImDrawList_AddImageQuad" defs["ImDrawList_AddImageQuad"][1]["ret"] = "void" defs["ImDrawList_AddImageQuad"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" defs["ImDrawList_AddImageQuad"][1]["stname"] = "ImDrawList" @@ -700,6 +717,7 @@ defs["ImDrawList_AddImageRounded"][1]["comment"] = "" defs["ImDrawList_AddImageRounded"][1]["defaults"] = {} defs["ImDrawList_AddImageRounded"][1]["defaults"]["rounding_corners"] = "ImDrawCornerFlags_All" defs["ImDrawList_AddImageRounded"][1]["funcname"] = "AddImageRounded" +defs["ImDrawList_AddImageRounded"][1]["ov_cimguiname"] = "ImDrawList_AddImageRounded" defs["ImDrawList_AddImageRounded"][1]["ret"] = "void" defs["ImDrawList_AddImageRounded"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)" defs["ImDrawList_AddImageRounded"][1]["stname"] = "ImDrawList" @@ -730,6 +748,7 @@ defs["ImDrawList_AddLine"][1]["comment"] = "" defs["ImDrawList_AddLine"][1]["defaults"] = {} defs["ImDrawList_AddLine"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddLine"][1]["funcname"] = "AddLine" +defs["ImDrawList_AddLine"][1]["ov_cimguiname"] = "ImDrawList_AddLine" defs["ImDrawList_AddLine"][1]["ret"] = "void" defs["ImDrawList_AddLine"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float)" defs["ImDrawList_AddLine"][1]["stname"] = "ImDrawList" @@ -762,6 +781,7 @@ defs["ImDrawList_AddPolyline"][1]["cimguiname"] = "ImDrawList_AddPolyline" defs["ImDrawList_AddPolyline"][1]["comment"] = "" defs["ImDrawList_AddPolyline"][1]["defaults"] = {} defs["ImDrawList_AddPolyline"][1]["funcname"] = "AddPolyline" +defs["ImDrawList_AddPolyline"][1]["ov_cimguiname"] = "ImDrawList_AddPolyline" defs["ImDrawList_AddPolyline"][1]["ret"] = "void" defs["ImDrawList_AddPolyline"][1]["signature"] = "(const ImVec2*,const int,ImU32,bool,float)" defs["ImDrawList_AddPolyline"][1]["stname"] = "ImDrawList" @@ -798,6 +818,7 @@ defs["ImDrawList_AddQuad"][1]["comment"] = "" defs["ImDrawList_AddQuad"][1]["defaults"] = {} defs["ImDrawList_AddQuad"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddQuad"][1]["funcname"] = "AddQuad" +defs["ImDrawList_AddQuad"][1]["ov_cimguiname"] = "ImDrawList_AddQuad" defs["ImDrawList_AddQuad"][1]["ret"] = "void" defs["ImDrawList_AddQuad"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)" defs["ImDrawList_AddQuad"][1]["stname"] = "ImDrawList" @@ -830,6 +851,7 @@ defs["ImDrawList_AddQuadFilled"][1]["cimguiname"] = "ImDrawList_AddQuadFilled" defs["ImDrawList_AddQuadFilled"][1]["comment"] = "" defs["ImDrawList_AddQuadFilled"][1]["defaults"] = {} defs["ImDrawList_AddQuadFilled"][1]["funcname"] = "AddQuadFilled" +defs["ImDrawList_AddQuadFilled"][1]["ov_cimguiname"] = "ImDrawList_AddQuadFilled" defs["ImDrawList_AddQuadFilled"][1]["ret"] = "void" defs["ImDrawList_AddQuadFilled"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" defs["ImDrawList_AddQuadFilled"][1]["stname"] = "ImDrawList" @@ -868,6 +890,7 @@ defs["ImDrawList_AddRect"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_AddRect"][1]["defaults"]["rounding_corners_flags"] = "ImDrawCornerFlags_All" defs["ImDrawList_AddRect"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddRect"][1]["funcname"] = "AddRect" +defs["ImDrawList_AddRect"][1]["ov_cimguiname"] = "ImDrawList_AddRect" defs["ImDrawList_AddRect"][1]["ret"] = "void" defs["ImDrawList_AddRect"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,int,float)" defs["ImDrawList_AddRect"][1]["stname"] = "ImDrawList" @@ -902,6 +925,7 @@ defs["ImDrawList_AddRectFilled"][1]["defaults"] = {} defs["ImDrawList_AddRectFilled"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_AddRectFilled"][1]["defaults"]["rounding_corners_flags"] = "ImDrawCornerFlags_All" defs["ImDrawList_AddRectFilled"][1]["funcname"] = "AddRectFilled" +defs["ImDrawList_AddRectFilled"][1]["ov_cimguiname"] = "ImDrawList_AddRectFilled" defs["ImDrawList_AddRectFilled"][1]["ret"] = "void" defs["ImDrawList_AddRectFilled"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,int)" defs["ImDrawList_AddRectFilled"][1]["stname"] = "ImDrawList" @@ -937,6 +961,7 @@ defs["ImDrawList_AddRectFilledMultiColor"][1]["cimguiname"] = "ImDrawList_AddRec defs["ImDrawList_AddRectFilledMultiColor"][1]["comment"] = "" defs["ImDrawList_AddRectFilledMultiColor"][1]["defaults"] = {} defs["ImDrawList_AddRectFilledMultiColor"][1]["funcname"] = "AddRectFilledMultiColor" +defs["ImDrawList_AddRectFilledMultiColor"][1]["ov_cimguiname"] = "ImDrawList_AddRectFilledMultiColor" defs["ImDrawList_AddRectFilledMultiColor"][1]["ret"] = "void" defs["ImDrawList_AddRectFilledMultiColor"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)" defs["ImDrawList_AddRectFilledMultiColor"][1]["stname"] = "ImDrawList" @@ -960,12 +985,12 @@ defs["ImDrawList_AddText"][1]["argsT"][4]["type"] = "const char*" defs["ImDrawList_AddText"][1]["argsT"][5] = {} defs["ImDrawList_AddText"][1]["argsT"][5]["name"] = "text_end" defs["ImDrawList_AddText"][1]["argsT"][5]["type"] = "const char*" -defs["ImDrawList_AddText"][1]["argsoriginal"] = "(const ImVec2& pos,ImU32 col,const char* text_begin,const char* text_end=((void *)0))" +defs["ImDrawList_AddText"][1]["argsoriginal"] = "(const ImVec2& pos,ImU32 col,const char* text_begin,const char* text_end=((void*)0))" defs["ImDrawList_AddText"][1]["call_args"] = "(pos,col,text_begin,text_end)" defs["ImDrawList_AddText"][1]["cimguiname"] = "ImDrawList_AddText" defs["ImDrawList_AddText"][1]["comment"] = "" defs["ImDrawList_AddText"][1]["defaults"] = {} -defs["ImDrawList_AddText"][1]["defaults"]["text_end"] = "((void *)0)" +defs["ImDrawList_AddText"][1]["defaults"]["text_end"] = "((void*)0)" defs["ImDrawList_AddText"][1]["funcname"] = "AddText" defs["ImDrawList_AddText"][1]["ov_cimguiname"] = "ImDrawList_AddText" defs["ImDrawList_AddText"][1]["ret"] = "void" @@ -1001,13 +1026,13 @@ defs["ImDrawList_AddText"][2]["argsT"][8]["type"] = "float" defs["ImDrawList_AddText"][2]["argsT"][9] = {} defs["ImDrawList_AddText"][2]["argsT"][9]["name"] = "cpu_fine_clip_rect" defs["ImDrawList_AddText"][2]["argsT"][9]["type"] = "const ImVec4*" -defs["ImDrawList_AddText"][2]["argsoriginal"] = "(const ImFont* font,float font_size,const ImVec2& pos,ImU32 col,const char* text_begin,const char* text_end=((void *)0),float wrap_width=0.0f,const ImVec4* cpu_fine_clip_rect=((void *)0))" +defs["ImDrawList_AddText"][2]["argsoriginal"] = "(const ImFont* font,float font_size,const ImVec2& pos,ImU32 col,const char* text_begin,const char* text_end=((void*)0),float wrap_width=0.0f,const ImVec4* cpu_fine_clip_rect=((void*)0))" defs["ImDrawList_AddText"][2]["call_args"] = "(font,font_size,pos,col,text_begin,text_end,wrap_width,cpu_fine_clip_rect)" defs["ImDrawList_AddText"][2]["cimguiname"] = "ImDrawList_AddText" defs["ImDrawList_AddText"][2]["comment"] = "" defs["ImDrawList_AddText"][2]["defaults"] = {} -defs["ImDrawList_AddText"][2]["defaults"]["cpu_fine_clip_rect"] = "((void *)0)" -defs["ImDrawList_AddText"][2]["defaults"]["text_end"] = "((void *)0)" +defs["ImDrawList_AddText"][2]["defaults"]["cpu_fine_clip_rect"] = "((void*)0)" +defs["ImDrawList_AddText"][2]["defaults"]["text_end"] = "((void*)0)" defs["ImDrawList_AddText"][2]["defaults"]["wrap_width"] = "0.0f" defs["ImDrawList_AddText"][2]["funcname"] = "AddText" defs["ImDrawList_AddText"][2]["ov_cimguiname"] = "ImDrawList_AddTextFontPtr" @@ -1045,6 +1070,7 @@ defs["ImDrawList_AddTriangle"][1]["comment"] = "" defs["ImDrawList_AddTriangle"][1]["defaults"] = {} defs["ImDrawList_AddTriangle"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddTriangle"][1]["funcname"] = "AddTriangle" +defs["ImDrawList_AddTriangle"][1]["ov_cimguiname"] = "ImDrawList_AddTriangle" defs["ImDrawList_AddTriangle"][1]["ret"] = "void" defs["ImDrawList_AddTriangle"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)" defs["ImDrawList_AddTriangle"][1]["stname"] = "ImDrawList" @@ -1074,6 +1100,7 @@ defs["ImDrawList_AddTriangleFilled"][1]["cimguiname"] = "ImDrawList_AddTriangleF defs["ImDrawList_AddTriangleFilled"][1]["comment"] = "" defs["ImDrawList_AddTriangleFilled"][1]["defaults"] = {} defs["ImDrawList_AddTriangleFilled"][1]["funcname"] = "AddTriangleFilled" +defs["ImDrawList_AddTriangleFilled"][1]["ov_cimguiname"] = "ImDrawList_AddTriangleFilled" defs["ImDrawList_AddTriangleFilled"][1]["ret"] = "void" defs["ImDrawList_AddTriangleFilled"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32)" defs["ImDrawList_AddTriangleFilled"][1]["stname"] = "ImDrawList" @@ -1091,6 +1118,7 @@ defs["ImDrawList_ChannelsMerge"][1]["cimguiname"] = "ImDrawList_ChannelsMerge" defs["ImDrawList_ChannelsMerge"][1]["comment"] = "" defs["ImDrawList_ChannelsMerge"][1]["defaults"] = {} defs["ImDrawList_ChannelsMerge"][1]["funcname"] = "ChannelsMerge" +defs["ImDrawList_ChannelsMerge"][1]["ov_cimguiname"] = "ImDrawList_ChannelsMerge" defs["ImDrawList_ChannelsMerge"][1]["ret"] = "void" defs["ImDrawList_ChannelsMerge"][1]["signature"] = "()" defs["ImDrawList_ChannelsMerge"][1]["stname"] = "ImDrawList" @@ -1111,6 +1139,7 @@ defs["ImDrawList_ChannelsSetCurrent"][1]["cimguiname"] = "ImDrawList_ChannelsSet defs["ImDrawList_ChannelsSetCurrent"][1]["comment"] = "" defs["ImDrawList_ChannelsSetCurrent"][1]["defaults"] = {} defs["ImDrawList_ChannelsSetCurrent"][1]["funcname"] = "ChannelsSetCurrent" +defs["ImDrawList_ChannelsSetCurrent"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSetCurrent" defs["ImDrawList_ChannelsSetCurrent"][1]["ret"] = "void" defs["ImDrawList_ChannelsSetCurrent"][1]["signature"] = "(int)" defs["ImDrawList_ChannelsSetCurrent"][1]["stname"] = "ImDrawList" @@ -1131,6 +1160,7 @@ defs["ImDrawList_ChannelsSplit"][1]["cimguiname"] = "ImDrawList_ChannelsSplit" defs["ImDrawList_ChannelsSplit"][1]["comment"] = "" defs["ImDrawList_ChannelsSplit"][1]["defaults"] = {} defs["ImDrawList_ChannelsSplit"][1]["funcname"] = "ChannelsSplit" +defs["ImDrawList_ChannelsSplit"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSplit" defs["ImDrawList_ChannelsSplit"][1]["ret"] = "void" defs["ImDrawList_ChannelsSplit"][1]["signature"] = "(int)" defs["ImDrawList_ChannelsSplit"][1]["stname"] = "ImDrawList" @@ -1148,6 +1178,7 @@ defs["ImDrawList_Clear"][1]["cimguiname"] = "ImDrawList_Clear" defs["ImDrawList_Clear"][1]["comment"] = "" defs["ImDrawList_Clear"][1]["defaults"] = {} defs["ImDrawList_Clear"][1]["funcname"] = "Clear" +defs["ImDrawList_Clear"][1]["ov_cimguiname"] = "ImDrawList_Clear" defs["ImDrawList_Clear"][1]["ret"] = "void" defs["ImDrawList_Clear"][1]["signature"] = "()" defs["ImDrawList_Clear"][1]["stname"] = "ImDrawList" @@ -1165,6 +1196,7 @@ defs["ImDrawList_ClearFreeMemory"][1]["cimguiname"] = "ImDrawList_ClearFreeMemor defs["ImDrawList_ClearFreeMemory"][1]["comment"] = "" defs["ImDrawList_ClearFreeMemory"][1]["defaults"] = {} defs["ImDrawList_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" +defs["ImDrawList_ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawList_ClearFreeMemory" defs["ImDrawList_ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawList_ClearFreeMemory"][1]["signature"] = "()" defs["ImDrawList_ClearFreeMemory"][1]["stname"] = "ImDrawList" @@ -1182,6 +1214,7 @@ defs["ImDrawList_CloneOutput"][1]["cimguiname"] = "ImDrawList_CloneOutput" defs["ImDrawList_CloneOutput"][1]["comment"] = "" defs["ImDrawList_CloneOutput"][1]["defaults"] = {} defs["ImDrawList_CloneOutput"][1]["funcname"] = "CloneOutput" +defs["ImDrawList_CloneOutput"][1]["ov_cimguiname"] = "ImDrawList_CloneOutput" defs["ImDrawList_CloneOutput"][1]["ret"] = "ImDrawList*" defs["ImDrawList_CloneOutput"][1]["signature"] = "()" defs["ImDrawList_CloneOutput"][1]["stname"] = "ImDrawList" @@ -1199,6 +1232,7 @@ defs["ImDrawList_GetClipRectMax"][1]["cimguiname"] = "ImDrawList_GetClipRectMax" defs["ImDrawList_GetClipRectMax"][1]["comment"] = "" defs["ImDrawList_GetClipRectMax"][1]["defaults"] = {} defs["ImDrawList_GetClipRectMax"][1]["funcname"] = "GetClipRectMax" +defs["ImDrawList_GetClipRectMax"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMax" defs["ImDrawList_GetClipRectMax"][1]["ret"] = "ImVec2" defs["ImDrawList_GetClipRectMax"][1]["signature"] = "()" defs["ImDrawList_GetClipRectMax"][1]["stname"] = "ImDrawList" @@ -1256,6 +1290,7 @@ defs["ImDrawList_GetClipRectMin"][1]["cimguiname"] = "ImDrawList_GetClipRectMin" defs["ImDrawList_GetClipRectMin"][1]["comment"] = "" defs["ImDrawList_GetClipRectMin"][1]["defaults"] = {} defs["ImDrawList_GetClipRectMin"][1]["funcname"] = "GetClipRectMin" +defs["ImDrawList_GetClipRectMin"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMin" defs["ImDrawList_GetClipRectMin"][1]["ret"] = "ImVec2" defs["ImDrawList_GetClipRectMin"][1]["signature"] = "()" defs["ImDrawList_GetClipRectMin"][1]["stname"] = "ImDrawList" @@ -1314,6 +1349,7 @@ defs["ImDrawList_ImDrawList"][1]["comment"] = "" defs["ImDrawList_ImDrawList"][1]["constructor"] = true defs["ImDrawList_ImDrawList"][1]["defaults"] = {} defs["ImDrawList_ImDrawList"][1]["funcname"] = "ImDrawList" +defs["ImDrawList_ImDrawList"][1]["ov_cimguiname"] = "ImDrawList_ImDrawList" defs["ImDrawList_ImDrawList"][1]["signature"] = "(const ImDrawListSharedData*)" defs["ImDrawList_ImDrawList"][1]["stname"] = "ImDrawList" defs["ImDrawList_ImDrawList"]["(const ImDrawListSharedData*)"] = defs["ImDrawList_ImDrawList"][1] @@ -1346,6 +1382,7 @@ defs["ImDrawList_PathArcTo"][1]["comment"] = "" defs["ImDrawList_PathArcTo"][1]["defaults"] = {} defs["ImDrawList_PathArcTo"][1]["defaults"]["num_segments"] = "10" defs["ImDrawList_PathArcTo"][1]["funcname"] = "PathArcTo" +defs["ImDrawList_PathArcTo"][1]["ov_cimguiname"] = "ImDrawList_PathArcTo" defs["ImDrawList_PathArcTo"][1]["ret"] = "void" defs["ImDrawList_PathArcTo"][1]["signature"] = "(const ImVec2,float,float,float,int)" defs["ImDrawList_PathArcTo"][1]["stname"] = "ImDrawList" @@ -1375,6 +1412,7 @@ defs["ImDrawList_PathArcToFast"][1]["cimguiname"] = "ImDrawList_PathArcToFast" defs["ImDrawList_PathArcToFast"][1]["comment"] = "" defs["ImDrawList_PathArcToFast"][1]["defaults"] = {} defs["ImDrawList_PathArcToFast"][1]["funcname"] = "PathArcToFast" +defs["ImDrawList_PathArcToFast"][1]["ov_cimguiname"] = "ImDrawList_PathArcToFast" defs["ImDrawList_PathArcToFast"][1]["ret"] = "void" defs["ImDrawList_PathArcToFast"][1]["signature"] = "(const ImVec2,float,int,int)" defs["ImDrawList_PathArcToFast"][1]["stname"] = "ImDrawList" @@ -1405,6 +1443,7 @@ defs["ImDrawList_PathBezierCurveTo"][1]["comment"] = "" defs["ImDrawList_PathBezierCurveTo"][1]["defaults"] = {} defs["ImDrawList_PathBezierCurveTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathBezierCurveTo"][1]["funcname"] = "PathBezierCurveTo" +defs["ImDrawList_PathBezierCurveTo"][1]["ov_cimguiname"] = "ImDrawList_PathBezierCurveTo" defs["ImDrawList_PathBezierCurveTo"][1]["ret"] = "void" defs["ImDrawList_PathBezierCurveTo"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,int)" defs["ImDrawList_PathBezierCurveTo"][1]["stname"] = "ImDrawList" @@ -1422,6 +1461,7 @@ defs["ImDrawList_PathClear"][1]["cimguiname"] = "ImDrawList_PathClear" defs["ImDrawList_PathClear"][1]["comment"] = "" defs["ImDrawList_PathClear"][1]["defaults"] = {} defs["ImDrawList_PathClear"][1]["funcname"] = "PathClear" +defs["ImDrawList_PathClear"][1]["ov_cimguiname"] = "ImDrawList_PathClear" defs["ImDrawList_PathClear"][1]["ret"] = "void" defs["ImDrawList_PathClear"][1]["signature"] = "()" defs["ImDrawList_PathClear"][1]["stname"] = "ImDrawList" @@ -1442,6 +1482,7 @@ defs["ImDrawList_PathFillConvex"][1]["cimguiname"] = "ImDrawList_PathFillConvex" defs["ImDrawList_PathFillConvex"][1]["comment"] = "" defs["ImDrawList_PathFillConvex"][1]["defaults"] = {} defs["ImDrawList_PathFillConvex"][1]["funcname"] = "PathFillConvex" +defs["ImDrawList_PathFillConvex"][1]["ov_cimguiname"] = "ImDrawList_PathFillConvex" defs["ImDrawList_PathFillConvex"][1]["ret"] = "void" defs["ImDrawList_PathFillConvex"][1]["signature"] = "(ImU32)" defs["ImDrawList_PathFillConvex"][1]["stname"] = "ImDrawList" @@ -1462,6 +1503,7 @@ defs["ImDrawList_PathLineTo"][1]["cimguiname"] = "ImDrawList_PathLineTo" defs["ImDrawList_PathLineTo"][1]["comment"] = "" defs["ImDrawList_PathLineTo"][1]["defaults"] = {} defs["ImDrawList_PathLineTo"][1]["funcname"] = "PathLineTo" +defs["ImDrawList_PathLineTo"][1]["ov_cimguiname"] = "ImDrawList_PathLineTo" defs["ImDrawList_PathLineTo"][1]["ret"] = "void" defs["ImDrawList_PathLineTo"][1]["signature"] = "(const ImVec2)" defs["ImDrawList_PathLineTo"][1]["stname"] = "ImDrawList" @@ -1482,6 +1524,7 @@ defs["ImDrawList_PathLineToMergeDuplicate"][1]["cimguiname"] = "ImDrawList_PathL defs["ImDrawList_PathLineToMergeDuplicate"][1]["comment"] = "" defs["ImDrawList_PathLineToMergeDuplicate"][1]["defaults"] = {} defs["ImDrawList_PathLineToMergeDuplicate"][1]["funcname"] = "PathLineToMergeDuplicate" +defs["ImDrawList_PathLineToMergeDuplicate"][1]["ov_cimguiname"] = "ImDrawList_PathLineToMergeDuplicate" defs["ImDrawList_PathLineToMergeDuplicate"][1]["ret"] = "void" defs["ImDrawList_PathLineToMergeDuplicate"][1]["signature"] = "(const ImVec2)" defs["ImDrawList_PathLineToMergeDuplicate"][1]["stname"] = "ImDrawList" @@ -1513,6 +1556,7 @@ defs["ImDrawList_PathRect"][1]["defaults"] = {} defs["ImDrawList_PathRect"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_PathRect"][1]["defaults"]["rounding_corners_flags"] = "ImDrawCornerFlags_All" defs["ImDrawList_PathRect"][1]["funcname"] = "PathRect" +defs["ImDrawList_PathRect"][1]["ov_cimguiname"] = "ImDrawList_PathRect" defs["ImDrawList_PathRect"][1]["ret"] = "void" defs["ImDrawList_PathRect"][1]["signature"] = "(const ImVec2,const ImVec2,float,int)" defs["ImDrawList_PathRect"][1]["stname"] = "ImDrawList" @@ -1540,6 +1584,7 @@ defs["ImDrawList_PathStroke"][1]["comment"] = "" defs["ImDrawList_PathStroke"][1]["defaults"] = {} defs["ImDrawList_PathStroke"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_PathStroke"][1]["funcname"] = "PathStroke" +defs["ImDrawList_PathStroke"][1]["ov_cimguiname"] = "ImDrawList_PathStroke" defs["ImDrawList_PathStroke"][1]["ret"] = "void" defs["ImDrawList_PathStroke"][1]["signature"] = "(ImU32,bool,float)" defs["ImDrawList_PathStroke"][1]["stname"] = "ImDrawList" @@ -1557,6 +1602,7 @@ defs["ImDrawList_PopClipRect"][1]["cimguiname"] = "ImDrawList_PopClipRect" defs["ImDrawList_PopClipRect"][1]["comment"] = "" defs["ImDrawList_PopClipRect"][1]["defaults"] = {} defs["ImDrawList_PopClipRect"][1]["funcname"] = "PopClipRect" +defs["ImDrawList_PopClipRect"][1]["ov_cimguiname"] = "ImDrawList_PopClipRect" defs["ImDrawList_PopClipRect"][1]["ret"] = "void" defs["ImDrawList_PopClipRect"][1]["signature"] = "()" defs["ImDrawList_PopClipRect"][1]["stname"] = "ImDrawList" @@ -1574,6 +1620,7 @@ defs["ImDrawList_PopTextureID"][1]["cimguiname"] = "ImDrawList_PopTextureID" defs["ImDrawList_PopTextureID"][1]["comment"] = "" defs["ImDrawList_PopTextureID"][1]["defaults"] = {} defs["ImDrawList_PopTextureID"][1]["funcname"] = "PopTextureID" +defs["ImDrawList_PopTextureID"][1]["ov_cimguiname"] = "ImDrawList_PopTextureID" defs["ImDrawList_PopTextureID"][1]["ret"] = "void" defs["ImDrawList_PopTextureID"][1]["signature"] = "()" defs["ImDrawList_PopTextureID"][1]["stname"] = "ImDrawList" @@ -1618,6 +1665,7 @@ defs["ImDrawList_PrimQuadUV"][1]["cimguiname"] = "ImDrawList_PrimQuadUV" defs["ImDrawList_PrimQuadUV"][1]["comment"] = "" defs["ImDrawList_PrimQuadUV"][1]["defaults"] = {} defs["ImDrawList_PrimQuadUV"][1]["funcname"] = "PrimQuadUV" +defs["ImDrawList_PrimQuadUV"][1]["ov_cimguiname"] = "ImDrawList_PrimQuadUV" defs["ImDrawList_PrimQuadUV"][1]["ret"] = "void" defs["ImDrawList_PrimQuadUV"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" defs["ImDrawList_PrimQuadUV"][1]["stname"] = "ImDrawList" @@ -1644,6 +1692,7 @@ defs["ImDrawList_PrimRect"][1]["cimguiname"] = "ImDrawList_PrimRect" defs["ImDrawList_PrimRect"][1]["comment"] = "" defs["ImDrawList_PrimRect"][1]["defaults"] = {} defs["ImDrawList_PrimRect"][1]["funcname"] = "PrimRect" +defs["ImDrawList_PrimRect"][1]["ov_cimguiname"] = "ImDrawList_PrimRect" defs["ImDrawList_PrimRect"][1]["ret"] = "void" defs["ImDrawList_PrimRect"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" defs["ImDrawList_PrimRect"][1]["stname"] = "ImDrawList" @@ -1676,6 +1725,7 @@ defs["ImDrawList_PrimRectUV"][1]["cimguiname"] = "ImDrawList_PrimRectUV" defs["ImDrawList_PrimRectUV"][1]["comment"] = "" defs["ImDrawList_PrimRectUV"][1]["defaults"] = {} defs["ImDrawList_PrimRectUV"][1]["funcname"] = "PrimRectUV" +defs["ImDrawList_PrimRectUV"][1]["ov_cimguiname"] = "ImDrawList_PrimRectUV" defs["ImDrawList_PrimRectUV"][1]["ret"] = "void" defs["ImDrawList_PrimRectUV"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" defs["ImDrawList_PrimRectUV"][1]["stname"] = "ImDrawList" @@ -1699,6 +1749,7 @@ defs["ImDrawList_PrimReserve"][1]["cimguiname"] = "ImDrawList_PrimReserve" defs["ImDrawList_PrimReserve"][1]["comment"] = "" defs["ImDrawList_PrimReserve"][1]["defaults"] = {} defs["ImDrawList_PrimReserve"][1]["funcname"] = "PrimReserve" +defs["ImDrawList_PrimReserve"][1]["ov_cimguiname"] = "ImDrawList_PrimReserve" defs["ImDrawList_PrimReserve"][1]["ret"] = "void" defs["ImDrawList_PrimReserve"][1]["signature"] = "(int,int)" defs["ImDrawList_PrimReserve"][1]["stname"] = "ImDrawList" @@ -1725,6 +1776,7 @@ defs["ImDrawList_PrimVtx"][1]["cimguiname"] = "ImDrawList_PrimVtx" defs["ImDrawList_PrimVtx"][1]["comment"] = "" defs["ImDrawList_PrimVtx"][1]["defaults"] = {} defs["ImDrawList_PrimVtx"][1]["funcname"] = "PrimVtx" +defs["ImDrawList_PrimVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimVtx" defs["ImDrawList_PrimVtx"][1]["ret"] = "void" defs["ImDrawList_PrimVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" defs["ImDrawList_PrimVtx"][1]["stname"] = "ImDrawList" @@ -1745,6 +1797,7 @@ defs["ImDrawList_PrimWriteIdx"][1]["cimguiname"] = "ImDrawList_PrimWriteIdx" defs["ImDrawList_PrimWriteIdx"][1]["comment"] = "" defs["ImDrawList_PrimWriteIdx"][1]["defaults"] = {} defs["ImDrawList_PrimWriteIdx"][1]["funcname"] = "PrimWriteIdx" +defs["ImDrawList_PrimWriteIdx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteIdx" defs["ImDrawList_PrimWriteIdx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteIdx"][1]["signature"] = "(ImDrawIdx)" defs["ImDrawList_PrimWriteIdx"][1]["stname"] = "ImDrawList" @@ -1771,6 +1824,7 @@ defs["ImDrawList_PrimWriteVtx"][1]["cimguiname"] = "ImDrawList_PrimWriteVtx" defs["ImDrawList_PrimWriteVtx"][1]["comment"] = "" defs["ImDrawList_PrimWriteVtx"][1]["defaults"] = {} defs["ImDrawList_PrimWriteVtx"][1]["funcname"] = "PrimWriteVtx" +defs["ImDrawList_PrimWriteVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteVtx" defs["ImDrawList_PrimWriteVtx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" defs["ImDrawList_PrimWriteVtx"][1]["stname"] = "ImDrawList" @@ -1798,6 +1852,7 @@ defs["ImDrawList_PushClipRect"][1]["comment"] = "" defs["ImDrawList_PushClipRect"][1]["defaults"] = {} defs["ImDrawList_PushClipRect"][1]["defaults"]["intersect_with_current_clip_rect"] = "false" defs["ImDrawList_PushClipRect"][1]["funcname"] = "PushClipRect" +defs["ImDrawList_PushClipRect"][1]["ov_cimguiname"] = "ImDrawList_PushClipRect" defs["ImDrawList_PushClipRect"][1]["ret"] = "void" defs["ImDrawList_PushClipRect"][1]["signature"] = "(ImVec2,ImVec2,bool)" defs["ImDrawList_PushClipRect"][1]["stname"] = "ImDrawList" @@ -1815,6 +1870,7 @@ defs["ImDrawList_PushClipRectFullScreen"][1]["cimguiname"] = "ImDrawList_PushCli defs["ImDrawList_PushClipRectFullScreen"][1]["comment"] = "" defs["ImDrawList_PushClipRectFullScreen"][1]["defaults"] = {} defs["ImDrawList_PushClipRectFullScreen"][1]["funcname"] = "PushClipRectFullScreen" +defs["ImDrawList_PushClipRectFullScreen"][1]["ov_cimguiname"] = "ImDrawList_PushClipRectFullScreen" defs["ImDrawList_PushClipRectFullScreen"][1]["ret"] = "void" defs["ImDrawList_PushClipRectFullScreen"][1]["signature"] = "()" defs["ImDrawList_PushClipRectFullScreen"][1]["stname"] = "ImDrawList" @@ -1835,6 +1891,7 @@ defs["ImDrawList_PushTextureID"][1]["cimguiname"] = "ImDrawList_PushTextureID" defs["ImDrawList_PushTextureID"][1]["comment"] = "" defs["ImDrawList_PushTextureID"][1]["defaults"] = {} defs["ImDrawList_PushTextureID"][1]["funcname"] = "PushTextureID" +defs["ImDrawList_PushTextureID"][1]["ov_cimguiname"] = "ImDrawList_PushTextureID" defs["ImDrawList_PushTextureID"][1]["ret"] = "void" defs["ImDrawList_PushTextureID"][1]["signature"] = "(ImTextureID)" defs["ImDrawList_PushTextureID"][1]["stname"] = "ImDrawList" @@ -1852,6 +1909,7 @@ defs["ImDrawList_UpdateClipRect"][1]["cimguiname"] = "ImDrawList_UpdateClipRect" defs["ImDrawList_UpdateClipRect"][1]["comment"] = "" defs["ImDrawList_UpdateClipRect"][1]["defaults"] = {} defs["ImDrawList_UpdateClipRect"][1]["funcname"] = "UpdateClipRect" +defs["ImDrawList_UpdateClipRect"][1]["ov_cimguiname"] = "ImDrawList_UpdateClipRect" defs["ImDrawList_UpdateClipRect"][1]["ret"] = "void" defs["ImDrawList_UpdateClipRect"][1]["signature"] = "()" defs["ImDrawList_UpdateClipRect"][1]["stname"] = "ImDrawList" @@ -1869,6 +1927,7 @@ defs["ImDrawList_UpdateTextureID"][1]["cimguiname"] = "ImDrawList_UpdateTextureI defs["ImDrawList_UpdateTextureID"][1]["comment"] = "" defs["ImDrawList_UpdateTextureID"][1]["defaults"] = {} defs["ImDrawList_UpdateTextureID"][1]["funcname"] = "UpdateTextureID" +defs["ImDrawList_UpdateTextureID"][1]["ov_cimguiname"] = "ImDrawList_UpdateTextureID" defs["ImDrawList_UpdateTextureID"][1]["ret"] = "void" defs["ImDrawList_UpdateTextureID"][1]["signature"] = "()" defs["ImDrawList_UpdateTextureID"][1]["stname"] = "ImDrawList" @@ -1921,6 +1980,7 @@ defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["comment"] = "" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["defaults"] = {} defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["defaults"]["offset"] = "ImVec2(0,0)" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["funcname"] = "AddCustomRectFontGlyph" +defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["ov_cimguiname"] = "ImFontAtlas_AddCustomRectFontGlyph" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["ret"] = "int" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["signature"] = "(ImFont*,ImWchar,int,int,float,const ImVec2)" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["stname"] = "ImFontAtlas" @@ -1947,6 +2007,7 @@ defs["ImFontAtlas_AddCustomRectRegular"][1]["cimguiname"] = "ImFontAtlas_AddCust defs["ImFontAtlas_AddCustomRectRegular"][1]["comment"] = "" defs["ImFontAtlas_AddCustomRectRegular"][1]["defaults"] = {} defs["ImFontAtlas_AddCustomRectRegular"][1]["funcname"] = "AddCustomRectRegular" +defs["ImFontAtlas_AddCustomRectRegular"][1]["ov_cimguiname"] = "ImFontAtlas_AddCustomRectRegular" defs["ImFontAtlas_AddCustomRectRegular"][1]["ret"] = "int" defs["ImFontAtlas_AddCustomRectRegular"][1]["signature"] = "(unsigned int,int,int)" defs["ImFontAtlas_AddCustomRectRegular"][1]["stname"] = "ImFontAtlas" @@ -1967,6 +2028,7 @@ defs["ImFontAtlas_AddFont"][1]["cimguiname"] = "ImFontAtlas_AddFont" defs["ImFontAtlas_AddFont"][1]["comment"] = "" defs["ImFontAtlas_AddFont"][1]["defaults"] = {} defs["ImFontAtlas_AddFont"][1]["funcname"] = "AddFont" +defs["ImFontAtlas_AddFont"][1]["ov_cimguiname"] = "ImFontAtlas_AddFont" defs["ImFontAtlas_AddFont"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFont"][1]["signature"] = "(const ImFontConfig*)" defs["ImFontAtlas_AddFont"][1]["stname"] = "ImFontAtlas" @@ -1981,13 +2043,14 @@ defs["ImFontAtlas_AddFontDefault"][1]["argsT"][1]["type"] = "ImFontAtlas*" defs["ImFontAtlas_AddFontDefault"][1]["argsT"][2] = {} defs["ImFontAtlas_AddFontDefault"][1]["argsT"][2]["name"] = "font_cfg" defs["ImFontAtlas_AddFontDefault"][1]["argsT"][2]["type"] = "const ImFontConfig*" -defs["ImFontAtlas_AddFontDefault"][1]["argsoriginal"] = "(const ImFontConfig* font_cfg=((void *)0))" +defs["ImFontAtlas_AddFontDefault"][1]["argsoriginal"] = "(const ImFontConfig* font_cfg=((void*)0))" defs["ImFontAtlas_AddFontDefault"][1]["call_args"] = "(font_cfg)" defs["ImFontAtlas_AddFontDefault"][1]["cimguiname"] = "ImFontAtlas_AddFontDefault" defs["ImFontAtlas_AddFontDefault"][1]["comment"] = "" defs["ImFontAtlas_AddFontDefault"][1]["defaults"] = {} -defs["ImFontAtlas_AddFontDefault"][1]["defaults"]["font_cfg"] = "((void *)0)" +defs["ImFontAtlas_AddFontDefault"][1]["defaults"]["font_cfg"] = "((void*)0)" defs["ImFontAtlas_AddFontDefault"][1]["funcname"] = "AddFontDefault" +defs["ImFontAtlas_AddFontDefault"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontDefault" defs["ImFontAtlas_AddFontDefault"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontDefault"][1]["signature"] = "(const ImFontConfig*)" defs["ImFontAtlas_AddFontDefault"][1]["stname"] = "ImFontAtlas" @@ -2011,14 +2074,15 @@ defs["ImFontAtlas_AddFontFromFileTTF"][1]["argsT"][4]["type"] = "const ImFontCon defs["ImFontAtlas_AddFontFromFileTTF"][1]["argsT"][5] = {} defs["ImFontAtlas_AddFontFromFileTTF"][1]["argsT"][5]["name"] = "glyph_ranges" defs["ImFontAtlas_AddFontFromFileTTF"][1]["argsT"][5]["type"] = "const ImWchar*" -defs["ImFontAtlas_AddFontFromFileTTF"][1]["argsoriginal"] = "(const char* filename,float size_pixels,const ImFontConfig* font_cfg=((void *)0),const ImWchar* glyph_ranges=((void *)0))" +defs["ImFontAtlas_AddFontFromFileTTF"][1]["argsoriginal"] = "(const char* filename,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" defs["ImFontAtlas_AddFontFromFileTTF"][1]["call_args"] = "(filename,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromFileTTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromFileTTF" defs["ImFontAtlas_AddFontFromFileTTF"][1]["comment"] = "" defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"] = {} -defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["font_cfg"] = "((void *)0)" -defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["glyph_ranges"] = "((void *)0)" +defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["font_cfg"] = "((void*)0)" +defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["glyph_ranges"] = "((void*)0)" defs["ImFontAtlas_AddFontFromFileTTF"][1]["funcname"] = "AddFontFromFileTTF" +defs["ImFontAtlas_AddFontFromFileTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromFileTTF" defs["ImFontAtlas_AddFontFromFileTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromFileTTF"][1]["signature"] = "(const char*,float,const ImFontConfig*,const ImWchar*)" defs["ImFontAtlas_AddFontFromFileTTF"][1]["stname"] = "ImFontAtlas" @@ -2042,14 +2106,15 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["argsT"][4]["type"] defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["argsT"][5] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["argsT"][5]["name"] = "glyph_ranges" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["argsT"][5]["type"] = "const ImWchar*" -defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["argsoriginal"] = "(const char* compressed_font_data_base85,float size_pixels,const ImFontConfig* font_cfg=((void *)0),const ImWchar* glyph_ranges=((void *)0))" +defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["argsoriginal"] = "(const char* compressed_font_data_base85,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["call_args"] = "(compressed_font_data_base85,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["comment"] = "" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"] = {} -defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["font_cfg"] = "((void *)0)" -defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["glyph_ranges"] = "((void *)0)" +defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["font_cfg"] = "((void*)0)" +defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["glyph_ranges"] = "((void*)0)" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["funcname"] = "AddFontFromMemoryCompressedBase85TTF" +defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["signature"] = "(const char*,float,const ImFontConfig*,const ImWchar*)" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["stname"] = "ImFontAtlas" @@ -2076,14 +2141,15 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][5]["type"] = "con defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][6] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][6]["name"] = "glyph_ranges" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][6]["type"] = "const ImWchar*" -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsoriginal"] = "(const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg=((void *)0),const ImWchar* glyph_ranges=((void *)0))" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsoriginal"] = "(const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["call_args"] = "(compressed_font_data,compressed_font_size,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedTTF" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["comment"] = "" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"] = {} -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["font_cfg"] = "((void *)0)" -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["glyph_ranges"] = "((void *)0)" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["font_cfg"] = "((void*)0)" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["glyph_ranges"] = "((void*)0)" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["funcname"] = "AddFontFromMemoryCompressedTTF" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedTTF" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["signature"] = "(const void*,int,float,const ImFontConfig*,const ImWchar*)" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["stname"] = "ImFontAtlas" @@ -2110,14 +2176,15 @@ defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][5]["type"] = "const ImFontC defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][6] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][6]["name"] = "glyph_ranges" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][6]["type"] = "const ImWchar*" -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsoriginal"] = "(void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg=((void *)0),const ImWchar* glyph_ranges=((void *)0))" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsoriginal"] = "(void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["call_args"] = "(font_data,font_size,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromMemoryTTF" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["comment"] = "" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"] = {} -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["font_cfg"] = "((void *)0)" -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["glyph_ranges"] = "((void *)0)" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["font_cfg"] = "((void*)0)" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["glyph_ranges"] = "((void*)0)" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["funcname"] = "AddFontFromMemoryTTF" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryTTF" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["signature"] = "(void*,int,float,const ImFontConfig*,const ImWchar*)" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["stname"] = "ImFontAtlas" @@ -2135,6 +2202,7 @@ defs["ImFontAtlas_Build"][1]["cimguiname"] = "ImFontAtlas_Build" defs["ImFontAtlas_Build"][1]["comment"] = "" defs["ImFontAtlas_Build"][1]["defaults"] = {} defs["ImFontAtlas_Build"][1]["funcname"] = "Build" +defs["ImFontAtlas_Build"][1]["ov_cimguiname"] = "ImFontAtlas_Build" defs["ImFontAtlas_Build"][1]["ret"] = "bool" defs["ImFontAtlas_Build"][1]["signature"] = "()" defs["ImFontAtlas_Build"][1]["stname"] = "ImFontAtlas" @@ -2161,6 +2229,7 @@ defs["ImFontAtlas_CalcCustomRectUV"][1]["cimguiname"] = "ImFontAtlas_CalcCustomR defs["ImFontAtlas_CalcCustomRectUV"][1]["comment"] = "" defs["ImFontAtlas_CalcCustomRectUV"][1]["defaults"] = {} defs["ImFontAtlas_CalcCustomRectUV"][1]["funcname"] = "CalcCustomRectUV" +defs["ImFontAtlas_CalcCustomRectUV"][1]["ov_cimguiname"] = "ImFontAtlas_CalcCustomRectUV" defs["ImFontAtlas_CalcCustomRectUV"][1]["ret"] = "void" defs["ImFontAtlas_CalcCustomRectUV"][1]["signature"] = "(const CustomRect*,ImVec2*,ImVec2*)" defs["ImFontAtlas_CalcCustomRectUV"][1]["stname"] = "ImFontAtlas" @@ -2178,6 +2247,7 @@ defs["ImFontAtlas_Clear"][1]["cimguiname"] = "ImFontAtlas_Clear" defs["ImFontAtlas_Clear"][1]["comment"] = "" defs["ImFontAtlas_Clear"][1]["defaults"] = {} defs["ImFontAtlas_Clear"][1]["funcname"] = "Clear" +defs["ImFontAtlas_Clear"][1]["ov_cimguiname"] = "ImFontAtlas_Clear" defs["ImFontAtlas_Clear"][1]["ret"] = "void" defs["ImFontAtlas_Clear"][1]["signature"] = "()" defs["ImFontAtlas_Clear"][1]["stname"] = "ImFontAtlas" @@ -2195,6 +2265,7 @@ defs["ImFontAtlas_ClearFonts"][1]["cimguiname"] = "ImFontAtlas_ClearFonts" defs["ImFontAtlas_ClearFonts"][1]["comment"] = "" defs["ImFontAtlas_ClearFonts"][1]["defaults"] = {} defs["ImFontAtlas_ClearFonts"][1]["funcname"] = "ClearFonts" +defs["ImFontAtlas_ClearFonts"][1]["ov_cimguiname"] = "ImFontAtlas_ClearFonts" defs["ImFontAtlas_ClearFonts"][1]["ret"] = "void" defs["ImFontAtlas_ClearFonts"][1]["signature"] = "()" defs["ImFontAtlas_ClearFonts"][1]["stname"] = "ImFontAtlas" @@ -2212,6 +2283,7 @@ defs["ImFontAtlas_ClearInputData"][1]["cimguiname"] = "ImFontAtlas_ClearInputDat defs["ImFontAtlas_ClearInputData"][1]["comment"] = "" defs["ImFontAtlas_ClearInputData"][1]["defaults"] = {} defs["ImFontAtlas_ClearInputData"][1]["funcname"] = "ClearInputData" +defs["ImFontAtlas_ClearInputData"][1]["ov_cimguiname"] = "ImFontAtlas_ClearInputData" defs["ImFontAtlas_ClearInputData"][1]["ret"] = "void" defs["ImFontAtlas_ClearInputData"][1]["signature"] = "()" defs["ImFontAtlas_ClearInputData"][1]["stname"] = "ImFontAtlas" @@ -2229,6 +2301,7 @@ defs["ImFontAtlas_ClearTexData"][1]["cimguiname"] = "ImFontAtlas_ClearTexData" defs["ImFontAtlas_ClearTexData"][1]["comment"] = "" defs["ImFontAtlas_ClearTexData"][1]["defaults"] = {} defs["ImFontAtlas_ClearTexData"][1]["funcname"] = "ClearTexData" +defs["ImFontAtlas_ClearTexData"][1]["ov_cimguiname"] = "ImFontAtlas_ClearTexData" defs["ImFontAtlas_ClearTexData"][1]["ret"] = "void" defs["ImFontAtlas_ClearTexData"][1]["signature"] = "()" defs["ImFontAtlas_ClearTexData"][1]["stname"] = "ImFontAtlas" @@ -2249,6 +2322,7 @@ defs["ImFontAtlas_GetCustomRectByIndex"][1]["cimguiname"] = "ImFontAtlas_GetCust defs["ImFontAtlas_GetCustomRectByIndex"][1]["comment"] = "" defs["ImFontAtlas_GetCustomRectByIndex"][1]["defaults"] = {} defs["ImFontAtlas_GetCustomRectByIndex"][1]["funcname"] = "GetCustomRectByIndex" +defs["ImFontAtlas_GetCustomRectByIndex"][1]["ov_cimguiname"] = "ImFontAtlas_GetCustomRectByIndex" defs["ImFontAtlas_GetCustomRectByIndex"][1]["ret"] = "const CustomRect*" defs["ImFontAtlas_GetCustomRectByIndex"][1]["signature"] = "(int)" defs["ImFontAtlas_GetCustomRectByIndex"][1]["stname"] = "ImFontAtlas" @@ -2266,6 +2340,7 @@ defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["cimguiname"] = "ImFontAtlas_Ge defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["comment"] = "" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["funcname"] = "GetGlyphRangesChineseFull" +defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseFull" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["signature"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["stname"] = "ImFontAtlas" @@ -2283,6 +2358,7 @@ defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["cimguiname"] = "Im defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["comment"] = "" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["funcname"] = "GetGlyphRangesChineseSimplifiedCommon" +defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["signature"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["stname"] = "ImFontAtlas" @@ -2300,6 +2376,7 @@ defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["cimguiname"] = "ImFontAtlas_GetGl defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["comment"] = "" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["funcname"] = "GetGlyphRangesCyrillic" +defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesCyrillic" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["signature"] = "()" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["stname"] = "ImFontAtlas" @@ -2317,6 +2394,7 @@ defs["ImFontAtlas_GetGlyphRangesDefault"][1]["cimguiname"] = "ImFontAtlas_GetGly defs["ImFontAtlas_GetGlyphRangesDefault"][1]["comment"] = "" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesDefault"][1]["funcname"] = "GetGlyphRangesDefault" +defs["ImFontAtlas_GetGlyphRangesDefault"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesDefault" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["signature"] = "()" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["stname"] = "ImFontAtlas" @@ -2334,6 +2412,7 @@ defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["cimguiname"] = "ImFontAtlas_GetGl defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["comment"] = "" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["funcname"] = "GetGlyphRangesJapanese" +defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesJapanese" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["signature"] = "()" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["stname"] = "ImFontAtlas" @@ -2351,6 +2430,7 @@ defs["ImFontAtlas_GetGlyphRangesKorean"][1]["cimguiname"] = "ImFontAtlas_GetGlyp defs["ImFontAtlas_GetGlyphRangesKorean"][1]["comment"] = "" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesKorean"][1]["funcname"] = "GetGlyphRangesKorean" +defs["ImFontAtlas_GetGlyphRangesKorean"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesKorean" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["signature"] = "()" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["stname"] = "ImFontAtlas" @@ -2368,6 +2448,7 @@ defs["ImFontAtlas_GetGlyphRangesThai"][1]["cimguiname"] = "ImFontAtlas_GetGlyphR defs["ImFontAtlas_GetGlyphRangesThai"][1]["comment"] = "" defs["ImFontAtlas_GetGlyphRangesThai"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesThai"][1]["funcname"] = "GetGlyphRangesThai" +defs["ImFontAtlas_GetGlyphRangesThai"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesThai" defs["ImFontAtlas_GetGlyphRangesThai"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesThai"][1]["signature"] = "()" defs["ImFontAtlas_GetGlyphRangesThai"][1]["stname"] = "ImFontAtlas" @@ -2400,6 +2481,7 @@ defs["ImFontAtlas_GetMouseCursorTexData"][1]["cimguiname"] = "ImFontAtlas_GetMou defs["ImFontAtlas_GetMouseCursorTexData"][1]["comment"] = "" defs["ImFontAtlas_GetMouseCursorTexData"][1]["defaults"] = {} defs["ImFontAtlas_GetMouseCursorTexData"][1]["funcname"] = "GetMouseCursorTexData" +defs["ImFontAtlas_GetMouseCursorTexData"][1]["ov_cimguiname"] = "ImFontAtlas_GetMouseCursorTexData" defs["ImFontAtlas_GetMouseCursorTexData"][1]["ret"] = "bool" defs["ImFontAtlas_GetMouseCursorTexData"][1]["signature"] = "(ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])" defs["ImFontAtlas_GetMouseCursorTexData"][1]["stname"] = "ImFontAtlas" @@ -2423,13 +2505,14 @@ defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["argsT"][4]["type"] = "int*" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["argsT"][5] = {} defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["argsT"][5]["name"] = "out_bytes_per_pixel" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["argsT"][5]["type"] = "int*" -defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["argsoriginal"] = "(unsigned char** out_pixels,int* out_width,int* out_height,int* out_bytes_per_pixel=((void *)0))" +defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["argsoriginal"] = "(unsigned char** out_pixels,int* out_width,int* out_height,int* out_bytes_per_pixel=((void*)0))" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["call_args"] = "(out_pixels,out_width,out_height,out_bytes_per_pixel)" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["cimguiname"] = "ImFontAtlas_GetTexDataAsAlpha8" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["comment"] = "" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"] = {} -defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"]["out_bytes_per_pixel"] = "((void *)0)" +defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"]["out_bytes_per_pixel"] = "((void*)0)" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["funcname"] = "GetTexDataAsAlpha8" +defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["ov_cimguiname"] = "ImFontAtlas_GetTexDataAsAlpha8" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["ret"] = "void" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["signature"] = "(unsigned char**,int*,int*,int*)" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["stname"] = "ImFontAtlas" @@ -2453,13 +2536,14 @@ defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["argsT"][4]["type"] = "int*" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["argsT"][5] = {} defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["argsT"][5]["name"] = "out_bytes_per_pixel" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["argsT"][5]["type"] = "int*" -defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["argsoriginal"] = "(unsigned char** out_pixels,int* out_width,int* out_height,int* out_bytes_per_pixel=((void *)0))" +defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["argsoriginal"] = "(unsigned char** out_pixels,int* out_width,int* out_height,int* out_bytes_per_pixel=((void*)0))" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["call_args"] = "(out_pixels,out_width,out_height,out_bytes_per_pixel)" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["cimguiname"] = "ImFontAtlas_GetTexDataAsRGBA32" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["comment"] = "" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"] = {} -defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"]["out_bytes_per_pixel"] = "((void *)0)" +defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"]["out_bytes_per_pixel"] = "((void*)0)" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["funcname"] = "GetTexDataAsRGBA32" +defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["ov_cimguiname"] = "ImFontAtlas_GetTexDataAsRGBA32" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["ret"] = "void" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["signature"] = "(unsigned char**,int*,int*,int*)" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["stname"] = "ImFontAtlas" @@ -2475,6 +2559,7 @@ defs["ImFontAtlas_ImFontAtlas"][1]["comment"] = "" defs["ImFontAtlas_ImFontAtlas"][1]["constructor"] = true defs["ImFontAtlas_ImFontAtlas"][1]["defaults"] = {} defs["ImFontAtlas_ImFontAtlas"][1]["funcname"] = "ImFontAtlas" +defs["ImFontAtlas_ImFontAtlas"][1]["ov_cimguiname"] = "ImFontAtlas_ImFontAtlas" defs["ImFontAtlas_ImFontAtlas"][1]["signature"] = "()" defs["ImFontAtlas_ImFontAtlas"][1]["stname"] = "ImFontAtlas" defs["ImFontAtlas_ImFontAtlas"]["()"] = defs["ImFontAtlas_ImFontAtlas"][1] @@ -2491,6 +2576,7 @@ defs["ImFontAtlas_IsBuilt"][1]["cimguiname"] = "ImFontAtlas_IsBuilt" defs["ImFontAtlas_IsBuilt"][1]["comment"] = "" defs["ImFontAtlas_IsBuilt"][1]["defaults"] = {} defs["ImFontAtlas_IsBuilt"][1]["funcname"] = "IsBuilt" +defs["ImFontAtlas_IsBuilt"][1]["ov_cimguiname"] = "ImFontAtlas_IsBuilt" defs["ImFontAtlas_IsBuilt"][1]["ret"] = "bool" defs["ImFontAtlas_IsBuilt"][1]["signature"] = "()" defs["ImFontAtlas_IsBuilt"][1]["stname"] = "ImFontAtlas" @@ -2511,6 +2597,7 @@ defs["ImFontAtlas_SetTexID"][1]["cimguiname"] = "ImFontAtlas_SetTexID" defs["ImFontAtlas_SetTexID"][1]["comment"] = "" defs["ImFontAtlas_SetTexID"][1]["defaults"] = {} defs["ImFontAtlas_SetTexID"][1]["funcname"] = "SetTexID" +defs["ImFontAtlas_SetTexID"][1]["ov_cimguiname"] = "ImFontAtlas_SetTexID" defs["ImFontAtlas_SetTexID"][1]["ret"] = "void" defs["ImFontAtlas_SetTexID"][1]["signature"] = "(ImTextureID)" defs["ImFontAtlas_SetTexID"][1]["stname"] = "ImFontAtlas" @@ -2542,6 +2629,7 @@ defs["ImFontConfig_ImFontConfig"][1]["comment"] = "" defs["ImFontConfig_ImFontConfig"][1]["constructor"] = true defs["ImFontConfig_ImFontConfig"][1]["defaults"] = {} defs["ImFontConfig_ImFontConfig"][1]["funcname"] = "ImFontConfig" +defs["ImFontConfig_ImFontConfig"][1]["ov_cimguiname"] = "ImFontConfig_ImFontConfig" defs["ImFontConfig_ImFontConfig"][1]["signature"] = "()" defs["ImFontConfig_ImFontConfig"][1]["stname"] = "ImFontConfig" defs["ImFontConfig_ImFontConfig"]["()"] = defs["ImFontConfig_ImFontConfig"][1] @@ -2577,6 +2665,7 @@ defs["ImFontGlyphRangesBuilder_AddChar"][1]["cimguiname"] = "ImFontGlyphRangesBu defs["ImFontGlyphRangesBuilder_AddChar"][1]["comment"] = "" defs["ImFontGlyphRangesBuilder_AddChar"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddChar"][1]["funcname"] = "AddChar" +defs["ImFontGlyphRangesBuilder_AddChar"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddChar" defs["ImFontGlyphRangesBuilder_AddChar"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddChar"][1]["signature"] = "(ImWchar)" defs["ImFontGlyphRangesBuilder_AddChar"][1]["stname"] = "ImFontGlyphRangesBuilder" @@ -2597,6 +2686,7 @@ defs["ImFontGlyphRangesBuilder_AddRanges"][1]["cimguiname"] = "ImFontGlyphRanges defs["ImFontGlyphRangesBuilder_AddRanges"][1]["comment"] = "" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddRanges"][1]["funcname"] = "AddRanges" +defs["ImFontGlyphRangesBuilder_AddRanges"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddRanges" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["signature"] = "(const ImWchar*)" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["stname"] = "ImFontGlyphRangesBuilder" @@ -2614,13 +2704,14 @@ defs["ImFontGlyphRangesBuilder_AddText"][1]["argsT"][2]["type"] = "const char*" defs["ImFontGlyphRangesBuilder_AddText"][1]["argsT"][3] = {} defs["ImFontGlyphRangesBuilder_AddText"][1]["argsT"][3]["name"] = "text_end" defs["ImFontGlyphRangesBuilder_AddText"][1]["argsT"][3]["type"] = "const char*" -defs["ImFontGlyphRangesBuilder_AddText"][1]["argsoriginal"] = "(const char* text,const char* text_end=((void *)0))" +defs["ImFontGlyphRangesBuilder_AddText"][1]["argsoriginal"] = "(const char* text,const char* text_end=((void*)0))" defs["ImFontGlyphRangesBuilder_AddText"][1]["call_args"] = "(text,text_end)" defs["ImFontGlyphRangesBuilder_AddText"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_AddText" defs["ImFontGlyphRangesBuilder_AddText"][1]["comment"] = "" defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"] = {} -defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"]["text_end"] = "((void *)0)" +defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"]["text_end"] = "((void*)0)" defs["ImFontGlyphRangesBuilder_AddText"][1]["funcname"] = "AddText" +defs["ImFontGlyphRangesBuilder_AddText"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddText" defs["ImFontGlyphRangesBuilder_AddText"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddText"][1]["signature"] = "(const char*,const char*)" defs["ImFontGlyphRangesBuilder_AddText"][1]["stname"] = "ImFontGlyphRangesBuilder" @@ -2641,6 +2732,7 @@ defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["cimguiname"] = "ImFontGlyphRang defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["comment"] = "" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["funcname"] = "BuildRanges" +defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_BuildRanges" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["signature"] = "(ImVector_ImWchar*)" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["stname"] = "ImFontGlyphRangesBuilder" @@ -2661,6 +2753,7 @@ defs["ImFontGlyphRangesBuilder_GetBit"][1]["cimguiname"] = "ImFontGlyphRangesBui defs["ImFontGlyphRangesBuilder_GetBit"][1]["comment"] = "" defs["ImFontGlyphRangesBuilder_GetBit"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_GetBit"][1]["funcname"] = "GetBit" +defs["ImFontGlyphRangesBuilder_GetBit"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_GetBit" defs["ImFontGlyphRangesBuilder_GetBit"][1]["ret"] = "bool" defs["ImFontGlyphRangesBuilder_GetBit"][1]["signature"] = "(int)" defs["ImFontGlyphRangesBuilder_GetBit"][1]["stname"] = "ImFontGlyphRangesBuilder" @@ -2676,6 +2769,7 @@ defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["comment"] = "" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["constructor"] = true defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["funcname"] = "ImFontGlyphRangesBuilder" +defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["signature"] = "()" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["stname"] = "ImFontGlyphRangesBuilder" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"]["()"] = defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1] @@ -2695,6 +2789,7 @@ defs["ImFontGlyphRangesBuilder_SetBit"][1]["cimguiname"] = "ImFontGlyphRangesBui defs["ImFontGlyphRangesBuilder_SetBit"][1]["comment"] = "" defs["ImFontGlyphRangesBuilder_SetBit"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_SetBit"][1]["funcname"] = "SetBit" +defs["ImFontGlyphRangesBuilder_SetBit"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_SetBit" defs["ImFontGlyphRangesBuilder_SetBit"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_SetBit"][1]["signature"] = "(int)" defs["ImFontGlyphRangesBuilder_SetBit"][1]["stname"] = "ImFontGlyphRangesBuilder" @@ -2758,6 +2853,7 @@ defs["ImFont_AddGlyph"][1]["cimguiname"] = "ImFont_AddGlyph" defs["ImFont_AddGlyph"][1]["comment"] = "" defs["ImFont_AddGlyph"][1]["defaults"] = {} defs["ImFont_AddGlyph"][1]["funcname"] = "AddGlyph" +defs["ImFont_AddGlyph"][1]["ov_cimguiname"] = "ImFont_AddGlyph" defs["ImFont_AddGlyph"][1]["ret"] = "void" defs["ImFont_AddGlyph"][1]["signature"] = "(ImWchar,float,float,float,float,float,float,float,float,float)" defs["ImFont_AddGlyph"][1]["stname"] = "ImFont" @@ -2785,6 +2881,7 @@ defs["ImFont_AddRemapChar"][1]["comment"] = "" defs["ImFont_AddRemapChar"][1]["defaults"] = {} defs["ImFont_AddRemapChar"][1]["defaults"]["overwrite_dst"] = "true" defs["ImFont_AddRemapChar"][1]["funcname"] = "AddRemapChar" +defs["ImFont_AddRemapChar"][1]["ov_cimguiname"] = "ImFont_AddRemapChar" defs["ImFont_AddRemapChar"][1]["ret"] = "void" defs["ImFont_AddRemapChar"][1]["signature"] = "(ImWchar,ImWchar,bool)" defs["ImFont_AddRemapChar"][1]["stname"] = "ImFont" @@ -2802,6 +2899,7 @@ defs["ImFont_BuildLookupTable"][1]["cimguiname"] = "ImFont_BuildLookupTable" defs["ImFont_BuildLookupTable"][1]["comment"] = "" defs["ImFont_BuildLookupTable"][1]["defaults"] = {} defs["ImFont_BuildLookupTable"][1]["funcname"] = "BuildLookupTable" +defs["ImFont_BuildLookupTable"][1]["ov_cimguiname"] = "ImFont_BuildLookupTable" defs["ImFont_BuildLookupTable"][1]["ret"] = "void" defs["ImFont_BuildLookupTable"][1]["signature"] = "()" defs["ImFont_BuildLookupTable"][1]["stname"] = "ImFont" @@ -2831,14 +2929,15 @@ defs["ImFont_CalcTextSizeA"][1]["argsT"][6]["type"] = "const char*" defs["ImFont_CalcTextSizeA"][1]["argsT"][7] = {} defs["ImFont_CalcTextSizeA"][1]["argsT"][7]["name"] = "remaining" defs["ImFont_CalcTextSizeA"][1]["argsT"][7]["type"] = "const char**" -defs["ImFont_CalcTextSizeA"][1]["argsoriginal"] = "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void *)0),const char** remaining=((void *)0))" +defs["ImFont_CalcTextSizeA"][1]["argsoriginal"] = "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void*)0),const char** remaining=((void*)0))" defs["ImFont_CalcTextSizeA"][1]["call_args"] = "(size,max_width,wrap_width,text_begin,text_end,remaining)" defs["ImFont_CalcTextSizeA"][1]["cimguiname"] = "ImFont_CalcTextSizeA" defs["ImFont_CalcTextSizeA"][1]["comment"] = "" defs["ImFont_CalcTextSizeA"][1]["defaults"] = {} -defs["ImFont_CalcTextSizeA"][1]["defaults"]["remaining"] = "((void *)0)" -defs["ImFont_CalcTextSizeA"][1]["defaults"]["text_end"] = "((void *)0)" +defs["ImFont_CalcTextSizeA"][1]["defaults"]["remaining"] = "((void*)0)" +defs["ImFont_CalcTextSizeA"][1]["defaults"]["text_end"] = "((void*)0)" defs["ImFont_CalcTextSizeA"][1]["funcname"] = "CalcTextSizeA" +defs["ImFont_CalcTextSizeA"][1]["ov_cimguiname"] = "ImFont_CalcTextSizeA" defs["ImFont_CalcTextSizeA"][1]["ret"] = "ImVec2" defs["ImFont_CalcTextSizeA"][1]["signature"] = "(float,float,float,const char*,const char*,const char**)" defs["ImFont_CalcTextSizeA"][1]["stname"] = "ImFont" @@ -2869,7 +2968,7 @@ defs["ImFont_CalcTextSizeA"][2]["argsT"][7]["type"] = "const char*" defs["ImFont_CalcTextSizeA"][2]["argsT"][8] = {} defs["ImFont_CalcTextSizeA"][2]["argsT"][8]["name"] = "remaining" defs["ImFont_CalcTextSizeA"][2]["argsT"][8]["type"] = "const char**" -defs["ImFont_CalcTextSizeA"][2]["argsoriginal"] = "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void *)0),const char** remaining=((void *)0))" +defs["ImFont_CalcTextSizeA"][2]["argsoriginal"] = "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void*)0),const char** remaining=((void*)0))" defs["ImFont_CalcTextSizeA"][2]["call_args"] = "(size,max_width,wrap_width,text_begin,text_end,remaining)" defs["ImFont_CalcTextSizeA"][2]["cimguiname"] = "ImFont_CalcTextSizeA" defs["ImFont_CalcTextSizeA"][2]["comment"] = "" @@ -2904,7 +3003,7 @@ defs["ImFont_CalcTextSizeA"][3]["argsT"][6]["type"] = "const char*" defs["ImFont_CalcTextSizeA"][3]["argsT"][7] = {} defs["ImFont_CalcTextSizeA"][3]["argsT"][7]["name"] = "remaining" defs["ImFont_CalcTextSizeA"][3]["argsT"][7]["type"] = "const char**" -defs["ImFont_CalcTextSizeA"][3]["argsoriginal"] = "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void *)0),const char** remaining=((void *)0))" +defs["ImFont_CalcTextSizeA"][3]["argsoriginal"] = "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void*)0),const char** remaining=((void*)0))" defs["ImFont_CalcTextSizeA"][3]["call_args"] = "(size,max_width,wrap_width,text_begin,text_end,remaining)" defs["ImFont_CalcTextSizeA"][3]["cimguiname"] = "ImFont_CalcTextSizeA" defs["ImFont_CalcTextSizeA"][3]["comment"] = "" @@ -2944,6 +3043,7 @@ defs["ImFont_CalcWordWrapPositionA"][1]["cimguiname"] = "ImFont_CalcWordWrapPosi defs["ImFont_CalcWordWrapPositionA"][1]["comment"] = "" defs["ImFont_CalcWordWrapPositionA"][1]["defaults"] = {} defs["ImFont_CalcWordWrapPositionA"][1]["funcname"] = "CalcWordWrapPositionA" +defs["ImFont_CalcWordWrapPositionA"][1]["ov_cimguiname"] = "ImFont_CalcWordWrapPositionA" defs["ImFont_CalcWordWrapPositionA"][1]["ret"] = "const char*" defs["ImFont_CalcWordWrapPositionA"][1]["signature"] = "(float,const char*,const char*,float)" defs["ImFont_CalcWordWrapPositionA"][1]["stname"] = "ImFont" @@ -2961,6 +3061,7 @@ defs["ImFont_ClearOutputData"][1]["cimguiname"] = "ImFont_ClearOutputData" defs["ImFont_ClearOutputData"][1]["comment"] = "" defs["ImFont_ClearOutputData"][1]["defaults"] = {} defs["ImFont_ClearOutputData"][1]["funcname"] = "ClearOutputData" +defs["ImFont_ClearOutputData"][1]["ov_cimguiname"] = "ImFont_ClearOutputData" defs["ImFont_ClearOutputData"][1]["ret"] = "void" defs["ImFont_ClearOutputData"][1]["signature"] = "()" defs["ImFont_ClearOutputData"][1]["stname"] = "ImFont" @@ -2981,6 +3082,7 @@ defs["ImFont_FindGlyph"][1]["cimguiname"] = "ImFont_FindGlyph" defs["ImFont_FindGlyph"][1]["comment"] = "" defs["ImFont_FindGlyph"][1]["defaults"] = {} defs["ImFont_FindGlyph"][1]["funcname"] = "FindGlyph" +defs["ImFont_FindGlyph"][1]["ov_cimguiname"] = "ImFont_FindGlyph" defs["ImFont_FindGlyph"][1]["ret"] = "const ImFontGlyph*" defs["ImFont_FindGlyph"][1]["signature"] = "(ImWchar)" defs["ImFont_FindGlyph"][1]["stname"] = "ImFont" @@ -3001,6 +3103,7 @@ defs["ImFont_FindGlyphNoFallback"][1]["cimguiname"] = "ImFont_FindGlyphNoFallbac defs["ImFont_FindGlyphNoFallback"][1]["comment"] = "" defs["ImFont_FindGlyphNoFallback"][1]["defaults"] = {} defs["ImFont_FindGlyphNoFallback"][1]["funcname"] = "FindGlyphNoFallback" +defs["ImFont_FindGlyphNoFallback"][1]["ov_cimguiname"] = "ImFont_FindGlyphNoFallback" defs["ImFont_FindGlyphNoFallback"][1]["ret"] = "const ImFontGlyph*" defs["ImFont_FindGlyphNoFallback"][1]["signature"] = "(ImWchar)" defs["ImFont_FindGlyphNoFallback"][1]["stname"] = "ImFont" @@ -3021,6 +3124,7 @@ defs["ImFont_GetCharAdvance"][1]["cimguiname"] = "ImFont_GetCharAdvance" defs["ImFont_GetCharAdvance"][1]["comment"] = "" defs["ImFont_GetCharAdvance"][1]["defaults"] = {} defs["ImFont_GetCharAdvance"][1]["funcname"] = "GetCharAdvance" +defs["ImFont_GetCharAdvance"][1]["ov_cimguiname"] = "ImFont_GetCharAdvance" defs["ImFont_GetCharAdvance"][1]["ret"] = "float" defs["ImFont_GetCharAdvance"][1]["signature"] = "(ImWchar)" defs["ImFont_GetCharAdvance"][1]["stname"] = "ImFont" @@ -3038,6 +3142,7 @@ defs["ImFont_GetDebugName"][1]["cimguiname"] = "ImFont_GetDebugName" defs["ImFont_GetDebugName"][1]["comment"] = "" defs["ImFont_GetDebugName"][1]["defaults"] = {} defs["ImFont_GetDebugName"][1]["funcname"] = "GetDebugName" +defs["ImFont_GetDebugName"][1]["ov_cimguiname"] = "ImFont_GetDebugName" defs["ImFont_GetDebugName"][1]["ret"] = "const char*" defs["ImFont_GetDebugName"][1]["signature"] = "()" defs["ImFont_GetDebugName"][1]["stname"] = "ImFont" @@ -3058,6 +3163,7 @@ defs["ImFont_GrowIndex"][1]["cimguiname"] = "ImFont_GrowIndex" defs["ImFont_GrowIndex"][1]["comment"] = "" defs["ImFont_GrowIndex"][1]["defaults"] = {} defs["ImFont_GrowIndex"][1]["funcname"] = "GrowIndex" +defs["ImFont_GrowIndex"][1]["ov_cimguiname"] = "ImFont_GrowIndex" defs["ImFont_GrowIndex"][1]["ret"] = "void" defs["ImFont_GrowIndex"][1]["signature"] = "(int)" defs["ImFont_GrowIndex"][1]["stname"] = "ImFont" @@ -3073,6 +3179,7 @@ defs["ImFont_ImFont"][1]["comment"] = "" defs["ImFont_ImFont"][1]["constructor"] = true defs["ImFont_ImFont"][1]["defaults"] = {} defs["ImFont_ImFont"][1]["funcname"] = "ImFont" +defs["ImFont_ImFont"][1]["ov_cimguiname"] = "ImFont_ImFont" defs["ImFont_ImFont"][1]["signature"] = "()" defs["ImFont_ImFont"][1]["stname"] = "ImFont" defs["ImFont_ImFont"]["()"] = defs["ImFont_ImFont"][1] @@ -3089,6 +3196,7 @@ defs["ImFont_IsLoaded"][1]["cimguiname"] = "ImFont_IsLoaded" defs["ImFont_IsLoaded"][1]["comment"] = "" defs["ImFont_IsLoaded"][1]["defaults"] = {} defs["ImFont_IsLoaded"][1]["funcname"] = "IsLoaded" +defs["ImFont_IsLoaded"][1]["ov_cimguiname"] = "ImFont_IsLoaded" defs["ImFont_IsLoaded"][1]["ret"] = "bool" defs["ImFont_IsLoaded"][1]["signature"] = "()" defs["ImFont_IsLoaded"][1]["stname"] = "ImFont" @@ -3121,6 +3229,7 @@ defs["ImFont_RenderChar"][1]["cimguiname"] = "ImFont_RenderChar" defs["ImFont_RenderChar"][1]["comment"] = "" defs["ImFont_RenderChar"][1]["defaults"] = {} defs["ImFont_RenderChar"][1]["funcname"] = "RenderChar" +defs["ImFont_RenderChar"][1]["ov_cimguiname"] = "ImFont_RenderChar" defs["ImFont_RenderChar"][1]["ret"] = "void" defs["ImFont_RenderChar"][1]["signature"] = "(ImDrawList*,float,ImVec2,ImU32,ImWchar)" defs["ImFont_RenderChar"][1]["stname"] = "ImFont" @@ -3167,6 +3276,7 @@ defs["ImFont_RenderText"][1]["defaults"] = {} defs["ImFont_RenderText"][1]["defaults"]["cpu_fine_clip"] = "false" defs["ImFont_RenderText"][1]["defaults"]["wrap_width"] = "0.0f" defs["ImFont_RenderText"][1]["funcname"] = "RenderText" +defs["ImFont_RenderText"][1]["ov_cimguiname"] = "ImFont_RenderText" defs["ImFont_RenderText"][1]["ret"] = "void" defs["ImFont_RenderText"][1]["signature"] = "(ImDrawList*,float,ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)" defs["ImFont_RenderText"][1]["stname"] = "ImFont" @@ -3187,6 +3297,7 @@ defs["ImFont_SetFallbackChar"][1]["cimguiname"] = "ImFont_SetFallbackChar" defs["ImFont_SetFallbackChar"][1]["comment"] = "" defs["ImFont_SetFallbackChar"][1]["defaults"] = {} defs["ImFont_SetFallbackChar"][1]["funcname"] = "SetFallbackChar" +defs["ImFont_SetFallbackChar"][1]["ov_cimguiname"] = "ImFont_SetFallbackChar" defs["ImFont_SetFallbackChar"][1]["ret"] = "void" defs["ImFont_SetFallbackChar"][1]["signature"] = "(ImWchar)" defs["ImFont_SetFallbackChar"][1]["stname"] = "ImFont" @@ -3223,6 +3334,7 @@ defs["ImGuiIO_AddInputCharacter"][1]["cimguiname"] = "ImGuiIO_AddInputCharacter" defs["ImGuiIO_AddInputCharacter"][1]["comment"] = "" defs["ImGuiIO_AddInputCharacter"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharacter"][1]["funcname"] = "AddInputCharacter" +defs["ImGuiIO_AddInputCharacter"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharacter" defs["ImGuiIO_AddInputCharacter"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharacter"][1]["signature"] = "(ImWchar)" defs["ImGuiIO_AddInputCharacter"][1]["stname"] = "ImGuiIO" @@ -3243,6 +3355,7 @@ defs["ImGuiIO_AddInputCharactersUTF8"][1]["cimguiname"] = "ImGuiIO_AddInputChara defs["ImGuiIO_AddInputCharactersUTF8"][1]["comment"] = "" defs["ImGuiIO_AddInputCharactersUTF8"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharactersUTF8"][1]["funcname"] = "AddInputCharactersUTF8" +defs["ImGuiIO_AddInputCharactersUTF8"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharactersUTF8" defs["ImGuiIO_AddInputCharactersUTF8"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharactersUTF8"][1]["signature"] = "(const char*)" defs["ImGuiIO_AddInputCharactersUTF8"][1]["stname"] = "ImGuiIO" @@ -3260,6 +3373,7 @@ defs["ImGuiIO_ClearInputCharacters"][1]["cimguiname"] = "ImGuiIO_ClearInputChara defs["ImGuiIO_ClearInputCharacters"][1]["comment"] = "" defs["ImGuiIO_ClearInputCharacters"][1]["defaults"] = {} defs["ImGuiIO_ClearInputCharacters"][1]["funcname"] = "ClearInputCharacters" +defs["ImGuiIO_ClearInputCharacters"][1]["ov_cimguiname"] = "ImGuiIO_ClearInputCharacters" defs["ImGuiIO_ClearInputCharacters"][1]["ret"] = "void" defs["ImGuiIO_ClearInputCharacters"][1]["signature"] = "()" defs["ImGuiIO_ClearInputCharacters"][1]["stname"] = "ImGuiIO" @@ -3275,6 +3389,7 @@ defs["ImGuiIO_ImGuiIO"][1]["comment"] = "" defs["ImGuiIO_ImGuiIO"][1]["constructor"] = true defs["ImGuiIO_ImGuiIO"][1]["defaults"] = {} defs["ImGuiIO_ImGuiIO"][1]["funcname"] = "ImGuiIO" +defs["ImGuiIO_ImGuiIO"][1]["ov_cimguiname"] = "ImGuiIO_ImGuiIO" defs["ImGuiIO_ImGuiIO"][1]["signature"] = "()" defs["ImGuiIO_ImGuiIO"][1]["stname"] = "ImGuiIO" defs["ImGuiIO_ImGuiIO"]["()"] = defs["ImGuiIO_ImGuiIO"][1] @@ -3313,6 +3428,7 @@ defs["ImGuiInputTextCallbackData_DeleteChars"][1]["cimguiname"] = "ImGuiInputTex defs["ImGuiInputTextCallbackData_DeleteChars"][1]["comment"] = "" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_DeleteChars"][1]["funcname"] = "DeleteChars" +defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_DeleteChars" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["signature"] = "(int,int)" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["stname"] = "ImGuiInputTextCallbackData" @@ -3330,6 +3446,7 @@ defs["ImGuiInputTextCallbackData_HasSelection"][1]["cimguiname"] = "ImGuiInputTe defs["ImGuiInputTextCallbackData_HasSelection"][1]["comment"] = "" defs["ImGuiInputTextCallbackData_HasSelection"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_HasSelection"][1]["funcname"] = "HasSelection" +defs["ImGuiInputTextCallbackData_HasSelection"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_HasSelection" defs["ImGuiInputTextCallbackData_HasSelection"][1]["ret"] = "bool" defs["ImGuiInputTextCallbackData_HasSelection"][1]["signature"] = "()" defs["ImGuiInputTextCallbackData_HasSelection"][1]["stname"] = "ImGuiInputTextCallbackData" @@ -3345,6 +3462,7 @@ defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["comment"] = "" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["constructor"] = true defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["funcname"] = "ImGuiInputTextCallbackData" +defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["signature"] = "()" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["stname"] = "ImGuiInputTextCallbackData" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"]["()"] = defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1] @@ -3364,13 +3482,14 @@ defs["ImGuiInputTextCallbackData_InsertChars"][1]["argsT"][3]["type"] = "const c defs["ImGuiInputTextCallbackData_InsertChars"][1]["argsT"][4] = {} defs["ImGuiInputTextCallbackData_InsertChars"][1]["argsT"][4]["name"] = "text_end" defs["ImGuiInputTextCallbackData_InsertChars"][1]["argsT"][4]["type"] = "const char*" -defs["ImGuiInputTextCallbackData_InsertChars"][1]["argsoriginal"] = "(int pos,const char* text,const char* text_end=((void *)0))" +defs["ImGuiInputTextCallbackData_InsertChars"][1]["argsoriginal"] = "(int pos,const char* text,const char* text_end=((void*)0))" defs["ImGuiInputTextCallbackData_InsertChars"][1]["call_args"] = "(pos,text,text_end)" defs["ImGuiInputTextCallbackData_InsertChars"][1]["cimguiname"] = "ImGuiInputTextCallbackData_InsertChars" defs["ImGuiInputTextCallbackData_InsertChars"][1]["comment"] = "" defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"] = {} -defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"]["text_end"] = "((void *)0)" +defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"]["text_end"] = "((void*)0)" defs["ImGuiInputTextCallbackData_InsertChars"][1]["funcname"] = "InsertChars" +defs["ImGuiInputTextCallbackData_InsertChars"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_InsertChars" defs["ImGuiInputTextCallbackData_InsertChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_InsertChars"][1]["signature"] = "(int,const char*,const char*)" defs["ImGuiInputTextCallbackData_InsertChars"][1]["stname"] = "ImGuiInputTextCallbackData" @@ -3411,6 +3530,7 @@ defs["ImGuiListClipper_Begin"][1]["comment"] = "" defs["ImGuiListClipper_Begin"][1]["defaults"] = {} defs["ImGuiListClipper_Begin"][1]["defaults"]["items_height"] = "-1.0f" defs["ImGuiListClipper_Begin"][1]["funcname"] = "Begin" +defs["ImGuiListClipper_Begin"][1]["ov_cimguiname"] = "ImGuiListClipper_Begin" defs["ImGuiListClipper_Begin"][1]["ret"] = "void" defs["ImGuiListClipper_Begin"][1]["signature"] = "(int,float)" defs["ImGuiListClipper_Begin"][1]["stname"] = "ImGuiListClipper" @@ -3428,6 +3548,7 @@ defs["ImGuiListClipper_End"][1]["cimguiname"] = "ImGuiListClipper_End" defs["ImGuiListClipper_End"][1]["comment"] = "" defs["ImGuiListClipper_End"][1]["defaults"] = {} defs["ImGuiListClipper_End"][1]["funcname"] = "End" +defs["ImGuiListClipper_End"][1]["ov_cimguiname"] = "ImGuiListClipper_End" defs["ImGuiListClipper_End"][1]["ret"] = "void" defs["ImGuiListClipper_End"][1]["signature"] = "()" defs["ImGuiListClipper_End"][1]["stname"] = "ImGuiListClipper" @@ -3451,6 +3572,7 @@ defs["ImGuiListClipper_ImGuiListClipper"][1]["defaults"] = {} defs["ImGuiListClipper_ImGuiListClipper"][1]["defaults"]["items_count"] = "-1" defs["ImGuiListClipper_ImGuiListClipper"][1]["defaults"]["items_height"] = "-1.0f" defs["ImGuiListClipper_ImGuiListClipper"][1]["funcname"] = "ImGuiListClipper" +defs["ImGuiListClipper_ImGuiListClipper"][1]["ov_cimguiname"] = "ImGuiListClipper_ImGuiListClipper" defs["ImGuiListClipper_ImGuiListClipper"][1]["signature"] = "(int,float)" defs["ImGuiListClipper_ImGuiListClipper"][1]["stname"] = "ImGuiListClipper" defs["ImGuiListClipper_ImGuiListClipper"]["(int,float)"] = defs["ImGuiListClipper_ImGuiListClipper"][1] @@ -3467,6 +3589,7 @@ defs["ImGuiListClipper_Step"][1]["cimguiname"] = "ImGuiListClipper_Step" defs["ImGuiListClipper_Step"][1]["comment"] = "" defs["ImGuiListClipper_Step"][1]["defaults"] = {} defs["ImGuiListClipper_Step"][1]["funcname"] = "Step" +defs["ImGuiListClipper_Step"][1]["ov_cimguiname"] = "ImGuiListClipper_Step" defs["ImGuiListClipper_Step"][1]["ret"] = "bool" defs["ImGuiListClipper_Step"][1]["signature"] = "()" defs["ImGuiListClipper_Step"][1]["stname"] = "ImGuiListClipper" @@ -3498,6 +3621,7 @@ defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["comment"] = "" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["constructor"] = true defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["defaults"] = {} defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["funcname"] = "ImGuiOnceUponAFrame" +defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["ov_cimguiname"] = "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["signature"] = "()" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["stname"] = "ImGuiOnceUponAFrame" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"]["()"] = defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1] @@ -3530,6 +3654,7 @@ defs["ImGuiPayload_Clear"][1]["cimguiname"] = "ImGuiPayload_Clear" defs["ImGuiPayload_Clear"][1]["comment"] = "" defs["ImGuiPayload_Clear"][1]["defaults"] = {} defs["ImGuiPayload_Clear"][1]["funcname"] = "Clear" +defs["ImGuiPayload_Clear"][1]["ov_cimguiname"] = "ImGuiPayload_Clear" defs["ImGuiPayload_Clear"][1]["ret"] = "void" defs["ImGuiPayload_Clear"][1]["signature"] = "()" defs["ImGuiPayload_Clear"][1]["stname"] = "ImGuiPayload" @@ -3545,6 +3670,7 @@ defs["ImGuiPayload_ImGuiPayload"][1]["comment"] = "" defs["ImGuiPayload_ImGuiPayload"][1]["constructor"] = true defs["ImGuiPayload_ImGuiPayload"][1]["defaults"] = {} defs["ImGuiPayload_ImGuiPayload"][1]["funcname"] = "ImGuiPayload" +defs["ImGuiPayload_ImGuiPayload"][1]["ov_cimguiname"] = "ImGuiPayload_ImGuiPayload" defs["ImGuiPayload_ImGuiPayload"][1]["signature"] = "()" defs["ImGuiPayload_ImGuiPayload"][1]["stname"] = "ImGuiPayload" defs["ImGuiPayload_ImGuiPayload"]["()"] = defs["ImGuiPayload_ImGuiPayload"][1] @@ -3564,6 +3690,7 @@ defs["ImGuiPayload_IsDataType"][1]["cimguiname"] = "ImGuiPayload_IsDataType" defs["ImGuiPayload_IsDataType"][1]["comment"] = "" defs["ImGuiPayload_IsDataType"][1]["defaults"] = {} defs["ImGuiPayload_IsDataType"][1]["funcname"] = "IsDataType" +defs["ImGuiPayload_IsDataType"][1]["ov_cimguiname"] = "ImGuiPayload_IsDataType" defs["ImGuiPayload_IsDataType"][1]["ret"] = "bool" defs["ImGuiPayload_IsDataType"][1]["signature"] = "(const char*)" defs["ImGuiPayload_IsDataType"][1]["stname"] = "ImGuiPayload" @@ -3581,6 +3708,7 @@ defs["ImGuiPayload_IsDelivery"][1]["cimguiname"] = "ImGuiPayload_IsDelivery" defs["ImGuiPayload_IsDelivery"][1]["comment"] = "" defs["ImGuiPayload_IsDelivery"][1]["defaults"] = {} defs["ImGuiPayload_IsDelivery"][1]["funcname"] = "IsDelivery" +defs["ImGuiPayload_IsDelivery"][1]["ov_cimguiname"] = "ImGuiPayload_IsDelivery" defs["ImGuiPayload_IsDelivery"][1]["ret"] = "bool" defs["ImGuiPayload_IsDelivery"][1]["signature"] = "()" defs["ImGuiPayload_IsDelivery"][1]["stname"] = "ImGuiPayload" @@ -3598,6 +3726,7 @@ defs["ImGuiPayload_IsPreview"][1]["cimguiname"] = "ImGuiPayload_IsPreview" defs["ImGuiPayload_IsPreview"][1]["comment"] = "" defs["ImGuiPayload_IsPreview"][1]["defaults"] = {} defs["ImGuiPayload_IsPreview"][1]["funcname"] = "IsPreview" +defs["ImGuiPayload_IsPreview"][1]["ov_cimguiname"] = "ImGuiPayload_IsPreview" defs["ImGuiPayload_IsPreview"][1]["ret"] = "bool" defs["ImGuiPayload_IsPreview"][1]["signature"] = "()" defs["ImGuiPayload_IsPreview"][1]["stname"] = "ImGuiPayload" @@ -3631,6 +3760,7 @@ defs["ImGuiStorage_BuildSortByKey"][1]["cimguiname"] = "ImGuiStorage_BuildSortBy defs["ImGuiStorage_BuildSortByKey"][1]["comment"] = "" defs["ImGuiStorage_BuildSortByKey"][1]["defaults"] = {} defs["ImGuiStorage_BuildSortByKey"][1]["funcname"] = "BuildSortByKey" +defs["ImGuiStorage_BuildSortByKey"][1]["ov_cimguiname"] = "ImGuiStorage_BuildSortByKey" defs["ImGuiStorage_BuildSortByKey"][1]["ret"] = "void" defs["ImGuiStorage_BuildSortByKey"][1]["signature"] = "()" defs["ImGuiStorage_BuildSortByKey"][1]["stname"] = "ImGuiStorage" @@ -3648,6 +3778,7 @@ defs["ImGuiStorage_Clear"][1]["cimguiname"] = "ImGuiStorage_Clear" defs["ImGuiStorage_Clear"][1]["comment"] = "" defs["ImGuiStorage_Clear"][1]["defaults"] = {} defs["ImGuiStorage_Clear"][1]["funcname"] = "Clear" +defs["ImGuiStorage_Clear"][1]["ov_cimguiname"] = "ImGuiStorage_Clear" defs["ImGuiStorage_Clear"][1]["ret"] = "void" defs["ImGuiStorage_Clear"][1]["signature"] = "()" defs["ImGuiStorage_Clear"][1]["stname"] = "ImGuiStorage" @@ -3672,6 +3803,7 @@ defs["ImGuiStorage_GetBool"][1]["comment"] = "" defs["ImGuiStorage_GetBool"][1]["defaults"] = {} defs["ImGuiStorage_GetBool"][1]["defaults"]["default_val"] = "false" defs["ImGuiStorage_GetBool"][1]["funcname"] = "GetBool" +defs["ImGuiStorage_GetBool"][1]["ov_cimguiname"] = "ImGuiStorage_GetBool" defs["ImGuiStorage_GetBool"][1]["ret"] = "bool" defs["ImGuiStorage_GetBool"][1]["signature"] = "(ImGuiID,bool)" defs["ImGuiStorage_GetBool"][1]["stname"] = "ImGuiStorage" @@ -3696,6 +3828,7 @@ defs["ImGuiStorage_GetBoolRef"][1]["comment"] = "" defs["ImGuiStorage_GetBoolRef"][1]["defaults"] = {} defs["ImGuiStorage_GetBoolRef"][1]["defaults"]["default_val"] = "false" defs["ImGuiStorage_GetBoolRef"][1]["funcname"] = "GetBoolRef" +defs["ImGuiStorage_GetBoolRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetBoolRef" defs["ImGuiStorage_GetBoolRef"][1]["ret"] = "bool*" defs["ImGuiStorage_GetBoolRef"][1]["signature"] = "(ImGuiID,bool)" defs["ImGuiStorage_GetBoolRef"][1]["stname"] = "ImGuiStorage" @@ -3720,6 +3853,7 @@ defs["ImGuiStorage_GetFloat"][1]["comment"] = "" defs["ImGuiStorage_GetFloat"][1]["defaults"] = {} defs["ImGuiStorage_GetFloat"][1]["defaults"]["default_val"] = "0.0f" defs["ImGuiStorage_GetFloat"][1]["funcname"] = "GetFloat" +defs["ImGuiStorage_GetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_GetFloat" defs["ImGuiStorage_GetFloat"][1]["ret"] = "float" defs["ImGuiStorage_GetFloat"][1]["signature"] = "(ImGuiID,float)" defs["ImGuiStorage_GetFloat"][1]["stname"] = "ImGuiStorage" @@ -3744,6 +3878,7 @@ defs["ImGuiStorage_GetFloatRef"][1]["comment"] = "" defs["ImGuiStorage_GetFloatRef"][1]["defaults"] = {} defs["ImGuiStorage_GetFloatRef"][1]["defaults"]["default_val"] = "0.0f" defs["ImGuiStorage_GetFloatRef"][1]["funcname"] = "GetFloatRef" +defs["ImGuiStorage_GetFloatRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetFloatRef" defs["ImGuiStorage_GetFloatRef"][1]["ret"] = "float*" defs["ImGuiStorage_GetFloatRef"][1]["signature"] = "(ImGuiID,float)" defs["ImGuiStorage_GetFloatRef"][1]["stname"] = "ImGuiStorage" @@ -3768,6 +3903,7 @@ defs["ImGuiStorage_GetInt"][1]["comment"] = "" defs["ImGuiStorage_GetInt"][1]["defaults"] = {} defs["ImGuiStorage_GetInt"][1]["defaults"]["default_val"] = "0" defs["ImGuiStorage_GetInt"][1]["funcname"] = "GetInt" +defs["ImGuiStorage_GetInt"][1]["ov_cimguiname"] = "ImGuiStorage_GetInt" defs["ImGuiStorage_GetInt"][1]["ret"] = "int" defs["ImGuiStorage_GetInt"][1]["signature"] = "(ImGuiID,int)" defs["ImGuiStorage_GetInt"][1]["stname"] = "ImGuiStorage" @@ -3792,6 +3928,7 @@ defs["ImGuiStorage_GetIntRef"][1]["comment"] = "" defs["ImGuiStorage_GetIntRef"][1]["defaults"] = {} defs["ImGuiStorage_GetIntRef"][1]["defaults"]["default_val"] = "0" defs["ImGuiStorage_GetIntRef"][1]["funcname"] = "GetIntRef" +defs["ImGuiStorage_GetIntRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetIntRef" defs["ImGuiStorage_GetIntRef"][1]["ret"] = "int*" defs["ImGuiStorage_GetIntRef"][1]["signature"] = "(ImGuiID,int)" defs["ImGuiStorage_GetIntRef"][1]["stname"] = "ImGuiStorage" @@ -3812,6 +3949,7 @@ defs["ImGuiStorage_GetVoidPtr"][1]["cimguiname"] = "ImGuiStorage_GetVoidPtr" defs["ImGuiStorage_GetVoidPtr"][1]["comment"] = "" defs["ImGuiStorage_GetVoidPtr"][1]["defaults"] = {} defs["ImGuiStorage_GetVoidPtr"][1]["funcname"] = "GetVoidPtr" +defs["ImGuiStorage_GetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtr" defs["ImGuiStorage_GetVoidPtr"][1]["ret"] = "void*" defs["ImGuiStorage_GetVoidPtr"][1]["signature"] = "(ImGuiID)" defs["ImGuiStorage_GetVoidPtr"][1]["stname"] = "ImGuiStorage" @@ -3829,13 +3967,14 @@ defs["ImGuiStorage_GetVoidPtrRef"][1]["argsT"][2]["type"] = "ImGuiID" defs["ImGuiStorage_GetVoidPtrRef"][1]["argsT"][3] = {} defs["ImGuiStorage_GetVoidPtrRef"][1]["argsT"][3]["name"] = "default_val" defs["ImGuiStorage_GetVoidPtrRef"][1]["argsT"][3]["type"] = "void*" -defs["ImGuiStorage_GetVoidPtrRef"][1]["argsoriginal"] = "(ImGuiID key,void* default_val=((void *)0))" +defs["ImGuiStorage_GetVoidPtrRef"][1]["argsoriginal"] = "(ImGuiID key,void* default_val=((void*)0))" defs["ImGuiStorage_GetVoidPtrRef"][1]["call_args"] = "(key,default_val)" defs["ImGuiStorage_GetVoidPtrRef"][1]["cimguiname"] = "ImGuiStorage_GetVoidPtrRef" defs["ImGuiStorage_GetVoidPtrRef"][1]["comment"] = "" defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"] = {} -defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"]["default_val"] = "((void *)0)" +defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"]["default_val"] = "((void*)0)" defs["ImGuiStorage_GetVoidPtrRef"][1]["funcname"] = "GetVoidPtrRef" +defs["ImGuiStorage_GetVoidPtrRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtrRef" defs["ImGuiStorage_GetVoidPtrRef"][1]["ret"] = "void**" defs["ImGuiStorage_GetVoidPtrRef"][1]["signature"] = "(ImGuiID,void*)" defs["ImGuiStorage_GetVoidPtrRef"][1]["stname"] = "ImGuiStorage" @@ -3856,6 +3995,7 @@ defs["ImGuiStorage_SetAllInt"][1]["cimguiname"] = "ImGuiStorage_SetAllInt" defs["ImGuiStorage_SetAllInt"][1]["comment"] = "" defs["ImGuiStorage_SetAllInt"][1]["defaults"] = {} defs["ImGuiStorage_SetAllInt"][1]["funcname"] = "SetAllInt" +defs["ImGuiStorage_SetAllInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetAllInt" defs["ImGuiStorage_SetAllInt"][1]["ret"] = "void" defs["ImGuiStorage_SetAllInt"][1]["signature"] = "(int)" defs["ImGuiStorage_SetAllInt"][1]["stname"] = "ImGuiStorage" @@ -3879,6 +4019,7 @@ defs["ImGuiStorage_SetBool"][1]["cimguiname"] = "ImGuiStorage_SetBool" defs["ImGuiStorage_SetBool"][1]["comment"] = "" defs["ImGuiStorage_SetBool"][1]["defaults"] = {} defs["ImGuiStorage_SetBool"][1]["funcname"] = "SetBool" +defs["ImGuiStorage_SetBool"][1]["ov_cimguiname"] = "ImGuiStorage_SetBool" defs["ImGuiStorage_SetBool"][1]["ret"] = "void" defs["ImGuiStorage_SetBool"][1]["signature"] = "(ImGuiID,bool)" defs["ImGuiStorage_SetBool"][1]["stname"] = "ImGuiStorage" @@ -3902,6 +4043,7 @@ defs["ImGuiStorage_SetFloat"][1]["cimguiname"] = "ImGuiStorage_SetFloat" defs["ImGuiStorage_SetFloat"][1]["comment"] = "" defs["ImGuiStorage_SetFloat"][1]["defaults"] = {} defs["ImGuiStorage_SetFloat"][1]["funcname"] = "SetFloat" +defs["ImGuiStorage_SetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_SetFloat" defs["ImGuiStorage_SetFloat"][1]["ret"] = "void" defs["ImGuiStorage_SetFloat"][1]["signature"] = "(ImGuiID,float)" defs["ImGuiStorage_SetFloat"][1]["stname"] = "ImGuiStorage" @@ -3925,6 +4067,7 @@ defs["ImGuiStorage_SetInt"][1]["cimguiname"] = "ImGuiStorage_SetInt" defs["ImGuiStorage_SetInt"][1]["comment"] = "" defs["ImGuiStorage_SetInt"][1]["defaults"] = {} defs["ImGuiStorage_SetInt"][1]["funcname"] = "SetInt" +defs["ImGuiStorage_SetInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetInt" defs["ImGuiStorage_SetInt"][1]["ret"] = "void" defs["ImGuiStorage_SetInt"][1]["signature"] = "(ImGuiID,int)" defs["ImGuiStorage_SetInt"][1]["stname"] = "ImGuiStorage" @@ -3948,6 +4091,7 @@ defs["ImGuiStorage_SetVoidPtr"][1]["cimguiname"] = "ImGuiStorage_SetVoidPtr" defs["ImGuiStorage_SetVoidPtr"][1]["comment"] = "" defs["ImGuiStorage_SetVoidPtr"][1]["defaults"] = {} defs["ImGuiStorage_SetVoidPtr"][1]["funcname"] = "SetVoidPtr" +defs["ImGuiStorage_SetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_SetVoidPtr" defs["ImGuiStorage_SetVoidPtr"][1]["ret"] = "void" defs["ImGuiStorage_SetVoidPtr"][1]["signature"] = "(ImGuiID,void*)" defs["ImGuiStorage_SetVoidPtr"][1]["stname"] = "ImGuiStorage" @@ -3963,6 +4107,7 @@ defs["ImGuiStyle_ImGuiStyle"][1]["comment"] = "" defs["ImGuiStyle_ImGuiStyle"][1]["constructor"] = true defs["ImGuiStyle_ImGuiStyle"][1]["defaults"] = {} defs["ImGuiStyle_ImGuiStyle"][1]["funcname"] = "ImGuiStyle" +defs["ImGuiStyle_ImGuiStyle"][1]["ov_cimguiname"] = "ImGuiStyle_ImGuiStyle" defs["ImGuiStyle_ImGuiStyle"][1]["signature"] = "()" defs["ImGuiStyle_ImGuiStyle"][1]["stname"] = "ImGuiStyle" defs["ImGuiStyle_ImGuiStyle"]["()"] = defs["ImGuiStyle_ImGuiStyle"][1] @@ -3982,6 +4127,7 @@ defs["ImGuiStyle_ScaleAllSizes"][1]["cimguiname"] = "ImGuiStyle_ScaleAllSizes" defs["ImGuiStyle_ScaleAllSizes"][1]["comment"] = "" defs["ImGuiStyle_ScaleAllSizes"][1]["defaults"] = {} defs["ImGuiStyle_ScaleAllSizes"][1]["funcname"] = "ScaleAllSizes" +defs["ImGuiStyle_ScaleAllSizes"][1]["ov_cimguiname"] = "ImGuiStyle_ScaleAllSizes" defs["ImGuiStyle_ScaleAllSizes"][1]["ret"] = "void" defs["ImGuiStyle_ScaleAllSizes"][1]["signature"] = "(float)" defs["ImGuiStyle_ScaleAllSizes"][1]["stname"] = "ImGuiStyle" @@ -4013,6 +4159,7 @@ defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["comment"] = "" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["constructor"] = true defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["defaults"] = {} defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["funcname"] = "ImGuiTextBuffer" +defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["ov_cimguiname"] = "ImGuiTextBuffer_ImGuiTextBuffer" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["signature"] = "()" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["stname"] = "ImGuiTextBuffer" defs["ImGuiTextBuffer_ImGuiTextBuffer"]["()"] = defs["ImGuiTextBuffer_ImGuiTextBuffer"][1] @@ -4037,6 +4184,7 @@ defs["ImGuiTextBuffer_appendf"][1]["defaults"] = {} defs["ImGuiTextBuffer_appendf"][1]["funcname"] = "appendf" defs["ImGuiTextBuffer_appendf"][1]["isvararg"] = "...)" defs["ImGuiTextBuffer_appendf"][1]["manual"] = true +defs["ImGuiTextBuffer_appendf"][1]["ov_cimguiname"] = "ImGuiTextBuffer_appendf" defs["ImGuiTextBuffer_appendf"][1]["ret"] = "void" defs["ImGuiTextBuffer_appendf"][1]["signature"] = "(const char*,...)" defs["ImGuiTextBuffer_appendf"][1]["stname"] = "ImGuiTextBuffer" @@ -4060,6 +4208,7 @@ defs["ImGuiTextBuffer_appendfv"][1]["cimguiname"] = "ImGuiTextBuffer_appendfv" defs["ImGuiTextBuffer_appendfv"][1]["comment"] = "" defs["ImGuiTextBuffer_appendfv"][1]["defaults"] = {} defs["ImGuiTextBuffer_appendfv"][1]["funcname"] = "appendfv" +defs["ImGuiTextBuffer_appendfv"][1]["ov_cimguiname"] = "ImGuiTextBuffer_appendfv" defs["ImGuiTextBuffer_appendfv"][1]["ret"] = "void" defs["ImGuiTextBuffer_appendfv"][1]["signature"] = "(const char*,va_list)" defs["ImGuiTextBuffer_appendfv"][1]["stname"] = "ImGuiTextBuffer" @@ -4077,6 +4226,7 @@ defs["ImGuiTextBuffer_begin"][1]["cimguiname"] = "ImGuiTextBuffer_begin" defs["ImGuiTextBuffer_begin"][1]["comment"] = "" defs["ImGuiTextBuffer_begin"][1]["defaults"] = {} defs["ImGuiTextBuffer_begin"][1]["funcname"] = "begin" +defs["ImGuiTextBuffer_begin"][1]["ov_cimguiname"] = "ImGuiTextBuffer_begin" defs["ImGuiTextBuffer_begin"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_begin"][1]["signature"] = "()" defs["ImGuiTextBuffer_begin"][1]["stname"] = "ImGuiTextBuffer" @@ -4094,6 +4244,7 @@ defs["ImGuiTextBuffer_c_str"][1]["cimguiname"] = "ImGuiTextBuffer_c_str" defs["ImGuiTextBuffer_c_str"][1]["comment"] = "" defs["ImGuiTextBuffer_c_str"][1]["defaults"] = {} defs["ImGuiTextBuffer_c_str"][1]["funcname"] = "c_str" +defs["ImGuiTextBuffer_c_str"][1]["ov_cimguiname"] = "ImGuiTextBuffer_c_str" defs["ImGuiTextBuffer_c_str"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_c_str"][1]["signature"] = "()" defs["ImGuiTextBuffer_c_str"][1]["stname"] = "ImGuiTextBuffer" @@ -4111,6 +4262,7 @@ defs["ImGuiTextBuffer_clear"][1]["cimguiname"] = "ImGuiTextBuffer_clear" defs["ImGuiTextBuffer_clear"][1]["comment"] = "" defs["ImGuiTextBuffer_clear"][1]["defaults"] = {} defs["ImGuiTextBuffer_clear"][1]["funcname"] = "clear" +defs["ImGuiTextBuffer_clear"][1]["ov_cimguiname"] = "ImGuiTextBuffer_clear" defs["ImGuiTextBuffer_clear"][1]["ret"] = "void" defs["ImGuiTextBuffer_clear"][1]["signature"] = "()" defs["ImGuiTextBuffer_clear"][1]["stname"] = "ImGuiTextBuffer" @@ -4144,6 +4296,7 @@ defs["ImGuiTextBuffer_empty"][1]["cimguiname"] = "ImGuiTextBuffer_empty" defs["ImGuiTextBuffer_empty"][1]["comment"] = "" defs["ImGuiTextBuffer_empty"][1]["defaults"] = {} defs["ImGuiTextBuffer_empty"][1]["funcname"] = "empty" +defs["ImGuiTextBuffer_empty"][1]["ov_cimguiname"] = "ImGuiTextBuffer_empty" defs["ImGuiTextBuffer_empty"][1]["ret"] = "bool" defs["ImGuiTextBuffer_empty"][1]["signature"] = "()" defs["ImGuiTextBuffer_empty"][1]["stname"] = "ImGuiTextBuffer" @@ -4161,6 +4314,7 @@ defs["ImGuiTextBuffer_end"][1]["cimguiname"] = "ImGuiTextBuffer_end" defs["ImGuiTextBuffer_end"][1]["comment"] = "" defs["ImGuiTextBuffer_end"][1]["defaults"] = {} defs["ImGuiTextBuffer_end"][1]["funcname"] = "end" +defs["ImGuiTextBuffer_end"][1]["ov_cimguiname"] = "ImGuiTextBuffer_end" defs["ImGuiTextBuffer_end"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_end"][1]["signature"] = "()" defs["ImGuiTextBuffer_end"][1]["stname"] = "ImGuiTextBuffer" @@ -4181,6 +4335,7 @@ defs["ImGuiTextBuffer_reserve"][1]["cimguiname"] = "ImGuiTextBuffer_reserve" defs["ImGuiTextBuffer_reserve"][1]["comment"] = "" defs["ImGuiTextBuffer_reserve"][1]["defaults"] = {} defs["ImGuiTextBuffer_reserve"][1]["funcname"] = "reserve" +defs["ImGuiTextBuffer_reserve"][1]["ov_cimguiname"] = "ImGuiTextBuffer_reserve" defs["ImGuiTextBuffer_reserve"][1]["ret"] = "void" defs["ImGuiTextBuffer_reserve"][1]["signature"] = "(int)" defs["ImGuiTextBuffer_reserve"][1]["stname"] = "ImGuiTextBuffer" @@ -4198,6 +4353,7 @@ defs["ImGuiTextBuffer_size"][1]["cimguiname"] = "ImGuiTextBuffer_size" defs["ImGuiTextBuffer_size"][1]["comment"] = "" defs["ImGuiTextBuffer_size"][1]["defaults"] = {} defs["ImGuiTextBuffer_size"][1]["funcname"] = "size" +defs["ImGuiTextBuffer_size"][1]["ov_cimguiname"] = "ImGuiTextBuffer_size" defs["ImGuiTextBuffer_size"][1]["ret"] = "int" defs["ImGuiTextBuffer_size"][1]["signature"] = "()" defs["ImGuiTextBuffer_size"][1]["stname"] = "ImGuiTextBuffer" @@ -4215,6 +4371,7 @@ defs["ImGuiTextFilter_Build"][1]["cimguiname"] = "ImGuiTextFilter_Build" defs["ImGuiTextFilter_Build"][1]["comment"] = "" defs["ImGuiTextFilter_Build"][1]["defaults"] = {} defs["ImGuiTextFilter_Build"][1]["funcname"] = "Build" +defs["ImGuiTextFilter_Build"][1]["ov_cimguiname"] = "ImGuiTextFilter_Build" defs["ImGuiTextFilter_Build"][1]["ret"] = "void" defs["ImGuiTextFilter_Build"][1]["signature"] = "()" defs["ImGuiTextFilter_Build"][1]["stname"] = "ImGuiTextFilter" @@ -4232,6 +4389,7 @@ defs["ImGuiTextFilter_Clear"][1]["cimguiname"] = "ImGuiTextFilter_Clear" defs["ImGuiTextFilter_Clear"][1]["comment"] = "" defs["ImGuiTextFilter_Clear"][1]["defaults"] = {} defs["ImGuiTextFilter_Clear"][1]["funcname"] = "Clear" +defs["ImGuiTextFilter_Clear"][1]["ov_cimguiname"] = "ImGuiTextFilter_Clear" defs["ImGuiTextFilter_Clear"][1]["ret"] = "void" defs["ImGuiTextFilter_Clear"][1]["signature"] = "()" defs["ImGuiTextFilter_Clear"][1]["stname"] = "ImGuiTextFilter" @@ -4257,6 +4415,7 @@ defs["ImGuiTextFilter_Draw"][1]["defaults"] = {} defs["ImGuiTextFilter_Draw"][1]["defaults"]["label"] = "\"Filter(inc,-exc)\"" defs["ImGuiTextFilter_Draw"][1]["defaults"]["width"] = "0.0f" defs["ImGuiTextFilter_Draw"][1]["funcname"] = "Draw" +defs["ImGuiTextFilter_Draw"][1]["ov_cimguiname"] = "ImGuiTextFilter_Draw" defs["ImGuiTextFilter_Draw"][1]["ret"] = "bool" defs["ImGuiTextFilter_Draw"][1]["signature"] = "(const char*,float)" defs["ImGuiTextFilter_Draw"][1]["stname"] = "ImGuiTextFilter" @@ -4276,6 +4435,7 @@ defs["ImGuiTextFilter_ImGuiTextFilter"][1]["constructor"] = true defs["ImGuiTextFilter_ImGuiTextFilter"][1]["defaults"] = {} defs["ImGuiTextFilter_ImGuiTextFilter"][1]["defaults"]["default_filter"] = "\"\"" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["funcname"] = "ImGuiTextFilter" +defs["ImGuiTextFilter_ImGuiTextFilter"][1]["ov_cimguiname"] = "ImGuiTextFilter_ImGuiTextFilter" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["signature"] = "(const char*)" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["stname"] = "ImGuiTextFilter" defs["ImGuiTextFilter_ImGuiTextFilter"]["(const char*)"] = defs["ImGuiTextFilter_ImGuiTextFilter"][1] @@ -4292,6 +4452,7 @@ defs["ImGuiTextFilter_IsActive"][1]["cimguiname"] = "ImGuiTextFilter_IsActive" defs["ImGuiTextFilter_IsActive"][1]["comment"] = "" defs["ImGuiTextFilter_IsActive"][1]["defaults"] = {} defs["ImGuiTextFilter_IsActive"][1]["funcname"] = "IsActive" +defs["ImGuiTextFilter_IsActive"][1]["ov_cimguiname"] = "ImGuiTextFilter_IsActive" defs["ImGuiTextFilter_IsActive"][1]["ret"] = "bool" defs["ImGuiTextFilter_IsActive"][1]["signature"] = "()" defs["ImGuiTextFilter_IsActive"][1]["stname"] = "ImGuiTextFilter" @@ -4309,13 +4470,14 @@ defs["ImGuiTextFilter_PassFilter"][1]["argsT"][2]["type"] = "const char*" defs["ImGuiTextFilter_PassFilter"][1]["argsT"][3] = {} defs["ImGuiTextFilter_PassFilter"][1]["argsT"][3]["name"] = "text_end" defs["ImGuiTextFilter_PassFilter"][1]["argsT"][3]["type"] = "const char*" -defs["ImGuiTextFilter_PassFilter"][1]["argsoriginal"] = "(const char* text,const char* text_end=((void *)0))" +defs["ImGuiTextFilter_PassFilter"][1]["argsoriginal"] = "(const char* text,const char* text_end=((void*)0))" defs["ImGuiTextFilter_PassFilter"][1]["call_args"] = "(text,text_end)" defs["ImGuiTextFilter_PassFilter"][1]["cimguiname"] = "ImGuiTextFilter_PassFilter" defs["ImGuiTextFilter_PassFilter"][1]["comment"] = "" defs["ImGuiTextFilter_PassFilter"][1]["defaults"] = {} -defs["ImGuiTextFilter_PassFilter"][1]["defaults"]["text_end"] = "((void *)0)" +defs["ImGuiTextFilter_PassFilter"][1]["defaults"]["text_end"] = "((void*)0)" defs["ImGuiTextFilter_PassFilter"][1]["funcname"] = "PassFilter" +defs["ImGuiTextFilter_PassFilter"][1]["ov_cimguiname"] = "ImGuiTextFilter_PassFilter" defs["ImGuiTextFilter_PassFilter"][1]["ret"] = "bool" defs["ImGuiTextFilter_PassFilter"][1]["signature"] = "(const char*,const char*)" defs["ImGuiTextFilter_PassFilter"][1]["stname"] = "ImGuiTextFilter" @@ -4455,9 +4617,29 @@ defs["ImVector_ImVector"][1]["comment"] = "" defs["ImVector_ImVector"][1]["constructor"] = true defs["ImVector_ImVector"][1]["defaults"] = {} defs["ImVector_ImVector"][1]["funcname"] = "ImVector" +defs["ImVector_ImVector"][1]["ov_cimguiname"] = "ImVector_ImVector" defs["ImVector_ImVector"][1]["signature"] = "()" defs["ImVector_ImVector"][1]["stname"] = "ImVector" +defs["ImVector_ImVector"][1]["templated"] = true +defs["ImVector_ImVector"][2] = {} +defs["ImVector_ImVector"][2]["args"] = "(const ImVector_ src)" +defs["ImVector_ImVector"][2]["argsT"] = {} +defs["ImVector_ImVector"][2]["argsT"][1] = {} +defs["ImVector_ImVector"][2]["argsT"][1]["name"] = "src" +defs["ImVector_ImVector"][2]["argsT"][1]["type"] = "const ImVector_" +defs["ImVector_ImVector"][2]["argsoriginal"] = "(const ImVector& src)" +defs["ImVector_ImVector"][2]["call_args"] = "(src)" +defs["ImVector_ImVector"][2]["cimguiname"] = "ImVector_ImVector" +defs["ImVector_ImVector"][2]["comment"] = "" +defs["ImVector_ImVector"][2]["constructor"] = true +defs["ImVector_ImVector"][2]["defaults"] = {} +defs["ImVector_ImVector"][2]["funcname"] = "ImVector" +defs["ImVector_ImVector"][2]["ov_cimguiname"] = "ImVector_ImVectorVector_" +defs["ImVector_ImVector"][2]["signature"] = "(const ImVector_)" +defs["ImVector_ImVector"][2]["stname"] = "ImVector" +defs["ImVector_ImVector"][2]["templated"] = true defs["ImVector_ImVector"]["()"] = defs["ImVector_ImVector"][1] +defs["ImVector_ImVector"]["(const ImVector_)"] = defs["ImVector_ImVector"][2] defs["ImVector__grow_capacity"] = {} defs["ImVector__grow_capacity"][1] = {} defs["ImVector__grow_capacity"][1]["args"] = "(ImVector* self,int sz)" @@ -4474,9 +4656,11 @@ defs["ImVector__grow_capacity"][1]["cimguiname"] = "ImVector__grow_capacity" defs["ImVector__grow_capacity"][1]["comment"] = "" defs["ImVector__grow_capacity"][1]["defaults"] = {} defs["ImVector__grow_capacity"][1]["funcname"] = "_grow_capacity" +defs["ImVector__grow_capacity"][1]["ov_cimguiname"] = "ImVector__grow_capacity" defs["ImVector__grow_capacity"][1]["ret"] = "int" defs["ImVector__grow_capacity"][1]["signature"] = "(int)" defs["ImVector__grow_capacity"][1]["stname"] = "ImVector" +defs["ImVector__grow_capacity"][1]["templated"] = true defs["ImVector__grow_capacity"]["(int)"] = defs["ImVector__grow_capacity"][1] defs["ImVector_back"] = {} defs["ImVector_back"][1] = {} @@ -4496,6 +4680,7 @@ defs["ImVector_back"][1]["ret"] = "T*" defs["ImVector_back"][1]["retref"] = "&" defs["ImVector_back"][1]["signature"] = "()" defs["ImVector_back"][1]["stname"] = "ImVector" +defs["ImVector_back"][1]["templated"] = true defs["ImVector_back"][2] = {} defs["ImVector_back"][2]["args"] = "(ImVector* self)" defs["ImVector_back"][2]["argsT"] = {} @@ -4513,6 +4698,7 @@ defs["ImVector_back"][2]["ret"] = "const T*" defs["ImVector_back"][2]["retref"] = "&" defs["ImVector_back"][2]["signature"] = "()" defs["ImVector_back"][2]["stname"] = "ImVector" +defs["ImVector_back"][2]["templated"] = true defs["ImVector_back"]["()"] = defs["ImVector_back"][2] defs["ImVector_begin"] = {} defs["ImVector_begin"][1] = {} @@ -4531,6 +4717,7 @@ defs["ImVector_begin"][1]["ov_cimguiname"] = "ImVector_begin" defs["ImVector_begin"][1]["ret"] = "T*" defs["ImVector_begin"][1]["signature"] = "()" defs["ImVector_begin"][1]["stname"] = "ImVector" +defs["ImVector_begin"][1]["templated"] = true defs["ImVector_begin"][2] = {} defs["ImVector_begin"][2]["args"] = "(ImVector* self)" defs["ImVector_begin"][2]["argsT"] = {} @@ -4547,6 +4734,7 @@ defs["ImVector_begin"][2]["ov_cimguiname"] = "ImVector_begin" defs["ImVector_begin"][2]["ret"] = "const T*" defs["ImVector_begin"][2]["signature"] = "()" defs["ImVector_begin"][2]["stname"] = "ImVector" +defs["ImVector_begin"][2]["templated"] = true defs["ImVector_begin"]["()"] = defs["ImVector_begin"][2] defs["ImVector_capacity"] = {} defs["ImVector_capacity"][1] = {} @@ -4561,9 +4749,11 @@ defs["ImVector_capacity"][1]["cimguiname"] = "ImVector_capacity" defs["ImVector_capacity"][1]["comment"] = "" defs["ImVector_capacity"][1]["defaults"] = {} defs["ImVector_capacity"][1]["funcname"] = "capacity" +defs["ImVector_capacity"][1]["ov_cimguiname"] = "ImVector_capacity" defs["ImVector_capacity"][1]["ret"] = "int" defs["ImVector_capacity"][1]["signature"] = "()" defs["ImVector_capacity"][1]["stname"] = "ImVector" +defs["ImVector_capacity"][1]["templated"] = true defs["ImVector_capacity"]["()"] = defs["ImVector_capacity"][1] defs["ImVector_clear"] = {} defs["ImVector_clear"][1] = {} @@ -4578,9 +4768,11 @@ defs["ImVector_clear"][1]["cimguiname"] = "ImVector_clear" defs["ImVector_clear"][1]["comment"] = "" defs["ImVector_clear"][1]["defaults"] = {} defs["ImVector_clear"][1]["funcname"] = "clear" +defs["ImVector_clear"][1]["ov_cimguiname"] = "ImVector_clear" defs["ImVector_clear"][1]["ret"] = "void" defs["ImVector_clear"][1]["signature"] = "()" defs["ImVector_clear"][1]["stname"] = "ImVector" +defs["ImVector_clear"][1]["templated"] = true defs["ImVector_clear"]["()"] = defs["ImVector_clear"][1] defs["ImVector_contains"] = {} defs["ImVector_contains"][1] = {} @@ -4598,9 +4790,11 @@ defs["ImVector_contains"][1]["cimguiname"] = "ImVector_contains" defs["ImVector_contains"][1]["comment"] = "" defs["ImVector_contains"][1]["defaults"] = {} defs["ImVector_contains"][1]["funcname"] = "contains" +defs["ImVector_contains"][1]["ov_cimguiname"] = "ImVector_contains" defs["ImVector_contains"][1]["ret"] = "bool" defs["ImVector_contains"][1]["signature"] = "(const T)" defs["ImVector_contains"][1]["stname"] = "ImVector" +defs["ImVector_contains"][1]["templated"] = true defs["ImVector_contains"]["(const T)"] = defs["ImVector_contains"][1] defs["ImVector_destroy"] = {} defs["ImVector_destroy"][1] = {} @@ -4631,9 +4825,11 @@ defs["ImVector_empty"][1]["cimguiname"] = "ImVector_empty" defs["ImVector_empty"][1]["comment"] = "" defs["ImVector_empty"][1]["defaults"] = {} defs["ImVector_empty"][1]["funcname"] = "empty" +defs["ImVector_empty"][1]["ov_cimguiname"] = "ImVector_empty" defs["ImVector_empty"][1]["ret"] = "bool" defs["ImVector_empty"][1]["signature"] = "()" defs["ImVector_empty"][1]["stname"] = "ImVector" +defs["ImVector_empty"][1]["templated"] = true defs["ImVector_empty"]["()"] = defs["ImVector_empty"][1] defs["ImVector_end"] = {} defs["ImVector_end"][1] = {} @@ -4652,6 +4848,7 @@ defs["ImVector_end"][1]["ov_cimguiname"] = "ImVector_end" defs["ImVector_end"][1]["ret"] = "T*" defs["ImVector_end"][1]["signature"] = "()" defs["ImVector_end"][1]["stname"] = "ImVector" +defs["ImVector_end"][1]["templated"] = true defs["ImVector_end"][2] = {} defs["ImVector_end"][2]["args"] = "(ImVector* self)" defs["ImVector_end"][2]["argsT"] = {} @@ -4668,6 +4865,7 @@ defs["ImVector_end"][2]["ov_cimguiname"] = "ImVector_end" defs["ImVector_end"][2]["ret"] = "const T*" defs["ImVector_end"][2]["signature"] = "()" defs["ImVector_end"][2]["stname"] = "ImVector" +defs["ImVector_end"][2]["templated"] = true defs["ImVector_end"]["()"] = defs["ImVector_end"][2] defs["ImVector_erase"] = {} defs["ImVector_erase"][1] = {} @@ -4689,6 +4887,7 @@ defs["ImVector_erase"][1]["ov_cimguiname"] = "ImVector_erase" defs["ImVector_erase"][1]["ret"] = "T*" defs["ImVector_erase"][1]["signature"] = "(const T*)" defs["ImVector_erase"][1]["stname"] = "ImVector" +defs["ImVector_erase"][1]["templated"] = true defs["ImVector_erase"][2] = {} defs["ImVector_erase"][2]["args"] = "(ImVector* self,const T* it,const T* it_last)" defs["ImVector_erase"][2]["argsT"] = {} @@ -4711,6 +4910,7 @@ defs["ImVector_erase"][2]["ov_cimguiname"] = "ImVector_eraseTPtr" defs["ImVector_erase"][2]["ret"] = "T*" defs["ImVector_erase"][2]["signature"] = "(const T*,const T*)" defs["ImVector_erase"][2]["stname"] = "ImVector" +defs["ImVector_erase"][2]["templated"] = true defs["ImVector_erase"]["(const T*)"] = defs["ImVector_erase"][1] defs["ImVector_erase"]["(const T*,const T*)"] = defs["ImVector_erase"][2] defs["ImVector_erase_unsorted"] = {} @@ -4729,9 +4929,11 @@ defs["ImVector_erase_unsorted"][1]["cimguiname"] = "ImVector_erase_unsorted" defs["ImVector_erase_unsorted"][1]["comment"] = "" defs["ImVector_erase_unsorted"][1]["defaults"] = {} defs["ImVector_erase_unsorted"][1]["funcname"] = "erase_unsorted" +defs["ImVector_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_erase_unsorted" defs["ImVector_erase_unsorted"][1]["ret"] = "T*" defs["ImVector_erase_unsorted"][1]["signature"] = "(const T*)" defs["ImVector_erase_unsorted"][1]["stname"] = "ImVector" +defs["ImVector_erase_unsorted"][1]["templated"] = true defs["ImVector_erase_unsorted"]["(const T*)"] = defs["ImVector_erase_unsorted"][1] defs["ImVector_front"] = {} defs["ImVector_front"][1] = {} @@ -4751,6 +4953,7 @@ defs["ImVector_front"][1]["ret"] = "T*" defs["ImVector_front"][1]["retref"] = "&" defs["ImVector_front"][1]["signature"] = "()" defs["ImVector_front"][1]["stname"] = "ImVector" +defs["ImVector_front"][1]["templated"] = true defs["ImVector_front"][2] = {} defs["ImVector_front"][2]["args"] = "(ImVector* self)" defs["ImVector_front"][2]["argsT"] = {} @@ -4768,6 +4971,7 @@ defs["ImVector_front"][2]["ret"] = "const T*" defs["ImVector_front"][2]["retref"] = "&" defs["ImVector_front"][2]["signature"] = "()" defs["ImVector_front"][2]["stname"] = "ImVector" +defs["ImVector_front"][2]["templated"] = true defs["ImVector_front"]["()"] = defs["ImVector_front"][2] defs["ImVector_index_from_ptr"] = {} defs["ImVector_index_from_ptr"][1] = {} @@ -4785,9 +4989,11 @@ defs["ImVector_index_from_ptr"][1]["cimguiname"] = "ImVector_index_from_ptr" defs["ImVector_index_from_ptr"][1]["comment"] = "" defs["ImVector_index_from_ptr"][1]["defaults"] = {} defs["ImVector_index_from_ptr"][1]["funcname"] = "index_from_ptr" +defs["ImVector_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_index_from_ptr" defs["ImVector_index_from_ptr"][1]["ret"] = "int" defs["ImVector_index_from_ptr"][1]["signature"] = "(const T*)" defs["ImVector_index_from_ptr"][1]["stname"] = "ImVector" +defs["ImVector_index_from_ptr"][1]["templated"] = true defs["ImVector_index_from_ptr"]["(const T*)"] = defs["ImVector_index_from_ptr"][1] defs["ImVector_insert"] = {} defs["ImVector_insert"][1] = {} @@ -4808,9 +5014,11 @@ defs["ImVector_insert"][1]["cimguiname"] = "ImVector_insert" defs["ImVector_insert"][1]["comment"] = "" defs["ImVector_insert"][1]["defaults"] = {} defs["ImVector_insert"][1]["funcname"] = "insert" +defs["ImVector_insert"][1]["ov_cimguiname"] = "ImVector_insert" defs["ImVector_insert"][1]["ret"] = "T*" defs["ImVector_insert"][1]["signature"] = "(const T*,const T)" defs["ImVector_insert"][1]["stname"] = "ImVector" +defs["ImVector_insert"][1]["templated"] = true defs["ImVector_insert"]["(const T*,const T)"] = defs["ImVector_insert"][1] defs["ImVector_pop_back"] = {} defs["ImVector_pop_back"][1] = {} @@ -4825,9 +5033,11 @@ defs["ImVector_pop_back"][1]["cimguiname"] = "ImVector_pop_back" defs["ImVector_pop_back"][1]["comment"] = "" defs["ImVector_pop_back"][1]["defaults"] = {} defs["ImVector_pop_back"][1]["funcname"] = "pop_back" +defs["ImVector_pop_back"][1]["ov_cimguiname"] = "ImVector_pop_back" defs["ImVector_pop_back"][1]["ret"] = "void" defs["ImVector_pop_back"][1]["signature"] = "()" defs["ImVector_pop_back"][1]["stname"] = "ImVector" +defs["ImVector_pop_back"][1]["templated"] = true defs["ImVector_pop_back"]["()"] = defs["ImVector_pop_back"][1] defs["ImVector_push_back"] = {} defs["ImVector_push_back"][1] = {} @@ -4845,9 +5055,11 @@ defs["ImVector_push_back"][1]["cimguiname"] = "ImVector_push_back" defs["ImVector_push_back"][1]["comment"] = "" defs["ImVector_push_back"][1]["defaults"] = {} defs["ImVector_push_back"][1]["funcname"] = "push_back" +defs["ImVector_push_back"][1]["ov_cimguiname"] = "ImVector_push_back" defs["ImVector_push_back"][1]["ret"] = "void" defs["ImVector_push_back"][1]["signature"] = "(const T)" defs["ImVector_push_back"][1]["stname"] = "ImVector" +defs["ImVector_push_back"][1]["templated"] = true defs["ImVector_push_back"]["(const T)"] = defs["ImVector_push_back"][1] defs["ImVector_push_front"] = {} defs["ImVector_push_front"][1] = {} @@ -4865,9 +5077,11 @@ defs["ImVector_push_front"][1]["cimguiname"] = "ImVector_push_front" defs["ImVector_push_front"][1]["comment"] = "" defs["ImVector_push_front"][1]["defaults"] = {} defs["ImVector_push_front"][1]["funcname"] = "push_front" +defs["ImVector_push_front"][1]["ov_cimguiname"] = "ImVector_push_front" defs["ImVector_push_front"][1]["ret"] = "void" defs["ImVector_push_front"][1]["signature"] = "(const T)" defs["ImVector_push_front"][1]["stname"] = "ImVector" +defs["ImVector_push_front"][1]["templated"] = true defs["ImVector_push_front"]["(const T)"] = defs["ImVector_push_front"][1] defs["ImVector_reserve"] = {} defs["ImVector_reserve"][1] = {} @@ -4885,9 +5099,11 @@ defs["ImVector_reserve"][1]["cimguiname"] = "ImVector_reserve" defs["ImVector_reserve"][1]["comment"] = "" defs["ImVector_reserve"][1]["defaults"] = {} defs["ImVector_reserve"][1]["funcname"] = "reserve" +defs["ImVector_reserve"][1]["ov_cimguiname"] = "ImVector_reserve" defs["ImVector_reserve"][1]["ret"] = "void" defs["ImVector_reserve"][1]["signature"] = "(int)" defs["ImVector_reserve"][1]["stname"] = "ImVector" +defs["ImVector_reserve"][1]["templated"] = true defs["ImVector_reserve"]["(int)"] = defs["ImVector_reserve"][1] defs["ImVector_resize"] = {} defs["ImVector_resize"][1] = {} @@ -4909,6 +5125,7 @@ defs["ImVector_resize"][1]["ov_cimguiname"] = "ImVector_resize" defs["ImVector_resize"][1]["ret"] = "void" defs["ImVector_resize"][1]["signature"] = "(int)" defs["ImVector_resize"][1]["stname"] = "ImVector" +defs["ImVector_resize"][1]["templated"] = true defs["ImVector_resize"][2] = {} defs["ImVector_resize"][2]["args"] = "(ImVector* self,int new_size,const T v)" defs["ImVector_resize"][2]["argsT"] = {} @@ -4931,6 +5148,7 @@ defs["ImVector_resize"][2]["ov_cimguiname"] = "ImVector_resizeT" defs["ImVector_resize"][2]["ret"] = "void" defs["ImVector_resize"][2]["signature"] = "(int,const T)" defs["ImVector_resize"][2]["stname"] = "ImVector" +defs["ImVector_resize"][2]["templated"] = true defs["ImVector_resize"]["(int)"] = defs["ImVector_resize"][1] defs["ImVector_resize"]["(int,const T)"] = defs["ImVector_resize"][2] defs["ImVector_size"] = {} @@ -4946,9 +5164,11 @@ defs["ImVector_size"][1]["cimguiname"] = "ImVector_size" defs["ImVector_size"][1]["comment"] = "" defs["ImVector_size"][1]["defaults"] = {} defs["ImVector_size"][1]["funcname"] = "size" +defs["ImVector_size"][1]["ov_cimguiname"] = "ImVector_size" defs["ImVector_size"][1]["ret"] = "int" defs["ImVector_size"][1]["signature"] = "()" defs["ImVector_size"][1]["stname"] = "ImVector" +defs["ImVector_size"][1]["templated"] = true defs["ImVector_size"]["()"] = defs["ImVector_size"][1] defs["ImVector_size_in_bytes"] = {} defs["ImVector_size_in_bytes"][1] = {} @@ -4963,30 +5183,34 @@ defs["ImVector_size_in_bytes"][1]["cimguiname"] = "ImVector_size_in_bytes" defs["ImVector_size_in_bytes"][1]["comment"] = "" defs["ImVector_size_in_bytes"][1]["defaults"] = {} defs["ImVector_size_in_bytes"][1]["funcname"] = "size_in_bytes" +defs["ImVector_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_size_in_bytes" defs["ImVector_size_in_bytes"][1]["ret"] = "int" defs["ImVector_size_in_bytes"][1]["signature"] = "()" defs["ImVector_size_in_bytes"][1]["stname"] = "ImVector" +defs["ImVector_size_in_bytes"][1]["templated"] = true defs["ImVector_size_in_bytes"]["()"] = defs["ImVector_size_in_bytes"][1] defs["ImVector_swap"] = {} defs["ImVector_swap"][1] = {} -defs["ImVector_swap"][1]["args"] = "(ImVector* self,ImVector_T rhs)" +defs["ImVector_swap"][1]["args"] = "(ImVector* self,ImVector_ rhs)" defs["ImVector_swap"][1]["argsT"] = {} defs["ImVector_swap"][1]["argsT"][1] = {} defs["ImVector_swap"][1]["argsT"][1]["name"] = "self" defs["ImVector_swap"][1]["argsT"][1]["type"] = "ImVector*" defs["ImVector_swap"][1]["argsT"][2] = {} defs["ImVector_swap"][1]["argsT"][2]["name"] = "rhs" -defs["ImVector_swap"][1]["argsT"][2]["type"] = "ImVector_T&" +defs["ImVector_swap"][1]["argsT"][2]["type"] = "ImVector_&" defs["ImVector_swap"][1]["argsoriginal"] = "(ImVector& rhs)" defs["ImVector_swap"][1]["call_args"] = "(rhs)" defs["ImVector_swap"][1]["cimguiname"] = "ImVector_swap" defs["ImVector_swap"][1]["comment"] = "" defs["ImVector_swap"][1]["defaults"] = {} defs["ImVector_swap"][1]["funcname"] = "swap" +defs["ImVector_swap"][1]["ov_cimguiname"] = "ImVector_swap" defs["ImVector_swap"][1]["ret"] = "void" -defs["ImVector_swap"][1]["signature"] = "(ImVector_T)" +defs["ImVector_swap"][1]["signature"] = "(ImVector_)" defs["ImVector_swap"][1]["stname"] = "ImVector" -defs["ImVector_swap"]["(ImVector_T)"] = defs["ImVector_swap"][1] +defs["ImVector_swap"][1]["templated"] = true +defs["ImVector_swap"]["(ImVector_)"] = defs["ImVector_swap"][1] defs["Pair_Pair"] = {} defs["Pair_Pair"][1] = {} defs["Pair_Pair"][1]["args"] = "(ImGuiID _key,int _val_i)" @@ -5112,6 +5336,7 @@ defs["TextRange_begin"][1]["cimguiname"] = "TextRange_begin" defs["TextRange_begin"][1]["comment"] = "" defs["TextRange_begin"][1]["defaults"] = {} defs["TextRange_begin"][1]["funcname"] = "begin" +defs["TextRange_begin"][1]["ov_cimguiname"] = "TextRange_begin" defs["TextRange_begin"][1]["ret"] = "const char*" defs["TextRange_begin"][1]["signature"] = "()" defs["TextRange_begin"][1]["stname"] = "TextRange" @@ -5145,6 +5370,7 @@ defs["TextRange_empty"][1]["cimguiname"] = "TextRange_empty" defs["TextRange_empty"][1]["comment"] = "" defs["TextRange_empty"][1]["defaults"] = {} defs["TextRange_empty"][1]["funcname"] = "empty" +defs["TextRange_empty"][1]["ov_cimguiname"] = "TextRange_empty" defs["TextRange_empty"][1]["ret"] = "bool" defs["TextRange_empty"][1]["signature"] = "()" defs["TextRange_empty"][1]["stname"] = "TextRange" @@ -5162,6 +5388,7 @@ defs["TextRange_end"][1]["cimguiname"] = "TextRange_end" defs["TextRange_end"][1]["comment"] = "" defs["TextRange_end"][1]["defaults"] = {} defs["TextRange_end"][1]["funcname"] = "end" +defs["TextRange_end"][1]["ov_cimguiname"] = "TextRange_end" defs["TextRange_end"][1]["ret"] = "const char*" defs["TextRange_end"][1]["signature"] = "()" defs["TextRange_end"][1]["stname"] = "TextRange" @@ -5185,6 +5412,7 @@ defs["TextRange_split"][1]["cimguiname"] = "TextRange_split" defs["TextRange_split"][1]["comment"] = "" defs["TextRange_split"][1]["defaults"] = {} defs["TextRange_split"][1]["funcname"] = "split" +defs["TextRange_split"][1]["ov_cimguiname"] = "TextRange_split" defs["TextRange_split"][1]["ret"] = "void" defs["TextRange_split"][1]["signature"] = "(char,ImVector_TextRange*)" defs["TextRange_split"][1]["stname"] = "TextRange" @@ -5206,9 +5434,11 @@ defs["igAcceptDragDropPayload"][1]["comment"] = "" defs["igAcceptDragDropPayload"][1]["defaults"] = {} defs["igAcceptDragDropPayload"][1]["defaults"]["flags"] = "0" defs["igAcceptDragDropPayload"][1]["funcname"] = "AcceptDragDropPayload" +defs["igAcceptDragDropPayload"][1]["namespace"] = "ImGui" +defs["igAcceptDragDropPayload"][1]["ov_cimguiname"] = "igAcceptDragDropPayload" defs["igAcceptDragDropPayload"][1]["ret"] = "const ImGuiPayload*" defs["igAcceptDragDropPayload"][1]["signature"] = "(const char*,ImGuiDragDropFlags)" -defs["igAcceptDragDropPayload"][1]["stname"] = "ImGui" +defs["igAcceptDragDropPayload"][1]["stname"] = "" defs["igAcceptDragDropPayload"]["(const char*,ImGuiDragDropFlags)"] = defs["igAcceptDragDropPayload"][1] defs["igAlignTextToFramePadding"] = {} defs["igAlignTextToFramePadding"][1] = {} @@ -5220,9 +5450,11 @@ defs["igAlignTextToFramePadding"][1]["cimguiname"] = "igAlignTextToFramePadding" defs["igAlignTextToFramePadding"][1]["comment"] = "" defs["igAlignTextToFramePadding"][1]["defaults"] = {} defs["igAlignTextToFramePadding"][1]["funcname"] = "AlignTextToFramePadding" +defs["igAlignTextToFramePadding"][1]["namespace"] = "ImGui" +defs["igAlignTextToFramePadding"][1]["ov_cimguiname"] = "igAlignTextToFramePadding" defs["igAlignTextToFramePadding"][1]["ret"] = "void" defs["igAlignTextToFramePadding"][1]["signature"] = "()" -defs["igAlignTextToFramePadding"][1]["stname"] = "ImGui" +defs["igAlignTextToFramePadding"][1]["stname"] = "" defs["igAlignTextToFramePadding"]["()"] = defs["igAlignTextToFramePadding"][1] defs["igArrowButton"] = {} defs["igArrowButton"][1] = {} @@ -5240,9 +5472,11 @@ defs["igArrowButton"][1]["cimguiname"] = "igArrowButton" defs["igArrowButton"][1]["comment"] = "" defs["igArrowButton"][1]["defaults"] = {} defs["igArrowButton"][1]["funcname"] = "ArrowButton" +defs["igArrowButton"][1]["namespace"] = "ImGui" +defs["igArrowButton"][1]["ov_cimguiname"] = "igArrowButton" defs["igArrowButton"][1]["ret"] = "bool" defs["igArrowButton"][1]["signature"] = "(const char*,ImGuiDir)" -defs["igArrowButton"][1]["stname"] = "ImGui" +defs["igArrowButton"][1]["stname"] = "" defs["igArrowButton"]["(const char*,ImGuiDir)"] = defs["igArrowButton"][1] defs["igBegin"] = {} defs["igBegin"][1] = {} @@ -5257,17 +5491,19 @@ defs["igBegin"][1]["argsT"][2]["type"] = "bool*" defs["igBegin"][1]["argsT"][3] = {} defs["igBegin"][1]["argsT"][3]["name"] = "flags" defs["igBegin"][1]["argsT"][3]["type"] = "ImGuiWindowFlags" -defs["igBegin"][1]["argsoriginal"] = "(const char* name,bool* p_open=((void *)0),ImGuiWindowFlags flags=0)" +defs["igBegin"][1]["argsoriginal"] = "(const char* name,bool* p_open=((void*)0),ImGuiWindowFlags flags=0)" defs["igBegin"][1]["call_args"] = "(name,p_open,flags)" defs["igBegin"][1]["cimguiname"] = "igBegin" defs["igBegin"][1]["comment"] = "" defs["igBegin"][1]["defaults"] = {} defs["igBegin"][1]["defaults"]["flags"] = "0" -defs["igBegin"][1]["defaults"]["p_open"] = "((void *)0)" +defs["igBegin"][1]["defaults"]["p_open"] = "((void*)0)" defs["igBegin"][1]["funcname"] = "Begin" +defs["igBegin"][1]["namespace"] = "ImGui" +defs["igBegin"][1]["ov_cimguiname"] = "igBegin" defs["igBegin"][1]["ret"] = "bool" defs["igBegin"][1]["signature"] = "(const char*,bool*,ImGuiWindowFlags)" -defs["igBegin"][1]["stname"] = "ImGui" +defs["igBegin"][1]["stname"] = "" defs["igBegin"]["(const char*,bool*,ImGuiWindowFlags)"] = defs["igBegin"][1] defs["igBeginChild"] = {} defs["igBeginChild"][1] = {} @@ -5294,10 +5530,11 @@ defs["igBeginChild"][1]["defaults"]["border"] = "false" defs["igBeginChild"][1]["defaults"]["flags"] = "0" defs["igBeginChild"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igBeginChild"][1]["funcname"] = "BeginChild" +defs["igBeginChild"][1]["namespace"] = "ImGui" defs["igBeginChild"][1]["ov_cimguiname"] = "igBeginChild" defs["igBeginChild"][1]["ret"] = "bool" defs["igBeginChild"][1]["signature"] = "(const char*,const ImVec2,bool,ImGuiWindowFlags)" -defs["igBeginChild"][1]["stname"] = "ImGui" +defs["igBeginChild"][1]["stname"] = "" defs["igBeginChild"][2] = {} defs["igBeginChild"][2]["args"] = "(ImGuiID id,const ImVec2 size,bool border,ImGuiWindowFlags flags)" defs["igBeginChild"][2]["argsT"] = {} @@ -5322,10 +5559,11 @@ defs["igBeginChild"][2]["defaults"]["border"] = "false" defs["igBeginChild"][2]["defaults"]["flags"] = "0" defs["igBeginChild"][2]["defaults"]["size"] = "ImVec2(0,0)" defs["igBeginChild"][2]["funcname"] = "BeginChild" +defs["igBeginChild"][2]["namespace"] = "ImGui" defs["igBeginChild"][2]["ov_cimguiname"] = "igBeginChildID" defs["igBeginChild"][2]["ret"] = "bool" defs["igBeginChild"][2]["signature"] = "(ImGuiID,const ImVec2,bool,ImGuiWindowFlags)" -defs["igBeginChild"][2]["stname"] = "ImGui" +defs["igBeginChild"][2]["stname"] = "" defs["igBeginChild"]["(ImGuiID,const ImVec2,bool,ImGuiWindowFlags)"] = defs["igBeginChild"][2] defs["igBeginChild"]["(const char*,const ImVec2,bool,ImGuiWindowFlags)"] = defs["igBeginChild"][1] defs["igBeginChildFrame"] = {} @@ -5348,9 +5586,11 @@ defs["igBeginChildFrame"][1]["comment"] = "" defs["igBeginChildFrame"][1]["defaults"] = {} defs["igBeginChildFrame"][1]["defaults"]["flags"] = "0" defs["igBeginChildFrame"][1]["funcname"] = "BeginChildFrame" +defs["igBeginChildFrame"][1]["namespace"] = "ImGui" +defs["igBeginChildFrame"][1]["ov_cimguiname"] = "igBeginChildFrame" defs["igBeginChildFrame"][1]["ret"] = "bool" defs["igBeginChildFrame"][1]["signature"] = "(ImGuiID,const ImVec2,ImGuiWindowFlags)" -defs["igBeginChildFrame"][1]["stname"] = "ImGui" +defs["igBeginChildFrame"][1]["stname"] = "" defs["igBeginChildFrame"]["(ImGuiID,const ImVec2,ImGuiWindowFlags)"] = defs["igBeginChildFrame"][1] defs["igBeginCombo"] = {} defs["igBeginCombo"][1] = {} @@ -5372,9 +5612,11 @@ defs["igBeginCombo"][1]["comment"] = "" defs["igBeginCombo"][1]["defaults"] = {} defs["igBeginCombo"][1]["defaults"]["flags"] = "0" defs["igBeginCombo"][1]["funcname"] = "BeginCombo" +defs["igBeginCombo"][1]["namespace"] = "ImGui" +defs["igBeginCombo"][1]["ov_cimguiname"] = "igBeginCombo" defs["igBeginCombo"][1]["ret"] = "bool" defs["igBeginCombo"][1]["signature"] = "(const char*,const char*,ImGuiComboFlags)" -defs["igBeginCombo"][1]["stname"] = "ImGui" +defs["igBeginCombo"][1]["stname"] = "" defs["igBeginCombo"]["(const char*,const char*,ImGuiComboFlags)"] = defs["igBeginCombo"][1] defs["igBeginDragDropSource"] = {} defs["igBeginDragDropSource"][1] = {} @@ -5390,9 +5632,11 @@ defs["igBeginDragDropSource"][1]["comment"] = "" defs["igBeginDragDropSource"][1]["defaults"] = {} defs["igBeginDragDropSource"][1]["defaults"]["flags"] = "0" defs["igBeginDragDropSource"][1]["funcname"] = "BeginDragDropSource" +defs["igBeginDragDropSource"][1]["namespace"] = "ImGui" +defs["igBeginDragDropSource"][1]["ov_cimguiname"] = "igBeginDragDropSource" defs["igBeginDragDropSource"][1]["ret"] = "bool" defs["igBeginDragDropSource"][1]["signature"] = "(ImGuiDragDropFlags)" -defs["igBeginDragDropSource"][1]["stname"] = "ImGui" +defs["igBeginDragDropSource"][1]["stname"] = "" defs["igBeginDragDropSource"]["(ImGuiDragDropFlags)"] = defs["igBeginDragDropSource"][1] defs["igBeginDragDropTarget"] = {} defs["igBeginDragDropTarget"][1] = {} @@ -5404,9 +5648,11 @@ defs["igBeginDragDropTarget"][1]["cimguiname"] = "igBeginDragDropTarget" defs["igBeginDragDropTarget"][1]["comment"] = "" defs["igBeginDragDropTarget"][1]["defaults"] = {} defs["igBeginDragDropTarget"][1]["funcname"] = "BeginDragDropTarget" +defs["igBeginDragDropTarget"][1]["namespace"] = "ImGui" +defs["igBeginDragDropTarget"][1]["ov_cimguiname"] = "igBeginDragDropTarget" defs["igBeginDragDropTarget"][1]["ret"] = "bool" defs["igBeginDragDropTarget"][1]["signature"] = "()" -defs["igBeginDragDropTarget"][1]["stname"] = "ImGui" +defs["igBeginDragDropTarget"][1]["stname"] = "" defs["igBeginDragDropTarget"]["()"] = defs["igBeginDragDropTarget"][1] defs["igBeginGroup"] = {} defs["igBeginGroup"][1] = {} @@ -5418,9 +5664,11 @@ defs["igBeginGroup"][1]["cimguiname"] = "igBeginGroup" defs["igBeginGroup"][1]["comment"] = "" defs["igBeginGroup"][1]["defaults"] = {} defs["igBeginGroup"][1]["funcname"] = "BeginGroup" +defs["igBeginGroup"][1]["namespace"] = "ImGui" +defs["igBeginGroup"][1]["ov_cimguiname"] = "igBeginGroup" defs["igBeginGroup"][1]["ret"] = "void" defs["igBeginGroup"][1]["signature"] = "()" -defs["igBeginGroup"][1]["stname"] = "ImGui" +defs["igBeginGroup"][1]["stname"] = "" defs["igBeginGroup"]["()"] = defs["igBeginGroup"][1] defs["igBeginMainMenuBar"] = {} defs["igBeginMainMenuBar"][1] = {} @@ -5432,9 +5680,11 @@ defs["igBeginMainMenuBar"][1]["cimguiname"] = "igBeginMainMenuBar" defs["igBeginMainMenuBar"][1]["comment"] = "" defs["igBeginMainMenuBar"][1]["defaults"] = {} defs["igBeginMainMenuBar"][1]["funcname"] = "BeginMainMenuBar" +defs["igBeginMainMenuBar"][1]["namespace"] = "ImGui" +defs["igBeginMainMenuBar"][1]["ov_cimguiname"] = "igBeginMainMenuBar" defs["igBeginMainMenuBar"][1]["ret"] = "bool" defs["igBeginMainMenuBar"][1]["signature"] = "()" -defs["igBeginMainMenuBar"][1]["stname"] = "ImGui" +defs["igBeginMainMenuBar"][1]["stname"] = "" defs["igBeginMainMenuBar"]["()"] = defs["igBeginMainMenuBar"][1] defs["igBeginMenu"] = {} defs["igBeginMenu"][1] = {} @@ -5453,9 +5703,11 @@ defs["igBeginMenu"][1]["comment"] = "" defs["igBeginMenu"][1]["defaults"] = {} defs["igBeginMenu"][1]["defaults"]["enabled"] = "true" defs["igBeginMenu"][1]["funcname"] = "BeginMenu" +defs["igBeginMenu"][1]["namespace"] = "ImGui" +defs["igBeginMenu"][1]["ov_cimguiname"] = "igBeginMenu" defs["igBeginMenu"][1]["ret"] = "bool" defs["igBeginMenu"][1]["signature"] = "(const char*,bool)" -defs["igBeginMenu"][1]["stname"] = "ImGui" +defs["igBeginMenu"][1]["stname"] = "" defs["igBeginMenu"]["(const char*,bool)"] = defs["igBeginMenu"][1] defs["igBeginMenuBar"] = {} defs["igBeginMenuBar"][1] = {} @@ -5467,9 +5719,11 @@ defs["igBeginMenuBar"][1]["cimguiname"] = "igBeginMenuBar" defs["igBeginMenuBar"][1]["comment"] = "" defs["igBeginMenuBar"][1]["defaults"] = {} defs["igBeginMenuBar"][1]["funcname"] = "BeginMenuBar" +defs["igBeginMenuBar"][1]["namespace"] = "ImGui" +defs["igBeginMenuBar"][1]["ov_cimguiname"] = "igBeginMenuBar" defs["igBeginMenuBar"][1]["ret"] = "bool" defs["igBeginMenuBar"][1]["signature"] = "()" -defs["igBeginMenuBar"][1]["stname"] = "ImGui" +defs["igBeginMenuBar"][1]["stname"] = "" defs["igBeginMenuBar"]["()"] = defs["igBeginMenuBar"][1] defs["igBeginPopup"] = {} defs["igBeginPopup"][1] = {} @@ -5488,9 +5742,11 @@ defs["igBeginPopup"][1]["comment"] = "" defs["igBeginPopup"][1]["defaults"] = {} defs["igBeginPopup"][1]["defaults"]["flags"] = "0" defs["igBeginPopup"][1]["funcname"] = "BeginPopup" +defs["igBeginPopup"][1]["namespace"] = "ImGui" +defs["igBeginPopup"][1]["ov_cimguiname"] = "igBeginPopup" defs["igBeginPopup"][1]["ret"] = "bool" defs["igBeginPopup"][1]["signature"] = "(const char*,ImGuiWindowFlags)" -defs["igBeginPopup"][1]["stname"] = "ImGui" +defs["igBeginPopup"][1]["stname"] = "" defs["igBeginPopup"]["(const char*,ImGuiWindowFlags)"] = defs["igBeginPopup"][1] defs["igBeginPopupContextItem"] = {} defs["igBeginPopupContextItem"][1] = {} @@ -5502,17 +5758,19 @@ defs["igBeginPopupContextItem"][1]["argsT"][1]["type"] = "const char*" defs["igBeginPopupContextItem"][1]["argsT"][2] = {} defs["igBeginPopupContextItem"][1]["argsT"][2]["name"] = "mouse_button" defs["igBeginPopupContextItem"][1]["argsT"][2]["type"] = "int" -defs["igBeginPopupContextItem"][1]["argsoriginal"] = "(const char* str_id=((void *)0),int mouse_button=1)" +defs["igBeginPopupContextItem"][1]["argsoriginal"] = "(const char* str_id=((void*)0),int mouse_button=1)" defs["igBeginPopupContextItem"][1]["call_args"] = "(str_id,mouse_button)" defs["igBeginPopupContextItem"][1]["cimguiname"] = "igBeginPopupContextItem" defs["igBeginPopupContextItem"][1]["comment"] = "" defs["igBeginPopupContextItem"][1]["defaults"] = {} defs["igBeginPopupContextItem"][1]["defaults"]["mouse_button"] = "1" -defs["igBeginPopupContextItem"][1]["defaults"]["str_id"] = "((void *)0)" +defs["igBeginPopupContextItem"][1]["defaults"]["str_id"] = "((void*)0)" defs["igBeginPopupContextItem"][1]["funcname"] = "BeginPopupContextItem" +defs["igBeginPopupContextItem"][1]["namespace"] = "ImGui" +defs["igBeginPopupContextItem"][1]["ov_cimguiname"] = "igBeginPopupContextItem" defs["igBeginPopupContextItem"][1]["ret"] = "bool" defs["igBeginPopupContextItem"][1]["signature"] = "(const char*,int)" -defs["igBeginPopupContextItem"][1]["stname"] = "ImGui" +defs["igBeginPopupContextItem"][1]["stname"] = "" defs["igBeginPopupContextItem"]["(const char*,int)"] = defs["igBeginPopupContextItem"][1] defs["igBeginPopupContextVoid"] = {} defs["igBeginPopupContextVoid"][1] = {} @@ -5524,17 +5782,19 @@ defs["igBeginPopupContextVoid"][1]["argsT"][1]["type"] = "const char*" defs["igBeginPopupContextVoid"][1]["argsT"][2] = {} defs["igBeginPopupContextVoid"][1]["argsT"][2]["name"] = "mouse_button" defs["igBeginPopupContextVoid"][1]["argsT"][2]["type"] = "int" -defs["igBeginPopupContextVoid"][1]["argsoriginal"] = "(const char* str_id=((void *)0),int mouse_button=1)" +defs["igBeginPopupContextVoid"][1]["argsoriginal"] = "(const char* str_id=((void*)0),int mouse_button=1)" defs["igBeginPopupContextVoid"][1]["call_args"] = "(str_id,mouse_button)" defs["igBeginPopupContextVoid"][1]["cimguiname"] = "igBeginPopupContextVoid" defs["igBeginPopupContextVoid"][1]["comment"] = "" defs["igBeginPopupContextVoid"][1]["defaults"] = {} defs["igBeginPopupContextVoid"][1]["defaults"]["mouse_button"] = "1" -defs["igBeginPopupContextVoid"][1]["defaults"]["str_id"] = "((void *)0)" +defs["igBeginPopupContextVoid"][1]["defaults"]["str_id"] = "((void*)0)" defs["igBeginPopupContextVoid"][1]["funcname"] = "BeginPopupContextVoid" +defs["igBeginPopupContextVoid"][1]["namespace"] = "ImGui" +defs["igBeginPopupContextVoid"][1]["ov_cimguiname"] = "igBeginPopupContextVoid" defs["igBeginPopupContextVoid"][1]["ret"] = "bool" defs["igBeginPopupContextVoid"][1]["signature"] = "(const char*,int)" -defs["igBeginPopupContextVoid"][1]["stname"] = "ImGui" +defs["igBeginPopupContextVoid"][1]["stname"] = "" defs["igBeginPopupContextVoid"]["(const char*,int)"] = defs["igBeginPopupContextVoid"][1] defs["igBeginPopupContextWindow"] = {} defs["igBeginPopupContextWindow"][1] = {} @@ -5549,18 +5809,20 @@ defs["igBeginPopupContextWindow"][1]["argsT"][2]["type"] = "int" defs["igBeginPopupContextWindow"][1]["argsT"][3] = {} defs["igBeginPopupContextWindow"][1]["argsT"][3]["name"] = "also_over_items" defs["igBeginPopupContextWindow"][1]["argsT"][3]["type"] = "bool" -defs["igBeginPopupContextWindow"][1]["argsoriginal"] = "(const char* str_id=((void *)0),int mouse_button=1,bool also_over_items=true)" +defs["igBeginPopupContextWindow"][1]["argsoriginal"] = "(const char* str_id=((void*)0),int mouse_button=1,bool also_over_items=true)" defs["igBeginPopupContextWindow"][1]["call_args"] = "(str_id,mouse_button,also_over_items)" defs["igBeginPopupContextWindow"][1]["cimguiname"] = "igBeginPopupContextWindow" defs["igBeginPopupContextWindow"][1]["comment"] = "" defs["igBeginPopupContextWindow"][1]["defaults"] = {} defs["igBeginPopupContextWindow"][1]["defaults"]["also_over_items"] = "true" defs["igBeginPopupContextWindow"][1]["defaults"]["mouse_button"] = "1" -defs["igBeginPopupContextWindow"][1]["defaults"]["str_id"] = "((void *)0)" +defs["igBeginPopupContextWindow"][1]["defaults"]["str_id"] = "((void*)0)" defs["igBeginPopupContextWindow"][1]["funcname"] = "BeginPopupContextWindow" +defs["igBeginPopupContextWindow"][1]["namespace"] = "ImGui" +defs["igBeginPopupContextWindow"][1]["ov_cimguiname"] = "igBeginPopupContextWindow" defs["igBeginPopupContextWindow"][1]["ret"] = "bool" defs["igBeginPopupContextWindow"][1]["signature"] = "(const char*,int,bool)" -defs["igBeginPopupContextWindow"][1]["stname"] = "ImGui" +defs["igBeginPopupContextWindow"][1]["stname"] = "" defs["igBeginPopupContextWindow"]["(const char*,int,bool)"] = defs["igBeginPopupContextWindow"][1] defs["igBeginPopupModal"] = {} defs["igBeginPopupModal"][1] = {} @@ -5575,17 +5837,19 @@ defs["igBeginPopupModal"][1]["argsT"][2]["type"] = "bool*" defs["igBeginPopupModal"][1]["argsT"][3] = {} defs["igBeginPopupModal"][1]["argsT"][3]["name"] = "flags" defs["igBeginPopupModal"][1]["argsT"][3]["type"] = "ImGuiWindowFlags" -defs["igBeginPopupModal"][1]["argsoriginal"] = "(const char* name,bool* p_open=((void *)0),ImGuiWindowFlags flags=0)" +defs["igBeginPopupModal"][1]["argsoriginal"] = "(const char* name,bool* p_open=((void*)0),ImGuiWindowFlags flags=0)" defs["igBeginPopupModal"][1]["call_args"] = "(name,p_open,flags)" defs["igBeginPopupModal"][1]["cimguiname"] = "igBeginPopupModal" defs["igBeginPopupModal"][1]["comment"] = "" defs["igBeginPopupModal"][1]["defaults"] = {} defs["igBeginPopupModal"][1]["defaults"]["flags"] = "0" -defs["igBeginPopupModal"][1]["defaults"]["p_open"] = "((void *)0)" +defs["igBeginPopupModal"][1]["defaults"]["p_open"] = "((void*)0)" defs["igBeginPopupModal"][1]["funcname"] = "BeginPopupModal" +defs["igBeginPopupModal"][1]["namespace"] = "ImGui" +defs["igBeginPopupModal"][1]["ov_cimguiname"] = "igBeginPopupModal" defs["igBeginPopupModal"][1]["ret"] = "bool" defs["igBeginPopupModal"][1]["signature"] = "(const char*,bool*,ImGuiWindowFlags)" -defs["igBeginPopupModal"][1]["stname"] = "ImGui" +defs["igBeginPopupModal"][1]["stname"] = "" defs["igBeginPopupModal"]["(const char*,bool*,ImGuiWindowFlags)"] = defs["igBeginPopupModal"][1] defs["igBeginTabBar"] = {} defs["igBeginTabBar"][1] = {} @@ -5604,9 +5868,11 @@ defs["igBeginTabBar"][1]["comment"] = "" defs["igBeginTabBar"][1]["defaults"] = {} defs["igBeginTabBar"][1]["defaults"]["flags"] = "0" defs["igBeginTabBar"][1]["funcname"] = "BeginTabBar" +defs["igBeginTabBar"][1]["namespace"] = "ImGui" +defs["igBeginTabBar"][1]["ov_cimguiname"] = "igBeginTabBar" defs["igBeginTabBar"][1]["ret"] = "bool" defs["igBeginTabBar"][1]["signature"] = "(const char*,ImGuiTabBarFlags)" -defs["igBeginTabBar"][1]["stname"] = "ImGui" +defs["igBeginTabBar"][1]["stname"] = "" defs["igBeginTabBar"]["(const char*,ImGuiTabBarFlags)"] = defs["igBeginTabBar"][1] defs["igBeginTabItem"] = {} defs["igBeginTabItem"][1] = {} @@ -5621,17 +5887,19 @@ defs["igBeginTabItem"][1]["argsT"][2]["type"] = "bool*" defs["igBeginTabItem"][1]["argsT"][3] = {} defs["igBeginTabItem"][1]["argsT"][3]["name"] = "flags" defs["igBeginTabItem"][1]["argsT"][3]["type"] = "ImGuiTabItemFlags" -defs["igBeginTabItem"][1]["argsoriginal"] = "(const char* label,bool* p_open=((void *)0),ImGuiTabItemFlags flags=0)" +defs["igBeginTabItem"][1]["argsoriginal"] = "(const char* label,bool* p_open=((void*)0),ImGuiTabItemFlags flags=0)" defs["igBeginTabItem"][1]["call_args"] = "(label,p_open,flags)" defs["igBeginTabItem"][1]["cimguiname"] = "igBeginTabItem" defs["igBeginTabItem"][1]["comment"] = "" defs["igBeginTabItem"][1]["defaults"] = {} defs["igBeginTabItem"][1]["defaults"]["flags"] = "0" -defs["igBeginTabItem"][1]["defaults"]["p_open"] = "((void *)0)" +defs["igBeginTabItem"][1]["defaults"]["p_open"] = "((void*)0)" defs["igBeginTabItem"][1]["funcname"] = "BeginTabItem" +defs["igBeginTabItem"][1]["namespace"] = "ImGui" +defs["igBeginTabItem"][1]["ov_cimguiname"] = "igBeginTabItem" defs["igBeginTabItem"][1]["ret"] = "bool" defs["igBeginTabItem"][1]["signature"] = "(const char*,bool*,ImGuiTabItemFlags)" -defs["igBeginTabItem"][1]["stname"] = "ImGui" +defs["igBeginTabItem"][1]["stname"] = "" defs["igBeginTabItem"]["(const char*,bool*,ImGuiTabItemFlags)"] = defs["igBeginTabItem"][1] defs["igBeginTooltip"] = {} defs["igBeginTooltip"][1] = {} @@ -5643,9 +5911,11 @@ defs["igBeginTooltip"][1]["cimguiname"] = "igBeginTooltip" defs["igBeginTooltip"][1]["comment"] = "" defs["igBeginTooltip"][1]["defaults"] = {} defs["igBeginTooltip"][1]["funcname"] = "BeginTooltip" +defs["igBeginTooltip"][1]["namespace"] = "ImGui" +defs["igBeginTooltip"][1]["ov_cimguiname"] = "igBeginTooltip" defs["igBeginTooltip"][1]["ret"] = "void" defs["igBeginTooltip"][1]["signature"] = "()" -defs["igBeginTooltip"][1]["stname"] = "ImGui" +defs["igBeginTooltip"][1]["stname"] = "" defs["igBeginTooltip"]["()"] = defs["igBeginTooltip"][1] defs["igBullet"] = {} defs["igBullet"][1] = {} @@ -5657,9 +5927,11 @@ defs["igBullet"][1]["cimguiname"] = "igBullet" defs["igBullet"][1]["comment"] = "" defs["igBullet"][1]["defaults"] = {} defs["igBullet"][1]["funcname"] = "Bullet" +defs["igBullet"][1]["namespace"] = "ImGui" +defs["igBullet"][1]["ov_cimguiname"] = "igBullet" defs["igBullet"][1]["ret"] = "void" defs["igBullet"][1]["signature"] = "()" -defs["igBullet"][1]["stname"] = "ImGui" +defs["igBullet"][1]["stname"] = "" defs["igBullet"]["()"] = defs["igBullet"][1] defs["igBulletText"] = {} defs["igBulletText"][1] = {} @@ -5678,9 +5950,11 @@ defs["igBulletText"][1]["comment"] = "" defs["igBulletText"][1]["defaults"] = {} defs["igBulletText"][1]["funcname"] = "BulletText" defs["igBulletText"][1]["isvararg"] = "...)" +defs["igBulletText"][1]["namespace"] = "ImGui" +defs["igBulletText"][1]["ov_cimguiname"] = "igBulletText" defs["igBulletText"][1]["ret"] = "void" defs["igBulletText"][1]["signature"] = "(const char*,...)" -defs["igBulletText"][1]["stname"] = "ImGui" +defs["igBulletText"][1]["stname"] = "" defs["igBulletText"]["(const char*,...)"] = defs["igBulletText"][1] defs["igBulletTextV"] = {} defs["igBulletTextV"][1] = {} @@ -5698,9 +5972,11 @@ defs["igBulletTextV"][1]["cimguiname"] = "igBulletTextV" defs["igBulletTextV"][1]["comment"] = "" defs["igBulletTextV"][1]["defaults"] = {} defs["igBulletTextV"][1]["funcname"] = "BulletTextV" +defs["igBulletTextV"][1]["namespace"] = "ImGui" +defs["igBulletTextV"][1]["ov_cimguiname"] = "igBulletTextV" defs["igBulletTextV"][1]["ret"] = "void" defs["igBulletTextV"][1]["signature"] = "(const char*,va_list)" -defs["igBulletTextV"][1]["stname"] = "ImGui" +defs["igBulletTextV"][1]["stname"] = "" defs["igBulletTextV"]["(const char*,va_list)"] = defs["igBulletTextV"][1] defs["igButton"] = {} defs["igButton"][1] = {} @@ -5719,9 +5995,11 @@ defs["igButton"][1]["comment"] = "" defs["igButton"][1]["defaults"] = {} defs["igButton"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igButton"][1]["funcname"] = "Button" +defs["igButton"][1]["namespace"] = "ImGui" +defs["igButton"][1]["ov_cimguiname"] = "igButton" defs["igButton"][1]["ret"] = "bool" defs["igButton"][1]["signature"] = "(const char*,const ImVec2)" -defs["igButton"][1]["stname"] = "ImGui" +defs["igButton"][1]["stname"] = "" defs["igButton"]["(const char*,const ImVec2)"] = defs["igButton"][1] defs["igCalcItemWidth"] = {} defs["igCalcItemWidth"][1] = {} @@ -5733,9 +6011,11 @@ defs["igCalcItemWidth"][1]["cimguiname"] = "igCalcItemWidth" defs["igCalcItemWidth"][1]["comment"] = "" defs["igCalcItemWidth"][1]["defaults"] = {} defs["igCalcItemWidth"][1]["funcname"] = "CalcItemWidth" +defs["igCalcItemWidth"][1]["namespace"] = "ImGui" +defs["igCalcItemWidth"][1]["ov_cimguiname"] = "igCalcItemWidth" defs["igCalcItemWidth"][1]["ret"] = "float" defs["igCalcItemWidth"][1]["signature"] = "()" -defs["igCalcItemWidth"][1]["stname"] = "ImGui" +defs["igCalcItemWidth"][1]["stname"] = "" defs["igCalcItemWidth"]["()"] = defs["igCalcItemWidth"][1] defs["igCalcListClipping"] = {} defs["igCalcListClipping"][1] = {} @@ -5759,9 +6039,11 @@ defs["igCalcListClipping"][1]["cimguiname"] = "igCalcListClipping" defs["igCalcListClipping"][1]["comment"] = "" defs["igCalcListClipping"][1]["defaults"] = {} defs["igCalcListClipping"][1]["funcname"] = "CalcListClipping" +defs["igCalcListClipping"][1]["namespace"] = "ImGui" +defs["igCalcListClipping"][1]["ov_cimguiname"] = "igCalcListClipping" defs["igCalcListClipping"][1]["ret"] = "void" defs["igCalcListClipping"][1]["signature"] = "(int,float,int*,int*)" -defs["igCalcListClipping"][1]["stname"] = "ImGui" +defs["igCalcListClipping"][1]["stname"] = "" defs["igCalcListClipping"]["(int,float,int*,int*)"] = defs["igCalcListClipping"][1] defs["igCalcTextSize"] = {} defs["igCalcTextSize"][1] = {} @@ -5779,18 +6061,20 @@ defs["igCalcTextSize"][1]["argsT"][3]["type"] = "bool" defs["igCalcTextSize"][1]["argsT"][4] = {} defs["igCalcTextSize"][1]["argsT"][4]["name"] = "wrap_width" defs["igCalcTextSize"][1]["argsT"][4]["type"] = "float" -defs["igCalcTextSize"][1]["argsoriginal"] = "(const char* text,const char* text_end=((void *)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)" +defs["igCalcTextSize"][1]["argsoriginal"] = "(const char* text,const char* text_end=((void*)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)" defs["igCalcTextSize"][1]["call_args"] = "(text,text_end,hide_text_after_double_hash,wrap_width)" defs["igCalcTextSize"][1]["cimguiname"] = "igCalcTextSize" defs["igCalcTextSize"][1]["comment"] = "" defs["igCalcTextSize"][1]["defaults"] = {} defs["igCalcTextSize"][1]["defaults"]["hide_text_after_double_hash"] = "false" -defs["igCalcTextSize"][1]["defaults"]["text_end"] = "((void *)0)" +defs["igCalcTextSize"][1]["defaults"]["text_end"] = "((void*)0)" defs["igCalcTextSize"][1]["defaults"]["wrap_width"] = "-1.0f" defs["igCalcTextSize"][1]["funcname"] = "CalcTextSize" +defs["igCalcTextSize"][1]["namespace"] = "ImGui" +defs["igCalcTextSize"][1]["ov_cimguiname"] = "igCalcTextSize" defs["igCalcTextSize"][1]["ret"] = "ImVec2" defs["igCalcTextSize"][1]["signature"] = "(const char*,const char*,bool,float)" -defs["igCalcTextSize"][1]["stname"] = "ImGui" +defs["igCalcTextSize"][1]["stname"] = "" defs["igCalcTextSize"][2] = {} defs["igCalcTextSize"][2]["args"] = "(ImVec2 *pOut,const char* text,const char* text_end,bool hide_text_after_double_hash,float wrap_width)" defs["igCalcTextSize"][2]["argsT"] = {} @@ -5809,17 +6093,18 @@ defs["igCalcTextSize"][2]["argsT"][4]["type"] = "bool" defs["igCalcTextSize"][2]["argsT"][5] = {} defs["igCalcTextSize"][2]["argsT"][5]["name"] = "wrap_width" defs["igCalcTextSize"][2]["argsT"][5]["type"] = "float" -defs["igCalcTextSize"][2]["argsoriginal"] = "(const char* text,const char* text_end=((void *)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)" +defs["igCalcTextSize"][2]["argsoriginal"] = "(const char* text,const char* text_end=((void*)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)" defs["igCalcTextSize"][2]["call_args"] = "(text,text_end,hide_text_after_double_hash,wrap_width)" defs["igCalcTextSize"][2]["cimguiname"] = "igCalcTextSize" defs["igCalcTextSize"][2]["comment"] = "" defs["igCalcTextSize"][2]["defaults"] = defs["igCalcTextSize"][1]["defaults"] defs["igCalcTextSize"][2]["funcname"] = "CalcTextSize" +defs["igCalcTextSize"][2]["namespace"] = "ImGui" defs["igCalcTextSize"][2]["nonUDT"] = 1 defs["igCalcTextSize"][2]["ov_cimguiname"] = "igCalcTextSize_nonUDT" defs["igCalcTextSize"][2]["ret"] = "void" defs["igCalcTextSize"][2]["signature"] = "(const char*,const char*,bool,float)" -defs["igCalcTextSize"][2]["stname"] = "ImGui" +defs["igCalcTextSize"][2]["stname"] = "" defs["igCalcTextSize"][3] = {} defs["igCalcTextSize"][3]["args"] = "(const char* text,const char* text_end,bool hide_text_after_double_hash,float wrap_width)" defs["igCalcTextSize"][3]["argsT"] = {} @@ -5835,18 +6120,19 @@ defs["igCalcTextSize"][3]["argsT"][3]["type"] = "bool" defs["igCalcTextSize"][3]["argsT"][4] = {} defs["igCalcTextSize"][3]["argsT"][4]["name"] = "wrap_width" defs["igCalcTextSize"][3]["argsT"][4]["type"] = "float" -defs["igCalcTextSize"][3]["argsoriginal"] = "(const char* text,const char* text_end=((void *)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)" +defs["igCalcTextSize"][3]["argsoriginal"] = "(const char* text,const char* text_end=((void*)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)" defs["igCalcTextSize"][3]["call_args"] = "(text,text_end,hide_text_after_double_hash,wrap_width)" defs["igCalcTextSize"][3]["cimguiname"] = "igCalcTextSize" defs["igCalcTextSize"][3]["comment"] = "" defs["igCalcTextSize"][3]["defaults"] = defs["igCalcTextSize"][1]["defaults"] defs["igCalcTextSize"][3]["funcname"] = "CalcTextSize" +defs["igCalcTextSize"][3]["namespace"] = "ImGui" defs["igCalcTextSize"][3]["nonUDT"] = 2 defs["igCalcTextSize"][3]["ov_cimguiname"] = "igCalcTextSize_nonUDT2" defs["igCalcTextSize"][3]["ret"] = "ImVec2_Simple" defs["igCalcTextSize"][3]["retorig"] = "ImVec2" defs["igCalcTextSize"][3]["signature"] = "(const char*,const char*,bool,float)" -defs["igCalcTextSize"][3]["stname"] = "ImGui" +defs["igCalcTextSize"][3]["stname"] = "" defs["igCalcTextSize"]["(const char*,const char*,bool,float)"] = defs["igCalcTextSize"][1] defs["igCalcTextSize"]["(const char*,const char*,bool,float)nonUDT"] = defs["igCalcTextSize"][2] defs["igCalcTextSize"]["(const char*,const char*,bool,float)nonUDT2"] = defs["igCalcTextSize"][3] @@ -5864,9 +6150,11 @@ defs["igCaptureKeyboardFromApp"][1]["comment"] = "" defs["igCaptureKeyboardFromApp"][1]["defaults"] = {} defs["igCaptureKeyboardFromApp"][1]["defaults"]["want_capture_keyboard_value"] = "true" defs["igCaptureKeyboardFromApp"][1]["funcname"] = "CaptureKeyboardFromApp" +defs["igCaptureKeyboardFromApp"][1]["namespace"] = "ImGui" +defs["igCaptureKeyboardFromApp"][1]["ov_cimguiname"] = "igCaptureKeyboardFromApp" defs["igCaptureKeyboardFromApp"][1]["ret"] = "void" defs["igCaptureKeyboardFromApp"][1]["signature"] = "(bool)" -defs["igCaptureKeyboardFromApp"][1]["stname"] = "ImGui" +defs["igCaptureKeyboardFromApp"][1]["stname"] = "" defs["igCaptureKeyboardFromApp"]["(bool)"] = defs["igCaptureKeyboardFromApp"][1] defs["igCaptureMouseFromApp"] = {} defs["igCaptureMouseFromApp"][1] = {} @@ -5882,9 +6170,11 @@ defs["igCaptureMouseFromApp"][1]["comment"] = "" defs["igCaptureMouseFromApp"][1]["defaults"] = {} defs["igCaptureMouseFromApp"][1]["defaults"]["want_capture_mouse_value"] = "true" defs["igCaptureMouseFromApp"][1]["funcname"] = "CaptureMouseFromApp" +defs["igCaptureMouseFromApp"][1]["namespace"] = "ImGui" +defs["igCaptureMouseFromApp"][1]["ov_cimguiname"] = "igCaptureMouseFromApp" defs["igCaptureMouseFromApp"][1]["ret"] = "void" defs["igCaptureMouseFromApp"][1]["signature"] = "(bool)" -defs["igCaptureMouseFromApp"][1]["stname"] = "ImGui" +defs["igCaptureMouseFromApp"][1]["stname"] = "" defs["igCaptureMouseFromApp"]["(bool)"] = defs["igCaptureMouseFromApp"][1] defs["igCheckbox"] = {} defs["igCheckbox"][1] = {} @@ -5902,9 +6192,11 @@ defs["igCheckbox"][1]["cimguiname"] = "igCheckbox" defs["igCheckbox"][1]["comment"] = "" defs["igCheckbox"][1]["defaults"] = {} defs["igCheckbox"][1]["funcname"] = "Checkbox" +defs["igCheckbox"][1]["namespace"] = "ImGui" +defs["igCheckbox"][1]["ov_cimguiname"] = "igCheckbox" defs["igCheckbox"][1]["ret"] = "bool" defs["igCheckbox"][1]["signature"] = "(const char*,bool*)" -defs["igCheckbox"][1]["stname"] = "ImGui" +defs["igCheckbox"][1]["stname"] = "" defs["igCheckbox"]["(const char*,bool*)"] = defs["igCheckbox"][1] defs["igCheckboxFlags"] = {} defs["igCheckboxFlags"][1] = {} @@ -5925,9 +6217,11 @@ defs["igCheckboxFlags"][1]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][1]["comment"] = "" defs["igCheckboxFlags"][1]["defaults"] = {} defs["igCheckboxFlags"][1]["funcname"] = "CheckboxFlags" +defs["igCheckboxFlags"][1]["namespace"] = "ImGui" +defs["igCheckboxFlags"][1]["ov_cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][1]["ret"] = "bool" defs["igCheckboxFlags"][1]["signature"] = "(const char*,unsigned int*,unsigned int)" -defs["igCheckboxFlags"][1]["stname"] = "ImGui" +defs["igCheckboxFlags"][1]["stname"] = "" defs["igCheckboxFlags"]["(const char*,unsigned int*,unsigned int)"] = defs["igCheckboxFlags"][1] defs["igCloseCurrentPopup"] = {} defs["igCloseCurrentPopup"][1] = {} @@ -5939,9 +6233,11 @@ defs["igCloseCurrentPopup"][1]["cimguiname"] = "igCloseCurrentPopup" defs["igCloseCurrentPopup"][1]["comment"] = "" defs["igCloseCurrentPopup"][1]["defaults"] = {} defs["igCloseCurrentPopup"][1]["funcname"] = "CloseCurrentPopup" +defs["igCloseCurrentPopup"][1]["namespace"] = "ImGui" +defs["igCloseCurrentPopup"][1]["ov_cimguiname"] = "igCloseCurrentPopup" defs["igCloseCurrentPopup"][1]["ret"] = "void" defs["igCloseCurrentPopup"][1]["signature"] = "()" -defs["igCloseCurrentPopup"][1]["stname"] = "ImGui" +defs["igCloseCurrentPopup"][1]["stname"] = "" defs["igCloseCurrentPopup"]["()"] = defs["igCloseCurrentPopup"][1] defs["igCollapsingHeader"] = {} defs["igCollapsingHeader"][1] = {} @@ -5960,10 +6256,11 @@ defs["igCollapsingHeader"][1]["comment"] = "" defs["igCollapsingHeader"][1]["defaults"] = {} defs["igCollapsingHeader"][1]["defaults"]["flags"] = "0" defs["igCollapsingHeader"][1]["funcname"] = "CollapsingHeader" +defs["igCollapsingHeader"][1]["namespace"] = "ImGui" defs["igCollapsingHeader"][1]["ov_cimguiname"] = "igCollapsingHeader" defs["igCollapsingHeader"][1]["ret"] = "bool" defs["igCollapsingHeader"][1]["signature"] = "(const char*,ImGuiTreeNodeFlags)" -defs["igCollapsingHeader"][1]["stname"] = "ImGui" +defs["igCollapsingHeader"][1]["stname"] = "" defs["igCollapsingHeader"][2] = {} defs["igCollapsingHeader"][2]["args"] = "(const char* label,bool* p_open,ImGuiTreeNodeFlags flags)" defs["igCollapsingHeader"][2]["argsT"] = {} @@ -5983,10 +6280,11 @@ defs["igCollapsingHeader"][2]["comment"] = "" defs["igCollapsingHeader"][2]["defaults"] = {} defs["igCollapsingHeader"][2]["defaults"]["flags"] = "0" defs["igCollapsingHeader"][2]["funcname"] = "CollapsingHeader" +defs["igCollapsingHeader"][2]["namespace"] = "ImGui" defs["igCollapsingHeader"][2]["ov_cimguiname"] = "igCollapsingHeaderBoolPtr" defs["igCollapsingHeader"][2]["ret"] = "bool" defs["igCollapsingHeader"][2]["signature"] = "(const char*,bool*,ImGuiTreeNodeFlags)" -defs["igCollapsingHeader"][2]["stname"] = "ImGui" +defs["igCollapsingHeader"][2]["stname"] = "" defs["igCollapsingHeader"]["(const char*,ImGuiTreeNodeFlags)"] = defs["igCollapsingHeader"][1] defs["igCollapsingHeader"]["(const char*,bool*,ImGuiTreeNodeFlags)"] = defs["igCollapsingHeader"][2] defs["igColorButton"] = {} @@ -6013,9 +6311,11 @@ defs["igColorButton"][1]["defaults"] = {} defs["igColorButton"][1]["defaults"]["flags"] = "0" defs["igColorButton"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igColorButton"][1]["funcname"] = "ColorButton" +defs["igColorButton"][1]["namespace"] = "ImGui" +defs["igColorButton"][1]["ov_cimguiname"] = "igColorButton" defs["igColorButton"][1]["ret"] = "bool" defs["igColorButton"][1]["signature"] = "(const char*,const ImVec4,ImGuiColorEditFlags,ImVec2)" -defs["igColorButton"][1]["stname"] = "ImGui" +defs["igColorButton"][1]["stname"] = "" defs["igColorButton"]["(const char*,const ImVec4,ImGuiColorEditFlags,ImVec2)"] = defs["igColorButton"][1] defs["igColorConvertFloat4ToU32"] = {} defs["igColorConvertFloat4ToU32"][1] = {} @@ -6030,9 +6330,11 @@ defs["igColorConvertFloat4ToU32"][1]["cimguiname"] = "igColorConvertFloat4ToU32" defs["igColorConvertFloat4ToU32"][1]["comment"] = "" defs["igColorConvertFloat4ToU32"][1]["defaults"] = {} defs["igColorConvertFloat4ToU32"][1]["funcname"] = "ColorConvertFloat4ToU32" +defs["igColorConvertFloat4ToU32"][1]["namespace"] = "ImGui" +defs["igColorConvertFloat4ToU32"][1]["ov_cimguiname"] = "igColorConvertFloat4ToU32" defs["igColorConvertFloat4ToU32"][1]["ret"] = "ImU32" defs["igColorConvertFloat4ToU32"][1]["signature"] = "(const ImVec4)" -defs["igColorConvertFloat4ToU32"][1]["stname"] = "ImGui" +defs["igColorConvertFloat4ToU32"][1]["stname"] = "" defs["igColorConvertFloat4ToU32"]["(const ImVec4)"] = defs["igColorConvertFloat4ToU32"][1] defs["igColorConvertHSVtoRGB"] = {} defs["igColorConvertHSVtoRGB"][1] = {} @@ -6063,9 +6365,11 @@ defs["igColorConvertHSVtoRGB"][1]["comment"] = "" defs["igColorConvertHSVtoRGB"][1]["defaults"] = {} defs["igColorConvertHSVtoRGB"][1]["funcname"] = "ColorConvertHSVtoRGB" defs["igColorConvertHSVtoRGB"][1]["manual"] = true +defs["igColorConvertHSVtoRGB"][1]["namespace"] = "ImGui" +defs["igColorConvertHSVtoRGB"][1]["ov_cimguiname"] = "igColorConvertHSVtoRGB" defs["igColorConvertHSVtoRGB"][1]["ret"] = "void" defs["igColorConvertHSVtoRGB"][1]["signature"] = "(float,float,float,float,float,float)" -defs["igColorConvertHSVtoRGB"][1]["stname"] = "ImGui" +defs["igColorConvertHSVtoRGB"][1]["stname"] = "" defs["igColorConvertHSVtoRGB"]["(float,float,float,float,float,float)"] = defs["igColorConvertHSVtoRGB"][1] defs["igColorConvertRGBtoHSV"] = {} defs["igColorConvertRGBtoHSV"][1] = {} @@ -6096,9 +6400,11 @@ defs["igColorConvertRGBtoHSV"][1]["comment"] = "" defs["igColorConvertRGBtoHSV"][1]["defaults"] = {} defs["igColorConvertRGBtoHSV"][1]["funcname"] = "ColorConvertRGBtoHSV" defs["igColorConvertRGBtoHSV"][1]["manual"] = true +defs["igColorConvertRGBtoHSV"][1]["namespace"] = "ImGui" +defs["igColorConvertRGBtoHSV"][1]["ov_cimguiname"] = "igColorConvertRGBtoHSV" defs["igColorConvertRGBtoHSV"][1]["ret"] = "void" defs["igColorConvertRGBtoHSV"][1]["signature"] = "(float,float,float,float,float,float)" -defs["igColorConvertRGBtoHSV"][1]["stname"] = "ImGui" +defs["igColorConvertRGBtoHSV"][1]["stname"] = "" defs["igColorConvertRGBtoHSV"]["(float,float,float,float,float,float)"] = defs["igColorConvertRGBtoHSV"][1] defs["igColorConvertU32ToFloat4"] = {} defs["igColorConvertU32ToFloat4"][1] = {} @@ -6113,9 +6419,11 @@ defs["igColorConvertU32ToFloat4"][1]["cimguiname"] = "igColorConvertU32ToFloat4" defs["igColorConvertU32ToFloat4"][1]["comment"] = "" defs["igColorConvertU32ToFloat4"][1]["defaults"] = {} defs["igColorConvertU32ToFloat4"][1]["funcname"] = "ColorConvertU32ToFloat4" +defs["igColorConvertU32ToFloat4"][1]["namespace"] = "ImGui" +defs["igColorConvertU32ToFloat4"][1]["ov_cimguiname"] = "igColorConvertU32ToFloat4" defs["igColorConvertU32ToFloat4"][1]["ret"] = "ImVec4" defs["igColorConvertU32ToFloat4"][1]["signature"] = "(ImU32)" -defs["igColorConvertU32ToFloat4"][1]["stname"] = "ImGui" +defs["igColorConvertU32ToFloat4"][1]["stname"] = "" defs["igColorConvertU32ToFloat4"][2] = {} defs["igColorConvertU32ToFloat4"][2]["args"] = "(ImVec4 *pOut,ImU32 in)" defs["igColorConvertU32ToFloat4"][2]["argsT"] = {} @@ -6131,11 +6439,12 @@ defs["igColorConvertU32ToFloat4"][2]["cimguiname"] = "igColorConvertU32ToFloat4" defs["igColorConvertU32ToFloat4"][2]["comment"] = "" defs["igColorConvertU32ToFloat4"][2]["defaults"] = defs["igColorConvertU32ToFloat4"][1]["defaults"] defs["igColorConvertU32ToFloat4"][2]["funcname"] = "ColorConvertU32ToFloat4" +defs["igColorConvertU32ToFloat4"][2]["namespace"] = "ImGui" defs["igColorConvertU32ToFloat4"][2]["nonUDT"] = 1 defs["igColorConvertU32ToFloat4"][2]["ov_cimguiname"] = "igColorConvertU32ToFloat4_nonUDT" defs["igColorConvertU32ToFloat4"][2]["ret"] = "void" defs["igColorConvertU32ToFloat4"][2]["signature"] = "(ImU32)" -defs["igColorConvertU32ToFloat4"][2]["stname"] = "ImGui" +defs["igColorConvertU32ToFloat4"][2]["stname"] = "" defs["igColorConvertU32ToFloat4"][3] = {} defs["igColorConvertU32ToFloat4"][3]["args"] = "(ImU32 in)" defs["igColorConvertU32ToFloat4"][3]["argsT"] = {} @@ -6148,12 +6457,13 @@ defs["igColorConvertU32ToFloat4"][3]["cimguiname"] = "igColorConvertU32ToFloat4" defs["igColorConvertU32ToFloat4"][3]["comment"] = "" defs["igColorConvertU32ToFloat4"][3]["defaults"] = defs["igColorConvertU32ToFloat4"][1]["defaults"] defs["igColorConvertU32ToFloat4"][3]["funcname"] = "ColorConvertU32ToFloat4" +defs["igColorConvertU32ToFloat4"][3]["namespace"] = "ImGui" defs["igColorConvertU32ToFloat4"][3]["nonUDT"] = 2 defs["igColorConvertU32ToFloat4"][3]["ov_cimguiname"] = "igColorConvertU32ToFloat4_nonUDT2" defs["igColorConvertU32ToFloat4"][3]["ret"] = "ImVec4_Simple" defs["igColorConvertU32ToFloat4"][3]["retorig"] = "ImVec4" defs["igColorConvertU32ToFloat4"][3]["signature"] = "(ImU32)" -defs["igColorConvertU32ToFloat4"][3]["stname"] = "ImGui" +defs["igColorConvertU32ToFloat4"][3]["stname"] = "" defs["igColorConvertU32ToFloat4"]["(ImU32)"] = defs["igColorConvertU32ToFloat4"][1] defs["igColorConvertU32ToFloat4"]["(ImU32)nonUDT"] = defs["igColorConvertU32ToFloat4"][2] defs["igColorConvertU32ToFloat4"]["(ImU32)nonUDT2"] = defs["igColorConvertU32ToFloat4"][3] @@ -6177,9 +6487,11 @@ defs["igColorEdit3"][1]["comment"] = "" defs["igColorEdit3"][1]["defaults"] = {} defs["igColorEdit3"][1]["defaults"]["flags"] = "0" defs["igColorEdit3"][1]["funcname"] = "ColorEdit3" +defs["igColorEdit3"][1]["namespace"] = "ImGui" +defs["igColorEdit3"][1]["ov_cimguiname"] = "igColorEdit3" defs["igColorEdit3"][1]["ret"] = "bool" defs["igColorEdit3"][1]["signature"] = "(const char*,float[3],ImGuiColorEditFlags)" -defs["igColorEdit3"][1]["stname"] = "ImGui" +defs["igColorEdit3"][1]["stname"] = "" defs["igColorEdit3"]["(const char*,float[3],ImGuiColorEditFlags)"] = defs["igColorEdit3"][1] defs["igColorEdit4"] = {} defs["igColorEdit4"][1] = {} @@ -6201,9 +6513,11 @@ defs["igColorEdit4"][1]["comment"] = "" defs["igColorEdit4"][1]["defaults"] = {} defs["igColorEdit4"][1]["defaults"]["flags"] = "0" defs["igColorEdit4"][1]["funcname"] = "ColorEdit4" +defs["igColorEdit4"][1]["namespace"] = "ImGui" +defs["igColorEdit4"][1]["ov_cimguiname"] = "igColorEdit4" defs["igColorEdit4"][1]["ret"] = "bool" defs["igColorEdit4"][1]["signature"] = "(const char*,float[4],ImGuiColorEditFlags)" -defs["igColorEdit4"][1]["stname"] = "ImGui" +defs["igColorEdit4"][1]["stname"] = "" defs["igColorEdit4"]["(const char*,float[4],ImGuiColorEditFlags)"] = defs["igColorEdit4"][1] defs["igColorPicker3"] = {} defs["igColorPicker3"][1] = {} @@ -6225,9 +6539,11 @@ defs["igColorPicker3"][1]["comment"] = "" defs["igColorPicker3"][1]["defaults"] = {} defs["igColorPicker3"][1]["defaults"]["flags"] = "0" defs["igColorPicker3"][1]["funcname"] = "ColorPicker3" +defs["igColorPicker3"][1]["namespace"] = "ImGui" +defs["igColorPicker3"][1]["ov_cimguiname"] = "igColorPicker3" defs["igColorPicker3"][1]["ret"] = "bool" defs["igColorPicker3"][1]["signature"] = "(const char*,float[3],ImGuiColorEditFlags)" -defs["igColorPicker3"][1]["stname"] = "ImGui" +defs["igColorPicker3"][1]["stname"] = "" defs["igColorPicker3"]["(const char*,float[3],ImGuiColorEditFlags)"] = defs["igColorPicker3"][1] defs["igColorPicker4"] = {} defs["igColorPicker4"][1] = {} @@ -6245,17 +6561,19 @@ defs["igColorPicker4"][1]["argsT"][3]["type"] = "ImGuiColorEditFlags" defs["igColorPicker4"][1]["argsT"][4] = {} defs["igColorPicker4"][1]["argsT"][4]["name"] = "ref_col" defs["igColorPicker4"][1]["argsT"][4]["type"] = "const float*" -defs["igColorPicker4"][1]["argsoriginal"] = "(const char* label,float col[4],ImGuiColorEditFlags flags=0,const float* ref_col=((void *)0))" +defs["igColorPicker4"][1]["argsoriginal"] = "(const char* label,float col[4],ImGuiColorEditFlags flags=0,const float* ref_col=((void*)0))" defs["igColorPicker4"][1]["call_args"] = "(label,col,flags,ref_col)" defs["igColorPicker4"][1]["cimguiname"] = "igColorPicker4" defs["igColorPicker4"][1]["comment"] = "" defs["igColorPicker4"][1]["defaults"] = {} defs["igColorPicker4"][1]["defaults"]["flags"] = "0" -defs["igColorPicker4"][1]["defaults"]["ref_col"] = "((void *)0)" +defs["igColorPicker4"][1]["defaults"]["ref_col"] = "((void*)0)" defs["igColorPicker4"][1]["funcname"] = "ColorPicker4" +defs["igColorPicker4"][1]["namespace"] = "ImGui" +defs["igColorPicker4"][1]["ov_cimguiname"] = "igColorPicker4" defs["igColorPicker4"][1]["ret"] = "bool" defs["igColorPicker4"][1]["signature"] = "(const char*,float[4],ImGuiColorEditFlags,const float*)" -defs["igColorPicker4"][1]["stname"] = "ImGui" +defs["igColorPicker4"][1]["stname"] = "" defs["igColorPicker4"]["(const char*,float[4],ImGuiColorEditFlags,const float*)"] = defs["igColorPicker4"][1] defs["igColumns"] = {} defs["igColumns"][1] = {} @@ -6270,18 +6588,20 @@ defs["igColumns"][1]["argsT"][2]["type"] = "const char*" defs["igColumns"][1]["argsT"][3] = {} defs["igColumns"][1]["argsT"][3]["name"] = "border" defs["igColumns"][1]["argsT"][3]["type"] = "bool" -defs["igColumns"][1]["argsoriginal"] = "(int count=1,const char* id=((void *)0),bool border=true)" +defs["igColumns"][1]["argsoriginal"] = "(int count=1,const char* id=((void*)0),bool border=true)" defs["igColumns"][1]["call_args"] = "(count,id,border)" defs["igColumns"][1]["cimguiname"] = "igColumns" defs["igColumns"][1]["comment"] = "" defs["igColumns"][1]["defaults"] = {} defs["igColumns"][1]["defaults"]["border"] = "true" defs["igColumns"][1]["defaults"]["count"] = "1" -defs["igColumns"][1]["defaults"]["id"] = "((void *)0)" +defs["igColumns"][1]["defaults"]["id"] = "((void*)0)" defs["igColumns"][1]["funcname"] = "Columns" +defs["igColumns"][1]["namespace"] = "ImGui" +defs["igColumns"][1]["ov_cimguiname"] = "igColumns" defs["igColumns"][1]["ret"] = "void" defs["igColumns"][1]["signature"] = "(int,const char*,bool)" -defs["igColumns"][1]["stname"] = "ImGui" +defs["igColumns"][1]["stname"] = "" defs["igColumns"]["(int,const char*,bool)"] = defs["igColumns"][1] defs["igCombo"] = {} defs["igCombo"][1] = {} @@ -6309,10 +6629,11 @@ defs["igCombo"][1]["comment"] = "" defs["igCombo"][1]["defaults"] = {} defs["igCombo"][1]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][1]["funcname"] = "Combo" +defs["igCombo"][1]["namespace"] = "ImGui" defs["igCombo"][1]["ov_cimguiname"] = "igCombo" defs["igCombo"][1]["ret"] = "bool" defs["igCombo"][1]["signature"] = "(const char*,int*,const char* const[],int,int)" -defs["igCombo"][1]["stname"] = "ImGui" +defs["igCombo"][1]["stname"] = "" defs["igCombo"][2] = {} defs["igCombo"][2]["args"] = "(const char* label,int* current_item,const char* items_separated_by_zeros,int popup_max_height_in_items)" defs["igCombo"][2]["argsT"] = {} @@ -6335,10 +6656,11 @@ defs["igCombo"][2]["comment"] = "" defs["igCombo"][2]["defaults"] = {} defs["igCombo"][2]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][2]["funcname"] = "Combo" +defs["igCombo"][2]["namespace"] = "ImGui" defs["igCombo"][2]["ov_cimguiname"] = "igComboStr" defs["igCombo"][2]["ret"] = "bool" defs["igCombo"][2]["signature"] = "(const char*,int*,const char*,int)" -defs["igCombo"][2]["stname"] = "ImGui" +defs["igCombo"][2]["stname"] = "" defs["igCombo"][3] = {} defs["igCombo"][3]["args"] = "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items)" defs["igCombo"][3]["argsT"] = {} @@ -6369,10 +6691,11 @@ defs["igCombo"][3]["comment"] = "" defs["igCombo"][3]["defaults"] = {} defs["igCombo"][3]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][3]["funcname"] = "Combo" +defs["igCombo"][3]["namespace"] = "ImGui" defs["igCombo"][3]["ov_cimguiname"] = "igComboFnPtr" defs["igCombo"][3]["ret"] = "bool" defs["igCombo"][3]["signature"] = "(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)" -defs["igCombo"][3]["stname"] = "ImGui" +defs["igCombo"][3]["stname"] = "" defs["igCombo"]["(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)"] = defs["igCombo"][3] defs["igCombo"]["(const char*,int*,const char* const[],int,int)"] = defs["igCombo"][1] defs["igCombo"]["(const char*,int*,const char*,int)"] = defs["igCombo"][2] @@ -6383,16 +6706,18 @@ defs["igCreateContext"][1]["argsT"] = {} defs["igCreateContext"][1]["argsT"][1] = {} defs["igCreateContext"][1]["argsT"][1]["name"] = "shared_font_atlas" defs["igCreateContext"][1]["argsT"][1]["type"] = "ImFontAtlas*" -defs["igCreateContext"][1]["argsoriginal"] = "(ImFontAtlas* shared_font_atlas=((void *)0))" +defs["igCreateContext"][1]["argsoriginal"] = "(ImFontAtlas* shared_font_atlas=((void*)0))" defs["igCreateContext"][1]["call_args"] = "(shared_font_atlas)" defs["igCreateContext"][1]["cimguiname"] = "igCreateContext" defs["igCreateContext"][1]["comment"] = "" defs["igCreateContext"][1]["defaults"] = {} -defs["igCreateContext"][1]["defaults"]["shared_font_atlas"] = "((void *)0)" +defs["igCreateContext"][1]["defaults"]["shared_font_atlas"] = "((void*)0)" defs["igCreateContext"][1]["funcname"] = "CreateContext" +defs["igCreateContext"][1]["namespace"] = "ImGui" +defs["igCreateContext"][1]["ov_cimguiname"] = "igCreateContext" defs["igCreateContext"][1]["ret"] = "ImGuiContext*" defs["igCreateContext"][1]["signature"] = "(ImFontAtlas*)" -defs["igCreateContext"][1]["stname"] = "ImGui" +defs["igCreateContext"][1]["stname"] = "" defs["igCreateContext"]["(ImFontAtlas*)"] = defs["igCreateContext"][1] defs["igDebugCheckVersionAndDataLayout"] = {} defs["igDebugCheckVersionAndDataLayout"][1] = {} @@ -6422,9 +6747,11 @@ defs["igDebugCheckVersionAndDataLayout"][1]["cimguiname"] = "igDebugCheckVersion defs["igDebugCheckVersionAndDataLayout"][1]["comment"] = "" defs["igDebugCheckVersionAndDataLayout"][1]["defaults"] = {} defs["igDebugCheckVersionAndDataLayout"][1]["funcname"] = "DebugCheckVersionAndDataLayout" +defs["igDebugCheckVersionAndDataLayout"][1]["namespace"] = "ImGui" +defs["igDebugCheckVersionAndDataLayout"][1]["ov_cimguiname"] = "igDebugCheckVersionAndDataLayout" defs["igDebugCheckVersionAndDataLayout"][1]["ret"] = "bool" defs["igDebugCheckVersionAndDataLayout"][1]["signature"] = "(const char*,size_t,size_t,size_t,size_t,size_t)" -defs["igDebugCheckVersionAndDataLayout"][1]["stname"] = "ImGui" +defs["igDebugCheckVersionAndDataLayout"][1]["stname"] = "" defs["igDebugCheckVersionAndDataLayout"]["(const char*,size_t,size_t,size_t,size_t,size_t)"] = defs["igDebugCheckVersionAndDataLayout"][1] defs["igDestroyContext"] = {} defs["igDestroyContext"][1] = {} @@ -6433,16 +6760,18 @@ defs["igDestroyContext"][1]["argsT"] = {} defs["igDestroyContext"][1]["argsT"][1] = {} defs["igDestroyContext"][1]["argsT"][1]["name"] = "ctx" defs["igDestroyContext"][1]["argsT"][1]["type"] = "ImGuiContext*" -defs["igDestroyContext"][1]["argsoriginal"] = "(ImGuiContext* ctx=((void *)0))" +defs["igDestroyContext"][1]["argsoriginal"] = "(ImGuiContext* ctx=((void*)0))" defs["igDestroyContext"][1]["call_args"] = "(ctx)" defs["igDestroyContext"][1]["cimguiname"] = "igDestroyContext" defs["igDestroyContext"][1]["comment"] = "" defs["igDestroyContext"][1]["defaults"] = {} -defs["igDestroyContext"][1]["defaults"]["ctx"] = "((void *)0)" +defs["igDestroyContext"][1]["defaults"]["ctx"] = "((void*)0)" defs["igDestroyContext"][1]["funcname"] = "DestroyContext" +defs["igDestroyContext"][1]["namespace"] = "ImGui" +defs["igDestroyContext"][1]["ov_cimguiname"] = "igDestroyContext" defs["igDestroyContext"][1]["ret"] = "void" defs["igDestroyContext"][1]["signature"] = "(ImGuiContext*)" -defs["igDestroyContext"][1]["stname"] = "ImGui" +defs["igDestroyContext"][1]["stname"] = "" defs["igDestroyContext"]["(ImGuiContext*)"] = defs["igDestroyContext"][1] defs["igDragFloat"] = {} defs["igDragFloat"][1] = {} @@ -6480,9 +6809,11 @@ defs["igDragFloat"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat"][1]["funcname"] = "DragFloat" +defs["igDragFloat"][1]["namespace"] = "ImGui" +defs["igDragFloat"][1]["ov_cimguiname"] = "igDragFloat" defs["igDragFloat"][1]["ret"] = "bool" defs["igDragFloat"][1]["signature"] = "(const char*,float*,float,float,float,const char*,float)" -defs["igDragFloat"][1]["stname"] = "ImGui" +defs["igDragFloat"][1]["stname"] = "" defs["igDragFloat"]["(const char*,float*,float,float,float,const char*,float)"] = defs["igDragFloat"][1] defs["igDragFloat2"] = {} defs["igDragFloat2"][1] = {} @@ -6520,9 +6851,11 @@ defs["igDragFloat2"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat2"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat2"][1]["funcname"] = "DragFloat2" +defs["igDragFloat2"][1]["namespace"] = "ImGui" +defs["igDragFloat2"][1]["ov_cimguiname"] = "igDragFloat2" defs["igDragFloat2"][1]["ret"] = "bool" defs["igDragFloat2"][1]["signature"] = "(const char*,float[2],float,float,float,const char*,float)" -defs["igDragFloat2"][1]["stname"] = "ImGui" +defs["igDragFloat2"][1]["stname"] = "" defs["igDragFloat2"]["(const char*,float[2],float,float,float,const char*,float)"] = defs["igDragFloat2"][1] defs["igDragFloat3"] = {} defs["igDragFloat3"][1] = {} @@ -6560,9 +6893,11 @@ defs["igDragFloat3"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat3"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat3"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat3"][1]["funcname"] = "DragFloat3" +defs["igDragFloat3"][1]["namespace"] = "ImGui" +defs["igDragFloat3"][1]["ov_cimguiname"] = "igDragFloat3" defs["igDragFloat3"][1]["ret"] = "bool" defs["igDragFloat3"][1]["signature"] = "(const char*,float[3],float,float,float,const char*,float)" -defs["igDragFloat3"][1]["stname"] = "ImGui" +defs["igDragFloat3"][1]["stname"] = "" defs["igDragFloat3"]["(const char*,float[3],float,float,float,const char*,float)"] = defs["igDragFloat3"][1] defs["igDragFloat4"] = {} defs["igDragFloat4"][1] = {} @@ -6600,9 +6935,11 @@ defs["igDragFloat4"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat4"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat4"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat4"][1]["funcname"] = "DragFloat4" +defs["igDragFloat4"][1]["namespace"] = "ImGui" +defs["igDragFloat4"][1]["ov_cimguiname"] = "igDragFloat4" defs["igDragFloat4"][1]["ret"] = "bool" defs["igDragFloat4"][1]["signature"] = "(const char*,float[4],float,float,float,const char*,float)" -defs["igDragFloat4"][1]["stname"] = "ImGui" +defs["igDragFloat4"][1]["stname"] = "" defs["igDragFloat4"]["(const char*,float[4],float,float,float,const char*,float)"] = defs["igDragFloat4"][1] defs["igDragFloatRange2"] = {} defs["igDragFloatRange2"][1] = {} @@ -6635,21 +6972,23 @@ defs["igDragFloatRange2"][1]["argsT"][8]["type"] = "const char*" defs["igDragFloatRange2"][1]["argsT"][9] = {} defs["igDragFloatRange2"][1]["argsT"][9]["name"] = "power" defs["igDragFloatRange2"][1]["argsT"][9]["type"] = "float" -defs["igDragFloatRange2"][1]["argsoriginal"] = "(const char* label,float* v_current_min,float* v_current_max,float v_speed=1.0f,float v_min=0.0f,float v_max=0.0f,const char* format=\"%.3f\",const char* format_max=((void *)0),float power=1.0f)" +defs["igDragFloatRange2"][1]["argsoriginal"] = "(const char* label,float* v_current_min,float* v_current_max,float v_speed=1.0f,float v_min=0.0f,float v_max=0.0f,const char* format=\"%.3f\",const char* format_max=((void*)0),float power=1.0f)" defs["igDragFloatRange2"][1]["call_args"] = "(label,v_current_min,v_current_max,v_speed,v_min,v_max,format,format_max,power)" defs["igDragFloatRange2"][1]["cimguiname"] = "igDragFloatRange2" defs["igDragFloatRange2"][1]["comment"] = "" defs["igDragFloatRange2"][1]["defaults"] = {} defs["igDragFloatRange2"][1]["defaults"]["format"] = "\"%.3f\"" -defs["igDragFloatRange2"][1]["defaults"]["format_max"] = "((void *)0)" +defs["igDragFloatRange2"][1]["defaults"]["format_max"] = "((void*)0)" defs["igDragFloatRange2"][1]["defaults"]["power"] = "1.0f" defs["igDragFloatRange2"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloatRange2"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloatRange2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloatRange2"][1]["funcname"] = "DragFloatRange2" +defs["igDragFloatRange2"][1]["namespace"] = "ImGui" +defs["igDragFloatRange2"][1]["ov_cimguiname"] = "igDragFloatRange2" defs["igDragFloatRange2"][1]["ret"] = "bool" defs["igDragFloatRange2"][1]["signature"] = "(const char*,float*,float*,float,float,float,const char*,const char*,float)" -defs["igDragFloatRange2"][1]["stname"] = "ImGui" +defs["igDragFloatRange2"][1]["stname"] = "" defs["igDragFloatRange2"]["(const char*,float*,float*,float,float,float,const char*,const char*,float)"] = defs["igDragFloatRange2"][1] defs["igDragInt"] = {} defs["igDragInt"][1] = {} @@ -6683,9 +7022,11 @@ defs["igDragInt"][1]["defaults"]["v_max"] = "0" defs["igDragInt"][1]["defaults"]["v_min"] = "0" defs["igDragInt"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt"][1]["funcname"] = "DragInt" +defs["igDragInt"][1]["namespace"] = "ImGui" +defs["igDragInt"][1]["ov_cimguiname"] = "igDragInt" defs["igDragInt"][1]["ret"] = "bool" defs["igDragInt"][1]["signature"] = "(const char*,int*,float,int,int,const char*)" -defs["igDragInt"][1]["stname"] = "ImGui" +defs["igDragInt"][1]["stname"] = "" defs["igDragInt"]["(const char*,int*,float,int,int,const char*)"] = defs["igDragInt"][1] defs["igDragInt2"] = {} defs["igDragInt2"][1] = {} @@ -6719,9 +7060,11 @@ defs["igDragInt2"][1]["defaults"]["v_max"] = "0" defs["igDragInt2"][1]["defaults"]["v_min"] = "0" defs["igDragInt2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt2"][1]["funcname"] = "DragInt2" +defs["igDragInt2"][1]["namespace"] = "ImGui" +defs["igDragInt2"][1]["ov_cimguiname"] = "igDragInt2" defs["igDragInt2"][1]["ret"] = "bool" defs["igDragInt2"][1]["signature"] = "(const char*,int[2],float,int,int,const char*)" -defs["igDragInt2"][1]["stname"] = "ImGui" +defs["igDragInt2"][1]["stname"] = "" defs["igDragInt2"]["(const char*,int[2],float,int,int,const char*)"] = defs["igDragInt2"][1] defs["igDragInt3"] = {} defs["igDragInt3"][1] = {} @@ -6755,9 +7098,11 @@ defs["igDragInt3"][1]["defaults"]["v_max"] = "0" defs["igDragInt3"][1]["defaults"]["v_min"] = "0" defs["igDragInt3"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt3"][1]["funcname"] = "DragInt3" +defs["igDragInt3"][1]["namespace"] = "ImGui" +defs["igDragInt3"][1]["ov_cimguiname"] = "igDragInt3" defs["igDragInt3"][1]["ret"] = "bool" defs["igDragInt3"][1]["signature"] = "(const char*,int[3],float,int,int,const char*)" -defs["igDragInt3"][1]["stname"] = "ImGui" +defs["igDragInt3"][1]["stname"] = "" defs["igDragInt3"]["(const char*,int[3],float,int,int,const char*)"] = defs["igDragInt3"][1] defs["igDragInt4"] = {} defs["igDragInt4"][1] = {} @@ -6791,9 +7136,11 @@ defs["igDragInt4"][1]["defaults"]["v_max"] = "0" defs["igDragInt4"][1]["defaults"]["v_min"] = "0" defs["igDragInt4"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt4"][1]["funcname"] = "DragInt4" +defs["igDragInt4"][1]["namespace"] = "ImGui" +defs["igDragInt4"][1]["ov_cimguiname"] = "igDragInt4" defs["igDragInt4"][1]["ret"] = "bool" defs["igDragInt4"][1]["signature"] = "(const char*,int[4],float,int,int,const char*)" -defs["igDragInt4"][1]["stname"] = "ImGui" +defs["igDragInt4"][1]["stname"] = "" defs["igDragInt4"]["(const char*,int[4],float,int,int,const char*)"] = defs["igDragInt4"][1] defs["igDragIntRange2"] = {} defs["igDragIntRange2"][1] = {} @@ -6823,20 +7170,22 @@ defs["igDragIntRange2"][1]["argsT"][7]["type"] = "const char*" defs["igDragIntRange2"][1]["argsT"][8] = {} defs["igDragIntRange2"][1]["argsT"][8]["name"] = "format_max" defs["igDragIntRange2"][1]["argsT"][8]["type"] = "const char*" -defs["igDragIntRange2"][1]["argsoriginal"] = "(const char* label,int* v_current_min,int* v_current_max,float v_speed=1.0f,int v_min=0,int v_max=0,const char* format=\"%d\",const char* format_max=((void *)0))" +defs["igDragIntRange2"][1]["argsoriginal"] = "(const char* label,int* v_current_min,int* v_current_max,float v_speed=1.0f,int v_min=0,int v_max=0,const char* format=\"%d\",const char* format_max=((void*)0))" defs["igDragIntRange2"][1]["call_args"] = "(label,v_current_min,v_current_max,v_speed,v_min,v_max,format,format_max)" defs["igDragIntRange2"][1]["cimguiname"] = "igDragIntRange2" defs["igDragIntRange2"][1]["comment"] = "" defs["igDragIntRange2"][1]["defaults"] = {} defs["igDragIntRange2"][1]["defaults"]["format"] = "\"%d\"" -defs["igDragIntRange2"][1]["defaults"]["format_max"] = "((void *)0)" +defs["igDragIntRange2"][1]["defaults"]["format_max"] = "((void*)0)" defs["igDragIntRange2"][1]["defaults"]["v_max"] = "0" defs["igDragIntRange2"][1]["defaults"]["v_min"] = "0" defs["igDragIntRange2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragIntRange2"][1]["funcname"] = "DragIntRange2" +defs["igDragIntRange2"][1]["namespace"] = "ImGui" +defs["igDragIntRange2"][1]["ov_cimguiname"] = "igDragIntRange2" defs["igDragIntRange2"][1]["ret"] = "bool" defs["igDragIntRange2"][1]["signature"] = "(const char*,int*,int*,float,int,int,const char*,const char*)" -defs["igDragIntRange2"][1]["stname"] = "ImGui" +defs["igDragIntRange2"][1]["stname"] = "" defs["igDragIntRange2"]["(const char*,int*,int*,float,int,int,const char*,const char*)"] = defs["igDragIntRange2"][1] defs["igDragScalar"] = {} defs["igDragScalar"][1] = {} @@ -6866,19 +7215,21 @@ defs["igDragScalar"][1]["argsT"][7]["type"] = "const char*" defs["igDragScalar"][1]["argsT"][8] = {} defs["igDragScalar"][1]["argsT"][8]["name"] = "power" defs["igDragScalar"][1]["argsT"][8]["type"] = "float" -defs["igDragScalar"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,float v_speed,const void* v_min=((void *)0),const void* v_max=((void *)0),const char* format=((void *)0),float power=1.0f)" +defs["igDragScalar"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,float v_speed,const void* v_min=((void*)0),const void* v_max=((void*)0),const char* format=((void*)0),float power=1.0f)" defs["igDragScalar"][1]["call_args"] = "(label,data_type,v,v_speed,v_min,v_max,format,power)" defs["igDragScalar"][1]["cimguiname"] = "igDragScalar" defs["igDragScalar"][1]["comment"] = "" defs["igDragScalar"][1]["defaults"] = {} -defs["igDragScalar"][1]["defaults"]["format"] = "((void *)0)" +defs["igDragScalar"][1]["defaults"]["format"] = "((void*)0)" defs["igDragScalar"][1]["defaults"]["power"] = "1.0f" -defs["igDragScalar"][1]["defaults"]["v_max"] = "((void *)0)" -defs["igDragScalar"][1]["defaults"]["v_min"] = "((void *)0)" +defs["igDragScalar"][1]["defaults"]["v_max"] = "((void*)0)" +defs["igDragScalar"][1]["defaults"]["v_min"] = "((void*)0)" defs["igDragScalar"][1]["funcname"] = "DragScalar" +defs["igDragScalar"][1]["namespace"] = "ImGui" +defs["igDragScalar"][1]["ov_cimguiname"] = "igDragScalar" defs["igDragScalar"][1]["ret"] = "bool" defs["igDragScalar"][1]["signature"] = "(const char*,ImGuiDataType,void*,float,const void*,const void*,const char*,float)" -defs["igDragScalar"][1]["stname"] = "ImGui" +defs["igDragScalar"][1]["stname"] = "" defs["igDragScalar"]["(const char*,ImGuiDataType,void*,float,const void*,const void*,const char*,float)"] = defs["igDragScalar"][1] defs["igDragScalarN"] = {} defs["igDragScalarN"][1] = {} @@ -6911,19 +7262,21 @@ defs["igDragScalarN"][1]["argsT"][8]["type"] = "const char*" defs["igDragScalarN"][1]["argsT"][9] = {} defs["igDragScalarN"][1]["argsT"][9]["name"] = "power" defs["igDragScalarN"][1]["argsT"][9]["type"] = "float" -defs["igDragScalarN"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,int components,float v_speed,const void* v_min=((void *)0),const void* v_max=((void *)0),const char* format=((void *)0),float power=1.0f)" +defs["igDragScalarN"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,int components,float v_speed,const void* v_min=((void*)0),const void* v_max=((void*)0),const char* format=((void*)0),float power=1.0f)" defs["igDragScalarN"][1]["call_args"] = "(label,data_type,v,components,v_speed,v_min,v_max,format,power)" defs["igDragScalarN"][1]["cimguiname"] = "igDragScalarN" defs["igDragScalarN"][1]["comment"] = "" defs["igDragScalarN"][1]["defaults"] = {} -defs["igDragScalarN"][1]["defaults"]["format"] = "((void *)0)" +defs["igDragScalarN"][1]["defaults"]["format"] = "((void*)0)" defs["igDragScalarN"][1]["defaults"]["power"] = "1.0f" -defs["igDragScalarN"][1]["defaults"]["v_max"] = "((void *)0)" -defs["igDragScalarN"][1]["defaults"]["v_min"] = "((void *)0)" +defs["igDragScalarN"][1]["defaults"]["v_max"] = "((void*)0)" +defs["igDragScalarN"][1]["defaults"]["v_min"] = "((void*)0)" defs["igDragScalarN"][1]["funcname"] = "DragScalarN" +defs["igDragScalarN"][1]["namespace"] = "ImGui" +defs["igDragScalarN"][1]["ov_cimguiname"] = "igDragScalarN" defs["igDragScalarN"][1]["ret"] = "bool" defs["igDragScalarN"][1]["signature"] = "(const char*,ImGuiDataType,void*,int,float,const void*,const void*,const char*,float)" -defs["igDragScalarN"][1]["stname"] = "ImGui" +defs["igDragScalarN"][1]["stname"] = "" defs["igDragScalarN"]["(const char*,ImGuiDataType,void*,int,float,const void*,const void*,const char*,float)"] = defs["igDragScalarN"][1] defs["igDummy"] = {} defs["igDummy"][1] = {} @@ -6938,9 +7291,11 @@ defs["igDummy"][1]["cimguiname"] = "igDummy" defs["igDummy"][1]["comment"] = "" defs["igDummy"][1]["defaults"] = {} defs["igDummy"][1]["funcname"] = "Dummy" +defs["igDummy"][1]["namespace"] = "ImGui" +defs["igDummy"][1]["ov_cimguiname"] = "igDummy" defs["igDummy"][1]["ret"] = "void" defs["igDummy"][1]["signature"] = "(const ImVec2)" -defs["igDummy"][1]["stname"] = "ImGui" +defs["igDummy"][1]["stname"] = "" defs["igDummy"]["(const ImVec2)"] = defs["igDummy"][1] defs["igEnd"] = {} defs["igEnd"][1] = {} @@ -6952,9 +7307,11 @@ defs["igEnd"][1]["cimguiname"] = "igEnd" defs["igEnd"][1]["comment"] = "" defs["igEnd"][1]["defaults"] = {} defs["igEnd"][1]["funcname"] = "End" +defs["igEnd"][1]["namespace"] = "ImGui" +defs["igEnd"][1]["ov_cimguiname"] = "igEnd" defs["igEnd"][1]["ret"] = "void" defs["igEnd"][1]["signature"] = "()" -defs["igEnd"][1]["stname"] = "ImGui" +defs["igEnd"][1]["stname"] = "" defs["igEnd"]["()"] = defs["igEnd"][1] defs["igEndChild"] = {} defs["igEndChild"][1] = {} @@ -6966,9 +7323,11 @@ defs["igEndChild"][1]["cimguiname"] = "igEndChild" defs["igEndChild"][1]["comment"] = "" defs["igEndChild"][1]["defaults"] = {} defs["igEndChild"][1]["funcname"] = "EndChild" +defs["igEndChild"][1]["namespace"] = "ImGui" +defs["igEndChild"][1]["ov_cimguiname"] = "igEndChild" defs["igEndChild"][1]["ret"] = "void" defs["igEndChild"][1]["signature"] = "()" -defs["igEndChild"][1]["stname"] = "ImGui" +defs["igEndChild"][1]["stname"] = "" defs["igEndChild"]["()"] = defs["igEndChild"][1] defs["igEndChildFrame"] = {} defs["igEndChildFrame"][1] = {} @@ -6980,9 +7339,11 @@ defs["igEndChildFrame"][1]["cimguiname"] = "igEndChildFrame" defs["igEndChildFrame"][1]["comment"] = "" defs["igEndChildFrame"][1]["defaults"] = {} defs["igEndChildFrame"][1]["funcname"] = "EndChildFrame" +defs["igEndChildFrame"][1]["namespace"] = "ImGui" +defs["igEndChildFrame"][1]["ov_cimguiname"] = "igEndChildFrame" defs["igEndChildFrame"][1]["ret"] = "void" defs["igEndChildFrame"][1]["signature"] = "()" -defs["igEndChildFrame"][1]["stname"] = "ImGui" +defs["igEndChildFrame"][1]["stname"] = "" defs["igEndChildFrame"]["()"] = defs["igEndChildFrame"][1] defs["igEndCombo"] = {} defs["igEndCombo"][1] = {} @@ -6994,9 +7355,11 @@ defs["igEndCombo"][1]["cimguiname"] = "igEndCombo" defs["igEndCombo"][1]["comment"] = "" defs["igEndCombo"][1]["defaults"] = {} defs["igEndCombo"][1]["funcname"] = "EndCombo" +defs["igEndCombo"][1]["namespace"] = "ImGui" +defs["igEndCombo"][1]["ov_cimguiname"] = "igEndCombo" defs["igEndCombo"][1]["ret"] = "void" defs["igEndCombo"][1]["signature"] = "()" -defs["igEndCombo"][1]["stname"] = "ImGui" +defs["igEndCombo"][1]["stname"] = "" defs["igEndCombo"]["()"] = defs["igEndCombo"][1] defs["igEndDragDropSource"] = {} defs["igEndDragDropSource"][1] = {} @@ -7008,9 +7371,11 @@ defs["igEndDragDropSource"][1]["cimguiname"] = "igEndDragDropSource" defs["igEndDragDropSource"][1]["comment"] = "" defs["igEndDragDropSource"][1]["defaults"] = {} defs["igEndDragDropSource"][1]["funcname"] = "EndDragDropSource" +defs["igEndDragDropSource"][1]["namespace"] = "ImGui" +defs["igEndDragDropSource"][1]["ov_cimguiname"] = "igEndDragDropSource" defs["igEndDragDropSource"][1]["ret"] = "void" defs["igEndDragDropSource"][1]["signature"] = "()" -defs["igEndDragDropSource"][1]["stname"] = "ImGui" +defs["igEndDragDropSource"][1]["stname"] = "" defs["igEndDragDropSource"]["()"] = defs["igEndDragDropSource"][1] defs["igEndDragDropTarget"] = {} defs["igEndDragDropTarget"][1] = {} @@ -7022,9 +7387,11 @@ defs["igEndDragDropTarget"][1]["cimguiname"] = "igEndDragDropTarget" defs["igEndDragDropTarget"][1]["comment"] = "" defs["igEndDragDropTarget"][1]["defaults"] = {} defs["igEndDragDropTarget"][1]["funcname"] = "EndDragDropTarget" +defs["igEndDragDropTarget"][1]["namespace"] = "ImGui" +defs["igEndDragDropTarget"][1]["ov_cimguiname"] = "igEndDragDropTarget" defs["igEndDragDropTarget"][1]["ret"] = "void" defs["igEndDragDropTarget"][1]["signature"] = "()" -defs["igEndDragDropTarget"][1]["stname"] = "ImGui" +defs["igEndDragDropTarget"][1]["stname"] = "" defs["igEndDragDropTarget"]["()"] = defs["igEndDragDropTarget"][1] defs["igEndFrame"] = {} defs["igEndFrame"][1] = {} @@ -7036,9 +7403,11 @@ defs["igEndFrame"][1]["cimguiname"] = "igEndFrame" defs["igEndFrame"][1]["comment"] = "" defs["igEndFrame"][1]["defaults"] = {} defs["igEndFrame"][1]["funcname"] = "EndFrame" +defs["igEndFrame"][1]["namespace"] = "ImGui" +defs["igEndFrame"][1]["ov_cimguiname"] = "igEndFrame" defs["igEndFrame"][1]["ret"] = "void" defs["igEndFrame"][1]["signature"] = "()" -defs["igEndFrame"][1]["stname"] = "ImGui" +defs["igEndFrame"][1]["stname"] = "" defs["igEndFrame"]["()"] = defs["igEndFrame"][1] defs["igEndGroup"] = {} defs["igEndGroup"][1] = {} @@ -7050,9 +7419,11 @@ defs["igEndGroup"][1]["cimguiname"] = "igEndGroup" defs["igEndGroup"][1]["comment"] = "" defs["igEndGroup"][1]["defaults"] = {} defs["igEndGroup"][1]["funcname"] = "EndGroup" +defs["igEndGroup"][1]["namespace"] = "ImGui" +defs["igEndGroup"][1]["ov_cimguiname"] = "igEndGroup" defs["igEndGroup"][1]["ret"] = "void" defs["igEndGroup"][1]["signature"] = "()" -defs["igEndGroup"][1]["stname"] = "ImGui" +defs["igEndGroup"][1]["stname"] = "" defs["igEndGroup"]["()"] = defs["igEndGroup"][1] defs["igEndMainMenuBar"] = {} defs["igEndMainMenuBar"][1] = {} @@ -7064,9 +7435,11 @@ defs["igEndMainMenuBar"][1]["cimguiname"] = "igEndMainMenuBar" defs["igEndMainMenuBar"][1]["comment"] = "" defs["igEndMainMenuBar"][1]["defaults"] = {} defs["igEndMainMenuBar"][1]["funcname"] = "EndMainMenuBar" +defs["igEndMainMenuBar"][1]["namespace"] = "ImGui" +defs["igEndMainMenuBar"][1]["ov_cimguiname"] = "igEndMainMenuBar" defs["igEndMainMenuBar"][1]["ret"] = "void" defs["igEndMainMenuBar"][1]["signature"] = "()" -defs["igEndMainMenuBar"][1]["stname"] = "ImGui" +defs["igEndMainMenuBar"][1]["stname"] = "" defs["igEndMainMenuBar"]["()"] = defs["igEndMainMenuBar"][1] defs["igEndMenu"] = {} defs["igEndMenu"][1] = {} @@ -7078,9 +7451,11 @@ defs["igEndMenu"][1]["cimguiname"] = "igEndMenu" defs["igEndMenu"][1]["comment"] = "" defs["igEndMenu"][1]["defaults"] = {} defs["igEndMenu"][1]["funcname"] = "EndMenu" +defs["igEndMenu"][1]["namespace"] = "ImGui" +defs["igEndMenu"][1]["ov_cimguiname"] = "igEndMenu" defs["igEndMenu"][1]["ret"] = "void" defs["igEndMenu"][1]["signature"] = "()" -defs["igEndMenu"][1]["stname"] = "ImGui" +defs["igEndMenu"][1]["stname"] = "" defs["igEndMenu"]["()"] = defs["igEndMenu"][1] defs["igEndMenuBar"] = {} defs["igEndMenuBar"][1] = {} @@ -7092,9 +7467,11 @@ defs["igEndMenuBar"][1]["cimguiname"] = "igEndMenuBar" defs["igEndMenuBar"][1]["comment"] = "" defs["igEndMenuBar"][1]["defaults"] = {} defs["igEndMenuBar"][1]["funcname"] = "EndMenuBar" +defs["igEndMenuBar"][1]["namespace"] = "ImGui" +defs["igEndMenuBar"][1]["ov_cimguiname"] = "igEndMenuBar" defs["igEndMenuBar"][1]["ret"] = "void" defs["igEndMenuBar"][1]["signature"] = "()" -defs["igEndMenuBar"][1]["stname"] = "ImGui" +defs["igEndMenuBar"][1]["stname"] = "" defs["igEndMenuBar"]["()"] = defs["igEndMenuBar"][1] defs["igEndPopup"] = {} defs["igEndPopup"][1] = {} @@ -7106,9 +7483,11 @@ defs["igEndPopup"][1]["cimguiname"] = "igEndPopup" defs["igEndPopup"][1]["comment"] = "" defs["igEndPopup"][1]["defaults"] = {} defs["igEndPopup"][1]["funcname"] = "EndPopup" +defs["igEndPopup"][1]["namespace"] = "ImGui" +defs["igEndPopup"][1]["ov_cimguiname"] = "igEndPopup" defs["igEndPopup"][1]["ret"] = "void" defs["igEndPopup"][1]["signature"] = "()" -defs["igEndPopup"][1]["stname"] = "ImGui" +defs["igEndPopup"][1]["stname"] = "" defs["igEndPopup"]["()"] = defs["igEndPopup"][1] defs["igEndTabBar"] = {} defs["igEndTabBar"][1] = {} @@ -7120,9 +7499,11 @@ defs["igEndTabBar"][1]["cimguiname"] = "igEndTabBar" defs["igEndTabBar"][1]["comment"] = "" defs["igEndTabBar"][1]["defaults"] = {} defs["igEndTabBar"][1]["funcname"] = "EndTabBar" +defs["igEndTabBar"][1]["namespace"] = "ImGui" +defs["igEndTabBar"][1]["ov_cimguiname"] = "igEndTabBar" defs["igEndTabBar"][1]["ret"] = "void" defs["igEndTabBar"][1]["signature"] = "()" -defs["igEndTabBar"][1]["stname"] = "ImGui" +defs["igEndTabBar"][1]["stname"] = "" defs["igEndTabBar"]["()"] = defs["igEndTabBar"][1] defs["igEndTabItem"] = {} defs["igEndTabItem"][1] = {} @@ -7134,9 +7515,11 @@ defs["igEndTabItem"][1]["cimguiname"] = "igEndTabItem" defs["igEndTabItem"][1]["comment"] = "" defs["igEndTabItem"][1]["defaults"] = {} defs["igEndTabItem"][1]["funcname"] = "EndTabItem" +defs["igEndTabItem"][1]["namespace"] = "ImGui" +defs["igEndTabItem"][1]["ov_cimguiname"] = "igEndTabItem" defs["igEndTabItem"][1]["ret"] = "void" defs["igEndTabItem"][1]["signature"] = "()" -defs["igEndTabItem"][1]["stname"] = "ImGui" +defs["igEndTabItem"][1]["stname"] = "" defs["igEndTabItem"]["()"] = defs["igEndTabItem"][1] defs["igEndTooltip"] = {} defs["igEndTooltip"][1] = {} @@ -7148,9 +7531,11 @@ defs["igEndTooltip"][1]["cimguiname"] = "igEndTooltip" defs["igEndTooltip"][1]["comment"] = "" defs["igEndTooltip"][1]["defaults"] = {} defs["igEndTooltip"][1]["funcname"] = "EndTooltip" +defs["igEndTooltip"][1]["namespace"] = "ImGui" +defs["igEndTooltip"][1]["ov_cimguiname"] = "igEndTooltip" defs["igEndTooltip"][1]["ret"] = "void" defs["igEndTooltip"][1]["signature"] = "()" -defs["igEndTooltip"][1]["stname"] = "ImGui" +defs["igEndTooltip"][1]["stname"] = "" defs["igEndTooltip"]["()"] = defs["igEndTooltip"][1] defs["igGetClipboardText"] = {} defs["igGetClipboardText"][1] = {} @@ -7162,9 +7547,11 @@ defs["igGetClipboardText"][1]["cimguiname"] = "igGetClipboardText" defs["igGetClipboardText"][1]["comment"] = "" defs["igGetClipboardText"][1]["defaults"] = {} defs["igGetClipboardText"][1]["funcname"] = "GetClipboardText" +defs["igGetClipboardText"][1]["namespace"] = "ImGui" +defs["igGetClipboardText"][1]["ov_cimguiname"] = "igGetClipboardText" defs["igGetClipboardText"][1]["ret"] = "const char*" defs["igGetClipboardText"][1]["signature"] = "()" -defs["igGetClipboardText"][1]["stname"] = "ImGui" +defs["igGetClipboardText"][1]["stname"] = "" defs["igGetClipboardText"]["()"] = defs["igGetClipboardText"][1] defs["igGetColorU32"] = {} defs["igGetColorU32"][1] = {} @@ -7183,10 +7570,11 @@ defs["igGetColorU32"][1]["comment"] = "" defs["igGetColorU32"][1]["defaults"] = {} defs["igGetColorU32"][1]["defaults"]["alpha_mul"] = "1.0f" defs["igGetColorU32"][1]["funcname"] = "GetColorU32" +defs["igGetColorU32"][1]["namespace"] = "ImGui" defs["igGetColorU32"][1]["ov_cimguiname"] = "igGetColorU32" defs["igGetColorU32"][1]["ret"] = "ImU32" defs["igGetColorU32"][1]["signature"] = "(ImGuiCol,float)" -defs["igGetColorU32"][1]["stname"] = "ImGui" +defs["igGetColorU32"][1]["stname"] = "" defs["igGetColorU32"][2] = {} defs["igGetColorU32"][2]["args"] = "(const ImVec4 col)" defs["igGetColorU32"][2]["argsT"] = {} @@ -7199,10 +7587,11 @@ defs["igGetColorU32"][2]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][2]["comment"] = "" defs["igGetColorU32"][2]["defaults"] = {} defs["igGetColorU32"][2]["funcname"] = "GetColorU32" +defs["igGetColorU32"][2]["namespace"] = "ImGui" defs["igGetColorU32"][2]["ov_cimguiname"] = "igGetColorU32Vec4" defs["igGetColorU32"][2]["ret"] = "ImU32" defs["igGetColorU32"][2]["signature"] = "(const ImVec4)" -defs["igGetColorU32"][2]["stname"] = "ImGui" +defs["igGetColorU32"][2]["stname"] = "" defs["igGetColorU32"][3] = {} defs["igGetColorU32"][3]["args"] = "(ImU32 col)" defs["igGetColorU32"][3]["argsT"] = {} @@ -7215,10 +7604,11 @@ defs["igGetColorU32"][3]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][3]["comment"] = "" defs["igGetColorU32"][3]["defaults"] = {} defs["igGetColorU32"][3]["funcname"] = "GetColorU32" +defs["igGetColorU32"][3]["namespace"] = "ImGui" defs["igGetColorU32"][3]["ov_cimguiname"] = "igGetColorU32U32" defs["igGetColorU32"][3]["ret"] = "ImU32" defs["igGetColorU32"][3]["signature"] = "(ImU32)" -defs["igGetColorU32"][3]["stname"] = "ImGui" +defs["igGetColorU32"][3]["stname"] = "" defs["igGetColorU32"]["(ImGuiCol,float)"] = defs["igGetColorU32"][1] defs["igGetColorU32"]["(ImU32)"] = defs["igGetColorU32"][3] defs["igGetColorU32"]["(const ImVec4)"] = defs["igGetColorU32"][2] @@ -7232,9 +7622,11 @@ defs["igGetColumnIndex"][1]["cimguiname"] = "igGetColumnIndex" defs["igGetColumnIndex"][1]["comment"] = "" defs["igGetColumnIndex"][1]["defaults"] = {} defs["igGetColumnIndex"][1]["funcname"] = "GetColumnIndex" +defs["igGetColumnIndex"][1]["namespace"] = "ImGui" +defs["igGetColumnIndex"][1]["ov_cimguiname"] = "igGetColumnIndex" defs["igGetColumnIndex"][1]["ret"] = "int" defs["igGetColumnIndex"][1]["signature"] = "()" -defs["igGetColumnIndex"][1]["stname"] = "ImGui" +defs["igGetColumnIndex"][1]["stname"] = "" defs["igGetColumnIndex"]["()"] = defs["igGetColumnIndex"][1] defs["igGetColumnOffset"] = {} defs["igGetColumnOffset"][1] = {} @@ -7250,9 +7642,11 @@ defs["igGetColumnOffset"][1]["comment"] = "" defs["igGetColumnOffset"][1]["defaults"] = {} defs["igGetColumnOffset"][1]["defaults"]["column_index"] = "-1" defs["igGetColumnOffset"][1]["funcname"] = "GetColumnOffset" +defs["igGetColumnOffset"][1]["namespace"] = "ImGui" +defs["igGetColumnOffset"][1]["ov_cimguiname"] = "igGetColumnOffset" defs["igGetColumnOffset"][1]["ret"] = "float" defs["igGetColumnOffset"][1]["signature"] = "(int)" -defs["igGetColumnOffset"][1]["stname"] = "ImGui" +defs["igGetColumnOffset"][1]["stname"] = "" defs["igGetColumnOffset"]["(int)"] = defs["igGetColumnOffset"][1] defs["igGetColumnWidth"] = {} defs["igGetColumnWidth"][1] = {} @@ -7268,9 +7662,11 @@ defs["igGetColumnWidth"][1]["comment"] = "" defs["igGetColumnWidth"][1]["defaults"] = {} defs["igGetColumnWidth"][1]["defaults"]["column_index"] = "-1" defs["igGetColumnWidth"][1]["funcname"] = "GetColumnWidth" +defs["igGetColumnWidth"][1]["namespace"] = "ImGui" +defs["igGetColumnWidth"][1]["ov_cimguiname"] = "igGetColumnWidth" defs["igGetColumnWidth"][1]["ret"] = "float" defs["igGetColumnWidth"][1]["signature"] = "(int)" -defs["igGetColumnWidth"][1]["stname"] = "ImGui" +defs["igGetColumnWidth"][1]["stname"] = "" defs["igGetColumnWidth"]["(int)"] = defs["igGetColumnWidth"][1] defs["igGetColumnsCount"] = {} defs["igGetColumnsCount"][1] = {} @@ -7282,9 +7678,11 @@ defs["igGetColumnsCount"][1]["cimguiname"] = "igGetColumnsCount" defs["igGetColumnsCount"][1]["comment"] = "" defs["igGetColumnsCount"][1]["defaults"] = {} defs["igGetColumnsCount"][1]["funcname"] = "GetColumnsCount" +defs["igGetColumnsCount"][1]["namespace"] = "ImGui" +defs["igGetColumnsCount"][1]["ov_cimguiname"] = "igGetColumnsCount" defs["igGetColumnsCount"][1]["ret"] = "int" defs["igGetColumnsCount"][1]["signature"] = "()" -defs["igGetColumnsCount"][1]["stname"] = "ImGui" +defs["igGetColumnsCount"][1]["stname"] = "" defs["igGetColumnsCount"]["()"] = defs["igGetColumnsCount"][1] defs["igGetContentRegionAvail"] = {} defs["igGetContentRegionAvail"][1] = {} @@ -7296,9 +7694,11 @@ defs["igGetContentRegionAvail"][1]["cimguiname"] = "igGetContentRegionAvail" defs["igGetContentRegionAvail"][1]["comment"] = "" defs["igGetContentRegionAvail"][1]["defaults"] = {} defs["igGetContentRegionAvail"][1]["funcname"] = "GetContentRegionAvail" +defs["igGetContentRegionAvail"][1]["namespace"] = "ImGui" +defs["igGetContentRegionAvail"][1]["ov_cimguiname"] = "igGetContentRegionAvail" defs["igGetContentRegionAvail"][1]["ret"] = "ImVec2" defs["igGetContentRegionAvail"][1]["signature"] = "()" -defs["igGetContentRegionAvail"][1]["stname"] = "ImGui" +defs["igGetContentRegionAvail"][1]["stname"] = "" defs["igGetContentRegionAvail"][2] = {} defs["igGetContentRegionAvail"][2]["args"] = "(ImVec2 *pOut)" defs["igGetContentRegionAvail"][2]["argsT"] = {} @@ -7311,11 +7711,12 @@ defs["igGetContentRegionAvail"][2]["cimguiname"] = "igGetContentRegionAvail" defs["igGetContentRegionAvail"][2]["comment"] = "" defs["igGetContentRegionAvail"][2]["defaults"] = defs["igGetContentRegionAvail"][1]["defaults"] defs["igGetContentRegionAvail"][2]["funcname"] = "GetContentRegionAvail" +defs["igGetContentRegionAvail"][2]["namespace"] = "ImGui" defs["igGetContentRegionAvail"][2]["nonUDT"] = 1 defs["igGetContentRegionAvail"][2]["ov_cimguiname"] = "igGetContentRegionAvail_nonUDT" defs["igGetContentRegionAvail"][2]["ret"] = "void" defs["igGetContentRegionAvail"][2]["signature"] = "()" -defs["igGetContentRegionAvail"][2]["stname"] = "ImGui" +defs["igGetContentRegionAvail"][2]["stname"] = "" defs["igGetContentRegionAvail"][3] = {} defs["igGetContentRegionAvail"][3]["args"] = "()" defs["igGetContentRegionAvail"][3]["argsT"] = {} @@ -7325,12 +7726,13 @@ defs["igGetContentRegionAvail"][3]["cimguiname"] = "igGetContentRegionAvail" defs["igGetContentRegionAvail"][3]["comment"] = "" defs["igGetContentRegionAvail"][3]["defaults"] = defs["igGetContentRegionAvail"][1]["defaults"] defs["igGetContentRegionAvail"][3]["funcname"] = "GetContentRegionAvail" +defs["igGetContentRegionAvail"][3]["namespace"] = "ImGui" defs["igGetContentRegionAvail"][3]["nonUDT"] = 2 defs["igGetContentRegionAvail"][3]["ov_cimguiname"] = "igGetContentRegionAvail_nonUDT2" defs["igGetContentRegionAvail"][3]["ret"] = "ImVec2_Simple" defs["igGetContentRegionAvail"][3]["retorig"] = "ImVec2" defs["igGetContentRegionAvail"][3]["signature"] = "()" -defs["igGetContentRegionAvail"][3]["stname"] = "ImGui" +defs["igGetContentRegionAvail"][3]["stname"] = "" defs["igGetContentRegionAvail"]["()"] = defs["igGetContentRegionAvail"][1] defs["igGetContentRegionAvail"]["()nonUDT"] = defs["igGetContentRegionAvail"][2] defs["igGetContentRegionAvail"]["()nonUDT2"] = defs["igGetContentRegionAvail"][3] @@ -7344,9 +7746,11 @@ defs["igGetContentRegionAvailWidth"][1]["cimguiname"] = "igGetContentRegionAvail defs["igGetContentRegionAvailWidth"][1]["comment"] = "" defs["igGetContentRegionAvailWidth"][1]["defaults"] = {} defs["igGetContentRegionAvailWidth"][1]["funcname"] = "GetContentRegionAvailWidth" +defs["igGetContentRegionAvailWidth"][1]["namespace"] = "ImGui" +defs["igGetContentRegionAvailWidth"][1]["ov_cimguiname"] = "igGetContentRegionAvailWidth" defs["igGetContentRegionAvailWidth"][1]["ret"] = "float" defs["igGetContentRegionAvailWidth"][1]["signature"] = "()" -defs["igGetContentRegionAvailWidth"][1]["stname"] = "ImGui" +defs["igGetContentRegionAvailWidth"][1]["stname"] = "" defs["igGetContentRegionAvailWidth"]["()"] = defs["igGetContentRegionAvailWidth"][1] defs["igGetContentRegionMax"] = {} defs["igGetContentRegionMax"][1] = {} @@ -7358,9 +7762,11 @@ defs["igGetContentRegionMax"][1]["cimguiname"] = "igGetContentRegionMax" defs["igGetContentRegionMax"][1]["comment"] = "" defs["igGetContentRegionMax"][1]["defaults"] = {} defs["igGetContentRegionMax"][1]["funcname"] = "GetContentRegionMax" +defs["igGetContentRegionMax"][1]["namespace"] = "ImGui" +defs["igGetContentRegionMax"][1]["ov_cimguiname"] = "igGetContentRegionMax" defs["igGetContentRegionMax"][1]["ret"] = "ImVec2" defs["igGetContentRegionMax"][1]["signature"] = "()" -defs["igGetContentRegionMax"][1]["stname"] = "ImGui" +defs["igGetContentRegionMax"][1]["stname"] = "" defs["igGetContentRegionMax"][2] = {} defs["igGetContentRegionMax"][2]["args"] = "(ImVec2 *pOut)" defs["igGetContentRegionMax"][2]["argsT"] = {} @@ -7373,11 +7779,12 @@ defs["igGetContentRegionMax"][2]["cimguiname"] = "igGetContentRegionMax" defs["igGetContentRegionMax"][2]["comment"] = "" defs["igGetContentRegionMax"][2]["defaults"] = defs["igGetContentRegionMax"][1]["defaults"] defs["igGetContentRegionMax"][2]["funcname"] = "GetContentRegionMax" +defs["igGetContentRegionMax"][2]["namespace"] = "ImGui" defs["igGetContentRegionMax"][2]["nonUDT"] = 1 defs["igGetContentRegionMax"][2]["ov_cimguiname"] = "igGetContentRegionMax_nonUDT" defs["igGetContentRegionMax"][2]["ret"] = "void" defs["igGetContentRegionMax"][2]["signature"] = "()" -defs["igGetContentRegionMax"][2]["stname"] = "ImGui" +defs["igGetContentRegionMax"][2]["stname"] = "" defs["igGetContentRegionMax"][3] = {} defs["igGetContentRegionMax"][3]["args"] = "()" defs["igGetContentRegionMax"][3]["argsT"] = {} @@ -7387,12 +7794,13 @@ defs["igGetContentRegionMax"][3]["cimguiname"] = "igGetContentRegionMax" defs["igGetContentRegionMax"][3]["comment"] = "" defs["igGetContentRegionMax"][3]["defaults"] = defs["igGetContentRegionMax"][1]["defaults"] defs["igGetContentRegionMax"][3]["funcname"] = "GetContentRegionMax" +defs["igGetContentRegionMax"][3]["namespace"] = "ImGui" defs["igGetContentRegionMax"][3]["nonUDT"] = 2 defs["igGetContentRegionMax"][3]["ov_cimguiname"] = "igGetContentRegionMax_nonUDT2" defs["igGetContentRegionMax"][3]["ret"] = "ImVec2_Simple" defs["igGetContentRegionMax"][3]["retorig"] = "ImVec2" defs["igGetContentRegionMax"][3]["signature"] = "()" -defs["igGetContentRegionMax"][3]["stname"] = "ImGui" +defs["igGetContentRegionMax"][3]["stname"] = "" defs["igGetContentRegionMax"]["()"] = defs["igGetContentRegionMax"][1] defs["igGetContentRegionMax"]["()nonUDT"] = defs["igGetContentRegionMax"][2] defs["igGetContentRegionMax"]["()nonUDT2"] = defs["igGetContentRegionMax"][3] @@ -7406,9 +7814,11 @@ defs["igGetCurrentContext"][1]["cimguiname"] = "igGetCurrentContext" defs["igGetCurrentContext"][1]["comment"] = "" defs["igGetCurrentContext"][1]["defaults"] = {} defs["igGetCurrentContext"][1]["funcname"] = "GetCurrentContext" +defs["igGetCurrentContext"][1]["namespace"] = "ImGui" +defs["igGetCurrentContext"][1]["ov_cimguiname"] = "igGetCurrentContext" defs["igGetCurrentContext"][1]["ret"] = "ImGuiContext*" defs["igGetCurrentContext"][1]["signature"] = "()" -defs["igGetCurrentContext"][1]["stname"] = "ImGui" +defs["igGetCurrentContext"][1]["stname"] = "" defs["igGetCurrentContext"]["()"] = defs["igGetCurrentContext"][1] defs["igGetCursorPos"] = {} defs["igGetCursorPos"][1] = {} @@ -7420,9 +7830,11 @@ defs["igGetCursorPos"][1]["cimguiname"] = "igGetCursorPos" defs["igGetCursorPos"][1]["comment"] = "" defs["igGetCursorPos"][1]["defaults"] = {} defs["igGetCursorPos"][1]["funcname"] = "GetCursorPos" +defs["igGetCursorPos"][1]["namespace"] = "ImGui" +defs["igGetCursorPos"][1]["ov_cimguiname"] = "igGetCursorPos" defs["igGetCursorPos"][1]["ret"] = "ImVec2" defs["igGetCursorPos"][1]["signature"] = "()" -defs["igGetCursorPos"][1]["stname"] = "ImGui" +defs["igGetCursorPos"][1]["stname"] = "" defs["igGetCursorPos"][2] = {} defs["igGetCursorPos"][2]["args"] = "(ImVec2 *pOut)" defs["igGetCursorPos"][2]["argsT"] = {} @@ -7435,11 +7847,12 @@ defs["igGetCursorPos"][2]["cimguiname"] = "igGetCursorPos" defs["igGetCursorPos"][2]["comment"] = "" defs["igGetCursorPos"][2]["defaults"] = defs["igGetCursorPos"][1]["defaults"] defs["igGetCursorPos"][2]["funcname"] = "GetCursorPos" +defs["igGetCursorPos"][2]["namespace"] = "ImGui" defs["igGetCursorPos"][2]["nonUDT"] = 1 defs["igGetCursorPos"][2]["ov_cimguiname"] = "igGetCursorPos_nonUDT" defs["igGetCursorPos"][2]["ret"] = "void" defs["igGetCursorPos"][2]["signature"] = "()" -defs["igGetCursorPos"][2]["stname"] = "ImGui" +defs["igGetCursorPos"][2]["stname"] = "" defs["igGetCursorPos"][3] = {} defs["igGetCursorPos"][3]["args"] = "()" defs["igGetCursorPos"][3]["argsT"] = {} @@ -7449,12 +7862,13 @@ defs["igGetCursorPos"][3]["cimguiname"] = "igGetCursorPos" defs["igGetCursorPos"][3]["comment"] = "" defs["igGetCursorPos"][3]["defaults"] = defs["igGetCursorPos"][1]["defaults"] defs["igGetCursorPos"][3]["funcname"] = "GetCursorPos" +defs["igGetCursorPos"][3]["namespace"] = "ImGui" defs["igGetCursorPos"][3]["nonUDT"] = 2 defs["igGetCursorPos"][3]["ov_cimguiname"] = "igGetCursorPos_nonUDT2" defs["igGetCursorPos"][3]["ret"] = "ImVec2_Simple" defs["igGetCursorPos"][3]["retorig"] = "ImVec2" defs["igGetCursorPos"][3]["signature"] = "()" -defs["igGetCursorPos"][3]["stname"] = "ImGui" +defs["igGetCursorPos"][3]["stname"] = "" defs["igGetCursorPos"]["()"] = defs["igGetCursorPos"][1] defs["igGetCursorPos"]["()nonUDT"] = defs["igGetCursorPos"][2] defs["igGetCursorPos"]["()nonUDT2"] = defs["igGetCursorPos"][3] @@ -7468,9 +7882,11 @@ defs["igGetCursorPosX"][1]["cimguiname"] = "igGetCursorPosX" defs["igGetCursorPosX"][1]["comment"] = "" defs["igGetCursorPosX"][1]["defaults"] = {} defs["igGetCursorPosX"][1]["funcname"] = "GetCursorPosX" +defs["igGetCursorPosX"][1]["namespace"] = "ImGui" +defs["igGetCursorPosX"][1]["ov_cimguiname"] = "igGetCursorPosX" defs["igGetCursorPosX"][1]["ret"] = "float" defs["igGetCursorPosX"][1]["signature"] = "()" -defs["igGetCursorPosX"][1]["stname"] = "ImGui" +defs["igGetCursorPosX"][1]["stname"] = "" defs["igGetCursorPosX"]["()"] = defs["igGetCursorPosX"][1] defs["igGetCursorPosY"] = {} defs["igGetCursorPosY"][1] = {} @@ -7482,9 +7898,11 @@ defs["igGetCursorPosY"][1]["cimguiname"] = "igGetCursorPosY" defs["igGetCursorPosY"][1]["comment"] = "" defs["igGetCursorPosY"][1]["defaults"] = {} defs["igGetCursorPosY"][1]["funcname"] = "GetCursorPosY" +defs["igGetCursorPosY"][1]["namespace"] = "ImGui" +defs["igGetCursorPosY"][1]["ov_cimguiname"] = "igGetCursorPosY" defs["igGetCursorPosY"][1]["ret"] = "float" defs["igGetCursorPosY"][1]["signature"] = "()" -defs["igGetCursorPosY"][1]["stname"] = "ImGui" +defs["igGetCursorPosY"][1]["stname"] = "" defs["igGetCursorPosY"]["()"] = defs["igGetCursorPosY"][1] defs["igGetCursorScreenPos"] = {} defs["igGetCursorScreenPos"][1] = {} @@ -7496,9 +7914,11 @@ defs["igGetCursorScreenPos"][1]["cimguiname"] = "igGetCursorScreenPos" defs["igGetCursorScreenPos"][1]["comment"] = "" defs["igGetCursorScreenPos"][1]["defaults"] = {} defs["igGetCursorScreenPos"][1]["funcname"] = "GetCursorScreenPos" +defs["igGetCursorScreenPos"][1]["namespace"] = "ImGui" +defs["igGetCursorScreenPos"][1]["ov_cimguiname"] = "igGetCursorScreenPos" defs["igGetCursorScreenPos"][1]["ret"] = "ImVec2" defs["igGetCursorScreenPos"][1]["signature"] = "()" -defs["igGetCursorScreenPos"][1]["stname"] = "ImGui" +defs["igGetCursorScreenPos"][1]["stname"] = "" defs["igGetCursorScreenPos"][2] = {} defs["igGetCursorScreenPos"][2]["args"] = "(ImVec2 *pOut)" defs["igGetCursorScreenPos"][2]["argsT"] = {} @@ -7511,11 +7931,12 @@ defs["igGetCursorScreenPos"][2]["cimguiname"] = "igGetCursorScreenPos" defs["igGetCursorScreenPos"][2]["comment"] = "" defs["igGetCursorScreenPos"][2]["defaults"] = defs["igGetCursorScreenPos"][1]["defaults"] defs["igGetCursorScreenPos"][2]["funcname"] = "GetCursorScreenPos" +defs["igGetCursorScreenPos"][2]["namespace"] = "ImGui" defs["igGetCursorScreenPos"][2]["nonUDT"] = 1 defs["igGetCursorScreenPos"][2]["ov_cimguiname"] = "igGetCursorScreenPos_nonUDT" defs["igGetCursorScreenPos"][2]["ret"] = "void" defs["igGetCursorScreenPos"][2]["signature"] = "()" -defs["igGetCursorScreenPos"][2]["stname"] = "ImGui" +defs["igGetCursorScreenPos"][2]["stname"] = "" defs["igGetCursorScreenPos"][3] = {} defs["igGetCursorScreenPos"][3]["args"] = "()" defs["igGetCursorScreenPos"][3]["argsT"] = {} @@ -7525,12 +7946,13 @@ defs["igGetCursorScreenPos"][3]["cimguiname"] = "igGetCursorScreenPos" defs["igGetCursorScreenPos"][3]["comment"] = "" defs["igGetCursorScreenPos"][3]["defaults"] = defs["igGetCursorScreenPos"][1]["defaults"] defs["igGetCursorScreenPos"][3]["funcname"] = "GetCursorScreenPos" +defs["igGetCursorScreenPos"][3]["namespace"] = "ImGui" defs["igGetCursorScreenPos"][3]["nonUDT"] = 2 defs["igGetCursorScreenPos"][3]["ov_cimguiname"] = "igGetCursorScreenPos_nonUDT2" defs["igGetCursorScreenPos"][3]["ret"] = "ImVec2_Simple" defs["igGetCursorScreenPos"][3]["retorig"] = "ImVec2" defs["igGetCursorScreenPos"][3]["signature"] = "()" -defs["igGetCursorScreenPos"][3]["stname"] = "ImGui" +defs["igGetCursorScreenPos"][3]["stname"] = "" defs["igGetCursorScreenPos"]["()"] = defs["igGetCursorScreenPos"][1] defs["igGetCursorScreenPos"]["()nonUDT"] = defs["igGetCursorScreenPos"][2] defs["igGetCursorScreenPos"]["()nonUDT2"] = defs["igGetCursorScreenPos"][3] @@ -7544,9 +7966,11 @@ defs["igGetCursorStartPos"][1]["cimguiname"] = "igGetCursorStartPos" defs["igGetCursorStartPos"][1]["comment"] = "" defs["igGetCursorStartPos"][1]["defaults"] = {} defs["igGetCursorStartPos"][1]["funcname"] = "GetCursorStartPos" +defs["igGetCursorStartPos"][1]["namespace"] = "ImGui" +defs["igGetCursorStartPos"][1]["ov_cimguiname"] = "igGetCursorStartPos" defs["igGetCursorStartPos"][1]["ret"] = "ImVec2" defs["igGetCursorStartPos"][1]["signature"] = "()" -defs["igGetCursorStartPos"][1]["stname"] = "ImGui" +defs["igGetCursorStartPos"][1]["stname"] = "" defs["igGetCursorStartPos"][2] = {} defs["igGetCursorStartPos"][2]["args"] = "(ImVec2 *pOut)" defs["igGetCursorStartPos"][2]["argsT"] = {} @@ -7559,11 +7983,12 @@ defs["igGetCursorStartPos"][2]["cimguiname"] = "igGetCursorStartPos" defs["igGetCursorStartPos"][2]["comment"] = "" defs["igGetCursorStartPos"][2]["defaults"] = defs["igGetCursorStartPos"][1]["defaults"] defs["igGetCursorStartPos"][2]["funcname"] = "GetCursorStartPos" +defs["igGetCursorStartPos"][2]["namespace"] = "ImGui" defs["igGetCursorStartPos"][2]["nonUDT"] = 1 defs["igGetCursorStartPos"][2]["ov_cimguiname"] = "igGetCursorStartPos_nonUDT" defs["igGetCursorStartPos"][2]["ret"] = "void" defs["igGetCursorStartPos"][2]["signature"] = "()" -defs["igGetCursorStartPos"][2]["stname"] = "ImGui" +defs["igGetCursorStartPos"][2]["stname"] = "" defs["igGetCursorStartPos"][3] = {} defs["igGetCursorStartPos"][3]["args"] = "()" defs["igGetCursorStartPos"][3]["argsT"] = {} @@ -7573,12 +7998,13 @@ defs["igGetCursorStartPos"][3]["cimguiname"] = "igGetCursorStartPos" defs["igGetCursorStartPos"][3]["comment"] = "" defs["igGetCursorStartPos"][3]["defaults"] = defs["igGetCursorStartPos"][1]["defaults"] defs["igGetCursorStartPos"][3]["funcname"] = "GetCursorStartPos" +defs["igGetCursorStartPos"][3]["namespace"] = "ImGui" defs["igGetCursorStartPos"][3]["nonUDT"] = 2 defs["igGetCursorStartPos"][3]["ov_cimguiname"] = "igGetCursorStartPos_nonUDT2" defs["igGetCursorStartPos"][3]["ret"] = "ImVec2_Simple" defs["igGetCursorStartPos"][3]["retorig"] = "ImVec2" defs["igGetCursorStartPos"][3]["signature"] = "()" -defs["igGetCursorStartPos"][3]["stname"] = "ImGui" +defs["igGetCursorStartPos"][3]["stname"] = "" defs["igGetCursorStartPos"]["()"] = defs["igGetCursorStartPos"][1] defs["igGetCursorStartPos"]["()nonUDT"] = defs["igGetCursorStartPos"][2] defs["igGetCursorStartPos"]["()nonUDT2"] = defs["igGetCursorStartPos"][3] @@ -7592,9 +8018,11 @@ defs["igGetDragDropPayload"][1]["cimguiname"] = "igGetDragDropPayload" defs["igGetDragDropPayload"][1]["comment"] = "" defs["igGetDragDropPayload"][1]["defaults"] = {} defs["igGetDragDropPayload"][1]["funcname"] = "GetDragDropPayload" +defs["igGetDragDropPayload"][1]["namespace"] = "ImGui" +defs["igGetDragDropPayload"][1]["ov_cimguiname"] = "igGetDragDropPayload" defs["igGetDragDropPayload"][1]["ret"] = "const ImGuiPayload*" defs["igGetDragDropPayload"][1]["signature"] = "()" -defs["igGetDragDropPayload"][1]["stname"] = "ImGui" +defs["igGetDragDropPayload"][1]["stname"] = "" defs["igGetDragDropPayload"]["()"] = defs["igGetDragDropPayload"][1] defs["igGetDrawData"] = {} defs["igGetDrawData"][1] = {} @@ -7606,9 +8034,11 @@ defs["igGetDrawData"][1]["cimguiname"] = "igGetDrawData" defs["igGetDrawData"][1]["comment"] = "" defs["igGetDrawData"][1]["defaults"] = {} defs["igGetDrawData"][1]["funcname"] = "GetDrawData" +defs["igGetDrawData"][1]["namespace"] = "ImGui" +defs["igGetDrawData"][1]["ov_cimguiname"] = "igGetDrawData" defs["igGetDrawData"][1]["ret"] = "ImDrawData*" defs["igGetDrawData"][1]["signature"] = "()" -defs["igGetDrawData"][1]["stname"] = "ImGui" +defs["igGetDrawData"][1]["stname"] = "" defs["igGetDrawData"]["()"] = defs["igGetDrawData"][1] defs["igGetDrawListSharedData"] = {} defs["igGetDrawListSharedData"][1] = {} @@ -7620,9 +8050,11 @@ defs["igGetDrawListSharedData"][1]["cimguiname"] = "igGetDrawListSharedData" defs["igGetDrawListSharedData"][1]["comment"] = "" defs["igGetDrawListSharedData"][1]["defaults"] = {} defs["igGetDrawListSharedData"][1]["funcname"] = "GetDrawListSharedData" +defs["igGetDrawListSharedData"][1]["namespace"] = "ImGui" +defs["igGetDrawListSharedData"][1]["ov_cimguiname"] = "igGetDrawListSharedData" defs["igGetDrawListSharedData"][1]["ret"] = "ImDrawListSharedData*" defs["igGetDrawListSharedData"][1]["signature"] = "()" -defs["igGetDrawListSharedData"][1]["stname"] = "ImGui" +defs["igGetDrawListSharedData"][1]["stname"] = "" defs["igGetDrawListSharedData"]["()"] = defs["igGetDrawListSharedData"][1] defs["igGetFont"] = {} defs["igGetFont"][1] = {} @@ -7634,9 +8066,11 @@ defs["igGetFont"][1]["cimguiname"] = "igGetFont" defs["igGetFont"][1]["comment"] = "" defs["igGetFont"][1]["defaults"] = {} defs["igGetFont"][1]["funcname"] = "GetFont" +defs["igGetFont"][1]["namespace"] = "ImGui" +defs["igGetFont"][1]["ov_cimguiname"] = "igGetFont" defs["igGetFont"][1]["ret"] = "ImFont*" defs["igGetFont"][1]["signature"] = "()" -defs["igGetFont"][1]["stname"] = "ImGui" +defs["igGetFont"][1]["stname"] = "" defs["igGetFont"]["()"] = defs["igGetFont"][1] defs["igGetFontSize"] = {} defs["igGetFontSize"][1] = {} @@ -7648,9 +8082,11 @@ defs["igGetFontSize"][1]["cimguiname"] = "igGetFontSize" defs["igGetFontSize"][1]["comment"] = "" defs["igGetFontSize"][1]["defaults"] = {} defs["igGetFontSize"][1]["funcname"] = "GetFontSize" +defs["igGetFontSize"][1]["namespace"] = "ImGui" +defs["igGetFontSize"][1]["ov_cimguiname"] = "igGetFontSize" defs["igGetFontSize"][1]["ret"] = "float" defs["igGetFontSize"][1]["signature"] = "()" -defs["igGetFontSize"][1]["stname"] = "ImGui" +defs["igGetFontSize"][1]["stname"] = "" defs["igGetFontSize"]["()"] = defs["igGetFontSize"][1] defs["igGetFontTexUvWhitePixel"] = {} defs["igGetFontTexUvWhitePixel"][1] = {} @@ -7662,9 +8098,11 @@ defs["igGetFontTexUvWhitePixel"][1]["cimguiname"] = "igGetFontTexUvWhitePixel" defs["igGetFontTexUvWhitePixel"][1]["comment"] = "" defs["igGetFontTexUvWhitePixel"][1]["defaults"] = {} defs["igGetFontTexUvWhitePixel"][1]["funcname"] = "GetFontTexUvWhitePixel" +defs["igGetFontTexUvWhitePixel"][1]["namespace"] = "ImGui" +defs["igGetFontTexUvWhitePixel"][1]["ov_cimguiname"] = "igGetFontTexUvWhitePixel" defs["igGetFontTexUvWhitePixel"][1]["ret"] = "ImVec2" defs["igGetFontTexUvWhitePixel"][1]["signature"] = "()" -defs["igGetFontTexUvWhitePixel"][1]["stname"] = "ImGui" +defs["igGetFontTexUvWhitePixel"][1]["stname"] = "" defs["igGetFontTexUvWhitePixel"][2] = {} defs["igGetFontTexUvWhitePixel"][2]["args"] = "(ImVec2 *pOut)" defs["igGetFontTexUvWhitePixel"][2]["argsT"] = {} @@ -7677,11 +8115,12 @@ defs["igGetFontTexUvWhitePixel"][2]["cimguiname"] = "igGetFontTexUvWhitePixel" defs["igGetFontTexUvWhitePixel"][2]["comment"] = "" defs["igGetFontTexUvWhitePixel"][2]["defaults"] = defs["igGetFontTexUvWhitePixel"][1]["defaults"] defs["igGetFontTexUvWhitePixel"][2]["funcname"] = "GetFontTexUvWhitePixel" +defs["igGetFontTexUvWhitePixel"][2]["namespace"] = "ImGui" defs["igGetFontTexUvWhitePixel"][2]["nonUDT"] = 1 defs["igGetFontTexUvWhitePixel"][2]["ov_cimguiname"] = "igGetFontTexUvWhitePixel_nonUDT" defs["igGetFontTexUvWhitePixel"][2]["ret"] = "void" defs["igGetFontTexUvWhitePixel"][2]["signature"] = "()" -defs["igGetFontTexUvWhitePixel"][2]["stname"] = "ImGui" +defs["igGetFontTexUvWhitePixel"][2]["stname"] = "" defs["igGetFontTexUvWhitePixel"][3] = {} defs["igGetFontTexUvWhitePixel"][3]["args"] = "()" defs["igGetFontTexUvWhitePixel"][3]["argsT"] = {} @@ -7691,12 +8130,13 @@ defs["igGetFontTexUvWhitePixel"][3]["cimguiname"] = "igGetFontTexUvWhitePixel" defs["igGetFontTexUvWhitePixel"][3]["comment"] = "" defs["igGetFontTexUvWhitePixel"][3]["defaults"] = defs["igGetFontTexUvWhitePixel"][1]["defaults"] defs["igGetFontTexUvWhitePixel"][3]["funcname"] = "GetFontTexUvWhitePixel" +defs["igGetFontTexUvWhitePixel"][3]["namespace"] = "ImGui" defs["igGetFontTexUvWhitePixel"][3]["nonUDT"] = 2 defs["igGetFontTexUvWhitePixel"][3]["ov_cimguiname"] = "igGetFontTexUvWhitePixel_nonUDT2" defs["igGetFontTexUvWhitePixel"][3]["ret"] = "ImVec2_Simple" defs["igGetFontTexUvWhitePixel"][3]["retorig"] = "ImVec2" defs["igGetFontTexUvWhitePixel"][3]["signature"] = "()" -defs["igGetFontTexUvWhitePixel"][3]["stname"] = "ImGui" +defs["igGetFontTexUvWhitePixel"][3]["stname"] = "" defs["igGetFontTexUvWhitePixel"]["()"] = defs["igGetFontTexUvWhitePixel"][1] defs["igGetFontTexUvWhitePixel"]["()nonUDT"] = defs["igGetFontTexUvWhitePixel"][2] defs["igGetFontTexUvWhitePixel"]["()nonUDT2"] = defs["igGetFontTexUvWhitePixel"][3] @@ -7710,9 +8150,11 @@ defs["igGetFrameCount"][1]["cimguiname"] = "igGetFrameCount" defs["igGetFrameCount"][1]["comment"] = "" defs["igGetFrameCount"][1]["defaults"] = {} defs["igGetFrameCount"][1]["funcname"] = "GetFrameCount" +defs["igGetFrameCount"][1]["namespace"] = "ImGui" +defs["igGetFrameCount"][1]["ov_cimguiname"] = "igGetFrameCount" defs["igGetFrameCount"][1]["ret"] = "int" defs["igGetFrameCount"][1]["signature"] = "()" -defs["igGetFrameCount"][1]["stname"] = "ImGui" +defs["igGetFrameCount"][1]["stname"] = "" defs["igGetFrameCount"]["()"] = defs["igGetFrameCount"][1] defs["igGetFrameHeight"] = {} defs["igGetFrameHeight"][1] = {} @@ -7724,9 +8166,11 @@ defs["igGetFrameHeight"][1]["cimguiname"] = "igGetFrameHeight" defs["igGetFrameHeight"][1]["comment"] = "" defs["igGetFrameHeight"][1]["defaults"] = {} defs["igGetFrameHeight"][1]["funcname"] = "GetFrameHeight" +defs["igGetFrameHeight"][1]["namespace"] = "ImGui" +defs["igGetFrameHeight"][1]["ov_cimguiname"] = "igGetFrameHeight" defs["igGetFrameHeight"][1]["ret"] = "float" defs["igGetFrameHeight"][1]["signature"] = "()" -defs["igGetFrameHeight"][1]["stname"] = "ImGui" +defs["igGetFrameHeight"][1]["stname"] = "" defs["igGetFrameHeight"]["()"] = defs["igGetFrameHeight"][1] defs["igGetFrameHeightWithSpacing"] = {} defs["igGetFrameHeightWithSpacing"][1] = {} @@ -7738,9 +8182,11 @@ defs["igGetFrameHeightWithSpacing"][1]["cimguiname"] = "igGetFrameHeightWithSpac defs["igGetFrameHeightWithSpacing"][1]["comment"] = "" defs["igGetFrameHeightWithSpacing"][1]["defaults"] = {} defs["igGetFrameHeightWithSpacing"][1]["funcname"] = "GetFrameHeightWithSpacing" +defs["igGetFrameHeightWithSpacing"][1]["namespace"] = "ImGui" +defs["igGetFrameHeightWithSpacing"][1]["ov_cimguiname"] = "igGetFrameHeightWithSpacing" defs["igGetFrameHeightWithSpacing"][1]["ret"] = "float" defs["igGetFrameHeightWithSpacing"][1]["signature"] = "()" -defs["igGetFrameHeightWithSpacing"][1]["stname"] = "ImGui" +defs["igGetFrameHeightWithSpacing"][1]["stname"] = "" defs["igGetFrameHeightWithSpacing"]["()"] = defs["igGetFrameHeightWithSpacing"][1] defs["igGetID"] = {} defs["igGetID"][1] = {} @@ -7755,10 +8201,11 @@ defs["igGetID"][1]["cimguiname"] = "igGetID" defs["igGetID"][1]["comment"] = "" defs["igGetID"][1]["defaults"] = {} defs["igGetID"][1]["funcname"] = "GetID" +defs["igGetID"][1]["namespace"] = "ImGui" defs["igGetID"][1]["ov_cimguiname"] = "igGetIDStr" defs["igGetID"][1]["ret"] = "ImGuiID" defs["igGetID"][1]["signature"] = "(const char*)" -defs["igGetID"][1]["stname"] = "ImGui" +defs["igGetID"][1]["stname"] = "" defs["igGetID"][2] = {} defs["igGetID"][2]["args"] = "(const char* str_id_begin,const char* str_id_end)" defs["igGetID"][2]["argsT"] = {} @@ -7774,10 +8221,11 @@ defs["igGetID"][2]["cimguiname"] = "igGetID" defs["igGetID"][2]["comment"] = "" defs["igGetID"][2]["defaults"] = {} defs["igGetID"][2]["funcname"] = "GetID" +defs["igGetID"][2]["namespace"] = "ImGui" defs["igGetID"][2]["ov_cimguiname"] = "igGetIDRange" defs["igGetID"][2]["ret"] = "ImGuiID" defs["igGetID"][2]["signature"] = "(const char*,const char*)" -defs["igGetID"][2]["stname"] = "ImGui" +defs["igGetID"][2]["stname"] = "" defs["igGetID"][3] = {} defs["igGetID"][3]["args"] = "(const void* ptr_id)" defs["igGetID"][3]["argsT"] = {} @@ -7790,10 +8238,11 @@ defs["igGetID"][3]["cimguiname"] = "igGetID" defs["igGetID"][3]["comment"] = "" defs["igGetID"][3]["defaults"] = {} defs["igGetID"][3]["funcname"] = "GetID" +defs["igGetID"][3]["namespace"] = "ImGui" defs["igGetID"][3]["ov_cimguiname"] = "igGetIDPtr" defs["igGetID"][3]["ret"] = "ImGuiID" defs["igGetID"][3]["signature"] = "(const void*)" -defs["igGetID"][3]["stname"] = "ImGui" +defs["igGetID"][3]["stname"] = "" defs["igGetID"]["(const char*)"] = defs["igGetID"][1] defs["igGetID"]["(const char*,const char*)"] = defs["igGetID"][2] defs["igGetID"]["(const void*)"] = defs["igGetID"][3] @@ -7807,10 +8256,12 @@ defs["igGetIO"][1]["cimguiname"] = "igGetIO" defs["igGetIO"][1]["comment"] = "" defs["igGetIO"][1]["defaults"] = {} defs["igGetIO"][1]["funcname"] = "GetIO" +defs["igGetIO"][1]["namespace"] = "ImGui" +defs["igGetIO"][1]["ov_cimguiname"] = "igGetIO" defs["igGetIO"][1]["ret"] = "ImGuiIO*" defs["igGetIO"][1]["retref"] = "&" defs["igGetIO"][1]["signature"] = "()" -defs["igGetIO"][1]["stname"] = "ImGui" +defs["igGetIO"][1]["stname"] = "" defs["igGetIO"]["()"] = defs["igGetIO"][1] defs["igGetItemRectMax"] = {} defs["igGetItemRectMax"][1] = {} @@ -7822,9 +8273,11 @@ defs["igGetItemRectMax"][1]["cimguiname"] = "igGetItemRectMax" defs["igGetItemRectMax"][1]["comment"] = "" defs["igGetItemRectMax"][1]["defaults"] = {} defs["igGetItemRectMax"][1]["funcname"] = "GetItemRectMax" +defs["igGetItemRectMax"][1]["namespace"] = "ImGui" +defs["igGetItemRectMax"][1]["ov_cimguiname"] = "igGetItemRectMax" defs["igGetItemRectMax"][1]["ret"] = "ImVec2" defs["igGetItemRectMax"][1]["signature"] = "()" -defs["igGetItemRectMax"][1]["stname"] = "ImGui" +defs["igGetItemRectMax"][1]["stname"] = "" defs["igGetItemRectMax"][2] = {} defs["igGetItemRectMax"][2]["args"] = "(ImVec2 *pOut)" defs["igGetItemRectMax"][2]["argsT"] = {} @@ -7837,11 +8290,12 @@ defs["igGetItemRectMax"][2]["cimguiname"] = "igGetItemRectMax" defs["igGetItemRectMax"][2]["comment"] = "" defs["igGetItemRectMax"][2]["defaults"] = defs["igGetItemRectMax"][1]["defaults"] defs["igGetItemRectMax"][2]["funcname"] = "GetItemRectMax" +defs["igGetItemRectMax"][2]["namespace"] = "ImGui" defs["igGetItemRectMax"][2]["nonUDT"] = 1 defs["igGetItemRectMax"][2]["ov_cimguiname"] = "igGetItemRectMax_nonUDT" defs["igGetItemRectMax"][2]["ret"] = "void" defs["igGetItemRectMax"][2]["signature"] = "()" -defs["igGetItemRectMax"][2]["stname"] = "ImGui" +defs["igGetItemRectMax"][2]["stname"] = "" defs["igGetItemRectMax"][3] = {} defs["igGetItemRectMax"][3]["args"] = "()" defs["igGetItemRectMax"][3]["argsT"] = {} @@ -7851,12 +8305,13 @@ defs["igGetItemRectMax"][3]["cimguiname"] = "igGetItemRectMax" defs["igGetItemRectMax"][3]["comment"] = "" defs["igGetItemRectMax"][3]["defaults"] = defs["igGetItemRectMax"][1]["defaults"] defs["igGetItemRectMax"][3]["funcname"] = "GetItemRectMax" +defs["igGetItemRectMax"][3]["namespace"] = "ImGui" defs["igGetItemRectMax"][3]["nonUDT"] = 2 defs["igGetItemRectMax"][3]["ov_cimguiname"] = "igGetItemRectMax_nonUDT2" defs["igGetItemRectMax"][3]["ret"] = "ImVec2_Simple" defs["igGetItemRectMax"][3]["retorig"] = "ImVec2" defs["igGetItemRectMax"][3]["signature"] = "()" -defs["igGetItemRectMax"][3]["stname"] = "ImGui" +defs["igGetItemRectMax"][3]["stname"] = "" defs["igGetItemRectMax"]["()"] = defs["igGetItemRectMax"][1] defs["igGetItemRectMax"]["()nonUDT"] = defs["igGetItemRectMax"][2] defs["igGetItemRectMax"]["()nonUDT2"] = defs["igGetItemRectMax"][3] @@ -7870,9 +8325,11 @@ defs["igGetItemRectMin"][1]["cimguiname"] = "igGetItemRectMin" defs["igGetItemRectMin"][1]["comment"] = "" defs["igGetItemRectMin"][1]["defaults"] = {} defs["igGetItemRectMin"][1]["funcname"] = "GetItemRectMin" +defs["igGetItemRectMin"][1]["namespace"] = "ImGui" +defs["igGetItemRectMin"][1]["ov_cimguiname"] = "igGetItemRectMin" defs["igGetItemRectMin"][1]["ret"] = "ImVec2" defs["igGetItemRectMin"][1]["signature"] = "()" -defs["igGetItemRectMin"][1]["stname"] = "ImGui" +defs["igGetItemRectMin"][1]["stname"] = "" defs["igGetItemRectMin"][2] = {} defs["igGetItemRectMin"][2]["args"] = "(ImVec2 *pOut)" defs["igGetItemRectMin"][2]["argsT"] = {} @@ -7885,11 +8342,12 @@ defs["igGetItemRectMin"][2]["cimguiname"] = "igGetItemRectMin" defs["igGetItemRectMin"][2]["comment"] = "" defs["igGetItemRectMin"][2]["defaults"] = defs["igGetItemRectMin"][1]["defaults"] defs["igGetItemRectMin"][2]["funcname"] = "GetItemRectMin" +defs["igGetItemRectMin"][2]["namespace"] = "ImGui" defs["igGetItemRectMin"][2]["nonUDT"] = 1 defs["igGetItemRectMin"][2]["ov_cimguiname"] = "igGetItemRectMin_nonUDT" defs["igGetItemRectMin"][2]["ret"] = "void" defs["igGetItemRectMin"][2]["signature"] = "()" -defs["igGetItemRectMin"][2]["stname"] = "ImGui" +defs["igGetItemRectMin"][2]["stname"] = "" defs["igGetItemRectMin"][3] = {} defs["igGetItemRectMin"][3]["args"] = "()" defs["igGetItemRectMin"][3]["argsT"] = {} @@ -7899,12 +8357,13 @@ defs["igGetItemRectMin"][3]["cimguiname"] = "igGetItemRectMin" defs["igGetItemRectMin"][3]["comment"] = "" defs["igGetItemRectMin"][3]["defaults"] = defs["igGetItemRectMin"][1]["defaults"] defs["igGetItemRectMin"][3]["funcname"] = "GetItemRectMin" +defs["igGetItemRectMin"][3]["namespace"] = "ImGui" defs["igGetItemRectMin"][3]["nonUDT"] = 2 defs["igGetItemRectMin"][3]["ov_cimguiname"] = "igGetItemRectMin_nonUDT2" defs["igGetItemRectMin"][3]["ret"] = "ImVec2_Simple" defs["igGetItemRectMin"][3]["retorig"] = "ImVec2" defs["igGetItemRectMin"][3]["signature"] = "()" -defs["igGetItemRectMin"][3]["stname"] = "ImGui" +defs["igGetItemRectMin"][3]["stname"] = "" defs["igGetItemRectMin"]["()"] = defs["igGetItemRectMin"][1] defs["igGetItemRectMin"]["()nonUDT"] = defs["igGetItemRectMin"][2] defs["igGetItemRectMin"]["()nonUDT2"] = defs["igGetItemRectMin"][3] @@ -7918,9 +8377,11 @@ defs["igGetItemRectSize"][1]["cimguiname"] = "igGetItemRectSize" defs["igGetItemRectSize"][1]["comment"] = "" defs["igGetItemRectSize"][1]["defaults"] = {} defs["igGetItemRectSize"][1]["funcname"] = "GetItemRectSize" +defs["igGetItemRectSize"][1]["namespace"] = "ImGui" +defs["igGetItemRectSize"][1]["ov_cimguiname"] = "igGetItemRectSize" defs["igGetItemRectSize"][1]["ret"] = "ImVec2" defs["igGetItemRectSize"][1]["signature"] = "()" -defs["igGetItemRectSize"][1]["stname"] = "ImGui" +defs["igGetItemRectSize"][1]["stname"] = "" defs["igGetItemRectSize"][2] = {} defs["igGetItemRectSize"][2]["args"] = "(ImVec2 *pOut)" defs["igGetItemRectSize"][2]["argsT"] = {} @@ -7933,11 +8394,12 @@ defs["igGetItemRectSize"][2]["cimguiname"] = "igGetItemRectSize" defs["igGetItemRectSize"][2]["comment"] = "" defs["igGetItemRectSize"][2]["defaults"] = defs["igGetItemRectSize"][1]["defaults"] defs["igGetItemRectSize"][2]["funcname"] = "GetItemRectSize" +defs["igGetItemRectSize"][2]["namespace"] = "ImGui" defs["igGetItemRectSize"][2]["nonUDT"] = 1 defs["igGetItemRectSize"][2]["ov_cimguiname"] = "igGetItemRectSize_nonUDT" defs["igGetItemRectSize"][2]["ret"] = "void" defs["igGetItemRectSize"][2]["signature"] = "()" -defs["igGetItemRectSize"][2]["stname"] = "ImGui" +defs["igGetItemRectSize"][2]["stname"] = "" defs["igGetItemRectSize"][3] = {} defs["igGetItemRectSize"][3]["args"] = "()" defs["igGetItemRectSize"][3]["argsT"] = {} @@ -7947,12 +8409,13 @@ defs["igGetItemRectSize"][3]["cimguiname"] = "igGetItemRectSize" defs["igGetItemRectSize"][3]["comment"] = "" defs["igGetItemRectSize"][3]["defaults"] = defs["igGetItemRectSize"][1]["defaults"] defs["igGetItemRectSize"][3]["funcname"] = "GetItemRectSize" +defs["igGetItemRectSize"][3]["namespace"] = "ImGui" defs["igGetItemRectSize"][3]["nonUDT"] = 2 defs["igGetItemRectSize"][3]["ov_cimguiname"] = "igGetItemRectSize_nonUDT2" defs["igGetItemRectSize"][3]["ret"] = "ImVec2_Simple" defs["igGetItemRectSize"][3]["retorig"] = "ImVec2" defs["igGetItemRectSize"][3]["signature"] = "()" -defs["igGetItemRectSize"][3]["stname"] = "ImGui" +defs["igGetItemRectSize"][3]["stname"] = "" defs["igGetItemRectSize"]["()"] = defs["igGetItemRectSize"][1] defs["igGetItemRectSize"]["()nonUDT"] = defs["igGetItemRectSize"][2] defs["igGetItemRectSize"]["()nonUDT2"] = defs["igGetItemRectSize"][3] @@ -7969,9 +8432,11 @@ defs["igGetKeyIndex"][1]["cimguiname"] = "igGetKeyIndex" defs["igGetKeyIndex"][1]["comment"] = "" defs["igGetKeyIndex"][1]["defaults"] = {} defs["igGetKeyIndex"][1]["funcname"] = "GetKeyIndex" +defs["igGetKeyIndex"][1]["namespace"] = "ImGui" +defs["igGetKeyIndex"][1]["ov_cimguiname"] = "igGetKeyIndex" defs["igGetKeyIndex"][1]["ret"] = "int" defs["igGetKeyIndex"][1]["signature"] = "(ImGuiKey)" -defs["igGetKeyIndex"][1]["stname"] = "ImGui" +defs["igGetKeyIndex"][1]["stname"] = "" defs["igGetKeyIndex"]["(ImGuiKey)"] = defs["igGetKeyIndex"][1] defs["igGetKeyPressedAmount"] = {} defs["igGetKeyPressedAmount"][1] = {} @@ -7992,9 +8457,11 @@ defs["igGetKeyPressedAmount"][1]["cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["comment"] = "" defs["igGetKeyPressedAmount"][1]["defaults"] = {} defs["igGetKeyPressedAmount"][1]["funcname"] = "GetKeyPressedAmount" +defs["igGetKeyPressedAmount"][1]["namespace"] = "ImGui" +defs["igGetKeyPressedAmount"][1]["ov_cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["ret"] = "int" defs["igGetKeyPressedAmount"][1]["signature"] = "(int,float,float)" -defs["igGetKeyPressedAmount"][1]["stname"] = "ImGui" +defs["igGetKeyPressedAmount"][1]["stname"] = "" defs["igGetKeyPressedAmount"]["(int,float,float)"] = defs["igGetKeyPressedAmount"][1] defs["igGetMouseCursor"] = {} defs["igGetMouseCursor"][1] = {} @@ -8006,9 +8473,11 @@ defs["igGetMouseCursor"][1]["cimguiname"] = "igGetMouseCursor" defs["igGetMouseCursor"][1]["comment"] = "" defs["igGetMouseCursor"][1]["defaults"] = {} defs["igGetMouseCursor"][1]["funcname"] = "GetMouseCursor" +defs["igGetMouseCursor"][1]["namespace"] = "ImGui" +defs["igGetMouseCursor"][1]["ov_cimguiname"] = "igGetMouseCursor" defs["igGetMouseCursor"][1]["ret"] = "ImGuiMouseCursor" defs["igGetMouseCursor"][1]["signature"] = "()" -defs["igGetMouseCursor"][1]["stname"] = "ImGui" +defs["igGetMouseCursor"][1]["stname"] = "" defs["igGetMouseCursor"]["()"] = defs["igGetMouseCursor"][1] defs["igGetMouseDragDelta"] = {} defs["igGetMouseDragDelta"][1] = {} @@ -8028,9 +8497,11 @@ defs["igGetMouseDragDelta"][1]["defaults"] = {} defs["igGetMouseDragDelta"][1]["defaults"]["button"] = "0" defs["igGetMouseDragDelta"][1]["defaults"]["lock_threshold"] = "-1.0f" defs["igGetMouseDragDelta"][1]["funcname"] = "GetMouseDragDelta" +defs["igGetMouseDragDelta"][1]["namespace"] = "ImGui" +defs["igGetMouseDragDelta"][1]["ov_cimguiname"] = "igGetMouseDragDelta" defs["igGetMouseDragDelta"][1]["ret"] = "ImVec2" defs["igGetMouseDragDelta"][1]["signature"] = "(int,float)" -defs["igGetMouseDragDelta"][1]["stname"] = "ImGui" +defs["igGetMouseDragDelta"][1]["stname"] = "" defs["igGetMouseDragDelta"][2] = {} defs["igGetMouseDragDelta"][2]["args"] = "(ImVec2 *pOut,int button,float lock_threshold)" defs["igGetMouseDragDelta"][2]["argsT"] = {} @@ -8049,11 +8520,12 @@ defs["igGetMouseDragDelta"][2]["cimguiname"] = "igGetMouseDragDelta" defs["igGetMouseDragDelta"][2]["comment"] = "" defs["igGetMouseDragDelta"][2]["defaults"] = defs["igGetMouseDragDelta"][1]["defaults"] defs["igGetMouseDragDelta"][2]["funcname"] = "GetMouseDragDelta" +defs["igGetMouseDragDelta"][2]["namespace"] = "ImGui" defs["igGetMouseDragDelta"][2]["nonUDT"] = 1 defs["igGetMouseDragDelta"][2]["ov_cimguiname"] = "igGetMouseDragDelta_nonUDT" defs["igGetMouseDragDelta"][2]["ret"] = "void" defs["igGetMouseDragDelta"][2]["signature"] = "(int,float)" -defs["igGetMouseDragDelta"][2]["stname"] = "ImGui" +defs["igGetMouseDragDelta"][2]["stname"] = "" defs["igGetMouseDragDelta"][3] = {} defs["igGetMouseDragDelta"][3]["args"] = "(int button,float lock_threshold)" defs["igGetMouseDragDelta"][3]["argsT"] = {} @@ -8069,12 +8541,13 @@ defs["igGetMouseDragDelta"][3]["cimguiname"] = "igGetMouseDragDelta" defs["igGetMouseDragDelta"][3]["comment"] = "" defs["igGetMouseDragDelta"][3]["defaults"] = defs["igGetMouseDragDelta"][1]["defaults"] defs["igGetMouseDragDelta"][3]["funcname"] = "GetMouseDragDelta" +defs["igGetMouseDragDelta"][3]["namespace"] = "ImGui" defs["igGetMouseDragDelta"][3]["nonUDT"] = 2 defs["igGetMouseDragDelta"][3]["ov_cimguiname"] = "igGetMouseDragDelta_nonUDT2" defs["igGetMouseDragDelta"][3]["ret"] = "ImVec2_Simple" defs["igGetMouseDragDelta"][3]["retorig"] = "ImVec2" defs["igGetMouseDragDelta"][3]["signature"] = "(int,float)" -defs["igGetMouseDragDelta"][3]["stname"] = "ImGui" +defs["igGetMouseDragDelta"][3]["stname"] = "" defs["igGetMouseDragDelta"]["(int,float)"] = defs["igGetMouseDragDelta"][1] defs["igGetMouseDragDelta"]["(int,float)nonUDT"] = defs["igGetMouseDragDelta"][2] defs["igGetMouseDragDelta"]["(int,float)nonUDT2"] = defs["igGetMouseDragDelta"][3] @@ -8088,9 +8561,11 @@ defs["igGetMousePos"][1]["cimguiname"] = "igGetMousePos" defs["igGetMousePos"][1]["comment"] = "" defs["igGetMousePos"][1]["defaults"] = {} defs["igGetMousePos"][1]["funcname"] = "GetMousePos" +defs["igGetMousePos"][1]["namespace"] = "ImGui" +defs["igGetMousePos"][1]["ov_cimguiname"] = "igGetMousePos" defs["igGetMousePos"][1]["ret"] = "ImVec2" defs["igGetMousePos"][1]["signature"] = "()" -defs["igGetMousePos"][1]["stname"] = "ImGui" +defs["igGetMousePos"][1]["stname"] = "" defs["igGetMousePos"][2] = {} defs["igGetMousePos"][2]["args"] = "(ImVec2 *pOut)" defs["igGetMousePos"][2]["argsT"] = {} @@ -8103,11 +8578,12 @@ defs["igGetMousePos"][2]["cimguiname"] = "igGetMousePos" defs["igGetMousePos"][2]["comment"] = "" defs["igGetMousePos"][2]["defaults"] = defs["igGetMousePos"][1]["defaults"] defs["igGetMousePos"][2]["funcname"] = "GetMousePos" +defs["igGetMousePos"][2]["namespace"] = "ImGui" defs["igGetMousePos"][2]["nonUDT"] = 1 defs["igGetMousePos"][2]["ov_cimguiname"] = "igGetMousePos_nonUDT" defs["igGetMousePos"][2]["ret"] = "void" defs["igGetMousePos"][2]["signature"] = "()" -defs["igGetMousePos"][2]["stname"] = "ImGui" +defs["igGetMousePos"][2]["stname"] = "" defs["igGetMousePos"][3] = {} defs["igGetMousePos"][3]["args"] = "()" defs["igGetMousePos"][3]["argsT"] = {} @@ -8117,12 +8593,13 @@ defs["igGetMousePos"][3]["cimguiname"] = "igGetMousePos" defs["igGetMousePos"][3]["comment"] = "" defs["igGetMousePos"][3]["defaults"] = defs["igGetMousePos"][1]["defaults"] defs["igGetMousePos"][3]["funcname"] = "GetMousePos" +defs["igGetMousePos"][3]["namespace"] = "ImGui" defs["igGetMousePos"][3]["nonUDT"] = 2 defs["igGetMousePos"][3]["ov_cimguiname"] = "igGetMousePos_nonUDT2" defs["igGetMousePos"][3]["ret"] = "ImVec2_Simple" defs["igGetMousePos"][3]["retorig"] = "ImVec2" defs["igGetMousePos"][3]["signature"] = "()" -defs["igGetMousePos"][3]["stname"] = "ImGui" +defs["igGetMousePos"][3]["stname"] = "" defs["igGetMousePos"]["()"] = defs["igGetMousePos"][1] defs["igGetMousePos"]["()nonUDT"] = defs["igGetMousePos"][2] defs["igGetMousePos"]["()nonUDT2"] = defs["igGetMousePos"][3] @@ -8136,9 +8613,11 @@ defs["igGetMousePosOnOpeningCurrentPopup"][1]["cimguiname"] = "igGetMousePosOnOp defs["igGetMousePosOnOpeningCurrentPopup"][1]["comment"] = "" defs["igGetMousePosOnOpeningCurrentPopup"][1]["defaults"] = {} defs["igGetMousePosOnOpeningCurrentPopup"][1]["funcname"] = "GetMousePosOnOpeningCurrentPopup" +defs["igGetMousePosOnOpeningCurrentPopup"][1]["namespace"] = "ImGui" +defs["igGetMousePosOnOpeningCurrentPopup"][1]["ov_cimguiname"] = "igGetMousePosOnOpeningCurrentPopup" defs["igGetMousePosOnOpeningCurrentPopup"][1]["ret"] = "ImVec2" defs["igGetMousePosOnOpeningCurrentPopup"][1]["signature"] = "()" -defs["igGetMousePosOnOpeningCurrentPopup"][1]["stname"] = "ImGui" +defs["igGetMousePosOnOpeningCurrentPopup"][1]["stname"] = "" defs["igGetMousePosOnOpeningCurrentPopup"][2] = {} defs["igGetMousePosOnOpeningCurrentPopup"][2]["args"] = "(ImVec2 *pOut)" defs["igGetMousePosOnOpeningCurrentPopup"][2]["argsT"] = {} @@ -8151,11 +8630,12 @@ defs["igGetMousePosOnOpeningCurrentPopup"][2]["cimguiname"] = "igGetMousePosOnOp defs["igGetMousePosOnOpeningCurrentPopup"][2]["comment"] = "" defs["igGetMousePosOnOpeningCurrentPopup"][2]["defaults"] = defs["igGetMousePosOnOpeningCurrentPopup"][1]["defaults"] defs["igGetMousePosOnOpeningCurrentPopup"][2]["funcname"] = "GetMousePosOnOpeningCurrentPopup" +defs["igGetMousePosOnOpeningCurrentPopup"][2]["namespace"] = "ImGui" defs["igGetMousePosOnOpeningCurrentPopup"][2]["nonUDT"] = 1 defs["igGetMousePosOnOpeningCurrentPopup"][2]["ov_cimguiname"] = "igGetMousePosOnOpeningCurrentPopup_nonUDT" defs["igGetMousePosOnOpeningCurrentPopup"][2]["ret"] = "void" defs["igGetMousePosOnOpeningCurrentPopup"][2]["signature"] = "()" -defs["igGetMousePosOnOpeningCurrentPopup"][2]["stname"] = "ImGui" +defs["igGetMousePosOnOpeningCurrentPopup"][2]["stname"] = "" defs["igGetMousePosOnOpeningCurrentPopup"][3] = {} defs["igGetMousePosOnOpeningCurrentPopup"][3]["args"] = "()" defs["igGetMousePosOnOpeningCurrentPopup"][3]["argsT"] = {} @@ -8165,12 +8645,13 @@ defs["igGetMousePosOnOpeningCurrentPopup"][3]["cimguiname"] = "igGetMousePosOnOp defs["igGetMousePosOnOpeningCurrentPopup"][3]["comment"] = "" defs["igGetMousePosOnOpeningCurrentPopup"][3]["defaults"] = defs["igGetMousePosOnOpeningCurrentPopup"][1]["defaults"] defs["igGetMousePosOnOpeningCurrentPopup"][3]["funcname"] = "GetMousePosOnOpeningCurrentPopup" +defs["igGetMousePosOnOpeningCurrentPopup"][3]["namespace"] = "ImGui" defs["igGetMousePosOnOpeningCurrentPopup"][3]["nonUDT"] = 2 defs["igGetMousePosOnOpeningCurrentPopup"][3]["ov_cimguiname"] = "igGetMousePosOnOpeningCurrentPopup_nonUDT2" defs["igGetMousePosOnOpeningCurrentPopup"][3]["ret"] = "ImVec2_Simple" defs["igGetMousePosOnOpeningCurrentPopup"][3]["retorig"] = "ImVec2" defs["igGetMousePosOnOpeningCurrentPopup"][3]["signature"] = "()" -defs["igGetMousePosOnOpeningCurrentPopup"][3]["stname"] = "ImGui" +defs["igGetMousePosOnOpeningCurrentPopup"][3]["stname"] = "" defs["igGetMousePosOnOpeningCurrentPopup"]["()"] = defs["igGetMousePosOnOpeningCurrentPopup"][1] defs["igGetMousePosOnOpeningCurrentPopup"]["()nonUDT"] = defs["igGetMousePosOnOpeningCurrentPopup"][2] defs["igGetMousePosOnOpeningCurrentPopup"]["()nonUDT2"] = defs["igGetMousePosOnOpeningCurrentPopup"][3] @@ -8184,9 +8665,11 @@ defs["igGetOverlayDrawList"][1]["cimguiname"] = "igGetOverlayDrawList" defs["igGetOverlayDrawList"][1]["comment"] = "" defs["igGetOverlayDrawList"][1]["defaults"] = {} defs["igGetOverlayDrawList"][1]["funcname"] = "GetOverlayDrawList" +defs["igGetOverlayDrawList"][1]["namespace"] = "ImGui" +defs["igGetOverlayDrawList"][1]["ov_cimguiname"] = "igGetOverlayDrawList" defs["igGetOverlayDrawList"][1]["ret"] = "ImDrawList*" defs["igGetOverlayDrawList"][1]["signature"] = "()" -defs["igGetOverlayDrawList"][1]["stname"] = "ImGui" +defs["igGetOverlayDrawList"][1]["stname"] = "" defs["igGetOverlayDrawList"]["()"] = defs["igGetOverlayDrawList"][1] defs["igGetScrollMaxX"] = {} defs["igGetScrollMaxX"][1] = {} @@ -8198,9 +8681,11 @@ defs["igGetScrollMaxX"][1]["cimguiname"] = "igGetScrollMaxX" defs["igGetScrollMaxX"][1]["comment"] = "" defs["igGetScrollMaxX"][1]["defaults"] = {} defs["igGetScrollMaxX"][1]["funcname"] = "GetScrollMaxX" +defs["igGetScrollMaxX"][1]["namespace"] = "ImGui" +defs["igGetScrollMaxX"][1]["ov_cimguiname"] = "igGetScrollMaxX" defs["igGetScrollMaxX"][1]["ret"] = "float" defs["igGetScrollMaxX"][1]["signature"] = "()" -defs["igGetScrollMaxX"][1]["stname"] = "ImGui" +defs["igGetScrollMaxX"][1]["stname"] = "" defs["igGetScrollMaxX"]["()"] = defs["igGetScrollMaxX"][1] defs["igGetScrollMaxY"] = {} defs["igGetScrollMaxY"][1] = {} @@ -8212,9 +8697,11 @@ defs["igGetScrollMaxY"][1]["cimguiname"] = "igGetScrollMaxY" defs["igGetScrollMaxY"][1]["comment"] = "" defs["igGetScrollMaxY"][1]["defaults"] = {} defs["igGetScrollMaxY"][1]["funcname"] = "GetScrollMaxY" +defs["igGetScrollMaxY"][1]["namespace"] = "ImGui" +defs["igGetScrollMaxY"][1]["ov_cimguiname"] = "igGetScrollMaxY" defs["igGetScrollMaxY"][1]["ret"] = "float" defs["igGetScrollMaxY"][1]["signature"] = "()" -defs["igGetScrollMaxY"][1]["stname"] = "ImGui" +defs["igGetScrollMaxY"][1]["stname"] = "" defs["igGetScrollMaxY"]["()"] = defs["igGetScrollMaxY"][1] defs["igGetScrollX"] = {} defs["igGetScrollX"][1] = {} @@ -8226,9 +8713,11 @@ defs["igGetScrollX"][1]["cimguiname"] = "igGetScrollX" defs["igGetScrollX"][1]["comment"] = "" defs["igGetScrollX"][1]["defaults"] = {} defs["igGetScrollX"][1]["funcname"] = "GetScrollX" +defs["igGetScrollX"][1]["namespace"] = "ImGui" +defs["igGetScrollX"][1]["ov_cimguiname"] = "igGetScrollX" defs["igGetScrollX"][1]["ret"] = "float" defs["igGetScrollX"][1]["signature"] = "()" -defs["igGetScrollX"][1]["stname"] = "ImGui" +defs["igGetScrollX"][1]["stname"] = "" defs["igGetScrollX"]["()"] = defs["igGetScrollX"][1] defs["igGetScrollY"] = {} defs["igGetScrollY"][1] = {} @@ -8240,9 +8729,11 @@ defs["igGetScrollY"][1]["cimguiname"] = "igGetScrollY" defs["igGetScrollY"][1]["comment"] = "" defs["igGetScrollY"][1]["defaults"] = {} defs["igGetScrollY"][1]["funcname"] = "GetScrollY" +defs["igGetScrollY"][1]["namespace"] = "ImGui" +defs["igGetScrollY"][1]["ov_cimguiname"] = "igGetScrollY" defs["igGetScrollY"][1]["ret"] = "float" defs["igGetScrollY"][1]["signature"] = "()" -defs["igGetScrollY"][1]["stname"] = "ImGui" +defs["igGetScrollY"][1]["stname"] = "" defs["igGetScrollY"]["()"] = defs["igGetScrollY"][1] defs["igGetStateStorage"] = {} defs["igGetStateStorage"][1] = {} @@ -8254,9 +8745,11 @@ defs["igGetStateStorage"][1]["cimguiname"] = "igGetStateStorage" defs["igGetStateStorage"][1]["comment"] = "" defs["igGetStateStorage"][1]["defaults"] = {} defs["igGetStateStorage"][1]["funcname"] = "GetStateStorage" +defs["igGetStateStorage"][1]["namespace"] = "ImGui" +defs["igGetStateStorage"][1]["ov_cimguiname"] = "igGetStateStorage" defs["igGetStateStorage"][1]["ret"] = "ImGuiStorage*" defs["igGetStateStorage"][1]["signature"] = "()" -defs["igGetStateStorage"][1]["stname"] = "ImGui" +defs["igGetStateStorage"][1]["stname"] = "" defs["igGetStateStorage"]["()"] = defs["igGetStateStorage"][1] defs["igGetStyle"] = {} defs["igGetStyle"][1] = {} @@ -8268,10 +8761,12 @@ defs["igGetStyle"][1]["cimguiname"] = "igGetStyle" defs["igGetStyle"][1]["comment"] = "" defs["igGetStyle"][1]["defaults"] = {} defs["igGetStyle"][1]["funcname"] = "GetStyle" +defs["igGetStyle"][1]["namespace"] = "ImGui" +defs["igGetStyle"][1]["ov_cimguiname"] = "igGetStyle" defs["igGetStyle"][1]["ret"] = "ImGuiStyle*" defs["igGetStyle"][1]["retref"] = "&" defs["igGetStyle"][1]["signature"] = "()" -defs["igGetStyle"][1]["stname"] = "ImGui" +defs["igGetStyle"][1]["stname"] = "" defs["igGetStyle"]["()"] = defs["igGetStyle"][1] defs["igGetStyleColorName"] = {} defs["igGetStyleColorName"][1] = {} @@ -8286,9 +8781,11 @@ defs["igGetStyleColorName"][1]["cimguiname"] = "igGetStyleColorName" defs["igGetStyleColorName"][1]["comment"] = "" defs["igGetStyleColorName"][1]["defaults"] = {} defs["igGetStyleColorName"][1]["funcname"] = "GetStyleColorName" +defs["igGetStyleColorName"][1]["namespace"] = "ImGui" +defs["igGetStyleColorName"][1]["ov_cimguiname"] = "igGetStyleColorName" defs["igGetStyleColorName"][1]["ret"] = "const char*" defs["igGetStyleColorName"][1]["signature"] = "(ImGuiCol)" -defs["igGetStyleColorName"][1]["stname"] = "ImGui" +defs["igGetStyleColorName"][1]["stname"] = "" defs["igGetStyleColorName"]["(ImGuiCol)"] = defs["igGetStyleColorName"][1] defs["igGetStyleColorVec4"] = {} defs["igGetStyleColorVec4"][1] = {} @@ -8303,10 +8800,12 @@ defs["igGetStyleColorVec4"][1]["cimguiname"] = "igGetStyleColorVec4" defs["igGetStyleColorVec4"][1]["comment"] = "" defs["igGetStyleColorVec4"][1]["defaults"] = {} defs["igGetStyleColorVec4"][1]["funcname"] = "GetStyleColorVec4" +defs["igGetStyleColorVec4"][1]["namespace"] = "ImGui" +defs["igGetStyleColorVec4"][1]["ov_cimguiname"] = "igGetStyleColorVec4" defs["igGetStyleColorVec4"][1]["ret"] = "const ImVec4*" defs["igGetStyleColorVec4"][1]["retref"] = "&" defs["igGetStyleColorVec4"][1]["signature"] = "(ImGuiCol)" -defs["igGetStyleColorVec4"][1]["stname"] = "ImGui" +defs["igGetStyleColorVec4"][1]["stname"] = "" defs["igGetStyleColorVec4"]["(ImGuiCol)"] = defs["igGetStyleColorVec4"][1] defs["igGetTextLineHeight"] = {} defs["igGetTextLineHeight"][1] = {} @@ -8318,9 +8817,11 @@ defs["igGetTextLineHeight"][1]["cimguiname"] = "igGetTextLineHeight" defs["igGetTextLineHeight"][1]["comment"] = "" defs["igGetTextLineHeight"][1]["defaults"] = {} defs["igGetTextLineHeight"][1]["funcname"] = "GetTextLineHeight" +defs["igGetTextLineHeight"][1]["namespace"] = "ImGui" +defs["igGetTextLineHeight"][1]["ov_cimguiname"] = "igGetTextLineHeight" defs["igGetTextLineHeight"][1]["ret"] = "float" defs["igGetTextLineHeight"][1]["signature"] = "()" -defs["igGetTextLineHeight"][1]["stname"] = "ImGui" +defs["igGetTextLineHeight"][1]["stname"] = "" defs["igGetTextLineHeight"]["()"] = defs["igGetTextLineHeight"][1] defs["igGetTextLineHeightWithSpacing"] = {} defs["igGetTextLineHeightWithSpacing"][1] = {} @@ -8332,9 +8833,11 @@ defs["igGetTextLineHeightWithSpacing"][1]["cimguiname"] = "igGetTextLineHeightWi defs["igGetTextLineHeightWithSpacing"][1]["comment"] = "" defs["igGetTextLineHeightWithSpacing"][1]["defaults"] = {} defs["igGetTextLineHeightWithSpacing"][1]["funcname"] = "GetTextLineHeightWithSpacing" +defs["igGetTextLineHeightWithSpacing"][1]["namespace"] = "ImGui" +defs["igGetTextLineHeightWithSpacing"][1]["ov_cimguiname"] = "igGetTextLineHeightWithSpacing" defs["igGetTextLineHeightWithSpacing"][1]["ret"] = "float" defs["igGetTextLineHeightWithSpacing"][1]["signature"] = "()" -defs["igGetTextLineHeightWithSpacing"][1]["stname"] = "ImGui" +defs["igGetTextLineHeightWithSpacing"][1]["stname"] = "" defs["igGetTextLineHeightWithSpacing"]["()"] = defs["igGetTextLineHeightWithSpacing"][1] defs["igGetTime"] = {} defs["igGetTime"][1] = {} @@ -8346,9 +8849,11 @@ defs["igGetTime"][1]["cimguiname"] = "igGetTime" defs["igGetTime"][1]["comment"] = "" defs["igGetTime"][1]["defaults"] = {} defs["igGetTime"][1]["funcname"] = "GetTime" +defs["igGetTime"][1]["namespace"] = "ImGui" +defs["igGetTime"][1]["ov_cimguiname"] = "igGetTime" defs["igGetTime"][1]["ret"] = "double" defs["igGetTime"][1]["signature"] = "()" -defs["igGetTime"][1]["stname"] = "ImGui" +defs["igGetTime"][1]["stname"] = "" defs["igGetTime"]["()"] = defs["igGetTime"][1] defs["igGetTreeNodeToLabelSpacing"] = {} defs["igGetTreeNodeToLabelSpacing"][1] = {} @@ -8360,9 +8865,11 @@ defs["igGetTreeNodeToLabelSpacing"][1]["cimguiname"] = "igGetTreeNodeToLabelSpac defs["igGetTreeNodeToLabelSpacing"][1]["comment"] = "" defs["igGetTreeNodeToLabelSpacing"][1]["defaults"] = {} defs["igGetTreeNodeToLabelSpacing"][1]["funcname"] = "GetTreeNodeToLabelSpacing" +defs["igGetTreeNodeToLabelSpacing"][1]["namespace"] = "ImGui" +defs["igGetTreeNodeToLabelSpacing"][1]["ov_cimguiname"] = "igGetTreeNodeToLabelSpacing" defs["igGetTreeNodeToLabelSpacing"][1]["ret"] = "float" defs["igGetTreeNodeToLabelSpacing"][1]["signature"] = "()" -defs["igGetTreeNodeToLabelSpacing"][1]["stname"] = "ImGui" +defs["igGetTreeNodeToLabelSpacing"][1]["stname"] = "" defs["igGetTreeNodeToLabelSpacing"]["()"] = defs["igGetTreeNodeToLabelSpacing"][1] defs["igGetVersion"] = {} defs["igGetVersion"][1] = {} @@ -8374,9 +8881,11 @@ defs["igGetVersion"][1]["cimguiname"] = "igGetVersion" defs["igGetVersion"][1]["comment"] = "" defs["igGetVersion"][1]["defaults"] = {} defs["igGetVersion"][1]["funcname"] = "GetVersion" +defs["igGetVersion"][1]["namespace"] = "ImGui" +defs["igGetVersion"][1]["ov_cimguiname"] = "igGetVersion" defs["igGetVersion"][1]["ret"] = "const char*" defs["igGetVersion"][1]["signature"] = "()" -defs["igGetVersion"][1]["stname"] = "ImGui" +defs["igGetVersion"][1]["stname"] = "" defs["igGetVersion"]["()"] = defs["igGetVersion"][1] defs["igGetWindowContentRegionMax"] = {} defs["igGetWindowContentRegionMax"][1] = {} @@ -8388,9 +8897,11 @@ defs["igGetWindowContentRegionMax"][1]["cimguiname"] = "igGetWindowContentRegion defs["igGetWindowContentRegionMax"][1]["comment"] = "" defs["igGetWindowContentRegionMax"][1]["defaults"] = {} defs["igGetWindowContentRegionMax"][1]["funcname"] = "GetWindowContentRegionMax" +defs["igGetWindowContentRegionMax"][1]["namespace"] = "ImGui" +defs["igGetWindowContentRegionMax"][1]["ov_cimguiname"] = "igGetWindowContentRegionMax" defs["igGetWindowContentRegionMax"][1]["ret"] = "ImVec2" defs["igGetWindowContentRegionMax"][1]["signature"] = "()" -defs["igGetWindowContentRegionMax"][1]["stname"] = "ImGui" +defs["igGetWindowContentRegionMax"][1]["stname"] = "" defs["igGetWindowContentRegionMax"][2] = {} defs["igGetWindowContentRegionMax"][2]["args"] = "(ImVec2 *pOut)" defs["igGetWindowContentRegionMax"][2]["argsT"] = {} @@ -8403,11 +8914,12 @@ defs["igGetWindowContentRegionMax"][2]["cimguiname"] = "igGetWindowContentRegion defs["igGetWindowContentRegionMax"][2]["comment"] = "" defs["igGetWindowContentRegionMax"][2]["defaults"] = defs["igGetWindowContentRegionMax"][1]["defaults"] defs["igGetWindowContentRegionMax"][2]["funcname"] = "GetWindowContentRegionMax" +defs["igGetWindowContentRegionMax"][2]["namespace"] = "ImGui" defs["igGetWindowContentRegionMax"][2]["nonUDT"] = 1 defs["igGetWindowContentRegionMax"][2]["ov_cimguiname"] = "igGetWindowContentRegionMax_nonUDT" defs["igGetWindowContentRegionMax"][2]["ret"] = "void" defs["igGetWindowContentRegionMax"][2]["signature"] = "()" -defs["igGetWindowContentRegionMax"][2]["stname"] = "ImGui" +defs["igGetWindowContentRegionMax"][2]["stname"] = "" defs["igGetWindowContentRegionMax"][3] = {} defs["igGetWindowContentRegionMax"][3]["args"] = "()" defs["igGetWindowContentRegionMax"][3]["argsT"] = {} @@ -8417,12 +8929,13 @@ defs["igGetWindowContentRegionMax"][3]["cimguiname"] = "igGetWindowContentRegion defs["igGetWindowContentRegionMax"][3]["comment"] = "" defs["igGetWindowContentRegionMax"][3]["defaults"] = defs["igGetWindowContentRegionMax"][1]["defaults"] defs["igGetWindowContentRegionMax"][3]["funcname"] = "GetWindowContentRegionMax" +defs["igGetWindowContentRegionMax"][3]["namespace"] = "ImGui" defs["igGetWindowContentRegionMax"][3]["nonUDT"] = 2 defs["igGetWindowContentRegionMax"][3]["ov_cimguiname"] = "igGetWindowContentRegionMax_nonUDT2" defs["igGetWindowContentRegionMax"][3]["ret"] = "ImVec2_Simple" defs["igGetWindowContentRegionMax"][3]["retorig"] = "ImVec2" defs["igGetWindowContentRegionMax"][3]["signature"] = "()" -defs["igGetWindowContentRegionMax"][3]["stname"] = "ImGui" +defs["igGetWindowContentRegionMax"][3]["stname"] = "" defs["igGetWindowContentRegionMax"]["()"] = defs["igGetWindowContentRegionMax"][1] defs["igGetWindowContentRegionMax"]["()nonUDT"] = defs["igGetWindowContentRegionMax"][2] defs["igGetWindowContentRegionMax"]["()nonUDT2"] = defs["igGetWindowContentRegionMax"][3] @@ -8436,9 +8949,11 @@ defs["igGetWindowContentRegionMin"][1]["cimguiname"] = "igGetWindowContentRegion defs["igGetWindowContentRegionMin"][1]["comment"] = "" defs["igGetWindowContentRegionMin"][1]["defaults"] = {} defs["igGetWindowContentRegionMin"][1]["funcname"] = "GetWindowContentRegionMin" +defs["igGetWindowContentRegionMin"][1]["namespace"] = "ImGui" +defs["igGetWindowContentRegionMin"][1]["ov_cimguiname"] = "igGetWindowContentRegionMin" defs["igGetWindowContentRegionMin"][1]["ret"] = "ImVec2" defs["igGetWindowContentRegionMin"][1]["signature"] = "()" -defs["igGetWindowContentRegionMin"][1]["stname"] = "ImGui" +defs["igGetWindowContentRegionMin"][1]["stname"] = "" defs["igGetWindowContentRegionMin"][2] = {} defs["igGetWindowContentRegionMin"][2]["args"] = "(ImVec2 *pOut)" defs["igGetWindowContentRegionMin"][2]["argsT"] = {} @@ -8451,11 +8966,12 @@ defs["igGetWindowContentRegionMin"][2]["cimguiname"] = "igGetWindowContentRegion defs["igGetWindowContentRegionMin"][2]["comment"] = "" defs["igGetWindowContentRegionMin"][2]["defaults"] = defs["igGetWindowContentRegionMin"][1]["defaults"] defs["igGetWindowContentRegionMin"][2]["funcname"] = "GetWindowContentRegionMin" +defs["igGetWindowContentRegionMin"][2]["namespace"] = "ImGui" defs["igGetWindowContentRegionMin"][2]["nonUDT"] = 1 defs["igGetWindowContentRegionMin"][2]["ov_cimguiname"] = "igGetWindowContentRegionMin_nonUDT" defs["igGetWindowContentRegionMin"][2]["ret"] = "void" defs["igGetWindowContentRegionMin"][2]["signature"] = "()" -defs["igGetWindowContentRegionMin"][2]["stname"] = "ImGui" +defs["igGetWindowContentRegionMin"][2]["stname"] = "" defs["igGetWindowContentRegionMin"][3] = {} defs["igGetWindowContentRegionMin"][3]["args"] = "()" defs["igGetWindowContentRegionMin"][3]["argsT"] = {} @@ -8465,12 +8981,13 @@ defs["igGetWindowContentRegionMin"][3]["cimguiname"] = "igGetWindowContentRegion defs["igGetWindowContentRegionMin"][3]["comment"] = "" defs["igGetWindowContentRegionMin"][3]["defaults"] = defs["igGetWindowContentRegionMin"][1]["defaults"] defs["igGetWindowContentRegionMin"][3]["funcname"] = "GetWindowContentRegionMin" +defs["igGetWindowContentRegionMin"][3]["namespace"] = "ImGui" defs["igGetWindowContentRegionMin"][3]["nonUDT"] = 2 defs["igGetWindowContentRegionMin"][3]["ov_cimguiname"] = "igGetWindowContentRegionMin_nonUDT2" defs["igGetWindowContentRegionMin"][3]["ret"] = "ImVec2_Simple" defs["igGetWindowContentRegionMin"][3]["retorig"] = "ImVec2" defs["igGetWindowContentRegionMin"][3]["signature"] = "()" -defs["igGetWindowContentRegionMin"][3]["stname"] = "ImGui" +defs["igGetWindowContentRegionMin"][3]["stname"] = "" defs["igGetWindowContentRegionMin"]["()"] = defs["igGetWindowContentRegionMin"][1] defs["igGetWindowContentRegionMin"]["()nonUDT"] = defs["igGetWindowContentRegionMin"][2] defs["igGetWindowContentRegionMin"]["()nonUDT2"] = defs["igGetWindowContentRegionMin"][3] @@ -8484,9 +9001,11 @@ defs["igGetWindowContentRegionWidth"][1]["cimguiname"] = "igGetWindowContentRegi defs["igGetWindowContentRegionWidth"][1]["comment"] = "" defs["igGetWindowContentRegionWidth"][1]["defaults"] = {} defs["igGetWindowContentRegionWidth"][1]["funcname"] = "GetWindowContentRegionWidth" +defs["igGetWindowContentRegionWidth"][1]["namespace"] = "ImGui" +defs["igGetWindowContentRegionWidth"][1]["ov_cimguiname"] = "igGetWindowContentRegionWidth" defs["igGetWindowContentRegionWidth"][1]["ret"] = "float" defs["igGetWindowContentRegionWidth"][1]["signature"] = "()" -defs["igGetWindowContentRegionWidth"][1]["stname"] = "ImGui" +defs["igGetWindowContentRegionWidth"][1]["stname"] = "" defs["igGetWindowContentRegionWidth"]["()"] = defs["igGetWindowContentRegionWidth"][1] defs["igGetWindowDrawList"] = {} defs["igGetWindowDrawList"][1] = {} @@ -8498,9 +9017,11 @@ defs["igGetWindowDrawList"][1]["cimguiname"] = "igGetWindowDrawList" defs["igGetWindowDrawList"][1]["comment"] = "" defs["igGetWindowDrawList"][1]["defaults"] = {} defs["igGetWindowDrawList"][1]["funcname"] = "GetWindowDrawList" +defs["igGetWindowDrawList"][1]["namespace"] = "ImGui" +defs["igGetWindowDrawList"][1]["ov_cimguiname"] = "igGetWindowDrawList" defs["igGetWindowDrawList"][1]["ret"] = "ImDrawList*" defs["igGetWindowDrawList"][1]["signature"] = "()" -defs["igGetWindowDrawList"][1]["stname"] = "ImGui" +defs["igGetWindowDrawList"][1]["stname"] = "" defs["igGetWindowDrawList"]["()"] = defs["igGetWindowDrawList"][1] defs["igGetWindowHeight"] = {} defs["igGetWindowHeight"][1] = {} @@ -8512,9 +9033,11 @@ defs["igGetWindowHeight"][1]["cimguiname"] = "igGetWindowHeight" defs["igGetWindowHeight"][1]["comment"] = "" defs["igGetWindowHeight"][1]["defaults"] = {} defs["igGetWindowHeight"][1]["funcname"] = "GetWindowHeight" +defs["igGetWindowHeight"][1]["namespace"] = "ImGui" +defs["igGetWindowHeight"][1]["ov_cimguiname"] = "igGetWindowHeight" defs["igGetWindowHeight"][1]["ret"] = "float" defs["igGetWindowHeight"][1]["signature"] = "()" -defs["igGetWindowHeight"][1]["stname"] = "ImGui" +defs["igGetWindowHeight"][1]["stname"] = "" defs["igGetWindowHeight"]["()"] = defs["igGetWindowHeight"][1] defs["igGetWindowPos"] = {} defs["igGetWindowPos"][1] = {} @@ -8526,9 +9049,11 @@ defs["igGetWindowPos"][1]["cimguiname"] = "igGetWindowPos" defs["igGetWindowPos"][1]["comment"] = "" defs["igGetWindowPos"][1]["defaults"] = {} defs["igGetWindowPos"][1]["funcname"] = "GetWindowPos" +defs["igGetWindowPos"][1]["namespace"] = "ImGui" +defs["igGetWindowPos"][1]["ov_cimguiname"] = "igGetWindowPos" defs["igGetWindowPos"][1]["ret"] = "ImVec2" defs["igGetWindowPos"][1]["signature"] = "()" -defs["igGetWindowPos"][1]["stname"] = "ImGui" +defs["igGetWindowPos"][1]["stname"] = "" defs["igGetWindowPos"][2] = {} defs["igGetWindowPos"][2]["args"] = "(ImVec2 *pOut)" defs["igGetWindowPos"][2]["argsT"] = {} @@ -8541,11 +9066,12 @@ defs["igGetWindowPos"][2]["cimguiname"] = "igGetWindowPos" defs["igGetWindowPos"][2]["comment"] = "" defs["igGetWindowPos"][2]["defaults"] = defs["igGetWindowPos"][1]["defaults"] defs["igGetWindowPos"][2]["funcname"] = "GetWindowPos" +defs["igGetWindowPos"][2]["namespace"] = "ImGui" defs["igGetWindowPos"][2]["nonUDT"] = 1 defs["igGetWindowPos"][2]["ov_cimguiname"] = "igGetWindowPos_nonUDT" defs["igGetWindowPos"][2]["ret"] = "void" defs["igGetWindowPos"][2]["signature"] = "()" -defs["igGetWindowPos"][2]["stname"] = "ImGui" +defs["igGetWindowPos"][2]["stname"] = "" defs["igGetWindowPos"][3] = {} defs["igGetWindowPos"][3]["args"] = "()" defs["igGetWindowPos"][3]["argsT"] = {} @@ -8555,12 +9081,13 @@ defs["igGetWindowPos"][3]["cimguiname"] = "igGetWindowPos" defs["igGetWindowPos"][3]["comment"] = "" defs["igGetWindowPos"][3]["defaults"] = defs["igGetWindowPos"][1]["defaults"] defs["igGetWindowPos"][3]["funcname"] = "GetWindowPos" +defs["igGetWindowPos"][3]["namespace"] = "ImGui" defs["igGetWindowPos"][3]["nonUDT"] = 2 defs["igGetWindowPos"][3]["ov_cimguiname"] = "igGetWindowPos_nonUDT2" defs["igGetWindowPos"][3]["ret"] = "ImVec2_Simple" defs["igGetWindowPos"][3]["retorig"] = "ImVec2" defs["igGetWindowPos"][3]["signature"] = "()" -defs["igGetWindowPos"][3]["stname"] = "ImGui" +defs["igGetWindowPos"][3]["stname"] = "" defs["igGetWindowPos"]["()"] = defs["igGetWindowPos"][1] defs["igGetWindowPos"]["()nonUDT"] = defs["igGetWindowPos"][2] defs["igGetWindowPos"]["()nonUDT2"] = defs["igGetWindowPos"][3] @@ -8574,9 +9101,11 @@ defs["igGetWindowSize"][1]["cimguiname"] = "igGetWindowSize" defs["igGetWindowSize"][1]["comment"] = "" defs["igGetWindowSize"][1]["defaults"] = {} defs["igGetWindowSize"][1]["funcname"] = "GetWindowSize" +defs["igGetWindowSize"][1]["namespace"] = "ImGui" +defs["igGetWindowSize"][1]["ov_cimguiname"] = "igGetWindowSize" defs["igGetWindowSize"][1]["ret"] = "ImVec2" defs["igGetWindowSize"][1]["signature"] = "()" -defs["igGetWindowSize"][1]["stname"] = "ImGui" +defs["igGetWindowSize"][1]["stname"] = "" defs["igGetWindowSize"][2] = {} defs["igGetWindowSize"][2]["args"] = "(ImVec2 *pOut)" defs["igGetWindowSize"][2]["argsT"] = {} @@ -8589,11 +9118,12 @@ defs["igGetWindowSize"][2]["cimguiname"] = "igGetWindowSize" defs["igGetWindowSize"][2]["comment"] = "" defs["igGetWindowSize"][2]["defaults"] = defs["igGetWindowSize"][1]["defaults"] defs["igGetWindowSize"][2]["funcname"] = "GetWindowSize" +defs["igGetWindowSize"][2]["namespace"] = "ImGui" defs["igGetWindowSize"][2]["nonUDT"] = 1 defs["igGetWindowSize"][2]["ov_cimguiname"] = "igGetWindowSize_nonUDT" defs["igGetWindowSize"][2]["ret"] = "void" defs["igGetWindowSize"][2]["signature"] = "()" -defs["igGetWindowSize"][2]["stname"] = "ImGui" +defs["igGetWindowSize"][2]["stname"] = "" defs["igGetWindowSize"][3] = {} defs["igGetWindowSize"][3]["args"] = "()" defs["igGetWindowSize"][3]["argsT"] = {} @@ -8603,12 +9133,13 @@ defs["igGetWindowSize"][3]["cimguiname"] = "igGetWindowSize" defs["igGetWindowSize"][3]["comment"] = "" defs["igGetWindowSize"][3]["defaults"] = defs["igGetWindowSize"][1]["defaults"] defs["igGetWindowSize"][3]["funcname"] = "GetWindowSize" +defs["igGetWindowSize"][3]["namespace"] = "ImGui" defs["igGetWindowSize"][3]["nonUDT"] = 2 defs["igGetWindowSize"][3]["ov_cimguiname"] = "igGetWindowSize_nonUDT2" defs["igGetWindowSize"][3]["ret"] = "ImVec2_Simple" defs["igGetWindowSize"][3]["retorig"] = "ImVec2" defs["igGetWindowSize"][3]["signature"] = "()" -defs["igGetWindowSize"][3]["stname"] = "ImGui" +defs["igGetWindowSize"][3]["stname"] = "" defs["igGetWindowSize"]["()"] = defs["igGetWindowSize"][1] defs["igGetWindowSize"]["()nonUDT"] = defs["igGetWindowSize"][2] defs["igGetWindowSize"]["()nonUDT2"] = defs["igGetWindowSize"][3] @@ -8622,9 +9153,11 @@ defs["igGetWindowWidth"][1]["cimguiname"] = "igGetWindowWidth" defs["igGetWindowWidth"][1]["comment"] = "" defs["igGetWindowWidth"][1]["defaults"] = {} defs["igGetWindowWidth"][1]["funcname"] = "GetWindowWidth" +defs["igGetWindowWidth"][1]["namespace"] = "ImGui" +defs["igGetWindowWidth"][1]["ov_cimguiname"] = "igGetWindowWidth" defs["igGetWindowWidth"][1]["ret"] = "float" defs["igGetWindowWidth"][1]["signature"] = "()" -defs["igGetWindowWidth"][1]["stname"] = "ImGui" +defs["igGetWindowWidth"][1]["stname"] = "" defs["igGetWindowWidth"]["()"] = defs["igGetWindowWidth"][1] defs["igImage"] = {} defs["igImage"][1] = {} @@ -8658,9 +9191,11 @@ defs["igImage"][1]["defaults"]["tint_col"] = "ImVec4(1,1,1,1)" defs["igImage"][1]["defaults"]["uv0"] = "ImVec2(0,0)" defs["igImage"][1]["defaults"]["uv1"] = "ImVec2(1,1)" defs["igImage"][1]["funcname"] = "Image" +defs["igImage"][1]["namespace"] = "ImGui" +defs["igImage"][1]["ov_cimguiname"] = "igImage" defs["igImage"][1]["ret"] = "void" defs["igImage"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4)" -defs["igImage"][1]["stname"] = "ImGui" +defs["igImage"][1]["stname"] = "" defs["igImage"]["(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4)"] = defs["igImage"][1] defs["igImageButton"] = {} defs["igImageButton"][1] = {} @@ -8698,9 +9233,11 @@ defs["igImageButton"][1]["defaults"]["tint_col"] = "ImVec4(1,1,1,1)" defs["igImageButton"][1]["defaults"]["uv0"] = "ImVec2(0,0)" defs["igImageButton"][1]["defaults"]["uv1"] = "ImVec2(1,1)" defs["igImageButton"][1]["funcname"] = "ImageButton" +defs["igImageButton"][1]["namespace"] = "ImGui" +defs["igImageButton"][1]["ov_cimguiname"] = "igImageButton" defs["igImageButton"][1]["ret"] = "bool" defs["igImageButton"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,int,const ImVec4,const ImVec4)" -defs["igImageButton"][1]["stname"] = "ImGui" +defs["igImageButton"][1]["stname"] = "" defs["igImageButton"]["(ImTextureID,const ImVec2,const ImVec2,const ImVec2,int,const ImVec4,const ImVec4)"] = defs["igImageButton"][1] defs["igIndent"] = {} defs["igIndent"][1] = {} @@ -8716,9 +9253,11 @@ defs["igIndent"][1]["comment"] = "" defs["igIndent"][1]["defaults"] = {} defs["igIndent"][1]["defaults"]["indent_w"] = "0.0f" defs["igIndent"][1]["funcname"] = "Indent" +defs["igIndent"][1]["namespace"] = "ImGui" +defs["igIndent"][1]["ov_cimguiname"] = "igIndent" defs["igIndent"][1]["ret"] = "void" defs["igIndent"][1]["signature"] = "(float)" -defs["igIndent"][1]["stname"] = "ImGui" +defs["igIndent"][1]["stname"] = "" defs["igIndent"]["(float)"] = defs["igIndent"][1] defs["igInputDouble"] = {} defs["igInputDouble"][1] = {} @@ -8752,9 +9291,11 @@ defs["igInputDouble"][1]["defaults"]["format"] = "\"%.6f\"" defs["igInputDouble"][1]["defaults"]["step"] = "0.0" defs["igInputDouble"][1]["defaults"]["step_fast"] = "0.0" defs["igInputDouble"][1]["funcname"] = "InputDouble" +defs["igInputDouble"][1]["namespace"] = "ImGui" +defs["igInputDouble"][1]["ov_cimguiname"] = "igInputDouble" defs["igInputDouble"][1]["ret"] = "bool" defs["igInputDouble"][1]["signature"] = "(const char*,double*,double,double,const char*,ImGuiInputTextFlags)" -defs["igInputDouble"][1]["stname"] = "ImGui" +defs["igInputDouble"][1]["stname"] = "" defs["igInputDouble"]["(const char*,double*,double,double,const char*,ImGuiInputTextFlags)"] = defs["igInputDouble"][1] defs["igInputFloat"] = {} defs["igInputFloat"][1] = {} @@ -8788,9 +9329,11 @@ defs["igInputFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat"][1]["defaults"]["step"] = "0.0f" defs["igInputFloat"][1]["defaults"]["step_fast"] = "0.0f" defs["igInputFloat"][1]["funcname"] = "InputFloat" +defs["igInputFloat"][1]["namespace"] = "ImGui" +defs["igInputFloat"][1]["ov_cimguiname"] = "igInputFloat" defs["igInputFloat"][1]["ret"] = "bool" defs["igInputFloat"][1]["signature"] = "(const char*,float*,float,float,const char*,ImGuiInputTextFlags)" -defs["igInputFloat"][1]["stname"] = "ImGui" +defs["igInputFloat"][1]["stname"] = "" defs["igInputFloat"]["(const char*,float*,float,float,const char*,ImGuiInputTextFlags)"] = defs["igInputFloat"][1] defs["igInputFloat2"] = {} defs["igInputFloat2"][1] = {} @@ -8816,9 +9359,11 @@ defs["igInputFloat2"][1]["defaults"] = {} defs["igInputFloat2"][1]["defaults"]["flags"] = "0" defs["igInputFloat2"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat2"][1]["funcname"] = "InputFloat2" +defs["igInputFloat2"][1]["namespace"] = "ImGui" +defs["igInputFloat2"][1]["ov_cimguiname"] = "igInputFloat2" defs["igInputFloat2"][1]["ret"] = "bool" defs["igInputFloat2"][1]["signature"] = "(const char*,float[2],const char*,ImGuiInputTextFlags)" -defs["igInputFloat2"][1]["stname"] = "ImGui" +defs["igInputFloat2"][1]["stname"] = "" defs["igInputFloat2"]["(const char*,float[2],const char*,ImGuiInputTextFlags)"] = defs["igInputFloat2"][1] defs["igInputFloat3"] = {} defs["igInputFloat3"][1] = {} @@ -8844,9 +9389,11 @@ defs["igInputFloat3"][1]["defaults"] = {} defs["igInputFloat3"][1]["defaults"]["flags"] = "0" defs["igInputFloat3"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat3"][1]["funcname"] = "InputFloat3" +defs["igInputFloat3"][1]["namespace"] = "ImGui" +defs["igInputFloat3"][1]["ov_cimguiname"] = "igInputFloat3" defs["igInputFloat3"][1]["ret"] = "bool" defs["igInputFloat3"][1]["signature"] = "(const char*,float[3],const char*,ImGuiInputTextFlags)" -defs["igInputFloat3"][1]["stname"] = "ImGui" +defs["igInputFloat3"][1]["stname"] = "" defs["igInputFloat3"]["(const char*,float[3],const char*,ImGuiInputTextFlags)"] = defs["igInputFloat3"][1] defs["igInputFloat4"] = {} defs["igInputFloat4"][1] = {} @@ -8872,9 +9419,11 @@ defs["igInputFloat4"][1]["defaults"] = {} defs["igInputFloat4"][1]["defaults"]["flags"] = "0" defs["igInputFloat4"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat4"][1]["funcname"] = "InputFloat4" +defs["igInputFloat4"][1]["namespace"] = "ImGui" +defs["igInputFloat4"][1]["ov_cimguiname"] = "igInputFloat4" defs["igInputFloat4"][1]["ret"] = "bool" defs["igInputFloat4"][1]["signature"] = "(const char*,float[4],const char*,ImGuiInputTextFlags)" -defs["igInputFloat4"][1]["stname"] = "ImGui" +defs["igInputFloat4"][1]["stname"] = "" defs["igInputFloat4"]["(const char*,float[4],const char*,ImGuiInputTextFlags)"] = defs["igInputFloat4"][1] defs["igInputInt"] = {} defs["igInputInt"][1] = {} @@ -8904,9 +9453,11 @@ defs["igInputInt"][1]["defaults"]["flags"] = "0" defs["igInputInt"][1]["defaults"]["step"] = "1" defs["igInputInt"][1]["defaults"]["step_fast"] = "100" defs["igInputInt"][1]["funcname"] = "InputInt" +defs["igInputInt"][1]["namespace"] = "ImGui" +defs["igInputInt"][1]["ov_cimguiname"] = "igInputInt" defs["igInputInt"][1]["ret"] = "bool" defs["igInputInt"][1]["signature"] = "(const char*,int*,int,int,ImGuiInputTextFlags)" -defs["igInputInt"][1]["stname"] = "ImGui" +defs["igInputInt"][1]["stname"] = "" defs["igInputInt"]["(const char*,int*,int,int,ImGuiInputTextFlags)"] = defs["igInputInt"][1] defs["igInputInt2"] = {} defs["igInputInt2"][1] = {} @@ -8928,9 +9479,11 @@ defs["igInputInt2"][1]["comment"] = "" defs["igInputInt2"][1]["defaults"] = {} defs["igInputInt2"][1]["defaults"]["flags"] = "0" defs["igInputInt2"][1]["funcname"] = "InputInt2" +defs["igInputInt2"][1]["namespace"] = "ImGui" +defs["igInputInt2"][1]["ov_cimguiname"] = "igInputInt2" defs["igInputInt2"][1]["ret"] = "bool" defs["igInputInt2"][1]["signature"] = "(const char*,int[2],ImGuiInputTextFlags)" -defs["igInputInt2"][1]["stname"] = "ImGui" +defs["igInputInt2"][1]["stname"] = "" defs["igInputInt2"]["(const char*,int[2],ImGuiInputTextFlags)"] = defs["igInputInt2"][1] defs["igInputInt3"] = {} defs["igInputInt3"][1] = {} @@ -8952,9 +9505,11 @@ defs["igInputInt3"][1]["comment"] = "" defs["igInputInt3"][1]["defaults"] = {} defs["igInputInt3"][1]["defaults"]["flags"] = "0" defs["igInputInt3"][1]["funcname"] = "InputInt3" +defs["igInputInt3"][1]["namespace"] = "ImGui" +defs["igInputInt3"][1]["ov_cimguiname"] = "igInputInt3" defs["igInputInt3"][1]["ret"] = "bool" defs["igInputInt3"][1]["signature"] = "(const char*,int[3],ImGuiInputTextFlags)" -defs["igInputInt3"][1]["stname"] = "ImGui" +defs["igInputInt3"][1]["stname"] = "" defs["igInputInt3"]["(const char*,int[3],ImGuiInputTextFlags)"] = defs["igInputInt3"][1] defs["igInputInt4"] = {} defs["igInputInt4"][1] = {} @@ -8976,9 +9531,11 @@ defs["igInputInt4"][1]["comment"] = "" defs["igInputInt4"][1]["defaults"] = {} defs["igInputInt4"][1]["defaults"]["flags"] = "0" defs["igInputInt4"][1]["funcname"] = "InputInt4" +defs["igInputInt4"][1]["namespace"] = "ImGui" +defs["igInputInt4"][1]["ov_cimguiname"] = "igInputInt4" defs["igInputInt4"][1]["ret"] = "bool" defs["igInputInt4"][1]["signature"] = "(const char*,int[4],ImGuiInputTextFlags)" -defs["igInputInt4"][1]["stname"] = "ImGui" +defs["igInputInt4"][1]["stname"] = "" defs["igInputInt4"]["(const char*,int[4],ImGuiInputTextFlags)"] = defs["igInputInt4"][1] defs["igInputScalar"] = {} defs["igInputScalar"][1] = {} @@ -9005,19 +9562,21 @@ defs["igInputScalar"][1]["argsT"][6]["type"] = "const char*" defs["igInputScalar"][1]["argsT"][7] = {} defs["igInputScalar"][1]["argsT"][7]["name"] = "flags" defs["igInputScalar"][1]["argsT"][7]["type"] = "ImGuiInputTextFlags" -defs["igInputScalar"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,const void* step=((void *)0),const void* step_fast=((void *)0),const char* format=((void *)0),ImGuiInputTextFlags flags=0)" +defs["igInputScalar"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,const void* step=((void*)0),const void* step_fast=((void*)0),const char* format=((void*)0),ImGuiInputTextFlags flags=0)" defs["igInputScalar"][1]["call_args"] = "(label,data_type,v,step,step_fast,format,flags)" defs["igInputScalar"][1]["cimguiname"] = "igInputScalar" defs["igInputScalar"][1]["comment"] = "" defs["igInputScalar"][1]["defaults"] = {} defs["igInputScalar"][1]["defaults"]["flags"] = "0" -defs["igInputScalar"][1]["defaults"]["format"] = "((void *)0)" -defs["igInputScalar"][1]["defaults"]["step"] = "((void *)0)" -defs["igInputScalar"][1]["defaults"]["step_fast"] = "((void *)0)" +defs["igInputScalar"][1]["defaults"]["format"] = "((void*)0)" +defs["igInputScalar"][1]["defaults"]["step"] = "((void*)0)" +defs["igInputScalar"][1]["defaults"]["step_fast"] = "((void*)0)" defs["igInputScalar"][1]["funcname"] = "InputScalar" +defs["igInputScalar"][1]["namespace"] = "ImGui" +defs["igInputScalar"][1]["ov_cimguiname"] = "igInputScalar" defs["igInputScalar"][1]["ret"] = "bool" defs["igInputScalar"][1]["signature"] = "(const char*,ImGuiDataType,void*,const void*,const void*,const char*,ImGuiInputTextFlags)" -defs["igInputScalar"][1]["stname"] = "ImGui" +defs["igInputScalar"][1]["stname"] = "" defs["igInputScalar"]["(const char*,ImGuiDataType,void*,const void*,const void*,const char*,ImGuiInputTextFlags)"] = defs["igInputScalar"][1] defs["igInputScalarN"] = {} defs["igInputScalarN"][1] = {} @@ -9047,19 +9606,21 @@ defs["igInputScalarN"][1]["argsT"][7]["type"] = "const char*" defs["igInputScalarN"][1]["argsT"][8] = {} defs["igInputScalarN"][1]["argsT"][8]["name"] = "flags" defs["igInputScalarN"][1]["argsT"][8]["type"] = "ImGuiInputTextFlags" -defs["igInputScalarN"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,int components,const void* step=((void *)0),const void* step_fast=((void *)0),const char* format=((void *)0),ImGuiInputTextFlags flags=0)" +defs["igInputScalarN"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,int components,const void* step=((void*)0),const void* step_fast=((void*)0),const char* format=((void*)0),ImGuiInputTextFlags flags=0)" defs["igInputScalarN"][1]["call_args"] = "(label,data_type,v,components,step,step_fast,format,flags)" defs["igInputScalarN"][1]["cimguiname"] = "igInputScalarN" defs["igInputScalarN"][1]["comment"] = "" defs["igInputScalarN"][1]["defaults"] = {} defs["igInputScalarN"][1]["defaults"]["flags"] = "0" -defs["igInputScalarN"][1]["defaults"]["format"] = "((void *)0)" -defs["igInputScalarN"][1]["defaults"]["step"] = "((void *)0)" -defs["igInputScalarN"][1]["defaults"]["step_fast"] = "((void *)0)" +defs["igInputScalarN"][1]["defaults"]["format"] = "((void*)0)" +defs["igInputScalarN"][1]["defaults"]["step"] = "((void*)0)" +defs["igInputScalarN"][1]["defaults"]["step_fast"] = "((void*)0)" defs["igInputScalarN"][1]["funcname"] = "InputScalarN" +defs["igInputScalarN"][1]["namespace"] = "ImGui" +defs["igInputScalarN"][1]["ov_cimguiname"] = "igInputScalarN" defs["igInputScalarN"][1]["ret"] = "bool" defs["igInputScalarN"][1]["signature"] = "(const char*,ImGuiDataType,void*,int,const void*,const void*,const char*,ImGuiInputTextFlags)" -defs["igInputScalarN"][1]["stname"] = "ImGui" +defs["igInputScalarN"][1]["stname"] = "" defs["igInputScalarN"]["(const char*,ImGuiDataType,void*,int,const void*,const void*,const char*,ImGuiInputTextFlags)"] = defs["igInputScalarN"][1] defs["igInputText"] = {} defs["igInputText"][1] = {} @@ -9083,18 +9644,20 @@ defs["igInputText"][1]["argsT"][5]["type"] = "ImGuiInputTextCallback" defs["igInputText"][1]["argsT"][6] = {} defs["igInputText"][1]["argsT"][6]["name"] = "user_data" defs["igInputText"][1]["argsT"][6]["type"] = "void*" -defs["igInputText"][1]["argsoriginal"] = "(const char* label,char* buf,size_t buf_size,ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void *)0),void* user_data=((void *)0))" +defs["igInputText"][1]["argsoriginal"] = "(const char* label,char* buf,size_t buf_size,ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void*)0),void* user_data=((void*)0))" defs["igInputText"][1]["call_args"] = "(label,buf,buf_size,flags,callback,user_data)" defs["igInputText"][1]["cimguiname"] = "igInputText" defs["igInputText"][1]["comment"] = "" defs["igInputText"][1]["defaults"] = {} -defs["igInputText"][1]["defaults"]["callback"] = "((void *)0)" +defs["igInputText"][1]["defaults"]["callback"] = "((void*)0)" defs["igInputText"][1]["defaults"]["flags"] = "0" -defs["igInputText"][1]["defaults"]["user_data"] = "((void *)0)" +defs["igInputText"][1]["defaults"]["user_data"] = "((void*)0)" defs["igInputText"][1]["funcname"] = "InputText" +defs["igInputText"][1]["namespace"] = "ImGui" +defs["igInputText"][1]["ov_cimguiname"] = "igInputText" defs["igInputText"][1]["ret"] = "bool" defs["igInputText"][1]["signature"] = "(const char*,char*,size_t,ImGuiInputTextFlags,ImGuiInputTextCallback,void*)" -defs["igInputText"][1]["stname"] = "ImGui" +defs["igInputText"][1]["stname"] = "" defs["igInputText"]["(const char*,char*,size_t,ImGuiInputTextFlags,ImGuiInputTextCallback,void*)"] = defs["igInputText"][1] defs["igInputTextMultiline"] = {} defs["igInputTextMultiline"][1] = {} @@ -9121,19 +9684,21 @@ defs["igInputTextMultiline"][1]["argsT"][6]["type"] = "ImGuiInputTextCallback" defs["igInputTextMultiline"][1]["argsT"][7] = {} defs["igInputTextMultiline"][1]["argsT"][7]["name"] = "user_data" defs["igInputTextMultiline"][1]["argsT"][7]["type"] = "void*" -defs["igInputTextMultiline"][1]["argsoriginal"] = "(const char* label,char* buf,size_t buf_size,const ImVec2& size=ImVec2(0,0),ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void *)0),void* user_data=((void *)0))" +defs["igInputTextMultiline"][1]["argsoriginal"] = "(const char* label,char* buf,size_t buf_size,const ImVec2& size=ImVec2(0,0),ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void*)0),void* user_data=((void*)0))" defs["igInputTextMultiline"][1]["call_args"] = "(label,buf,buf_size,size,flags,callback,user_data)" defs["igInputTextMultiline"][1]["cimguiname"] = "igInputTextMultiline" defs["igInputTextMultiline"][1]["comment"] = "" defs["igInputTextMultiline"][1]["defaults"] = {} -defs["igInputTextMultiline"][1]["defaults"]["callback"] = "((void *)0)" +defs["igInputTextMultiline"][1]["defaults"]["callback"] = "((void*)0)" defs["igInputTextMultiline"][1]["defaults"]["flags"] = "0" defs["igInputTextMultiline"][1]["defaults"]["size"] = "ImVec2(0,0)" -defs["igInputTextMultiline"][1]["defaults"]["user_data"] = "((void *)0)" +defs["igInputTextMultiline"][1]["defaults"]["user_data"] = "((void*)0)" defs["igInputTextMultiline"][1]["funcname"] = "InputTextMultiline" +defs["igInputTextMultiline"][1]["namespace"] = "ImGui" +defs["igInputTextMultiline"][1]["ov_cimguiname"] = "igInputTextMultiline" defs["igInputTextMultiline"][1]["ret"] = "bool" defs["igInputTextMultiline"][1]["signature"] = "(const char*,char*,size_t,const ImVec2,ImGuiInputTextFlags,ImGuiInputTextCallback,void*)" -defs["igInputTextMultiline"][1]["stname"] = "ImGui" +defs["igInputTextMultiline"][1]["stname"] = "" defs["igInputTextMultiline"]["(const char*,char*,size_t,const ImVec2,ImGuiInputTextFlags,ImGuiInputTextCallback,void*)"] = defs["igInputTextMultiline"][1] defs["igInvisibleButton"] = {} defs["igInvisibleButton"][1] = {} @@ -9151,9 +9716,11 @@ defs["igInvisibleButton"][1]["cimguiname"] = "igInvisibleButton" defs["igInvisibleButton"][1]["comment"] = "" defs["igInvisibleButton"][1]["defaults"] = {} defs["igInvisibleButton"][1]["funcname"] = "InvisibleButton" +defs["igInvisibleButton"][1]["namespace"] = "ImGui" +defs["igInvisibleButton"][1]["ov_cimguiname"] = "igInvisibleButton" defs["igInvisibleButton"][1]["ret"] = "bool" defs["igInvisibleButton"][1]["signature"] = "(const char*,const ImVec2)" -defs["igInvisibleButton"][1]["stname"] = "ImGui" +defs["igInvisibleButton"][1]["stname"] = "" defs["igInvisibleButton"]["(const char*,const ImVec2)"] = defs["igInvisibleButton"][1] defs["igIsAnyItemActive"] = {} defs["igIsAnyItemActive"][1] = {} @@ -9165,9 +9732,11 @@ defs["igIsAnyItemActive"][1]["cimguiname"] = "igIsAnyItemActive" defs["igIsAnyItemActive"][1]["comment"] = "" defs["igIsAnyItemActive"][1]["defaults"] = {} defs["igIsAnyItemActive"][1]["funcname"] = "IsAnyItemActive" +defs["igIsAnyItemActive"][1]["namespace"] = "ImGui" +defs["igIsAnyItemActive"][1]["ov_cimguiname"] = "igIsAnyItemActive" defs["igIsAnyItemActive"][1]["ret"] = "bool" defs["igIsAnyItemActive"][1]["signature"] = "()" -defs["igIsAnyItemActive"][1]["stname"] = "ImGui" +defs["igIsAnyItemActive"][1]["stname"] = "" defs["igIsAnyItemActive"]["()"] = defs["igIsAnyItemActive"][1] defs["igIsAnyItemFocused"] = {} defs["igIsAnyItemFocused"][1] = {} @@ -9179,9 +9748,11 @@ defs["igIsAnyItemFocused"][1]["cimguiname"] = "igIsAnyItemFocused" defs["igIsAnyItemFocused"][1]["comment"] = "" defs["igIsAnyItemFocused"][1]["defaults"] = {} defs["igIsAnyItemFocused"][1]["funcname"] = "IsAnyItemFocused" +defs["igIsAnyItemFocused"][1]["namespace"] = "ImGui" +defs["igIsAnyItemFocused"][1]["ov_cimguiname"] = "igIsAnyItemFocused" defs["igIsAnyItemFocused"][1]["ret"] = "bool" defs["igIsAnyItemFocused"][1]["signature"] = "()" -defs["igIsAnyItemFocused"][1]["stname"] = "ImGui" +defs["igIsAnyItemFocused"][1]["stname"] = "" defs["igIsAnyItemFocused"]["()"] = defs["igIsAnyItemFocused"][1] defs["igIsAnyItemHovered"] = {} defs["igIsAnyItemHovered"][1] = {} @@ -9193,9 +9764,11 @@ defs["igIsAnyItemHovered"][1]["cimguiname"] = "igIsAnyItemHovered" defs["igIsAnyItemHovered"][1]["comment"] = "" defs["igIsAnyItemHovered"][1]["defaults"] = {} defs["igIsAnyItemHovered"][1]["funcname"] = "IsAnyItemHovered" +defs["igIsAnyItemHovered"][1]["namespace"] = "ImGui" +defs["igIsAnyItemHovered"][1]["ov_cimguiname"] = "igIsAnyItemHovered" defs["igIsAnyItemHovered"][1]["ret"] = "bool" defs["igIsAnyItemHovered"][1]["signature"] = "()" -defs["igIsAnyItemHovered"][1]["stname"] = "ImGui" +defs["igIsAnyItemHovered"][1]["stname"] = "" defs["igIsAnyItemHovered"]["()"] = defs["igIsAnyItemHovered"][1] defs["igIsAnyMouseDown"] = {} defs["igIsAnyMouseDown"][1] = {} @@ -9207,9 +9780,11 @@ defs["igIsAnyMouseDown"][1]["cimguiname"] = "igIsAnyMouseDown" defs["igIsAnyMouseDown"][1]["comment"] = "" defs["igIsAnyMouseDown"][1]["defaults"] = {} defs["igIsAnyMouseDown"][1]["funcname"] = "IsAnyMouseDown" +defs["igIsAnyMouseDown"][1]["namespace"] = "ImGui" +defs["igIsAnyMouseDown"][1]["ov_cimguiname"] = "igIsAnyMouseDown" defs["igIsAnyMouseDown"][1]["ret"] = "bool" defs["igIsAnyMouseDown"][1]["signature"] = "()" -defs["igIsAnyMouseDown"][1]["stname"] = "ImGui" +defs["igIsAnyMouseDown"][1]["stname"] = "" defs["igIsAnyMouseDown"]["()"] = defs["igIsAnyMouseDown"][1] defs["igIsItemActive"] = {} defs["igIsItemActive"][1] = {} @@ -9221,9 +9796,11 @@ defs["igIsItemActive"][1]["cimguiname"] = "igIsItemActive" defs["igIsItemActive"][1]["comment"] = "" defs["igIsItemActive"][1]["defaults"] = {} defs["igIsItemActive"][1]["funcname"] = "IsItemActive" +defs["igIsItemActive"][1]["namespace"] = "ImGui" +defs["igIsItemActive"][1]["ov_cimguiname"] = "igIsItemActive" defs["igIsItemActive"][1]["ret"] = "bool" defs["igIsItemActive"][1]["signature"] = "()" -defs["igIsItemActive"][1]["stname"] = "ImGui" +defs["igIsItemActive"][1]["stname"] = "" defs["igIsItemActive"]["()"] = defs["igIsItemActive"][1] defs["igIsItemClicked"] = {} defs["igIsItemClicked"][1] = {} @@ -9239,9 +9816,11 @@ defs["igIsItemClicked"][1]["comment"] = "" defs["igIsItemClicked"][1]["defaults"] = {} defs["igIsItemClicked"][1]["defaults"]["mouse_button"] = "0" defs["igIsItemClicked"][1]["funcname"] = "IsItemClicked" +defs["igIsItemClicked"][1]["namespace"] = "ImGui" +defs["igIsItemClicked"][1]["ov_cimguiname"] = "igIsItemClicked" defs["igIsItemClicked"][1]["ret"] = "bool" defs["igIsItemClicked"][1]["signature"] = "(int)" -defs["igIsItemClicked"][1]["stname"] = "ImGui" +defs["igIsItemClicked"][1]["stname"] = "" defs["igIsItemClicked"]["(int)"] = defs["igIsItemClicked"][1] defs["igIsItemDeactivated"] = {} defs["igIsItemDeactivated"][1] = {} @@ -9253,9 +9832,11 @@ defs["igIsItemDeactivated"][1]["cimguiname"] = "igIsItemDeactivated" defs["igIsItemDeactivated"][1]["comment"] = "" defs["igIsItemDeactivated"][1]["defaults"] = {} defs["igIsItemDeactivated"][1]["funcname"] = "IsItemDeactivated" +defs["igIsItemDeactivated"][1]["namespace"] = "ImGui" +defs["igIsItemDeactivated"][1]["ov_cimguiname"] = "igIsItemDeactivated" defs["igIsItemDeactivated"][1]["ret"] = "bool" defs["igIsItemDeactivated"][1]["signature"] = "()" -defs["igIsItemDeactivated"][1]["stname"] = "ImGui" +defs["igIsItemDeactivated"][1]["stname"] = "" defs["igIsItemDeactivated"]["()"] = defs["igIsItemDeactivated"][1] defs["igIsItemDeactivatedAfterEdit"] = {} defs["igIsItemDeactivatedAfterEdit"][1] = {} @@ -9267,9 +9848,11 @@ defs["igIsItemDeactivatedAfterEdit"][1]["cimguiname"] = "igIsItemDeactivatedAfte defs["igIsItemDeactivatedAfterEdit"][1]["comment"] = "" defs["igIsItemDeactivatedAfterEdit"][1]["defaults"] = {} defs["igIsItemDeactivatedAfterEdit"][1]["funcname"] = "IsItemDeactivatedAfterEdit" +defs["igIsItemDeactivatedAfterEdit"][1]["namespace"] = "ImGui" +defs["igIsItemDeactivatedAfterEdit"][1]["ov_cimguiname"] = "igIsItemDeactivatedAfterEdit" defs["igIsItemDeactivatedAfterEdit"][1]["ret"] = "bool" defs["igIsItemDeactivatedAfterEdit"][1]["signature"] = "()" -defs["igIsItemDeactivatedAfterEdit"][1]["stname"] = "ImGui" +defs["igIsItemDeactivatedAfterEdit"][1]["stname"] = "" defs["igIsItemDeactivatedAfterEdit"]["()"] = defs["igIsItemDeactivatedAfterEdit"][1] defs["igIsItemEdited"] = {} defs["igIsItemEdited"][1] = {} @@ -9281,9 +9864,11 @@ defs["igIsItemEdited"][1]["cimguiname"] = "igIsItemEdited" defs["igIsItemEdited"][1]["comment"] = "" defs["igIsItemEdited"][1]["defaults"] = {} defs["igIsItemEdited"][1]["funcname"] = "IsItemEdited" +defs["igIsItemEdited"][1]["namespace"] = "ImGui" +defs["igIsItemEdited"][1]["ov_cimguiname"] = "igIsItemEdited" defs["igIsItemEdited"][1]["ret"] = "bool" defs["igIsItemEdited"][1]["signature"] = "()" -defs["igIsItemEdited"][1]["stname"] = "ImGui" +defs["igIsItemEdited"][1]["stname"] = "" defs["igIsItemEdited"]["()"] = defs["igIsItemEdited"][1] defs["igIsItemFocused"] = {} defs["igIsItemFocused"][1] = {} @@ -9295,9 +9880,11 @@ defs["igIsItemFocused"][1]["cimguiname"] = "igIsItemFocused" defs["igIsItemFocused"][1]["comment"] = "" defs["igIsItemFocused"][1]["defaults"] = {} defs["igIsItemFocused"][1]["funcname"] = "IsItemFocused" +defs["igIsItemFocused"][1]["namespace"] = "ImGui" +defs["igIsItemFocused"][1]["ov_cimguiname"] = "igIsItemFocused" defs["igIsItemFocused"][1]["ret"] = "bool" defs["igIsItemFocused"][1]["signature"] = "()" -defs["igIsItemFocused"][1]["stname"] = "ImGui" +defs["igIsItemFocused"][1]["stname"] = "" defs["igIsItemFocused"]["()"] = defs["igIsItemFocused"][1] defs["igIsItemHovered"] = {} defs["igIsItemHovered"][1] = {} @@ -9313,9 +9900,11 @@ defs["igIsItemHovered"][1]["comment"] = "" defs["igIsItemHovered"][1]["defaults"] = {} defs["igIsItemHovered"][1]["defaults"]["flags"] = "0" defs["igIsItemHovered"][1]["funcname"] = "IsItemHovered" +defs["igIsItemHovered"][1]["namespace"] = "ImGui" +defs["igIsItemHovered"][1]["ov_cimguiname"] = "igIsItemHovered" defs["igIsItemHovered"][1]["ret"] = "bool" defs["igIsItemHovered"][1]["signature"] = "(ImGuiHoveredFlags)" -defs["igIsItemHovered"][1]["stname"] = "ImGui" +defs["igIsItemHovered"][1]["stname"] = "" defs["igIsItemHovered"]["(ImGuiHoveredFlags)"] = defs["igIsItemHovered"][1] defs["igIsItemVisible"] = {} defs["igIsItemVisible"][1] = {} @@ -9327,9 +9916,11 @@ defs["igIsItemVisible"][1]["cimguiname"] = "igIsItemVisible" defs["igIsItemVisible"][1]["comment"] = "" defs["igIsItemVisible"][1]["defaults"] = {} defs["igIsItemVisible"][1]["funcname"] = "IsItemVisible" +defs["igIsItemVisible"][1]["namespace"] = "ImGui" +defs["igIsItemVisible"][1]["ov_cimguiname"] = "igIsItemVisible" defs["igIsItemVisible"][1]["ret"] = "bool" defs["igIsItemVisible"][1]["signature"] = "()" -defs["igIsItemVisible"][1]["stname"] = "ImGui" +defs["igIsItemVisible"][1]["stname"] = "" defs["igIsItemVisible"]["()"] = defs["igIsItemVisible"][1] defs["igIsKeyDown"] = {} defs["igIsKeyDown"][1] = {} @@ -9344,9 +9935,11 @@ defs["igIsKeyDown"][1]["cimguiname"] = "igIsKeyDown" defs["igIsKeyDown"][1]["comment"] = "" defs["igIsKeyDown"][1]["defaults"] = {} defs["igIsKeyDown"][1]["funcname"] = "IsKeyDown" +defs["igIsKeyDown"][1]["namespace"] = "ImGui" +defs["igIsKeyDown"][1]["ov_cimguiname"] = "igIsKeyDown" defs["igIsKeyDown"][1]["ret"] = "bool" defs["igIsKeyDown"][1]["signature"] = "(int)" -defs["igIsKeyDown"][1]["stname"] = "ImGui" +defs["igIsKeyDown"][1]["stname"] = "" defs["igIsKeyDown"]["(int)"] = defs["igIsKeyDown"][1] defs["igIsKeyPressed"] = {} defs["igIsKeyPressed"][1] = {} @@ -9365,9 +9958,11 @@ defs["igIsKeyPressed"][1]["comment"] = "" defs["igIsKeyPressed"][1]["defaults"] = {} defs["igIsKeyPressed"][1]["defaults"]["repeat"] = "true" defs["igIsKeyPressed"][1]["funcname"] = "IsKeyPressed" +defs["igIsKeyPressed"][1]["namespace"] = "ImGui" +defs["igIsKeyPressed"][1]["ov_cimguiname"] = "igIsKeyPressed" defs["igIsKeyPressed"][1]["ret"] = "bool" defs["igIsKeyPressed"][1]["signature"] = "(int,bool)" -defs["igIsKeyPressed"][1]["stname"] = "ImGui" +defs["igIsKeyPressed"][1]["stname"] = "" defs["igIsKeyPressed"]["(int,bool)"] = defs["igIsKeyPressed"][1] defs["igIsKeyReleased"] = {} defs["igIsKeyReleased"][1] = {} @@ -9382,9 +9977,11 @@ defs["igIsKeyReleased"][1]["cimguiname"] = "igIsKeyReleased" defs["igIsKeyReleased"][1]["comment"] = "" defs["igIsKeyReleased"][1]["defaults"] = {} defs["igIsKeyReleased"][1]["funcname"] = "IsKeyReleased" +defs["igIsKeyReleased"][1]["namespace"] = "ImGui" +defs["igIsKeyReleased"][1]["ov_cimguiname"] = "igIsKeyReleased" defs["igIsKeyReleased"][1]["ret"] = "bool" defs["igIsKeyReleased"][1]["signature"] = "(int)" -defs["igIsKeyReleased"][1]["stname"] = "ImGui" +defs["igIsKeyReleased"][1]["stname"] = "" defs["igIsKeyReleased"]["(int)"] = defs["igIsKeyReleased"][1] defs["igIsMouseClicked"] = {} defs["igIsMouseClicked"][1] = {} @@ -9403,9 +10000,11 @@ defs["igIsMouseClicked"][1]["comment"] = "" defs["igIsMouseClicked"][1]["defaults"] = {} defs["igIsMouseClicked"][1]["defaults"]["repeat"] = "false" defs["igIsMouseClicked"][1]["funcname"] = "IsMouseClicked" +defs["igIsMouseClicked"][1]["namespace"] = "ImGui" +defs["igIsMouseClicked"][1]["ov_cimguiname"] = "igIsMouseClicked" defs["igIsMouseClicked"][1]["ret"] = "bool" defs["igIsMouseClicked"][1]["signature"] = "(int,bool)" -defs["igIsMouseClicked"][1]["stname"] = "ImGui" +defs["igIsMouseClicked"][1]["stname"] = "" defs["igIsMouseClicked"]["(int,bool)"] = defs["igIsMouseClicked"][1] defs["igIsMouseDoubleClicked"] = {} defs["igIsMouseDoubleClicked"][1] = {} @@ -9420,9 +10019,11 @@ defs["igIsMouseDoubleClicked"][1]["cimguiname"] = "igIsMouseDoubleClicked" defs["igIsMouseDoubleClicked"][1]["comment"] = "" defs["igIsMouseDoubleClicked"][1]["defaults"] = {} defs["igIsMouseDoubleClicked"][1]["funcname"] = "IsMouseDoubleClicked" +defs["igIsMouseDoubleClicked"][1]["namespace"] = "ImGui" +defs["igIsMouseDoubleClicked"][1]["ov_cimguiname"] = "igIsMouseDoubleClicked" defs["igIsMouseDoubleClicked"][1]["ret"] = "bool" defs["igIsMouseDoubleClicked"][1]["signature"] = "(int)" -defs["igIsMouseDoubleClicked"][1]["stname"] = "ImGui" +defs["igIsMouseDoubleClicked"][1]["stname"] = "" defs["igIsMouseDoubleClicked"]["(int)"] = defs["igIsMouseDoubleClicked"][1] defs["igIsMouseDown"] = {} defs["igIsMouseDown"][1] = {} @@ -9437,9 +10038,11 @@ defs["igIsMouseDown"][1]["cimguiname"] = "igIsMouseDown" defs["igIsMouseDown"][1]["comment"] = "" defs["igIsMouseDown"][1]["defaults"] = {} defs["igIsMouseDown"][1]["funcname"] = "IsMouseDown" +defs["igIsMouseDown"][1]["namespace"] = "ImGui" +defs["igIsMouseDown"][1]["ov_cimguiname"] = "igIsMouseDown" defs["igIsMouseDown"][1]["ret"] = "bool" defs["igIsMouseDown"][1]["signature"] = "(int)" -defs["igIsMouseDown"][1]["stname"] = "ImGui" +defs["igIsMouseDown"][1]["stname"] = "" defs["igIsMouseDown"]["(int)"] = defs["igIsMouseDown"][1] defs["igIsMouseDragging"] = {} defs["igIsMouseDragging"][1] = {} @@ -9459,9 +10062,11 @@ defs["igIsMouseDragging"][1]["defaults"] = {} defs["igIsMouseDragging"][1]["defaults"]["button"] = "0" defs["igIsMouseDragging"][1]["defaults"]["lock_threshold"] = "-1.0f" defs["igIsMouseDragging"][1]["funcname"] = "IsMouseDragging" +defs["igIsMouseDragging"][1]["namespace"] = "ImGui" +defs["igIsMouseDragging"][1]["ov_cimguiname"] = "igIsMouseDragging" defs["igIsMouseDragging"][1]["ret"] = "bool" defs["igIsMouseDragging"][1]["signature"] = "(int,float)" -defs["igIsMouseDragging"][1]["stname"] = "ImGui" +defs["igIsMouseDragging"][1]["stname"] = "" defs["igIsMouseDragging"]["(int,float)"] = defs["igIsMouseDragging"][1] defs["igIsMouseHoveringRect"] = {} defs["igIsMouseHoveringRect"][1] = {} @@ -9483,9 +10088,11 @@ defs["igIsMouseHoveringRect"][1]["comment"] = "" defs["igIsMouseHoveringRect"][1]["defaults"] = {} defs["igIsMouseHoveringRect"][1]["defaults"]["clip"] = "true" defs["igIsMouseHoveringRect"][1]["funcname"] = "IsMouseHoveringRect" +defs["igIsMouseHoveringRect"][1]["namespace"] = "ImGui" +defs["igIsMouseHoveringRect"][1]["ov_cimguiname"] = "igIsMouseHoveringRect" defs["igIsMouseHoveringRect"][1]["ret"] = "bool" defs["igIsMouseHoveringRect"][1]["signature"] = "(const ImVec2,const ImVec2,bool)" -defs["igIsMouseHoveringRect"][1]["stname"] = "ImGui" +defs["igIsMouseHoveringRect"][1]["stname"] = "" defs["igIsMouseHoveringRect"]["(const ImVec2,const ImVec2,bool)"] = defs["igIsMouseHoveringRect"][1] defs["igIsMousePosValid"] = {} defs["igIsMousePosValid"][1] = {} @@ -9494,16 +10101,18 @@ defs["igIsMousePosValid"][1]["argsT"] = {} defs["igIsMousePosValid"][1]["argsT"][1] = {} defs["igIsMousePosValid"][1]["argsT"][1]["name"] = "mouse_pos" defs["igIsMousePosValid"][1]["argsT"][1]["type"] = "const ImVec2*" -defs["igIsMousePosValid"][1]["argsoriginal"] = "(const ImVec2* mouse_pos=((void *)0))" +defs["igIsMousePosValid"][1]["argsoriginal"] = "(const ImVec2* mouse_pos=((void*)0))" defs["igIsMousePosValid"][1]["call_args"] = "(mouse_pos)" defs["igIsMousePosValid"][1]["cimguiname"] = "igIsMousePosValid" defs["igIsMousePosValid"][1]["comment"] = "" defs["igIsMousePosValid"][1]["defaults"] = {} -defs["igIsMousePosValid"][1]["defaults"]["mouse_pos"] = "((void *)0)" +defs["igIsMousePosValid"][1]["defaults"]["mouse_pos"] = "((void*)0)" defs["igIsMousePosValid"][1]["funcname"] = "IsMousePosValid" +defs["igIsMousePosValid"][1]["namespace"] = "ImGui" +defs["igIsMousePosValid"][1]["ov_cimguiname"] = "igIsMousePosValid" defs["igIsMousePosValid"][1]["ret"] = "bool" defs["igIsMousePosValid"][1]["signature"] = "(const ImVec2*)" -defs["igIsMousePosValid"][1]["stname"] = "ImGui" +defs["igIsMousePosValid"][1]["stname"] = "" defs["igIsMousePosValid"]["(const ImVec2*)"] = defs["igIsMousePosValid"][1] defs["igIsMouseReleased"] = {} defs["igIsMouseReleased"][1] = {} @@ -9518,9 +10127,11 @@ defs["igIsMouseReleased"][1]["cimguiname"] = "igIsMouseReleased" defs["igIsMouseReleased"][1]["comment"] = "" defs["igIsMouseReleased"][1]["defaults"] = {} defs["igIsMouseReleased"][1]["funcname"] = "IsMouseReleased" +defs["igIsMouseReleased"][1]["namespace"] = "ImGui" +defs["igIsMouseReleased"][1]["ov_cimguiname"] = "igIsMouseReleased" defs["igIsMouseReleased"][1]["ret"] = "bool" defs["igIsMouseReleased"][1]["signature"] = "(int)" -defs["igIsMouseReleased"][1]["stname"] = "ImGui" +defs["igIsMouseReleased"][1]["stname"] = "" defs["igIsMouseReleased"]["(int)"] = defs["igIsMouseReleased"][1] defs["igIsPopupOpen"] = {} defs["igIsPopupOpen"][1] = {} @@ -9535,9 +10146,11 @@ defs["igIsPopupOpen"][1]["cimguiname"] = "igIsPopupOpen" defs["igIsPopupOpen"][1]["comment"] = "" defs["igIsPopupOpen"][1]["defaults"] = {} defs["igIsPopupOpen"][1]["funcname"] = "IsPopupOpen" +defs["igIsPopupOpen"][1]["namespace"] = "ImGui" +defs["igIsPopupOpen"][1]["ov_cimguiname"] = "igIsPopupOpen" defs["igIsPopupOpen"][1]["ret"] = "bool" defs["igIsPopupOpen"][1]["signature"] = "(const char*)" -defs["igIsPopupOpen"][1]["stname"] = "ImGui" +defs["igIsPopupOpen"][1]["stname"] = "" defs["igIsPopupOpen"]["(const char*)"] = defs["igIsPopupOpen"][1] defs["igIsRectVisible"] = {} defs["igIsRectVisible"][1] = {} @@ -9552,10 +10165,11 @@ defs["igIsRectVisible"][1]["cimguiname"] = "igIsRectVisible" defs["igIsRectVisible"][1]["comment"] = "" defs["igIsRectVisible"][1]["defaults"] = {} defs["igIsRectVisible"][1]["funcname"] = "IsRectVisible" +defs["igIsRectVisible"][1]["namespace"] = "ImGui" defs["igIsRectVisible"][1]["ov_cimguiname"] = "igIsRectVisible" defs["igIsRectVisible"][1]["ret"] = "bool" defs["igIsRectVisible"][1]["signature"] = "(const ImVec2)" -defs["igIsRectVisible"][1]["stname"] = "ImGui" +defs["igIsRectVisible"][1]["stname"] = "" defs["igIsRectVisible"][2] = {} defs["igIsRectVisible"][2]["args"] = "(const ImVec2 rect_min,const ImVec2 rect_max)" defs["igIsRectVisible"][2]["argsT"] = {} @@ -9571,10 +10185,11 @@ defs["igIsRectVisible"][2]["cimguiname"] = "igIsRectVisible" defs["igIsRectVisible"][2]["comment"] = "" defs["igIsRectVisible"][2]["defaults"] = {} defs["igIsRectVisible"][2]["funcname"] = "IsRectVisible" +defs["igIsRectVisible"][2]["namespace"] = "ImGui" defs["igIsRectVisible"][2]["ov_cimguiname"] = "igIsRectVisibleVec2" defs["igIsRectVisible"][2]["ret"] = "bool" defs["igIsRectVisible"][2]["signature"] = "(const ImVec2,const ImVec2)" -defs["igIsRectVisible"][2]["stname"] = "ImGui" +defs["igIsRectVisible"][2]["stname"] = "" defs["igIsRectVisible"]["(const ImVec2)"] = defs["igIsRectVisible"][1] defs["igIsRectVisible"]["(const ImVec2,const ImVec2)"] = defs["igIsRectVisible"][2] defs["igIsWindowAppearing"] = {} @@ -9587,9 +10202,11 @@ defs["igIsWindowAppearing"][1]["cimguiname"] = "igIsWindowAppearing" defs["igIsWindowAppearing"][1]["comment"] = "" defs["igIsWindowAppearing"][1]["defaults"] = {} defs["igIsWindowAppearing"][1]["funcname"] = "IsWindowAppearing" +defs["igIsWindowAppearing"][1]["namespace"] = "ImGui" +defs["igIsWindowAppearing"][1]["ov_cimguiname"] = "igIsWindowAppearing" defs["igIsWindowAppearing"][1]["ret"] = "bool" defs["igIsWindowAppearing"][1]["signature"] = "()" -defs["igIsWindowAppearing"][1]["stname"] = "ImGui" +defs["igIsWindowAppearing"][1]["stname"] = "" defs["igIsWindowAppearing"]["()"] = defs["igIsWindowAppearing"][1] defs["igIsWindowCollapsed"] = {} defs["igIsWindowCollapsed"][1] = {} @@ -9601,9 +10218,11 @@ defs["igIsWindowCollapsed"][1]["cimguiname"] = "igIsWindowCollapsed" defs["igIsWindowCollapsed"][1]["comment"] = "" defs["igIsWindowCollapsed"][1]["defaults"] = {} defs["igIsWindowCollapsed"][1]["funcname"] = "IsWindowCollapsed" +defs["igIsWindowCollapsed"][1]["namespace"] = "ImGui" +defs["igIsWindowCollapsed"][1]["ov_cimguiname"] = "igIsWindowCollapsed" defs["igIsWindowCollapsed"][1]["ret"] = "bool" defs["igIsWindowCollapsed"][1]["signature"] = "()" -defs["igIsWindowCollapsed"][1]["stname"] = "ImGui" +defs["igIsWindowCollapsed"][1]["stname"] = "" defs["igIsWindowCollapsed"]["()"] = defs["igIsWindowCollapsed"][1] defs["igIsWindowFocused"] = {} defs["igIsWindowFocused"][1] = {} @@ -9619,9 +10238,11 @@ defs["igIsWindowFocused"][1]["comment"] = "" defs["igIsWindowFocused"][1]["defaults"] = {} defs["igIsWindowFocused"][1]["defaults"]["flags"] = "0" defs["igIsWindowFocused"][1]["funcname"] = "IsWindowFocused" +defs["igIsWindowFocused"][1]["namespace"] = "ImGui" +defs["igIsWindowFocused"][1]["ov_cimguiname"] = "igIsWindowFocused" defs["igIsWindowFocused"][1]["ret"] = "bool" defs["igIsWindowFocused"][1]["signature"] = "(ImGuiFocusedFlags)" -defs["igIsWindowFocused"][1]["stname"] = "ImGui" +defs["igIsWindowFocused"][1]["stname"] = "" defs["igIsWindowFocused"]["(ImGuiFocusedFlags)"] = defs["igIsWindowFocused"][1] defs["igIsWindowHovered"] = {} defs["igIsWindowHovered"][1] = {} @@ -9637,9 +10258,11 @@ defs["igIsWindowHovered"][1]["comment"] = "" defs["igIsWindowHovered"][1]["defaults"] = {} defs["igIsWindowHovered"][1]["defaults"]["flags"] = "0" defs["igIsWindowHovered"][1]["funcname"] = "IsWindowHovered" +defs["igIsWindowHovered"][1]["namespace"] = "ImGui" +defs["igIsWindowHovered"][1]["ov_cimguiname"] = "igIsWindowHovered" defs["igIsWindowHovered"][1]["ret"] = "bool" defs["igIsWindowHovered"][1]["signature"] = "(ImGuiHoveredFlags)" -defs["igIsWindowHovered"][1]["stname"] = "ImGui" +defs["igIsWindowHovered"][1]["stname"] = "" defs["igIsWindowHovered"]["(ImGuiHoveredFlags)"] = defs["igIsWindowHovered"][1] defs["igLabelText"] = {} defs["igLabelText"][1] = {} @@ -9661,9 +10284,11 @@ defs["igLabelText"][1]["comment"] = "" defs["igLabelText"][1]["defaults"] = {} defs["igLabelText"][1]["funcname"] = "LabelText" defs["igLabelText"][1]["isvararg"] = "...)" +defs["igLabelText"][1]["namespace"] = "ImGui" +defs["igLabelText"][1]["ov_cimguiname"] = "igLabelText" defs["igLabelText"][1]["ret"] = "void" defs["igLabelText"][1]["signature"] = "(const char*,const char*,...)" -defs["igLabelText"][1]["stname"] = "ImGui" +defs["igLabelText"][1]["stname"] = "" defs["igLabelText"]["(const char*,const char*,...)"] = defs["igLabelText"][1] defs["igLabelTextV"] = {} defs["igLabelTextV"][1] = {} @@ -9684,9 +10309,11 @@ defs["igLabelTextV"][1]["cimguiname"] = "igLabelTextV" defs["igLabelTextV"][1]["comment"] = "" defs["igLabelTextV"][1]["defaults"] = {} defs["igLabelTextV"][1]["funcname"] = "LabelTextV" +defs["igLabelTextV"][1]["namespace"] = "ImGui" +defs["igLabelTextV"][1]["ov_cimguiname"] = "igLabelTextV" defs["igLabelTextV"][1]["ret"] = "void" defs["igLabelTextV"][1]["signature"] = "(const char*,const char*,va_list)" -defs["igLabelTextV"][1]["stname"] = "ImGui" +defs["igLabelTextV"][1]["stname"] = "" defs["igLabelTextV"]["(const char*,const char*,va_list)"] = defs["igLabelTextV"][1] defs["igListBox"] = {} defs["igListBox"][1] = {} @@ -9714,10 +10341,11 @@ defs["igListBox"][1]["comment"] = "" defs["igListBox"][1]["defaults"] = {} defs["igListBox"][1]["defaults"]["height_in_items"] = "-1" defs["igListBox"][1]["funcname"] = "ListBox" +defs["igListBox"][1]["namespace"] = "ImGui" defs["igListBox"][1]["ov_cimguiname"] = "igListBoxStr_arr" defs["igListBox"][1]["ret"] = "bool" defs["igListBox"][1]["signature"] = "(const char*,int*,const char* const[],int,int)" -defs["igListBox"][1]["stname"] = "ImGui" +defs["igListBox"][1]["stname"] = "" defs["igListBox"][2] = {} defs["igListBox"][2]["args"] = "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items)" defs["igListBox"][2]["argsT"] = {} @@ -9748,10 +10376,11 @@ defs["igListBox"][2]["comment"] = "" defs["igListBox"][2]["defaults"] = {} defs["igListBox"][2]["defaults"]["height_in_items"] = "-1" defs["igListBox"][2]["funcname"] = "ListBox" +defs["igListBox"][2]["namespace"] = "ImGui" defs["igListBox"][2]["ov_cimguiname"] = "igListBoxFnPtr" defs["igListBox"][2]["ret"] = "bool" defs["igListBox"][2]["signature"] = "(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)" -defs["igListBox"][2]["stname"] = "ImGui" +defs["igListBox"][2]["stname"] = "" defs["igListBox"]["(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)"] = defs["igListBox"][2] defs["igListBox"]["(const char*,int*,const char* const[],int,int)"] = defs["igListBox"][1] defs["igListBoxFooter"] = {} @@ -9764,9 +10393,11 @@ defs["igListBoxFooter"][1]["cimguiname"] = "igListBoxFooter" defs["igListBoxFooter"][1]["comment"] = "" defs["igListBoxFooter"][1]["defaults"] = {} defs["igListBoxFooter"][1]["funcname"] = "ListBoxFooter" +defs["igListBoxFooter"][1]["namespace"] = "ImGui" +defs["igListBoxFooter"][1]["ov_cimguiname"] = "igListBoxFooter" defs["igListBoxFooter"][1]["ret"] = "void" defs["igListBoxFooter"][1]["signature"] = "()" -defs["igListBoxFooter"][1]["stname"] = "ImGui" +defs["igListBoxFooter"][1]["stname"] = "" defs["igListBoxFooter"]["()"] = defs["igListBoxFooter"][1] defs["igListBoxHeader"] = {} defs["igListBoxHeader"][1] = {} @@ -9785,10 +10416,11 @@ defs["igListBoxHeader"][1]["comment"] = "" defs["igListBoxHeader"][1]["defaults"] = {} defs["igListBoxHeader"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igListBoxHeader"][1]["funcname"] = "ListBoxHeader" +defs["igListBoxHeader"][1]["namespace"] = "ImGui" defs["igListBoxHeader"][1]["ov_cimguiname"] = "igListBoxHeaderVec2" defs["igListBoxHeader"][1]["ret"] = "bool" defs["igListBoxHeader"][1]["signature"] = "(const char*,const ImVec2)" -defs["igListBoxHeader"][1]["stname"] = "ImGui" +defs["igListBoxHeader"][1]["stname"] = "" defs["igListBoxHeader"][2] = {} defs["igListBoxHeader"][2]["args"] = "(const char* label,int items_count,int height_in_items)" defs["igListBoxHeader"][2]["argsT"] = {} @@ -9808,10 +10440,11 @@ defs["igListBoxHeader"][2]["comment"] = "" defs["igListBoxHeader"][2]["defaults"] = {} defs["igListBoxHeader"][2]["defaults"]["height_in_items"] = "-1" defs["igListBoxHeader"][2]["funcname"] = "ListBoxHeader" +defs["igListBoxHeader"][2]["namespace"] = "ImGui" defs["igListBoxHeader"][2]["ov_cimguiname"] = "igListBoxHeaderInt" defs["igListBoxHeader"][2]["ret"] = "bool" defs["igListBoxHeader"][2]["signature"] = "(const char*,int,int)" -defs["igListBoxHeader"][2]["stname"] = "ImGui" +defs["igListBoxHeader"][2]["stname"] = "" defs["igListBoxHeader"]["(const char*,const ImVec2)"] = defs["igListBoxHeader"][1] defs["igListBoxHeader"]["(const char*,int,int)"] = defs["igListBoxHeader"][2] defs["igLoadIniSettingsFromDisk"] = {} @@ -9827,9 +10460,11 @@ defs["igLoadIniSettingsFromDisk"][1]["cimguiname"] = "igLoadIniSettingsFromDisk" defs["igLoadIniSettingsFromDisk"][1]["comment"] = "" defs["igLoadIniSettingsFromDisk"][1]["defaults"] = {} defs["igLoadIniSettingsFromDisk"][1]["funcname"] = "LoadIniSettingsFromDisk" +defs["igLoadIniSettingsFromDisk"][1]["namespace"] = "ImGui" +defs["igLoadIniSettingsFromDisk"][1]["ov_cimguiname"] = "igLoadIniSettingsFromDisk" defs["igLoadIniSettingsFromDisk"][1]["ret"] = "void" defs["igLoadIniSettingsFromDisk"][1]["signature"] = "(const char*)" -defs["igLoadIniSettingsFromDisk"][1]["stname"] = "ImGui" +defs["igLoadIniSettingsFromDisk"][1]["stname"] = "" defs["igLoadIniSettingsFromDisk"]["(const char*)"] = defs["igLoadIniSettingsFromDisk"][1] defs["igLoadIniSettingsFromMemory"] = {} defs["igLoadIniSettingsFromMemory"][1] = {} @@ -9848,9 +10483,11 @@ defs["igLoadIniSettingsFromMemory"][1]["comment"] = "" defs["igLoadIniSettingsFromMemory"][1]["defaults"] = {} defs["igLoadIniSettingsFromMemory"][1]["defaults"]["ini_size"] = "0" defs["igLoadIniSettingsFromMemory"][1]["funcname"] = "LoadIniSettingsFromMemory" +defs["igLoadIniSettingsFromMemory"][1]["namespace"] = "ImGui" +defs["igLoadIniSettingsFromMemory"][1]["ov_cimguiname"] = "igLoadIniSettingsFromMemory" defs["igLoadIniSettingsFromMemory"][1]["ret"] = "void" defs["igLoadIniSettingsFromMemory"][1]["signature"] = "(const char*,size_t)" -defs["igLoadIniSettingsFromMemory"][1]["stname"] = "ImGui" +defs["igLoadIniSettingsFromMemory"][1]["stname"] = "" defs["igLoadIniSettingsFromMemory"]["(const char*,size_t)"] = defs["igLoadIniSettingsFromMemory"][1] defs["igLogButtons"] = {} defs["igLogButtons"][1] = {} @@ -9862,9 +10499,11 @@ defs["igLogButtons"][1]["cimguiname"] = "igLogButtons" defs["igLogButtons"][1]["comment"] = "" defs["igLogButtons"][1]["defaults"] = {} defs["igLogButtons"][1]["funcname"] = "LogButtons" +defs["igLogButtons"][1]["namespace"] = "ImGui" +defs["igLogButtons"][1]["ov_cimguiname"] = "igLogButtons" defs["igLogButtons"][1]["ret"] = "void" defs["igLogButtons"][1]["signature"] = "()" -defs["igLogButtons"][1]["stname"] = "ImGui" +defs["igLogButtons"][1]["stname"] = "" defs["igLogButtons"]["()"] = defs["igLogButtons"][1] defs["igLogFinish"] = {} defs["igLogFinish"][1] = {} @@ -9876,9 +10515,11 @@ defs["igLogFinish"][1]["cimguiname"] = "igLogFinish" defs["igLogFinish"][1]["comment"] = "" defs["igLogFinish"][1]["defaults"] = {} defs["igLogFinish"][1]["funcname"] = "LogFinish" +defs["igLogFinish"][1]["namespace"] = "ImGui" +defs["igLogFinish"][1]["ov_cimguiname"] = "igLogFinish" defs["igLogFinish"][1]["ret"] = "void" defs["igLogFinish"][1]["signature"] = "()" -defs["igLogFinish"][1]["stname"] = "ImGui" +defs["igLogFinish"][1]["stname"] = "" defs["igLogFinish"]["()"] = defs["igLogFinish"][1] defs["igLogText"] = {} defs["igLogText"][1] = {} @@ -9898,9 +10539,11 @@ defs["igLogText"][1]["defaults"] = {} defs["igLogText"][1]["funcname"] = "LogText" defs["igLogText"][1]["isvararg"] = "...)" defs["igLogText"][1]["manual"] = true +defs["igLogText"][1]["namespace"] = "ImGui" +defs["igLogText"][1]["ov_cimguiname"] = "igLogText" defs["igLogText"][1]["ret"] = "void" defs["igLogText"][1]["signature"] = "(const char*,...)" -defs["igLogText"][1]["stname"] = "ImGui" +defs["igLogText"][1]["stname"] = "" defs["igLogText"]["(const char*,...)"] = defs["igLogText"][1] defs["igLogToClipboard"] = {} defs["igLogToClipboard"][1] = {} @@ -9916,9 +10559,11 @@ defs["igLogToClipboard"][1]["comment"] = "" defs["igLogToClipboard"][1]["defaults"] = {} defs["igLogToClipboard"][1]["defaults"]["max_depth"] = "-1" defs["igLogToClipboard"][1]["funcname"] = "LogToClipboard" +defs["igLogToClipboard"][1]["namespace"] = "ImGui" +defs["igLogToClipboard"][1]["ov_cimguiname"] = "igLogToClipboard" defs["igLogToClipboard"][1]["ret"] = "void" defs["igLogToClipboard"][1]["signature"] = "(int)" -defs["igLogToClipboard"][1]["stname"] = "ImGui" +defs["igLogToClipboard"][1]["stname"] = "" defs["igLogToClipboard"]["(int)"] = defs["igLogToClipboard"][1] defs["igLogToFile"] = {} defs["igLogToFile"][1] = {} @@ -9930,17 +10575,19 @@ defs["igLogToFile"][1]["argsT"][1]["type"] = "int" defs["igLogToFile"][1]["argsT"][2] = {} defs["igLogToFile"][1]["argsT"][2]["name"] = "filename" defs["igLogToFile"][1]["argsT"][2]["type"] = "const char*" -defs["igLogToFile"][1]["argsoriginal"] = "(int max_depth=-1,const char* filename=((void *)0))" +defs["igLogToFile"][1]["argsoriginal"] = "(int max_depth=-1,const char* filename=((void*)0))" defs["igLogToFile"][1]["call_args"] = "(max_depth,filename)" defs["igLogToFile"][1]["cimguiname"] = "igLogToFile" defs["igLogToFile"][1]["comment"] = "" defs["igLogToFile"][1]["defaults"] = {} -defs["igLogToFile"][1]["defaults"]["filename"] = "((void *)0)" +defs["igLogToFile"][1]["defaults"]["filename"] = "((void*)0)" defs["igLogToFile"][1]["defaults"]["max_depth"] = "-1" defs["igLogToFile"][1]["funcname"] = "LogToFile" +defs["igLogToFile"][1]["namespace"] = "ImGui" +defs["igLogToFile"][1]["ov_cimguiname"] = "igLogToFile" defs["igLogToFile"][1]["ret"] = "void" defs["igLogToFile"][1]["signature"] = "(int,const char*)" -defs["igLogToFile"][1]["stname"] = "ImGui" +defs["igLogToFile"][1]["stname"] = "" defs["igLogToFile"]["(int,const char*)"] = defs["igLogToFile"][1] defs["igLogToTTY"] = {} defs["igLogToTTY"][1] = {} @@ -9956,9 +10603,11 @@ defs["igLogToTTY"][1]["comment"] = "" defs["igLogToTTY"][1]["defaults"] = {} defs["igLogToTTY"][1]["defaults"]["max_depth"] = "-1" defs["igLogToTTY"][1]["funcname"] = "LogToTTY" +defs["igLogToTTY"][1]["namespace"] = "ImGui" +defs["igLogToTTY"][1]["ov_cimguiname"] = "igLogToTTY" defs["igLogToTTY"][1]["ret"] = "void" defs["igLogToTTY"][1]["signature"] = "(int)" -defs["igLogToTTY"][1]["stname"] = "ImGui" +defs["igLogToTTY"][1]["stname"] = "" defs["igLogToTTY"]["(int)"] = defs["igLogToTTY"][1] defs["igMemAlloc"] = {} defs["igMemAlloc"][1] = {} @@ -9973,9 +10622,11 @@ defs["igMemAlloc"][1]["cimguiname"] = "igMemAlloc" defs["igMemAlloc"][1]["comment"] = "" defs["igMemAlloc"][1]["defaults"] = {} defs["igMemAlloc"][1]["funcname"] = "MemAlloc" +defs["igMemAlloc"][1]["namespace"] = "ImGui" +defs["igMemAlloc"][1]["ov_cimguiname"] = "igMemAlloc" defs["igMemAlloc"][1]["ret"] = "void*" defs["igMemAlloc"][1]["signature"] = "(size_t)" -defs["igMemAlloc"][1]["stname"] = "ImGui" +defs["igMemAlloc"][1]["stname"] = "" defs["igMemAlloc"]["(size_t)"] = defs["igMemAlloc"][1] defs["igMemFree"] = {} defs["igMemFree"][1] = {} @@ -9990,9 +10641,11 @@ defs["igMemFree"][1]["cimguiname"] = "igMemFree" defs["igMemFree"][1]["comment"] = "" defs["igMemFree"][1]["defaults"] = {} defs["igMemFree"][1]["funcname"] = "MemFree" +defs["igMemFree"][1]["namespace"] = "ImGui" +defs["igMemFree"][1]["ov_cimguiname"] = "igMemFree" defs["igMemFree"][1]["ret"] = "void" defs["igMemFree"][1]["signature"] = "(void*)" -defs["igMemFree"][1]["stname"] = "ImGui" +defs["igMemFree"][1]["stname"] = "" defs["igMemFree"]["(void*)"] = defs["igMemFree"][1] defs["igMenuItem"] = {} defs["igMenuItem"][1] = {} @@ -10010,19 +10663,20 @@ defs["igMenuItem"][1]["argsT"][3]["type"] = "bool" defs["igMenuItem"][1]["argsT"][4] = {} defs["igMenuItem"][1]["argsT"][4]["name"] = "enabled" defs["igMenuItem"][1]["argsT"][4]["type"] = "bool" -defs["igMenuItem"][1]["argsoriginal"] = "(const char* label,const char* shortcut=((void *)0),bool selected=false,bool enabled=true)" +defs["igMenuItem"][1]["argsoriginal"] = "(const char* label,const char* shortcut=((void*)0),bool selected=false,bool enabled=true)" defs["igMenuItem"][1]["call_args"] = "(label,shortcut,selected,enabled)" defs["igMenuItem"][1]["cimguiname"] = "igMenuItem" defs["igMenuItem"][1]["comment"] = "" defs["igMenuItem"][1]["defaults"] = {} defs["igMenuItem"][1]["defaults"]["enabled"] = "true" defs["igMenuItem"][1]["defaults"]["selected"] = "false" -defs["igMenuItem"][1]["defaults"]["shortcut"] = "((void *)0)" +defs["igMenuItem"][1]["defaults"]["shortcut"] = "((void*)0)" defs["igMenuItem"][1]["funcname"] = "MenuItem" +defs["igMenuItem"][1]["namespace"] = "ImGui" defs["igMenuItem"][1]["ov_cimguiname"] = "igMenuItemBool" defs["igMenuItem"][1]["ret"] = "bool" defs["igMenuItem"][1]["signature"] = "(const char*,const char*,bool,bool)" -defs["igMenuItem"][1]["stname"] = "ImGui" +defs["igMenuItem"][1]["stname"] = "" defs["igMenuItem"][2] = {} defs["igMenuItem"][2]["args"] = "(const char* label,const char* shortcut,bool* p_selected,bool enabled)" defs["igMenuItem"][2]["argsT"] = {} @@ -10045,10 +10699,11 @@ defs["igMenuItem"][2]["comment"] = "" defs["igMenuItem"][2]["defaults"] = {} defs["igMenuItem"][2]["defaults"]["enabled"] = "true" defs["igMenuItem"][2]["funcname"] = "MenuItem" +defs["igMenuItem"][2]["namespace"] = "ImGui" defs["igMenuItem"][2]["ov_cimguiname"] = "igMenuItemBoolPtr" defs["igMenuItem"][2]["ret"] = "bool" defs["igMenuItem"][2]["signature"] = "(const char*,const char*,bool*,bool)" -defs["igMenuItem"][2]["stname"] = "ImGui" +defs["igMenuItem"][2]["stname"] = "" defs["igMenuItem"]["(const char*,const char*,bool*,bool)"] = defs["igMenuItem"][2] defs["igMenuItem"]["(const char*,const char*,bool,bool)"] = defs["igMenuItem"][1] defs["igNewFrame"] = {} @@ -10061,9 +10716,11 @@ defs["igNewFrame"][1]["cimguiname"] = "igNewFrame" defs["igNewFrame"][1]["comment"] = "" defs["igNewFrame"][1]["defaults"] = {} defs["igNewFrame"][1]["funcname"] = "NewFrame" +defs["igNewFrame"][1]["namespace"] = "ImGui" +defs["igNewFrame"][1]["ov_cimguiname"] = "igNewFrame" defs["igNewFrame"][1]["ret"] = "void" defs["igNewFrame"][1]["signature"] = "()" -defs["igNewFrame"][1]["stname"] = "ImGui" +defs["igNewFrame"][1]["stname"] = "" defs["igNewFrame"]["()"] = defs["igNewFrame"][1] defs["igNewLine"] = {} defs["igNewLine"][1] = {} @@ -10075,9 +10732,11 @@ defs["igNewLine"][1]["cimguiname"] = "igNewLine" defs["igNewLine"][1]["comment"] = "" defs["igNewLine"][1]["defaults"] = {} defs["igNewLine"][1]["funcname"] = "NewLine" +defs["igNewLine"][1]["namespace"] = "ImGui" +defs["igNewLine"][1]["ov_cimguiname"] = "igNewLine" defs["igNewLine"][1]["ret"] = "void" defs["igNewLine"][1]["signature"] = "()" -defs["igNewLine"][1]["stname"] = "ImGui" +defs["igNewLine"][1]["stname"] = "" defs["igNewLine"]["()"] = defs["igNewLine"][1] defs["igNextColumn"] = {} defs["igNextColumn"][1] = {} @@ -10089,9 +10748,11 @@ defs["igNextColumn"][1]["cimguiname"] = "igNextColumn" defs["igNextColumn"][1]["comment"] = "" defs["igNextColumn"][1]["defaults"] = {} defs["igNextColumn"][1]["funcname"] = "NextColumn" +defs["igNextColumn"][1]["namespace"] = "ImGui" +defs["igNextColumn"][1]["ov_cimguiname"] = "igNextColumn" defs["igNextColumn"][1]["ret"] = "void" defs["igNextColumn"][1]["signature"] = "()" -defs["igNextColumn"][1]["stname"] = "ImGui" +defs["igNextColumn"][1]["stname"] = "" defs["igNextColumn"]["()"] = defs["igNextColumn"][1] defs["igOpenPopup"] = {} defs["igOpenPopup"][1] = {} @@ -10106,9 +10767,11 @@ defs["igOpenPopup"][1]["cimguiname"] = "igOpenPopup" defs["igOpenPopup"][1]["comment"] = "" defs["igOpenPopup"][1]["defaults"] = {} defs["igOpenPopup"][1]["funcname"] = "OpenPopup" +defs["igOpenPopup"][1]["namespace"] = "ImGui" +defs["igOpenPopup"][1]["ov_cimguiname"] = "igOpenPopup" defs["igOpenPopup"][1]["ret"] = "void" defs["igOpenPopup"][1]["signature"] = "(const char*)" -defs["igOpenPopup"][1]["stname"] = "ImGui" +defs["igOpenPopup"][1]["stname"] = "" defs["igOpenPopup"]["(const char*)"] = defs["igOpenPopup"][1] defs["igOpenPopupOnItemClick"] = {} defs["igOpenPopupOnItemClick"][1] = {} @@ -10120,17 +10783,19 @@ defs["igOpenPopupOnItemClick"][1]["argsT"][1]["type"] = "const char*" defs["igOpenPopupOnItemClick"][1]["argsT"][2] = {} defs["igOpenPopupOnItemClick"][1]["argsT"][2]["name"] = "mouse_button" defs["igOpenPopupOnItemClick"][1]["argsT"][2]["type"] = "int" -defs["igOpenPopupOnItemClick"][1]["argsoriginal"] = "(const char* str_id=((void *)0),int mouse_button=1)" +defs["igOpenPopupOnItemClick"][1]["argsoriginal"] = "(const char* str_id=((void*)0),int mouse_button=1)" defs["igOpenPopupOnItemClick"][1]["call_args"] = "(str_id,mouse_button)" defs["igOpenPopupOnItemClick"][1]["cimguiname"] = "igOpenPopupOnItemClick" defs["igOpenPopupOnItemClick"][1]["comment"] = "" defs["igOpenPopupOnItemClick"][1]["defaults"] = {} defs["igOpenPopupOnItemClick"][1]["defaults"]["mouse_button"] = "1" -defs["igOpenPopupOnItemClick"][1]["defaults"]["str_id"] = "((void *)0)" +defs["igOpenPopupOnItemClick"][1]["defaults"]["str_id"] = "((void*)0)" defs["igOpenPopupOnItemClick"][1]["funcname"] = "OpenPopupOnItemClick" +defs["igOpenPopupOnItemClick"][1]["namespace"] = "ImGui" +defs["igOpenPopupOnItemClick"][1]["ov_cimguiname"] = "igOpenPopupOnItemClick" defs["igOpenPopupOnItemClick"][1]["ret"] = "bool" defs["igOpenPopupOnItemClick"][1]["signature"] = "(const char*,int)" -defs["igOpenPopupOnItemClick"][1]["stname"] = "ImGui" +defs["igOpenPopupOnItemClick"][1]["stname"] = "" defs["igOpenPopupOnItemClick"]["(const char*,int)"] = defs["igOpenPopupOnItemClick"][1] defs["igPlotHistogram"] = {} defs["igPlotHistogram"][1] = {} @@ -10163,22 +10828,23 @@ defs["igPlotHistogram"][1]["argsT"][8]["type"] = "ImVec2" defs["igPlotHistogram"][1]["argsT"][9] = {} defs["igPlotHistogram"][1]["argsT"][9]["name"] = "stride" defs["igPlotHistogram"][1]["argsT"][9]["type"] = "int" -defs["igPlotHistogram"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void *)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" +defs["igPlotHistogram"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" defs["igPlotHistogram"][1]["call_args"] = "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)" defs["igPlotHistogram"][1]["cimguiname"] = "igPlotHistogram" defs["igPlotHistogram"][1]["comment"] = "" defs["igPlotHistogram"][1]["defaults"] = {} defs["igPlotHistogram"][1]["defaults"]["graph_size"] = "ImVec2(0,0)" -defs["igPlotHistogram"][1]["defaults"]["overlay_text"] = "((void *)0)" +defs["igPlotHistogram"][1]["defaults"]["overlay_text"] = "((void*)0)" defs["igPlotHistogram"][1]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotHistogram"][1]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotHistogram"][1]["defaults"]["stride"] = "sizeof(float)" defs["igPlotHistogram"][1]["defaults"]["values_offset"] = "0" defs["igPlotHistogram"][1]["funcname"] = "PlotHistogram" +defs["igPlotHistogram"][1]["namespace"] = "ImGui" defs["igPlotHistogram"][1]["ov_cimguiname"] = "igPlotHistogramFloatPtr" defs["igPlotHistogram"][1]["ret"] = "void" defs["igPlotHistogram"][1]["signature"] = "(const char*,const float*,int,int,const char*,float,float,ImVec2,int)" -defs["igPlotHistogram"][1]["stname"] = "ImGui" +defs["igPlotHistogram"][1]["stname"] = "" defs["igPlotHistogram"][2] = {} defs["igPlotHistogram"][2]["args"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 graph_size)" defs["igPlotHistogram"][2]["argsT"] = {} @@ -10211,21 +10877,22 @@ defs["igPlotHistogram"][2]["argsT"][8]["type"] = "float" defs["igPlotHistogram"][2]["argsT"][9] = {} defs["igPlotHistogram"][2]["argsT"][9]["name"] = "graph_size" defs["igPlotHistogram"][2]["argsT"][9]["type"] = "ImVec2" -defs["igPlotHistogram"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void *)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0))" +defs["igPlotHistogram"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0))" defs["igPlotHistogram"][2]["call_args"] = "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)" defs["igPlotHistogram"][2]["cimguiname"] = "igPlotHistogram" defs["igPlotHistogram"][2]["comment"] = "" defs["igPlotHistogram"][2]["defaults"] = {} defs["igPlotHistogram"][2]["defaults"]["graph_size"] = "ImVec2(0,0)" -defs["igPlotHistogram"][2]["defaults"]["overlay_text"] = "((void *)0)" +defs["igPlotHistogram"][2]["defaults"]["overlay_text"] = "((void*)0)" defs["igPlotHistogram"][2]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotHistogram"][2]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotHistogram"][2]["defaults"]["values_offset"] = "0" defs["igPlotHistogram"][2]["funcname"] = "PlotHistogram" +defs["igPlotHistogram"][2]["namespace"] = "ImGui" defs["igPlotHistogram"][2]["ov_cimguiname"] = "igPlotHistogramFnPtr" defs["igPlotHistogram"][2]["ret"] = "void" defs["igPlotHistogram"][2]["signature"] = "(const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2)" -defs["igPlotHistogram"][2]["stname"] = "ImGui" +defs["igPlotHistogram"][2]["stname"] = "" defs["igPlotHistogram"]["(const char*,const float*,int,int,const char*,float,float,ImVec2,int)"] = defs["igPlotHistogram"][1] defs["igPlotHistogram"]["(const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2)"] = defs["igPlotHistogram"][2] defs["igPlotLines"] = {} @@ -10259,22 +10926,23 @@ defs["igPlotLines"][1]["argsT"][8]["type"] = "ImVec2" defs["igPlotLines"][1]["argsT"][9] = {} defs["igPlotLines"][1]["argsT"][9]["name"] = "stride" defs["igPlotLines"][1]["argsT"][9]["type"] = "int" -defs["igPlotLines"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void *)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" +defs["igPlotLines"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" defs["igPlotLines"][1]["call_args"] = "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)" defs["igPlotLines"][1]["cimguiname"] = "igPlotLines" defs["igPlotLines"][1]["comment"] = "" defs["igPlotLines"][1]["defaults"] = {} defs["igPlotLines"][1]["defaults"]["graph_size"] = "ImVec2(0,0)" -defs["igPlotLines"][1]["defaults"]["overlay_text"] = "((void *)0)" +defs["igPlotLines"][1]["defaults"]["overlay_text"] = "((void*)0)" defs["igPlotLines"][1]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotLines"][1]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotLines"][1]["defaults"]["stride"] = "sizeof(float)" defs["igPlotLines"][1]["defaults"]["values_offset"] = "0" defs["igPlotLines"][1]["funcname"] = "PlotLines" +defs["igPlotLines"][1]["namespace"] = "ImGui" defs["igPlotLines"][1]["ov_cimguiname"] = "igPlotLines" defs["igPlotLines"][1]["ret"] = "void" defs["igPlotLines"][1]["signature"] = "(const char*,const float*,int,int,const char*,float,float,ImVec2,int)" -defs["igPlotLines"][1]["stname"] = "ImGui" +defs["igPlotLines"][1]["stname"] = "" defs["igPlotLines"][2] = {} defs["igPlotLines"][2]["args"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 graph_size)" defs["igPlotLines"][2]["argsT"] = {} @@ -10307,21 +10975,22 @@ defs["igPlotLines"][2]["argsT"][8]["type"] = "float" defs["igPlotLines"][2]["argsT"][9] = {} defs["igPlotLines"][2]["argsT"][9]["name"] = "graph_size" defs["igPlotLines"][2]["argsT"][9]["type"] = "ImVec2" -defs["igPlotLines"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void *)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0))" +defs["igPlotLines"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0))" defs["igPlotLines"][2]["call_args"] = "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)" defs["igPlotLines"][2]["cimguiname"] = "igPlotLines" defs["igPlotLines"][2]["comment"] = "" defs["igPlotLines"][2]["defaults"] = {} defs["igPlotLines"][2]["defaults"]["graph_size"] = "ImVec2(0,0)" -defs["igPlotLines"][2]["defaults"]["overlay_text"] = "((void *)0)" +defs["igPlotLines"][2]["defaults"]["overlay_text"] = "((void*)0)" defs["igPlotLines"][2]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotLines"][2]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotLines"][2]["defaults"]["values_offset"] = "0" defs["igPlotLines"][2]["funcname"] = "PlotLines" +defs["igPlotLines"][2]["namespace"] = "ImGui" defs["igPlotLines"][2]["ov_cimguiname"] = "igPlotLinesFnPtr" defs["igPlotLines"][2]["ret"] = "void" defs["igPlotLines"][2]["signature"] = "(const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2)" -defs["igPlotLines"][2]["stname"] = "ImGui" +defs["igPlotLines"][2]["stname"] = "" defs["igPlotLines"]["(const char*,const float*,int,int,const char*,float,float,ImVec2,int)"] = defs["igPlotLines"][1] defs["igPlotLines"]["(const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2)"] = defs["igPlotLines"][2] defs["igPopAllowKeyboardFocus"] = {} @@ -10334,9 +11003,11 @@ defs["igPopAllowKeyboardFocus"][1]["cimguiname"] = "igPopAllowKeyboardFocus" defs["igPopAllowKeyboardFocus"][1]["comment"] = "" defs["igPopAllowKeyboardFocus"][1]["defaults"] = {} defs["igPopAllowKeyboardFocus"][1]["funcname"] = "PopAllowKeyboardFocus" +defs["igPopAllowKeyboardFocus"][1]["namespace"] = "ImGui" +defs["igPopAllowKeyboardFocus"][1]["ov_cimguiname"] = "igPopAllowKeyboardFocus" defs["igPopAllowKeyboardFocus"][1]["ret"] = "void" defs["igPopAllowKeyboardFocus"][1]["signature"] = "()" -defs["igPopAllowKeyboardFocus"][1]["stname"] = "ImGui" +defs["igPopAllowKeyboardFocus"][1]["stname"] = "" defs["igPopAllowKeyboardFocus"]["()"] = defs["igPopAllowKeyboardFocus"][1] defs["igPopButtonRepeat"] = {} defs["igPopButtonRepeat"][1] = {} @@ -10348,9 +11019,11 @@ defs["igPopButtonRepeat"][1]["cimguiname"] = "igPopButtonRepeat" defs["igPopButtonRepeat"][1]["comment"] = "" defs["igPopButtonRepeat"][1]["defaults"] = {} defs["igPopButtonRepeat"][1]["funcname"] = "PopButtonRepeat" +defs["igPopButtonRepeat"][1]["namespace"] = "ImGui" +defs["igPopButtonRepeat"][1]["ov_cimguiname"] = "igPopButtonRepeat" defs["igPopButtonRepeat"][1]["ret"] = "void" defs["igPopButtonRepeat"][1]["signature"] = "()" -defs["igPopButtonRepeat"][1]["stname"] = "ImGui" +defs["igPopButtonRepeat"][1]["stname"] = "" defs["igPopButtonRepeat"]["()"] = defs["igPopButtonRepeat"][1] defs["igPopClipRect"] = {} defs["igPopClipRect"][1] = {} @@ -10362,9 +11035,11 @@ defs["igPopClipRect"][1]["cimguiname"] = "igPopClipRect" defs["igPopClipRect"][1]["comment"] = "" defs["igPopClipRect"][1]["defaults"] = {} defs["igPopClipRect"][1]["funcname"] = "PopClipRect" +defs["igPopClipRect"][1]["namespace"] = "ImGui" +defs["igPopClipRect"][1]["ov_cimguiname"] = "igPopClipRect" defs["igPopClipRect"][1]["ret"] = "void" defs["igPopClipRect"][1]["signature"] = "()" -defs["igPopClipRect"][1]["stname"] = "ImGui" +defs["igPopClipRect"][1]["stname"] = "" defs["igPopClipRect"]["()"] = defs["igPopClipRect"][1] defs["igPopFont"] = {} defs["igPopFont"][1] = {} @@ -10376,9 +11051,11 @@ defs["igPopFont"][1]["cimguiname"] = "igPopFont" defs["igPopFont"][1]["comment"] = "" defs["igPopFont"][1]["defaults"] = {} defs["igPopFont"][1]["funcname"] = "PopFont" +defs["igPopFont"][1]["namespace"] = "ImGui" +defs["igPopFont"][1]["ov_cimguiname"] = "igPopFont" defs["igPopFont"][1]["ret"] = "void" defs["igPopFont"][1]["signature"] = "()" -defs["igPopFont"][1]["stname"] = "ImGui" +defs["igPopFont"][1]["stname"] = "" defs["igPopFont"]["()"] = defs["igPopFont"][1] defs["igPopID"] = {} defs["igPopID"][1] = {} @@ -10390,9 +11067,11 @@ defs["igPopID"][1]["cimguiname"] = "igPopID" defs["igPopID"][1]["comment"] = "" defs["igPopID"][1]["defaults"] = {} defs["igPopID"][1]["funcname"] = "PopID" +defs["igPopID"][1]["namespace"] = "ImGui" +defs["igPopID"][1]["ov_cimguiname"] = "igPopID" defs["igPopID"][1]["ret"] = "void" defs["igPopID"][1]["signature"] = "()" -defs["igPopID"][1]["stname"] = "ImGui" +defs["igPopID"][1]["stname"] = "" defs["igPopID"]["()"] = defs["igPopID"][1] defs["igPopItemWidth"] = {} defs["igPopItemWidth"][1] = {} @@ -10404,9 +11083,11 @@ defs["igPopItemWidth"][1]["cimguiname"] = "igPopItemWidth" defs["igPopItemWidth"][1]["comment"] = "" defs["igPopItemWidth"][1]["defaults"] = {} defs["igPopItemWidth"][1]["funcname"] = "PopItemWidth" +defs["igPopItemWidth"][1]["namespace"] = "ImGui" +defs["igPopItemWidth"][1]["ov_cimguiname"] = "igPopItemWidth" defs["igPopItemWidth"][1]["ret"] = "void" defs["igPopItemWidth"][1]["signature"] = "()" -defs["igPopItemWidth"][1]["stname"] = "ImGui" +defs["igPopItemWidth"][1]["stname"] = "" defs["igPopItemWidth"]["()"] = defs["igPopItemWidth"][1] defs["igPopStyleColor"] = {} defs["igPopStyleColor"][1] = {} @@ -10422,9 +11103,11 @@ defs["igPopStyleColor"][1]["comment"] = "" defs["igPopStyleColor"][1]["defaults"] = {} defs["igPopStyleColor"][1]["defaults"]["count"] = "1" defs["igPopStyleColor"][1]["funcname"] = "PopStyleColor" +defs["igPopStyleColor"][1]["namespace"] = "ImGui" +defs["igPopStyleColor"][1]["ov_cimguiname"] = "igPopStyleColor" defs["igPopStyleColor"][1]["ret"] = "void" defs["igPopStyleColor"][1]["signature"] = "(int)" -defs["igPopStyleColor"][1]["stname"] = "ImGui" +defs["igPopStyleColor"][1]["stname"] = "" defs["igPopStyleColor"]["(int)"] = defs["igPopStyleColor"][1] defs["igPopStyleVar"] = {} defs["igPopStyleVar"][1] = {} @@ -10440,9 +11123,11 @@ defs["igPopStyleVar"][1]["comment"] = "" defs["igPopStyleVar"][1]["defaults"] = {} defs["igPopStyleVar"][1]["defaults"]["count"] = "1" defs["igPopStyleVar"][1]["funcname"] = "PopStyleVar" +defs["igPopStyleVar"][1]["namespace"] = "ImGui" +defs["igPopStyleVar"][1]["ov_cimguiname"] = "igPopStyleVar" defs["igPopStyleVar"][1]["ret"] = "void" defs["igPopStyleVar"][1]["signature"] = "(int)" -defs["igPopStyleVar"][1]["stname"] = "ImGui" +defs["igPopStyleVar"][1]["stname"] = "" defs["igPopStyleVar"]["(int)"] = defs["igPopStyleVar"][1] defs["igPopTextWrapPos"] = {} defs["igPopTextWrapPos"][1] = {} @@ -10454,9 +11139,11 @@ defs["igPopTextWrapPos"][1]["cimguiname"] = "igPopTextWrapPos" defs["igPopTextWrapPos"][1]["comment"] = "" defs["igPopTextWrapPos"][1]["defaults"] = {} defs["igPopTextWrapPos"][1]["funcname"] = "PopTextWrapPos" +defs["igPopTextWrapPos"][1]["namespace"] = "ImGui" +defs["igPopTextWrapPos"][1]["ov_cimguiname"] = "igPopTextWrapPos" defs["igPopTextWrapPos"][1]["ret"] = "void" defs["igPopTextWrapPos"][1]["signature"] = "()" -defs["igPopTextWrapPos"][1]["stname"] = "ImGui" +defs["igPopTextWrapPos"][1]["stname"] = "" defs["igPopTextWrapPos"]["()"] = defs["igPopTextWrapPos"][1] defs["igProgressBar"] = {} defs["igProgressBar"][1] = {} @@ -10471,17 +11158,19 @@ defs["igProgressBar"][1]["argsT"][2]["type"] = "const ImVec2" defs["igProgressBar"][1]["argsT"][3] = {} defs["igProgressBar"][1]["argsT"][3]["name"] = "overlay" defs["igProgressBar"][1]["argsT"][3]["type"] = "const char*" -defs["igProgressBar"][1]["argsoriginal"] = "(float fraction,const ImVec2& size_arg=ImVec2(-1,0),const char* overlay=((void *)0))" +defs["igProgressBar"][1]["argsoriginal"] = "(float fraction,const ImVec2& size_arg=ImVec2(-1,0),const char* overlay=((void*)0))" defs["igProgressBar"][1]["call_args"] = "(fraction,size_arg,overlay)" defs["igProgressBar"][1]["cimguiname"] = "igProgressBar" defs["igProgressBar"][1]["comment"] = "" defs["igProgressBar"][1]["defaults"] = {} -defs["igProgressBar"][1]["defaults"]["overlay"] = "((void *)0)" +defs["igProgressBar"][1]["defaults"]["overlay"] = "((void*)0)" defs["igProgressBar"][1]["defaults"]["size_arg"] = "ImVec2(-1,0)" defs["igProgressBar"][1]["funcname"] = "ProgressBar" +defs["igProgressBar"][1]["namespace"] = "ImGui" +defs["igProgressBar"][1]["ov_cimguiname"] = "igProgressBar" defs["igProgressBar"][1]["ret"] = "void" defs["igProgressBar"][1]["signature"] = "(float,const ImVec2,const char*)" -defs["igProgressBar"][1]["stname"] = "ImGui" +defs["igProgressBar"][1]["stname"] = "" defs["igProgressBar"]["(float,const ImVec2,const char*)"] = defs["igProgressBar"][1] defs["igPushAllowKeyboardFocus"] = {} defs["igPushAllowKeyboardFocus"][1] = {} @@ -10496,9 +11185,11 @@ defs["igPushAllowKeyboardFocus"][1]["cimguiname"] = "igPushAllowKeyboardFocus" defs["igPushAllowKeyboardFocus"][1]["comment"] = "" defs["igPushAllowKeyboardFocus"][1]["defaults"] = {} defs["igPushAllowKeyboardFocus"][1]["funcname"] = "PushAllowKeyboardFocus" +defs["igPushAllowKeyboardFocus"][1]["namespace"] = "ImGui" +defs["igPushAllowKeyboardFocus"][1]["ov_cimguiname"] = "igPushAllowKeyboardFocus" defs["igPushAllowKeyboardFocus"][1]["ret"] = "void" defs["igPushAllowKeyboardFocus"][1]["signature"] = "(bool)" -defs["igPushAllowKeyboardFocus"][1]["stname"] = "ImGui" +defs["igPushAllowKeyboardFocus"][1]["stname"] = "" defs["igPushAllowKeyboardFocus"]["(bool)"] = defs["igPushAllowKeyboardFocus"][1] defs["igPushButtonRepeat"] = {} defs["igPushButtonRepeat"][1] = {} @@ -10513,9 +11204,11 @@ defs["igPushButtonRepeat"][1]["cimguiname"] = "igPushButtonRepeat" defs["igPushButtonRepeat"][1]["comment"] = "" defs["igPushButtonRepeat"][1]["defaults"] = {} defs["igPushButtonRepeat"][1]["funcname"] = "PushButtonRepeat" +defs["igPushButtonRepeat"][1]["namespace"] = "ImGui" +defs["igPushButtonRepeat"][1]["ov_cimguiname"] = "igPushButtonRepeat" defs["igPushButtonRepeat"][1]["ret"] = "void" defs["igPushButtonRepeat"][1]["signature"] = "(bool)" -defs["igPushButtonRepeat"][1]["stname"] = "ImGui" +defs["igPushButtonRepeat"][1]["stname"] = "" defs["igPushButtonRepeat"]["(bool)"] = defs["igPushButtonRepeat"][1] defs["igPushClipRect"] = {} defs["igPushClipRect"][1] = {} @@ -10536,9 +11229,11 @@ defs["igPushClipRect"][1]["cimguiname"] = "igPushClipRect" defs["igPushClipRect"][1]["comment"] = "" defs["igPushClipRect"][1]["defaults"] = {} defs["igPushClipRect"][1]["funcname"] = "PushClipRect" +defs["igPushClipRect"][1]["namespace"] = "ImGui" +defs["igPushClipRect"][1]["ov_cimguiname"] = "igPushClipRect" defs["igPushClipRect"][1]["ret"] = "void" defs["igPushClipRect"][1]["signature"] = "(const ImVec2,const ImVec2,bool)" -defs["igPushClipRect"][1]["stname"] = "ImGui" +defs["igPushClipRect"][1]["stname"] = "" defs["igPushClipRect"]["(const ImVec2,const ImVec2,bool)"] = defs["igPushClipRect"][1] defs["igPushFont"] = {} defs["igPushFont"][1] = {} @@ -10553,9 +11248,11 @@ defs["igPushFont"][1]["cimguiname"] = "igPushFont" defs["igPushFont"][1]["comment"] = "" defs["igPushFont"][1]["defaults"] = {} defs["igPushFont"][1]["funcname"] = "PushFont" +defs["igPushFont"][1]["namespace"] = "ImGui" +defs["igPushFont"][1]["ov_cimguiname"] = "igPushFont" defs["igPushFont"][1]["ret"] = "void" defs["igPushFont"][1]["signature"] = "(ImFont*)" -defs["igPushFont"][1]["stname"] = "ImGui" +defs["igPushFont"][1]["stname"] = "" defs["igPushFont"]["(ImFont*)"] = defs["igPushFont"][1] defs["igPushID"] = {} defs["igPushID"][1] = {} @@ -10570,10 +11267,11 @@ defs["igPushID"][1]["cimguiname"] = "igPushID" defs["igPushID"][1]["comment"] = "" defs["igPushID"][1]["defaults"] = {} defs["igPushID"][1]["funcname"] = "PushID" +defs["igPushID"][1]["namespace"] = "ImGui" defs["igPushID"][1]["ov_cimguiname"] = "igPushIDStr" defs["igPushID"][1]["ret"] = "void" defs["igPushID"][1]["signature"] = "(const char*)" -defs["igPushID"][1]["stname"] = "ImGui" +defs["igPushID"][1]["stname"] = "" defs["igPushID"][2] = {} defs["igPushID"][2]["args"] = "(const char* str_id_begin,const char* str_id_end)" defs["igPushID"][2]["argsT"] = {} @@ -10589,10 +11287,11 @@ defs["igPushID"][2]["cimguiname"] = "igPushID" defs["igPushID"][2]["comment"] = "" defs["igPushID"][2]["defaults"] = {} defs["igPushID"][2]["funcname"] = "PushID" +defs["igPushID"][2]["namespace"] = "ImGui" defs["igPushID"][2]["ov_cimguiname"] = "igPushIDRange" defs["igPushID"][2]["ret"] = "void" defs["igPushID"][2]["signature"] = "(const char*,const char*)" -defs["igPushID"][2]["stname"] = "ImGui" +defs["igPushID"][2]["stname"] = "" defs["igPushID"][3] = {} defs["igPushID"][3]["args"] = "(const void* ptr_id)" defs["igPushID"][3]["argsT"] = {} @@ -10605,10 +11304,11 @@ defs["igPushID"][3]["cimguiname"] = "igPushID" defs["igPushID"][3]["comment"] = "" defs["igPushID"][3]["defaults"] = {} defs["igPushID"][3]["funcname"] = "PushID" +defs["igPushID"][3]["namespace"] = "ImGui" defs["igPushID"][3]["ov_cimguiname"] = "igPushIDPtr" defs["igPushID"][3]["ret"] = "void" defs["igPushID"][3]["signature"] = "(const void*)" -defs["igPushID"][3]["stname"] = "ImGui" +defs["igPushID"][3]["stname"] = "" defs["igPushID"][4] = {} defs["igPushID"][4]["args"] = "(int int_id)" defs["igPushID"][4]["argsT"] = {} @@ -10621,10 +11321,11 @@ defs["igPushID"][4]["cimguiname"] = "igPushID" defs["igPushID"][4]["comment"] = "" defs["igPushID"][4]["defaults"] = {} defs["igPushID"][4]["funcname"] = "PushID" +defs["igPushID"][4]["namespace"] = "ImGui" defs["igPushID"][4]["ov_cimguiname"] = "igPushIDInt" defs["igPushID"][4]["ret"] = "void" defs["igPushID"][4]["signature"] = "(int)" -defs["igPushID"][4]["stname"] = "ImGui" +defs["igPushID"][4]["stname"] = "" defs["igPushID"]["(const char*)"] = defs["igPushID"][1] defs["igPushID"]["(const char*,const char*)"] = defs["igPushID"][2] defs["igPushID"]["(const void*)"] = defs["igPushID"][3] @@ -10642,9 +11343,11 @@ defs["igPushItemWidth"][1]["cimguiname"] = "igPushItemWidth" defs["igPushItemWidth"][1]["comment"] = "" defs["igPushItemWidth"][1]["defaults"] = {} defs["igPushItemWidth"][1]["funcname"] = "PushItemWidth" +defs["igPushItemWidth"][1]["namespace"] = "ImGui" +defs["igPushItemWidth"][1]["ov_cimguiname"] = "igPushItemWidth" defs["igPushItemWidth"][1]["ret"] = "void" defs["igPushItemWidth"][1]["signature"] = "(float)" -defs["igPushItemWidth"][1]["stname"] = "ImGui" +defs["igPushItemWidth"][1]["stname"] = "" defs["igPushItemWidth"]["(float)"] = defs["igPushItemWidth"][1] defs["igPushStyleColor"] = {} defs["igPushStyleColor"][1] = {} @@ -10662,10 +11365,11 @@ defs["igPushStyleColor"][1]["cimguiname"] = "igPushStyleColor" defs["igPushStyleColor"][1]["comment"] = "" defs["igPushStyleColor"][1]["defaults"] = {} defs["igPushStyleColor"][1]["funcname"] = "PushStyleColor" +defs["igPushStyleColor"][1]["namespace"] = "ImGui" defs["igPushStyleColor"][1]["ov_cimguiname"] = "igPushStyleColorU32" defs["igPushStyleColor"][1]["ret"] = "void" defs["igPushStyleColor"][1]["signature"] = "(ImGuiCol,ImU32)" -defs["igPushStyleColor"][1]["stname"] = "ImGui" +defs["igPushStyleColor"][1]["stname"] = "" defs["igPushStyleColor"][2] = {} defs["igPushStyleColor"][2]["args"] = "(ImGuiCol idx,const ImVec4 col)" defs["igPushStyleColor"][2]["argsT"] = {} @@ -10681,10 +11385,11 @@ defs["igPushStyleColor"][2]["cimguiname"] = "igPushStyleColor" defs["igPushStyleColor"][2]["comment"] = "" defs["igPushStyleColor"][2]["defaults"] = {} defs["igPushStyleColor"][2]["funcname"] = "PushStyleColor" +defs["igPushStyleColor"][2]["namespace"] = "ImGui" defs["igPushStyleColor"][2]["ov_cimguiname"] = "igPushStyleColor" defs["igPushStyleColor"][2]["ret"] = "void" defs["igPushStyleColor"][2]["signature"] = "(ImGuiCol,const ImVec4)" -defs["igPushStyleColor"][2]["stname"] = "ImGui" +defs["igPushStyleColor"][2]["stname"] = "" defs["igPushStyleColor"]["(ImGuiCol,ImU32)"] = defs["igPushStyleColor"][1] defs["igPushStyleColor"]["(ImGuiCol,const ImVec4)"] = defs["igPushStyleColor"][2] defs["igPushStyleVar"] = {} @@ -10703,10 +11408,11 @@ defs["igPushStyleVar"][1]["cimguiname"] = "igPushStyleVar" defs["igPushStyleVar"][1]["comment"] = "" defs["igPushStyleVar"][1]["defaults"] = {} defs["igPushStyleVar"][1]["funcname"] = "PushStyleVar" +defs["igPushStyleVar"][1]["namespace"] = "ImGui" defs["igPushStyleVar"][1]["ov_cimguiname"] = "igPushStyleVarFloat" defs["igPushStyleVar"][1]["ret"] = "void" defs["igPushStyleVar"][1]["signature"] = "(ImGuiStyleVar,float)" -defs["igPushStyleVar"][1]["stname"] = "ImGui" +defs["igPushStyleVar"][1]["stname"] = "" defs["igPushStyleVar"][2] = {} defs["igPushStyleVar"][2]["args"] = "(ImGuiStyleVar idx,const ImVec2 val)" defs["igPushStyleVar"][2]["argsT"] = {} @@ -10722,10 +11428,11 @@ defs["igPushStyleVar"][2]["cimguiname"] = "igPushStyleVar" defs["igPushStyleVar"][2]["comment"] = "" defs["igPushStyleVar"][2]["defaults"] = {} defs["igPushStyleVar"][2]["funcname"] = "PushStyleVar" +defs["igPushStyleVar"][2]["namespace"] = "ImGui" defs["igPushStyleVar"][2]["ov_cimguiname"] = "igPushStyleVarVec2" defs["igPushStyleVar"][2]["ret"] = "void" defs["igPushStyleVar"][2]["signature"] = "(ImGuiStyleVar,const ImVec2)" -defs["igPushStyleVar"][2]["stname"] = "ImGui" +defs["igPushStyleVar"][2]["stname"] = "" defs["igPushStyleVar"]["(ImGuiStyleVar,const ImVec2)"] = defs["igPushStyleVar"][2] defs["igPushStyleVar"]["(ImGuiStyleVar,float)"] = defs["igPushStyleVar"][1] defs["igPushTextWrapPos"] = {} @@ -10742,9 +11449,11 @@ defs["igPushTextWrapPos"][1]["comment"] = "" defs["igPushTextWrapPos"][1]["defaults"] = {} defs["igPushTextWrapPos"][1]["defaults"]["wrap_local_pos_x"] = "0.0f" defs["igPushTextWrapPos"][1]["funcname"] = "PushTextWrapPos" +defs["igPushTextWrapPos"][1]["namespace"] = "ImGui" +defs["igPushTextWrapPos"][1]["ov_cimguiname"] = "igPushTextWrapPos" defs["igPushTextWrapPos"][1]["ret"] = "void" defs["igPushTextWrapPos"][1]["signature"] = "(float)" -defs["igPushTextWrapPos"][1]["stname"] = "ImGui" +defs["igPushTextWrapPos"][1]["stname"] = "" defs["igPushTextWrapPos"]["(float)"] = defs["igPushTextWrapPos"][1] defs["igRadioButton"] = {} defs["igRadioButton"][1] = {} @@ -10762,10 +11471,11 @@ defs["igRadioButton"][1]["cimguiname"] = "igRadioButton" defs["igRadioButton"][1]["comment"] = "" defs["igRadioButton"][1]["defaults"] = {} defs["igRadioButton"][1]["funcname"] = "RadioButton" +defs["igRadioButton"][1]["namespace"] = "ImGui" defs["igRadioButton"][1]["ov_cimguiname"] = "igRadioButtonBool" defs["igRadioButton"][1]["ret"] = "bool" defs["igRadioButton"][1]["signature"] = "(const char*,bool)" -defs["igRadioButton"][1]["stname"] = "ImGui" +defs["igRadioButton"][1]["stname"] = "" defs["igRadioButton"][2] = {} defs["igRadioButton"][2]["args"] = "(const char* label,int* v,int v_button)" defs["igRadioButton"][2]["argsT"] = {} @@ -10784,10 +11494,11 @@ defs["igRadioButton"][2]["cimguiname"] = "igRadioButton" defs["igRadioButton"][2]["comment"] = "" defs["igRadioButton"][2]["defaults"] = {} defs["igRadioButton"][2]["funcname"] = "RadioButton" +defs["igRadioButton"][2]["namespace"] = "ImGui" defs["igRadioButton"][2]["ov_cimguiname"] = "igRadioButtonIntPtr" defs["igRadioButton"][2]["ret"] = "bool" defs["igRadioButton"][2]["signature"] = "(const char*,int*,int)" -defs["igRadioButton"][2]["stname"] = "ImGui" +defs["igRadioButton"][2]["stname"] = "" defs["igRadioButton"]["(const char*,bool)"] = defs["igRadioButton"][1] defs["igRadioButton"]["(const char*,int*,int)"] = defs["igRadioButton"][2] defs["igRender"] = {} @@ -10800,9 +11511,11 @@ defs["igRender"][1]["cimguiname"] = "igRender" defs["igRender"][1]["comment"] = "" defs["igRender"][1]["defaults"] = {} defs["igRender"][1]["funcname"] = "Render" +defs["igRender"][1]["namespace"] = "ImGui" +defs["igRender"][1]["ov_cimguiname"] = "igRender" defs["igRender"][1]["ret"] = "void" defs["igRender"][1]["signature"] = "()" -defs["igRender"][1]["stname"] = "ImGui" +defs["igRender"][1]["stname"] = "" defs["igRender"]["()"] = defs["igRender"][1] defs["igResetMouseDragDelta"] = {} defs["igResetMouseDragDelta"][1] = {} @@ -10818,9 +11531,11 @@ defs["igResetMouseDragDelta"][1]["comment"] = "" defs["igResetMouseDragDelta"][1]["defaults"] = {} defs["igResetMouseDragDelta"][1]["defaults"]["button"] = "0" defs["igResetMouseDragDelta"][1]["funcname"] = "ResetMouseDragDelta" +defs["igResetMouseDragDelta"][1]["namespace"] = "ImGui" +defs["igResetMouseDragDelta"][1]["ov_cimguiname"] = "igResetMouseDragDelta" defs["igResetMouseDragDelta"][1]["ret"] = "void" defs["igResetMouseDragDelta"][1]["signature"] = "(int)" -defs["igResetMouseDragDelta"][1]["stname"] = "ImGui" +defs["igResetMouseDragDelta"][1]["stname"] = "" defs["igResetMouseDragDelta"]["(int)"] = defs["igResetMouseDragDelta"][1] defs["igSameLine"] = {} defs["igSameLine"][1] = {} @@ -10840,9 +11555,11 @@ defs["igSameLine"][1]["defaults"] = {} defs["igSameLine"][1]["defaults"]["local_pos_x"] = "0.0f" defs["igSameLine"][1]["defaults"]["spacing_w"] = "-1.0f" defs["igSameLine"][1]["funcname"] = "SameLine" +defs["igSameLine"][1]["namespace"] = "ImGui" +defs["igSameLine"][1]["ov_cimguiname"] = "igSameLine" defs["igSameLine"][1]["ret"] = "void" defs["igSameLine"][1]["signature"] = "(float,float)" -defs["igSameLine"][1]["stname"] = "ImGui" +defs["igSameLine"][1]["stname"] = "" defs["igSameLine"]["(float,float)"] = defs["igSameLine"][1] defs["igSaveIniSettingsToDisk"] = {} defs["igSaveIniSettingsToDisk"][1] = {} @@ -10857,9 +11574,11 @@ defs["igSaveIniSettingsToDisk"][1]["cimguiname"] = "igSaveIniSettingsToDisk" defs["igSaveIniSettingsToDisk"][1]["comment"] = "" defs["igSaveIniSettingsToDisk"][1]["defaults"] = {} defs["igSaveIniSettingsToDisk"][1]["funcname"] = "SaveIniSettingsToDisk" +defs["igSaveIniSettingsToDisk"][1]["namespace"] = "ImGui" +defs["igSaveIniSettingsToDisk"][1]["ov_cimguiname"] = "igSaveIniSettingsToDisk" defs["igSaveIniSettingsToDisk"][1]["ret"] = "void" defs["igSaveIniSettingsToDisk"][1]["signature"] = "(const char*)" -defs["igSaveIniSettingsToDisk"][1]["stname"] = "ImGui" +defs["igSaveIniSettingsToDisk"][1]["stname"] = "" defs["igSaveIniSettingsToDisk"]["(const char*)"] = defs["igSaveIniSettingsToDisk"][1] defs["igSaveIniSettingsToMemory"] = {} defs["igSaveIniSettingsToMemory"][1] = {} @@ -10868,16 +11587,18 @@ defs["igSaveIniSettingsToMemory"][1]["argsT"] = {} defs["igSaveIniSettingsToMemory"][1]["argsT"][1] = {} defs["igSaveIniSettingsToMemory"][1]["argsT"][1]["name"] = "out_ini_size" defs["igSaveIniSettingsToMemory"][1]["argsT"][1]["type"] = "size_t*" -defs["igSaveIniSettingsToMemory"][1]["argsoriginal"] = "(size_t* out_ini_size=((void *)0))" +defs["igSaveIniSettingsToMemory"][1]["argsoriginal"] = "(size_t* out_ini_size=((void*)0))" defs["igSaveIniSettingsToMemory"][1]["call_args"] = "(out_ini_size)" defs["igSaveIniSettingsToMemory"][1]["cimguiname"] = "igSaveIniSettingsToMemory" defs["igSaveIniSettingsToMemory"][1]["comment"] = "" defs["igSaveIniSettingsToMemory"][1]["defaults"] = {} -defs["igSaveIniSettingsToMemory"][1]["defaults"]["out_ini_size"] = "((void *)0)" +defs["igSaveIniSettingsToMemory"][1]["defaults"]["out_ini_size"] = "((void*)0)" defs["igSaveIniSettingsToMemory"][1]["funcname"] = "SaveIniSettingsToMemory" +defs["igSaveIniSettingsToMemory"][1]["namespace"] = "ImGui" +defs["igSaveIniSettingsToMemory"][1]["ov_cimguiname"] = "igSaveIniSettingsToMemory" defs["igSaveIniSettingsToMemory"][1]["ret"] = "const char*" defs["igSaveIniSettingsToMemory"][1]["signature"] = "(size_t*)" -defs["igSaveIniSettingsToMemory"][1]["stname"] = "ImGui" +defs["igSaveIniSettingsToMemory"][1]["stname"] = "" defs["igSaveIniSettingsToMemory"]["(size_t*)"] = defs["igSaveIniSettingsToMemory"][1] defs["igSelectable"] = {} defs["igSelectable"][1] = {} @@ -10904,10 +11625,11 @@ defs["igSelectable"][1]["defaults"]["flags"] = "0" defs["igSelectable"][1]["defaults"]["selected"] = "false" defs["igSelectable"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igSelectable"][1]["funcname"] = "Selectable" +defs["igSelectable"][1]["namespace"] = "ImGui" defs["igSelectable"][1]["ov_cimguiname"] = "igSelectable" defs["igSelectable"][1]["ret"] = "bool" defs["igSelectable"][1]["signature"] = "(const char*,bool,ImGuiSelectableFlags,const ImVec2)" -defs["igSelectable"][1]["stname"] = "ImGui" +defs["igSelectable"][1]["stname"] = "" defs["igSelectable"][2] = {} defs["igSelectable"][2]["args"] = "(const char* label,bool* p_selected,ImGuiSelectableFlags flags,const ImVec2 size)" defs["igSelectable"][2]["argsT"] = {} @@ -10931,10 +11653,11 @@ defs["igSelectable"][2]["defaults"] = {} defs["igSelectable"][2]["defaults"]["flags"] = "0" defs["igSelectable"][2]["defaults"]["size"] = "ImVec2(0,0)" defs["igSelectable"][2]["funcname"] = "Selectable" +defs["igSelectable"][2]["namespace"] = "ImGui" defs["igSelectable"][2]["ov_cimguiname"] = "igSelectableBoolPtr" defs["igSelectable"][2]["ret"] = "bool" defs["igSelectable"][2]["signature"] = "(const char*,bool*,ImGuiSelectableFlags,const ImVec2)" -defs["igSelectable"][2]["stname"] = "ImGui" +defs["igSelectable"][2]["stname"] = "" defs["igSelectable"]["(const char*,bool*,ImGuiSelectableFlags,const ImVec2)"] = defs["igSelectable"][2] defs["igSelectable"]["(const char*,bool,ImGuiSelectableFlags,const ImVec2)"] = defs["igSelectable"][1] defs["igSeparator"] = {} @@ -10947,9 +11670,11 @@ defs["igSeparator"][1]["cimguiname"] = "igSeparator" defs["igSeparator"][1]["comment"] = "" defs["igSeparator"][1]["defaults"] = {} defs["igSeparator"][1]["funcname"] = "Separator" +defs["igSeparator"][1]["namespace"] = "ImGui" +defs["igSeparator"][1]["ov_cimguiname"] = "igSeparator" defs["igSeparator"][1]["ret"] = "void" defs["igSeparator"][1]["signature"] = "()" -defs["igSeparator"][1]["stname"] = "ImGui" +defs["igSeparator"][1]["stname"] = "" defs["igSeparator"]["()"] = defs["igSeparator"][1] defs["igSetAllocatorFunctions"] = {} defs["igSetAllocatorFunctions"][1] = {} @@ -10968,16 +11693,18 @@ defs["igSetAllocatorFunctions"][1]["argsT"][2]["type"] = "void(*)(void* ptr,void defs["igSetAllocatorFunctions"][1]["argsT"][3] = {} defs["igSetAllocatorFunctions"][1]["argsT"][3]["name"] = "user_data" defs["igSetAllocatorFunctions"][1]["argsT"][3]["type"] = "void*" -defs["igSetAllocatorFunctions"][1]["argsoriginal"] = "(void*(*alloc_func)(size_t sz,void* user_data),void(*free_func)(void* ptr,void* user_data),void* user_data=((void *)0))" +defs["igSetAllocatorFunctions"][1]["argsoriginal"] = "(void*(*alloc_func)(size_t sz,void* user_data),void(*free_func)(void* ptr,void* user_data),void* user_data=((void*)0))" defs["igSetAllocatorFunctions"][1]["call_args"] = "(alloc_func,free_func,user_data)" defs["igSetAllocatorFunctions"][1]["cimguiname"] = "igSetAllocatorFunctions" defs["igSetAllocatorFunctions"][1]["comment"] = "" defs["igSetAllocatorFunctions"][1]["defaults"] = {} -defs["igSetAllocatorFunctions"][1]["defaults"]["user_data"] = "((void *)0)" +defs["igSetAllocatorFunctions"][1]["defaults"]["user_data"] = "((void*)0)" defs["igSetAllocatorFunctions"][1]["funcname"] = "SetAllocatorFunctions" +defs["igSetAllocatorFunctions"][1]["namespace"] = "ImGui" +defs["igSetAllocatorFunctions"][1]["ov_cimguiname"] = "igSetAllocatorFunctions" defs["igSetAllocatorFunctions"][1]["ret"] = "void" defs["igSetAllocatorFunctions"][1]["signature"] = "(void*(*)(size_t,void*),void(*)(void*,void*),void*)" -defs["igSetAllocatorFunctions"][1]["stname"] = "ImGui" +defs["igSetAllocatorFunctions"][1]["stname"] = "" defs["igSetAllocatorFunctions"]["(void*(*)(size_t,void*),void(*)(void*,void*),void*)"] = defs["igSetAllocatorFunctions"][1] defs["igSetClipboardText"] = {} defs["igSetClipboardText"][1] = {} @@ -10992,9 +11719,11 @@ defs["igSetClipboardText"][1]["cimguiname"] = "igSetClipboardText" defs["igSetClipboardText"][1]["comment"] = "" defs["igSetClipboardText"][1]["defaults"] = {} defs["igSetClipboardText"][1]["funcname"] = "SetClipboardText" +defs["igSetClipboardText"][1]["namespace"] = "ImGui" +defs["igSetClipboardText"][1]["ov_cimguiname"] = "igSetClipboardText" defs["igSetClipboardText"][1]["ret"] = "void" defs["igSetClipboardText"][1]["signature"] = "(const char*)" -defs["igSetClipboardText"][1]["stname"] = "ImGui" +defs["igSetClipboardText"][1]["stname"] = "" defs["igSetClipboardText"]["(const char*)"] = defs["igSetClipboardText"][1] defs["igSetColorEditOptions"] = {} defs["igSetColorEditOptions"][1] = {} @@ -11009,9 +11738,11 @@ defs["igSetColorEditOptions"][1]["cimguiname"] = "igSetColorEditOptions" defs["igSetColorEditOptions"][1]["comment"] = "" defs["igSetColorEditOptions"][1]["defaults"] = {} defs["igSetColorEditOptions"][1]["funcname"] = "SetColorEditOptions" +defs["igSetColorEditOptions"][1]["namespace"] = "ImGui" +defs["igSetColorEditOptions"][1]["ov_cimguiname"] = "igSetColorEditOptions" defs["igSetColorEditOptions"][1]["ret"] = "void" defs["igSetColorEditOptions"][1]["signature"] = "(ImGuiColorEditFlags)" -defs["igSetColorEditOptions"][1]["stname"] = "ImGui" +defs["igSetColorEditOptions"][1]["stname"] = "" defs["igSetColorEditOptions"]["(ImGuiColorEditFlags)"] = defs["igSetColorEditOptions"][1] defs["igSetColumnOffset"] = {} defs["igSetColumnOffset"][1] = {} @@ -11029,9 +11760,11 @@ defs["igSetColumnOffset"][1]["cimguiname"] = "igSetColumnOffset" defs["igSetColumnOffset"][1]["comment"] = "" defs["igSetColumnOffset"][1]["defaults"] = {} defs["igSetColumnOffset"][1]["funcname"] = "SetColumnOffset" +defs["igSetColumnOffset"][1]["namespace"] = "ImGui" +defs["igSetColumnOffset"][1]["ov_cimguiname"] = "igSetColumnOffset" defs["igSetColumnOffset"][1]["ret"] = "void" defs["igSetColumnOffset"][1]["signature"] = "(int,float)" -defs["igSetColumnOffset"][1]["stname"] = "ImGui" +defs["igSetColumnOffset"][1]["stname"] = "" defs["igSetColumnOffset"]["(int,float)"] = defs["igSetColumnOffset"][1] defs["igSetColumnWidth"] = {} defs["igSetColumnWidth"][1] = {} @@ -11049,9 +11782,11 @@ defs["igSetColumnWidth"][1]["cimguiname"] = "igSetColumnWidth" defs["igSetColumnWidth"][1]["comment"] = "" defs["igSetColumnWidth"][1]["defaults"] = {} defs["igSetColumnWidth"][1]["funcname"] = "SetColumnWidth" +defs["igSetColumnWidth"][1]["namespace"] = "ImGui" +defs["igSetColumnWidth"][1]["ov_cimguiname"] = "igSetColumnWidth" defs["igSetColumnWidth"][1]["ret"] = "void" defs["igSetColumnWidth"][1]["signature"] = "(int,float)" -defs["igSetColumnWidth"][1]["stname"] = "ImGui" +defs["igSetColumnWidth"][1]["stname"] = "" defs["igSetColumnWidth"]["(int,float)"] = defs["igSetColumnWidth"][1] defs["igSetCurrentContext"] = {} defs["igSetCurrentContext"][1] = {} @@ -11066,9 +11801,11 @@ defs["igSetCurrentContext"][1]["cimguiname"] = "igSetCurrentContext" defs["igSetCurrentContext"][1]["comment"] = "" defs["igSetCurrentContext"][1]["defaults"] = {} defs["igSetCurrentContext"][1]["funcname"] = "SetCurrentContext" +defs["igSetCurrentContext"][1]["namespace"] = "ImGui" +defs["igSetCurrentContext"][1]["ov_cimguiname"] = "igSetCurrentContext" defs["igSetCurrentContext"][1]["ret"] = "void" defs["igSetCurrentContext"][1]["signature"] = "(ImGuiContext*)" -defs["igSetCurrentContext"][1]["stname"] = "ImGui" +defs["igSetCurrentContext"][1]["stname"] = "" defs["igSetCurrentContext"]["(ImGuiContext*)"] = defs["igSetCurrentContext"][1] defs["igSetCursorPos"] = {} defs["igSetCursorPos"][1] = {} @@ -11083,9 +11820,11 @@ defs["igSetCursorPos"][1]["cimguiname"] = "igSetCursorPos" defs["igSetCursorPos"][1]["comment"] = "" defs["igSetCursorPos"][1]["defaults"] = {} defs["igSetCursorPos"][1]["funcname"] = "SetCursorPos" +defs["igSetCursorPos"][1]["namespace"] = "ImGui" +defs["igSetCursorPos"][1]["ov_cimguiname"] = "igSetCursorPos" defs["igSetCursorPos"][1]["ret"] = "void" defs["igSetCursorPos"][1]["signature"] = "(const ImVec2)" -defs["igSetCursorPos"][1]["stname"] = "ImGui" +defs["igSetCursorPos"][1]["stname"] = "" defs["igSetCursorPos"]["(const ImVec2)"] = defs["igSetCursorPos"][1] defs["igSetCursorPosX"] = {} defs["igSetCursorPosX"][1] = {} @@ -11100,9 +11839,11 @@ defs["igSetCursorPosX"][1]["cimguiname"] = "igSetCursorPosX" defs["igSetCursorPosX"][1]["comment"] = "" defs["igSetCursorPosX"][1]["defaults"] = {} defs["igSetCursorPosX"][1]["funcname"] = "SetCursorPosX" +defs["igSetCursorPosX"][1]["namespace"] = "ImGui" +defs["igSetCursorPosX"][1]["ov_cimguiname"] = "igSetCursorPosX" defs["igSetCursorPosX"][1]["ret"] = "void" defs["igSetCursorPosX"][1]["signature"] = "(float)" -defs["igSetCursorPosX"][1]["stname"] = "ImGui" +defs["igSetCursorPosX"][1]["stname"] = "" defs["igSetCursorPosX"]["(float)"] = defs["igSetCursorPosX"][1] defs["igSetCursorPosY"] = {} defs["igSetCursorPosY"][1] = {} @@ -11117,9 +11858,11 @@ defs["igSetCursorPosY"][1]["cimguiname"] = "igSetCursorPosY" defs["igSetCursorPosY"][1]["comment"] = "" defs["igSetCursorPosY"][1]["defaults"] = {} defs["igSetCursorPosY"][1]["funcname"] = "SetCursorPosY" +defs["igSetCursorPosY"][1]["namespace"] = "ImGui" +defs["igSetCursorPosY"][1]["ov_cimguiname"] = "igSetCursorPosY" defs["igSetCursorPosY"][1]["ret"] = "void" defs["igSetCursorPosY"][1]["signature"] = "(float)" -defs["igSetCursorPosY"][1]["stname"] = "ImGui" +defs["igSetCursorPosY"][1]["stname"] = "" defs["igSetCursorPosY"]["(float)"] = defs["igSetCursorPosY"][1] defs["igSetCursorScreenPos"] = {} defs["igSetCursorScreenPos"][1] = {} @@ -11134,9 +11877,11 @@ defs["igSetCursorScreenPos"][1]["cimguiname"] = "igSetCursorScreenPos" defs["igSetCursorScreenPos"][1]["comment"] = "" defs["igSetCursorScreenPos"][1]["defaults"] = {} defs["igSetCursorScreenPos"][1]["funcname"] = "SetCursorScreenPos" +defs["igSetCursorScreenPos"][1]["namespace"] = "ImGui" +defs["igSetCursorScreenPos"][1]["ov_cimguiname"] = "igSetCursorScreenPos" defs["igSetCursorScreenPos"][1]["ret"] = "void" defs["igSetCursorScreenPos"][1]["signature"] = "(const ImVec2)" -defs["igSetCursorScreenPos"][1]["stname"] = "ImGui" +defs["igSetCursorScreenPos"][1]["stname"] = "" defs["igSetCursorScreenPos"]["(const ImVec2)"] = defs["igSetCursorScreenPos"][1] defs["igSetDragDropPayload"] = {} defs["igSetDragDropPayload"][1] = {} @@ -11161,9 +11906,11 @@ defs["igSetDragDropPayload"][1]["comment"] = "" defs["igSetDragDropPayload"][1]["defaults"] = {} defs["igSetDragDropPayload"][1]["defaults"]["cond"] = "0" defs["igSetDragDropPayload"][1]["funcname"] = "SetDragDropPayload" +defs["igSetDragDropPayload"][1]["namespace"] = "ImGui" +defs["igSetDragDropPayload"][1]["ov_cimguiname"] = "igSetDragDropPayload" defs["igSetDragDropPayload"][1]["ret"] = "bool" defs["igSetDragDropPayload"][1]["signature"] = "(const char*,const void*,size_t,ImGuiCond)" -defs["igSetDragDropPayload"][1]["stname"] = "ImGui" +defs["igSetDragDropPayload"][1]["stname"] = "" defs["igSetDragDropPayload"]["(const char*,const void*,size_t,ImGuiCond)"] = defs["igSetDragDropPayload"][1] defs["igSetItemAllowOverlap"] = {} defs["igSetItemAllowOverlap"][1] = {} @@ -11175,9 +11922,11 @@ defs["igSetItemAllowOverlap"][1]["cimguiname"] = "igSetItemAllowOverlap" defs["igSetItemAllowOverlap"][1]["comment"] = "" defs["igSetItemAllowOverlap"][1]["defaults"] = {} defs["igSetItemAllowOverlap"][1]["funcname"] = "SetItemAllowOverlap" +defs["igSetItemAllowOverlap"][1]["namespace"] = "ImGui" +defs["igSetItemAllowOverlap"][1]["ov_cimguiname"] = "igSetItemAllowOverlap" defs["igSetItemAllowOverlap"][1]["ret"] = "void" defs["igSetItemAllowOverlap"][1]["signature"] = "()" -defs["igSetItemAllowOverlap"][1]["stname"] = "ImGui" +defs["igSetItemAllowOverlap"][1]["stname"] = "" defs["igSetItemAllowOverlap"]["()"] = defs["igSetItemAllowOverlap"][1] defs["igSetItemDefaultFocus"] = {} defs["igSetItemDefaultFocus"][1] = {} @@ -11189,9 +11938,11 @@ defs["igSetItemDefaultFocus"][1]["cimguiname"] = "igSetItemDefaultFocus" defs["igSetItemDefaultFocus"][1]["comment"] = "" defs["igSetItemDefaultFocus"][1]["defaults"] = {} defs["igSetItemDefaultFocus"][1]["funcname"] = "SetItemDefaultFocus" +defs["igSetItemDefaultFocus"][1]["namespace"] = "ImGui" +defs["igSetItemDefaultFocus"][1]["ov_cimguiname"] = "igSetItemDefaultFocus" defs["igSetItemDefaultFocus"][1]["ret"] = "void" defs["igSetItemDefaultFocus"][1]["signature"] = "()" -defs["igSetItemDefaultFocus"][1]["stname"] = "ImGui" +defs["igSetItemDefaultFocus"][1]["stname"] = "" defs["igSetItemDefaultFocus"]["()"] = defs["igSetItemDefaultFocus"][1] defs["igSetKeyboardFocusHere"] = {} defs["igSetKeyboardFocusHere"][1] = {} @@ -11207,9 +11958,11 @@ defs["igSetKeyboardFocusHere"][1]["comment"] = "" defs["igSetKeyboardFocusHere"][1]["defaults"] = {} defs["igSetKeyboardFocusHere"][1]["defaults"]["offset"] = "0" defs["igSetKeyboardFocusHere"][1]["funcname"] = "SetKeyboardFocusHere" +defs["igSetKeyboardFocusHere"][1]["namespace"] = "ImGui" +defs["igSetKeyboardFocusHere"][1]["ov_cimguiname"] = "igSetKeyboardFocusHere" defs["igSetKeyboardFocusHere"][1]["ret"] = "void" defs["igSetKeyboardFocusHere"][1]["signature"] = "(int)" -defs["igSetKeyboardFocusHere"][1]["stname"] = "ImGui" +defs["igSetKeyboardFocusHere"][1]["stname"] = "" defs["igSetKeyboardFocusHere"]["(int)"] = defs["igSetKeyboardFocusHere"][1] defs["igSetMouseCursor"] = {} defs["igSetMouseCursor"][1] = {} @@ -11224,9 +11977,11 @@ defs["igSetMouseCursor"][1]["cimguiname"] = "igSetMouseCursor" defs["igSetMouseCursor"][1]["comment"] = "" defs["igSetMouseCursor"][1]["defaults"] = {} defs["igSetMouseCursor"][1]["funcname"] = "SetMouseCursor" +defs["igSetMouseCursor"][1]["namespace"] = "ImGui" +defs["igSetMouseCursor"][1]["ov_cimguiname"] = "igSetMouseCursor" defs["igSetMouseCursor"][1]["ret"] = "void" defs["igSetMouseCursor"][1]["signature"] = "(ImGuiMouseCursor)" -defs["igSetMouseCursor"][1]["stname"] = "ImGui" +defs["igSetMouseCursor"][1]["stname"] = "" defs["igSetMouseCursor"]["(ImGuiMouseCursor)"] = defs["igSetMouseCursor"][1] defs["igSetNextTreeNodeOpen"] = {} defs["igSetNextTreeNodeOpen"][1] = {} @@ -11245,9 +12000,11 @@ defs["igSetNextTreeNodeOpen"][1]["comment"] = "" defs["igSetNextTreeNodeOpen"][1]["defaults"] = {} defs["igSetNextTreeNodeOpen"][1]["defaults"]["cond"] = "0" defs["igSetNextTreeNodeOpen"][1]["funcname"] = "SetNextTreeNodeOpen" +defs["igSetNextTreeNodeOpen"][1]["namespace"] = "ImGui" +defs["igSetNextTreeNodeOpen"][1]["ov_cimguiname"] = "igSetNextTreeNodeOpen" defs["igSetNextTreeNodeOpen"][1]["ret"] = "void" defs["igSetNextTreeNodeOpen"][1]["signature"] = "(bool,ImGuiCond)" -defs["igSetNextTreeNodeOpen"][1]["stname"] = "ImGui" +defs["igSetNextTreeNodeOpen"][1]["stname"] = "" defs["igSetNextTreeNodeOpen"]["(bool,ImGuiCond)"] = defs["igSetNextTreeNodeOpen"][1] defs["igSetNextWindowBgAlpha"] = {} defs["igSetNextWindowBgAlpha"][1] = {} @@ -11262,9 +12019,11 @@ defs["igSetNextWindowBgAlpha"][1]["cimguiname"] = "igSetNextWindowBgAlpha" defs["igSetNextWindowBgAlpha"][1]["comment"] = "" defs["igSetNextWindowBgAlpha"][1]["defaults"] = {} defs["igSetNextWindowBgAlpha"][1]["funcname"] = "SetNextWindowBgAlpha" +defs["igSetNextWindowBgAlpha"][1]["namespace"] = "ImGui" +defs["igSetNextWindowBgAlpha"][1]["ov_cimguiname"] = "igSetNextWindowBgAlpha" defs["igSetNextWindowBgAlpha"][1]["ret"] = "void" defs["igSetNextWindowBgAlpha"][1]["signature"] = "(float)" -defs["igSetNextWindowBgAlpha"][1]["stname"] = "ImGui" +defs["igSetNextWindowBgAlpha"][1]["stname"] = "" defs["igSetNextWindowBgAlpha"]["(float)"] = defs["igSetNextWindowBgAlpha"][1] defs["igSetNextWindowCollapsed"] = {} defs["igSetNextWindowCollapsed"][1] = {} @@ -11283,9 +12042,11 @@ defs["igSetNextWindowCollapsed"][1]["comment"] = "" defs["igSetNextWindowCollapsed"][1]["defaults"] = {} defs["igSetNextWindowCollapsed"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowCollapsed"][1]["funcname"] = "SetNextWindowCollapsed" +defs["igSetNextWindowCollapsed"][1]["namespace"] = "ImGui" +defs["igSetNextWindowCollapsed"][1]["ov_cimguiname"] = "igSetNextWindowCollapsed" defs["igSetNextWindowCollapsed"][1]["ret"] = "void" defs["igSetNextWindowCollapsed"][1]["signature"] = "(bool,ImGuiCond)" -defs["igSetNextWindowCollapsed"][1]["stname"] = "ImGui" +defs["igSetNextWindowCollapsed"][1]["stname"] = "" defs["igSetNextWindowCollapsed"]["(bool,ImGuiCond)"] = defs["igSetNextWindowCollapsed"][1] defs["igSetNextWindowContentSize"] = {} defs["igSetNextWindowContentSize"][1] = {} @@ -11300,9 +12061,11 @@ defs["igSetNextWindowContentSize"][1]["cimguiname"] = "igSetNextWindowContentSiz defs["igSetNextWindowContentSize"][1]["comment"] = "" defs["igSetNextWindowContentSize"][1]["defaults"] = {} defs["igSetNextWindowContentSize"][1]["funcname"] = "SetNextWindowContentSize" +defs["igSetNextWindowContentSize"][1]["namespace"] = "ImGui" +defs["igSetNextWindowContentSize"][1]["ov_cimguiname"] = "igSetNextWindowContentSize" defs["igSetNextWindowContentSize"][1]["ret"] = "void" defs["igSetNextWindowContentSize"][1]["signature"] = "(const ImVec2)" -defs["igSetNextWindowContentSize"][1]["stname"] = "ImGui" +defs["igSetNextWindowContentSize"][1]["stname"] = "" defs["igSetNextWindowContentSize"]["(const ImVec2)"] = defs["igSetNextWindowContentSize"][1] defs["igSetNextWindowFocus"] = {} defs["igSetNextWindowFocus"][1] = {} @@ -11314,9 +12077,11 @@ defs["igSetNextWindowFocus"][1]["cimguiname"] = "igSetNextWindowFocus" defs["igSetNextWindowFocus"][1]["comment"] = "" defs["igSetNextWindowFocus"][1]["defaults"] = {} defs["igSetNextWindowFocus"][1]["funcname"] = "SetNextWindowFocus" +defs["igSetNextWindowFocus"][1]["namespace"] = "ImGui" +defs["igSetNextWindowFocus"][1]["ov_cimguiname"] = "igSetNextWindowFocus" defs["igSetNextWindowFocus"][1]["ret"] = "void" defs["igSetNextWindowFocus"][1]["signature"] = "()" -defs["igSetNextWindowFocus"][1]["stname"] = "ImGui" +defs["igSetNextWindowFocus"][1]["stname"] = "" defs["igSetNextWindowFocus"]["()"] = defs["igSetNextWindowFocus"][1] defs["igSetNextWindowPos"] = {} defs["igSetNextWindowPos"][1] = {} @@ -11339,9 +12104,11 @@ defs["igSetNextWindowPos"][1]["defaults"] = {} defs["igSetNextWindowPos"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowPos"][1]["defaults"]["pivot"] = "ImVec2(0,0)" defs["igSetNextWindowPos"][1]["funcname"] = "SetNextWindowPos" +defs["igSetNextWindowPos"][1]["namespace"] = "ImGui" +defs["igSetNextWindowPos"][1]["ov_cimguiname"] = "igSetNextWindowPos" defs["igSetNextWindowPos"][1]["ret"] = "void" defs["igSetNextWindowPos"][1]["signature"] = "(const ImVec2,ImGuiCond,const ImVec2)" -defs["igSetNextWindowPos"][1]["stname"] = "ImGui" +defs["igSetNextWindowPos"][1]["stname"] = "" defs["igSetNextWindowPos"]["(const ImVec2,ImGuiCond,const ImVec2)"] = defs["igSetNextWindowPos"][1] defs["igSetNextWindowSize"] = {} defs["igSetNextWindowSize"][1] = {} @@ -11360,9 +12127,11 @@ defs["igSetNextWindowSize"][1]["comment"] = "" defs["igSetNextWindowSize"][1]["defaults"] = {} defs["igSetNextWindowSize"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowSize"][1]["funcname"] = "SetNextWindowSize" +defs["igSetNextWindowSize"][1]["namespace"] = "ImGui" +defs["igSetNextWindowSize"][1]["ov_cimguiname"] = "igSetNextWindowSize" defs["igSetNextWindowSize"][1]["ret"] = "void" defs["igSetNextWindowSize"][1]["signature"] = "(const ImVec2,ImGuiCond)" -defs["igSetNextWindowSize"][1]["stname"] = "ImGui" +defs["igSetNextWindowSize"][1]["stname"] = "" defs["igSetNextWindowSize"]["(const ImVec2,ImGuiCond)"] = defs["igSetNextWindowSize"][1] defs["igSetNextWindowSizeConstraints"] = {} defs["igSetNextWindowSizeConstraints"][1] = {} @@ -11380,17 +12149,19 @@ defs["igSetNextWindowSizeConstraints"][1]["argsT"][3]["type"] = "ImGuiSizeCallba defs["igSetNextWindowSizeConstraints"][1]["argsT"][4] = {} defs["igSetNextWindowSizeConstraints"][1]["argsT"][4]["name"] = "custom_callback_data" defs["igSetNextWindowSizeConstraints"][1]["argsT"][4]["type"] = "void*" -defs["igSetNextWindowSizeConstraints"][1]["argsoriginal"] = "(const ImVec2& size_min,const ImVec2& size_max,ImGuiSizeCallback custom_callback=((void *)0),void* custom_callback_data=((void *)0))" +defs["igSetNextWindowSizeConstraints"][1]["argsoriginal"] = "(const ImVec2& size_min,const ImVec2& size_max,ImGuiSizeCallback custom_callback=((void*)0),void* custom_callback_data=((void*)0))" defs["igSetNextWindowSizeConstraints"][1]["call_args"] = "(size_min,size_max,custom_callback,custom_callback_data)" defs["igSetNextWindowSizeConstraints"][1]["cimguiname"] = "igSetNextWindowSizeConstraints" defs["igSetNextWindowSizeConstraints"][1]["comment"] = "" defs["igSetNextWindowSizeConstraints"][1]["defaults"] = {} -defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback"] = "((void *)0)" -defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback_data"] = "((void *)0)" +defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback"] = "((void*)0)" +defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback_data"] = "((void*)0)" defs["igSetNextWindowSizeConstraints"][1]["funcname"] = "SetNextWindowSizeConstraints" +defs["igSetNextWindowSizeConstraints"][1]["namespace"] = "ImGui" +defs["igSetNextWindowSizeConstraints"][1]["ov_cimguiname"] = "igSetNextWindowSizeConstraints" defs["igSetNextWindowSizeConstraints"][1]["ret"] = "void" defs["igSetNextWindowSizeConstraints"][1]["signature"] = "(const ImVec2,const ImVec2,ImGuiSizeCallback,void*)" -defs["igSetNextWindowSizeConstraints"][1]["stname"] = "ImGui" +defs["igSetNextWindowSizeConstraints"][1]["stname"] = "" defs["igSetNextWindowSizeConstraints"]["(const ImVec2,const ImVec2,ImGuiSizeCallback,void*)"] = defs["igSetNextWindowSizeConstraints"][1] defs["igSetScrollFromPosY"] = {} defs["igSetScrollFromPosY"][1] = {} @@ -11409,9 +12180,11 @@ defs["igSetScrollFromPosY"][1]["comment"] = "" defs["igSetScrollFromPosY"][1]["defaults"] = {} defs["igSetScrollFromPosY"][1]["defaults"]["center_y_ratio"] = "0.5f" defs["igSetScrollFromPosY"][1]["funcname"] = "SetScrollFromPosY" +defs["igSetScrollFromPosY"][1]["namespace"] = "ImGui" +defs["igSetScrollFromPosY"][1]["ov_cimguiname"] = "igSetScrollFromPosY" defs["igSetScrollFromPosY"][1]["ret"] = "void" defs["igSetScrollFromPosY"][1]["signature"] = "(float,float)" -defs["igSetScrollFromPosY"][1]["stname"] = "ImGui" +defs["igSetScrollFromPosY"][1]["stname"] = "" defs["igSetScrollFromPosY"]["(float,float)"] = defs["igSetScrollFromPosY"][1] defs["igSetScrollHereY"] = {} defs["igSetScrollHereY"][1] = {} @@ -11427,9 +12200,11 @@ defs["igSetScrollHereY"][1]["comment"] = "" defs["igSetScrollHereY"][1]["defaults"] = {} defs["igSetScrollHereY"][1]["defaults"]["center_y_ratio"] = "0.5f" defs["igSetScrollHereY"][1]["funcname"] = "SetScrollHereY" +defs["igSetScrollHereY"][1]["namespace"] = "ImGui" +defs["igSetScrollHereY"][1]["ov_cimguiname"] = "igSetScrollHereY" defs["igSetScrollHereY"][1]["ret"] = "void" defs["igSetScrollHereY"][1]["signature"] = "(float)" -defs["igSetScrollHereY"][1]["stname"] = "ImGui" +defs["igSetScrollHereY"][1]["stname"] = "" defs["igSetScrollHereY"]["(float)"] = defs["igSetScrollHereY"][1] defs["igSetScrollX"] = {} defs["igSetScrollX"][1] = {} @@ -11444,9 +12219,11 @@ defs["igSetScrollX"][1]["cimguiname"] = "igSetScrollX" defs["igSetScrollX"][1]["comment"] = "" defs["igSetScrollX"][1]["defaults"] = {} defs["igSetScrollX"][1]["funcname"] = "SetScrollX" +defs["igSetScrollX"][1]["namespace"] = "ImGui" +defs["igSetScrollX"][1]["ov_cimguiname"] = "igSetScrollX" defs["igSetScrollX"][1]["ret"] = "void" defs["igSetScrollX"][1]["signature"] = "(float)" -defs["igSetScrollX"][1]["stname"] = "ImGui" +defs["igSetScrollX"][1]["stname"] = "" defs["igSetScrollX"]["(float)"] = defs["igSetScrollX"][1] defs["igSetScrollY"] = {} defs["igSetScrollY"][1] = {} @@ -11461,9 +12238,11 @@ defs["igSetScrollY"][1]["cimguiname"] = "igSetScrollY" defs["igSetScrollY"][1]["comment"] = "" defs["igSetScrollY"][1]["defaults"] = {} defs["igSetScrollY"][1]["funcname"] = "SetScrollY" +defs["igSetScrollY"][1]["namespace"] = "ImGui" +defs["igSetScrollY"][1]["ov_cimguiname"] = "igSetScrollY" defs["igSetScrollY"][1]["ret"] = "void" defs["igSetScrollY"][1]["signature"] = "(float)" -defs["igSetScrollY"][1]["stname"] = "ImGui" +defs["igSetScrollY"][1]["stname"] = "" defs["igSetScrollY"]["(float)"] = defs["igSetScrollY"][1] defs["igSetStateStorage"] = {} defs["igSetStateStorage"][1] = {} @@ -11478,9 +12257,11 @@ defs["igSetStateStorage"][1]["cimguiname"] = "igSetStateStorage" defs["igSetStateStorage"][1]["comment"] = "" defs["igSetStateStorage"][1]["defaults"] = {} defs["igSetStateStorage"][1]["funcname"] = "SetStateStorage" +defs["igSetStateStorage"][1]["namespace"] = "ImGui" +defs["igSetStateStorage"][1]["ov_cimguiname"] = "igSetStateStorage" defs["igSetStateStorage"][1]["ret"] = "void" defs["igSetStateStorage"][1]["signature"] = "(ImGuiStorage*)" -defs["igSetStateStorage"][1]["stname"] = "ImGui" +defs["igSetStateStorage"][1]["stname"] = "" defs["igSetStateStorage"]["(ImGuiStorage*)"] = defs["igSetStateStorage"][1] defs["igSetTabItemClosed"] = {} defs["igSetTabItemClosed"][1] = {} @@ -11495,9 +12276,11 @@ defs["igSetTabItemClosed"][1]["cimguiname"] = "igSetTabItemClosed" defs["igSetTabItemClosed"][1]["comment"] = "" defs["igSetTabItemClosed"][1]["defaults"] = {} defs["igSetTabItemClosed"][1]["funcname"] = "SetTabItemClosed" +defs["igSetTabItemClosed"][1]["namespace"] = "ImGui" +defs["igSetTabItemClosed"][1]["ov_cimguiname"] = "igSetTabItemClosed" defs["igSetTabItemClosed"][1]["ret"] = "void" defs["igSetTabItemClosed"][1]["signature"] = "(const char*)" -defs["igSetTabItemClosed"][1]["stname"] = "ImGui" +defs["igSetTabItemClosed"][1]["stname"] = "" defs["igSetTabItemClosed"]["(const char*)"] = defs["igSetTabItemClosed"][1] defs["igSetTooltip"] = {} defs["igSetTooltip"][1] = {} @@ -11516,9 +12299,11 @@ defs["igSetTooltip"][1]["comment"] = "" defs["igSetTooltip"][1]["defaults"] = {} defs["igSetTooltip"][1]["funcname"] = "SetTooltip" defs["igSetTooltip"][1]["isvararg"] = "...)" +defs["igSetTooltip"][1]["namespace"] = "ImGui" +defs["igSetTooltip"][1]["ov_cimguiname"] = "igSetTooltip" defs["igSetTooltip"][1]["ret"] = "void" defs["igSetTooltip"][1]["signature"] = "(const char*,...)" -defs["igSetTooltip"][1]["stname"] = "ImGui" +defs["igSetTooltip"][1]["stname"] = "" defs["igSetTooltip"]["(const char*,...)"] = defs["igSetTooltip"][1] defs["igSetTooltipV"] = {} defs["igSetTooltipV"][1] = {} @@ -11536,9 +12321,11 @@ defs["igSetTooltipV"][1]["cimguiname"] = "igSetTooltipV" defs["igSetTooltipV"][1]["comment"] = "" defs["igSetTooltipV"][1]["defaults"] = {} defs["igSetTooltipV"][1]["funcname"] = "SetTooltipV" +defs["igSetTooltipV"][1]["namespace"] = "ImGui" +defs["igSetTooltipV"][1]["ov_cimguiname"] = "igSetTooltipV" defs["igSetTooltipV"][1]["ret"] = "void" defs["igSetTooltipV"][1]["signature"] = "(const char*,va_list)" -defs["igSetTooltipV"][1]["stname"] = "ImGui" +defs["igSetTooltipV"][1]["stname"] = "" defs["igSetTooltipV"]["(const char*,va_list)"] = defs["igSetTooltipV"][1] defs["igSetWindowCollapsed"] = {} defs["igSetWindowCollapsed"][1] = {} @@ -11557,10 +12344,11 @@ defs["igSetWindowCollapsed"][1]["comment"] = "" defs["igSetWindowCollapsed"][1]["defaults"] = {} defs["igSetWindowCollapsed"][1]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][1]["funcname"] = "SetWindowCollapsed" +defs["igSetWindowCollapsed"][1]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][1]["ov_cimguiname"] = "igSetWindowCollapsedBool" defs["igSetWindowCollapsed"][1]["ret"] = "void" defs["igSetWindowCollapsed"][1]["signature"] = "(bool,ImGuiCond)" -defs["igSetWindowCollapsed"][1]["stname"] = "ImGui" +defs["igSetWindowCollapsed"][1]["stname"] = "" defs["igSetWindowCollapsed"][2] = {} defs["igSetWindowCollapsed"][2]["args"] = "(const char* name,bool collapsed,ImGuiCond cond)" defs["igSetWindowCollapsed"][2]["argsT"] = {} @@ -11580,10 +12368,11 @@ defs["igSetWindowCollapsed"][2]["comment"] = "" defs["igSetWindowCollapsed"][2]["defaults"] = {} defs["igSetWindowCollapsed"][2]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][2]["funcname"] = "SetWindowCollapsed" +defs["igSetWindowCollapsed"][2]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][2]["ov_cimguiname"] = "igSetWindowCollapsedStr" defs["igSetWindowCollapsed"][2]["ret"] = "void" defs["igSetWindowCollapsed"][2]["signature"] = "(const char*,bool,ImGuiCond)" -defs["igSetWindowCollapsed"][2]["stname"] = "ImGui" +defs["igSetWindowCollapsed"][2]["stname"] = "" defs["igSetWindowCollapsed"]["(bool,ImGuiCond)"] = defs["igSetWindowCollapsed"][1] defs["igSetWindowCollapsed"]["(const char*,bool,ImGuiCond)"] = defs["igSetWindowCollapsed"][2] defs["igSetWindowFocus"] = {} @@ -11596,10 +12385,11 @@ defs["igSetWindowFocus"][1]["cimguiname"] = "igSetWindowFocus" defs["igSetWindowFocus"][1]["comment"] = "" defs["igSetWindowFocus"][1]["defaults"] = {} defs["igSetWindowFocus"][1]["funcname"] = "SetWindowFocus" +defs["igSetWindowFocus"][1]["namespace"] = "ImGui" defs["igSetWindowFocus"][1]["ov_cimguiname"] = "igSetWindowFocus" defs["igSetWindowFocus"][1]["ret"] = "void" defs["igSetWindowFocus"][1]["signature"] = "()" -defs["igSetWindowFocus"][1]["stname"] = "ImGui" +defs["igSetWindowFocus"][1]["stname"] = "" defs["igSetWindowFocus"][2] = {} defs["igSetWindowFocus"][2]["args"] = "(const char* name)" defs["igSetWindowFocus"][2]["argsT"] = {} @@ -11612,10 +12402,11 @@ defs["igSetWindowFocus"][2]["cimguiname"] = "igSetWindowFocus" defs["igSetWindowFocus"][2]["comment"] = "" defs["igSetWindowFocus"][2]["defaults"] = {} defs["igSetWindowFocus"][2]["funcname"] = "SetWindowFocus" +defs["igSetWindowFocus"][2]["namespace"] = "ImGui" defs["igSetWindowFocus"][2]["ov_cimguiname"] = "igSetWindowFocusStr" defs["igSetWindowFocus"][2]["ret"] = "void" defs["igSetWindowFocus"][2]["signature"] = "(const char*)" -defs["igSetWindowFocus"][2]["stname"] = "ImGui" +defs["igSetWindowFocus"][2]["stname"] = "" defs["igSetWindowFocus"]["()"] = defs["igSetWindowFocus"][1] defs["igSetWindowFocus"]["(const char*)"] = defs["igSetWindowFocus"][2] defs["igSetWindowFontScale"] = {} @@ -11631,9 +12422,11 @@ defs["igSetWindowFontScale"][1]["cimguiname"] = "igSetWindowFontScale" defs["igSetWindowFontScale"][1]["comment"] = "" defs["igSetWindowFontScale"][1]["defaults"] = {} defs["igSetWindowFontScale"][1]["funcname"] = "SetWindowFontScale" +defs["igSetWindowFontScale"][1]["namespace"] = "ImGui" +defs["igSetWindowFontScale"][1]["ov_cimguiname"] = "igSetWindowFontScale" defs["igSetWindowFontScale"][1]["ret"] = "void" defs["igSetWindowFontScale"][1]["signature"] = "(float)" -defs["igSetWindowFontScale"][1]["stname"] = "ImGui" +defs["igSetWindowFontScale"][1]["stname"] = "" defs["igSetWindowFontScale"]["(float)"] = defs["igSetWindowFontScale"][1] defs["igSetWindowPos"] = {} defs["igSetWindowPos"][1] = {} @@ -11652,10 +12445,11 @@ defs["igSetWindowPos"][1]["comment"] = "" defs["igSetWindowPos"][1]["defaults"] = {} defs["igSetWindowPos"][1]["defaults"]["cond"] = "0" defs["igSetWindowPos"][1]["funcname"] = "SetWindowPos" +defs["igSetWindowPos"][1]["namespace"] = "ImGui" defs["igSetWindowPos"][1]["ov_cimguiname"] = "igSetWindowPosVec2" defs["igSetWindowPos"][1]["ret"] = "void" defs["igSetWindowPos"][1]["signature"] = "(const ImVec2,ImGuiCond)" -defs["igSetWindowPos"][1]["stname"] = "ImGui" +defs["igSetWindowPos"][1]["stname"] = "" defs["igSetWindowPos"][2] = {} defs["igSetWindowPos"][2]["args"] = "(const char* name,const ImVec2 pos,ImGuiCond cond)" defs["igSetWindowPos"][2]["argsT"] = {} @@ -11675,10 +12469,11 @@ defs["igSetWindowPos"][2]["comment"] = "" defs["igSetWindowPos"][2]["defaults"] = {} defs["igSetWindowPos"][2]["defaults"]["cond"] = "0" defs["igSetWindowPos"][2]["funcname"] = "SetWindowPos" +defs["igSetWindowPos"][2]["namespace"] = "ImGui" defs["igSetWindowPos"][2]["ov_cimguiname"] = "igSetWindowPosStr" defs["igSetWindowPos"][2]["ret"] = "void" defs["igSetWindowPos"][2]["signature"] = "(const char*,const ImVec2,ImGuiCond)" -defs["igSetWindowPos"][2]["stname"] = "ImGui" +defs["igSetWindowPos"][2]["stname"] = "" defs["igSetWindowPos"]["(const ImVec2,ImGuiCond)"] = defs["igSetWindowPos"][1] defs["igSetWindowPos"]["(const char*,const ImVec2,ImGuiCond)"] = defs["igSetWindowPos"][2] defs["igSetWindowSize"] = {} @@ -11698,10 +12493,11 @@ defs["igSetWindowSize"][1]["comment"] = "" defs["igSetWindowSize"][1]["defaults"] = {} defs["igSetWindowSize"][1]["defaults"]["cond"] = "0" defs["igSetWindowSize"][1]["funcname"] = "SetWindowSize" +defs["igSetWindowSize"][1]["namespace"] = "ImGui" defs["igSetWindowSize"][1]["ov_cimguiname"] = "igSetWindowSizeVec2" defs["igSetWindowSize"][1]["ret"] = "void" defs["igSetWindowSize"][1]["signature"] = "(const ImVec2,ImGuiCond)" -defs["igSetWindowSize"][1]["stname"] = "ImGui" +defs["igSetWindowSize"][1]["stname"] = "" defs["igSetWindowSize"][2] = {} defs["igSetWindowSize"][2]["args"] = "(const char* name,const ImVec2 size,ImGuiCond cond)" defs["igSetWindowSize"][2]["argsT"] = {} @@ -11721,10 +12517,11 @@ defs["igSetWindowSize"][2]["comment"] = "" defs["igSetWindowSize"][2]["defaults"] = {} defs["igSetWindowSize"][2]["defaults"]["cond"] = "0" defs["igSetWindowSize"][2]["funcname"] = "SetWindowSize" +defs["igSetWindowSize"][2]["namespace"] = "ImGui" defs["igSetWindowSize"][2]["ov_cimguiname"] = "igSetWindowSizeStr" defs["igSetWindowSize"][2]["ret"] = "void" defs["igSetWindowSize"][2]["signature"] = "(const char*,const ImVec2,ImGuiCond)" -defs["igSetWindowSize"][2]["stname"] = "ImGui" +defs["igSetWindowSize"][2]["stname"] = "" defs["igSetWindowSize"]["(const ImVec2,ImGuiCond)"] = defs["igSetWindowSize"][1] defs["igSetWindowSize"]["(const char*,const ImVec2,ImGuiCond)"] = defs["igSetWindowSize"][2] defs["igShowAboutWindow"] = {} @@ -11734,16 +12531,18 @@ defs["igShowAboutWindow"][1]["argsT"] = {} defs["igShowAboutWindow"][1]["argsT"][1] = {} defs["igShowAboutWindow"][1]["argsT"][1]["name"] = "p_open" defs["igShowAboutWindow"][1]["argsT"][1]["type"] = "bool*" -defs["igShowAboutWindow"][1]["argsoriginal"] = "(bool* p_open=((void *)0))" +defs["igShowAboutWindow"][1]["argsoriginal"] = "(bool* p_open=((void*)0))" defs["igShowAboutWindow"][1]["call_args"] = "(p_open)" defs["igShowAboutWindow"][1]["cimguiname"] = "igShowAboutWindow" defs["igShowAboutWindow"][1]["comment"] = "" defs["igShowAboutWindow"][1]["defaults"] = {} -defs["igShowAboutWindow"][1]["defaults"]["p_open"] = "((void *)0)" +defs["igShowAboutWindow"][1]["defaults"]["p_open"] = "((void*)0)" defs["igShowAboutWindow"][1]["funcname"] = "ShowAboutWindow" +defs["igShowAboutWindow"][1]["namespace"] = "ImGui" +defs["igShowAboutWindow"][1]["ov_cimguiname"] = "igShowAboutWindow" defs["igShowAboutWindow"][1]["ret"] = "void" defs["igShowAboutWindow"][1]["signature"] = "(bool*)" -defs["igShowAboutWindow"][1]["stname"] = "ImGui" +defs["igShowAboutWindow"][1]["stname"] = "" defs["igShowAboutWindow"]["(bool*)"] = defs["igShowAboutWindow"][1] defs["igShowDemoWindow"] = {} defs["igShowDemoWindow"][1] = {} @@ -11752,16 +12551,18 @@ defs["igShowDemoWindow"][1]["argsT"] = {} defs["igShowDemoWindow"][1]["argsT"][1] = {} defs["igShowDemoWindow"][1]["argsT"][1]["name"] = "p_open" defs["igShowDemoWindow"][1]["argsT"][1]["type"] = "bool*" -defs["igShowDemoWindow"][1]["argsoriginal"] = "(bool* p_open=((void *)0))" +defs["igShowDemoWindow"][1]["argsoriginal"] = "(bool* p_open=((void*)0))" defs["igShowDemoWindow"][1]["call_args"] = "(p_open)" defs["igShowDemoWindow"][1]["cimguiname"] = "igShowDemoWindow" defs["igShowDemoWindow"][1]["comment"] = "" defs["igShowDemoWindow"][1]["defaults"] = {} -defs["igShowDemoWindow"][1]["defaults"]["p_open"] = "((void *)0)" +defs["igShowDemoWindow"][1]["defaults"]["p_open"] = "((void*)0)" defs["igShowDemoWindow"][1]["funcname"] = "ShowDemoWindow" +defs["igShowDemoWindow"][1]["namespace"] = "ImGui" +defs["igShowDemoWindow"][1]["ov_cimguiname"] = "igShowDemoWindow" defs["igShowDemoWindow"][1]["ret"] = "void" defs["igShowDemoWindow"][1]["signature"] = "(bool*)" -defs["igShowDemoWindow"][1]["stname"] = "ImGui" +defs["igShowDemoWindow"][1]["stname"] = "" defs["igShowDemoWindow"]["(bool*)"] = defs["igShowDemoWindow"][1] defs["igShowFontSelector"] = {} defs["igShowFontSelector"][1] = {} @@ -11776,9 +12577,11 @@ defs["igShowFontSelector"][1]["cimguiname"] = "igShowFontSelector" defs["igShowFontSelector"][1]["comment"] = "" defs["igShowFontSelector"][1]["defaults"] = {} defs["igShowFontSelector"][1]["funcname"] = "ShowFontSelector" +defs["igShowFontSelector"][1]["namespace"] = "ImGui" +defs["igShowFontSelector"][1]["ov_cimguiname"] = "igShowFontSelector" defs["igShowFontSelector"][1]["ret"] = "void" defs["igShowFontSelector"][1]["signature"] = "(const char*)" -defs["igShowFontSelector"][1]["stname"] = "ImGui" +defs["igShowFontSelector"][1]["stname"] = "" defs["igShowFontSelector"]["(const char*)"] = defs["igShowFontSelector"][1] defs["igShowMetricsWindow"] = {} defs["igShowMetricsWindow"][1] = {} @@ -11787,16 +12590,18 @@ defs["igShowMetricsWindow"][1]["argsT"] = {} defs["igShowMetricsWindow"][1]["argsT"][1] = {} defs["igShowMetricsWindow"][1]["argsT"][1]["name"] = "p_open" defs["igShowMetricsWindow"][1]["argsT"][1]["type"] = "bool*" -defs["igShowMetricsWindow"][1]["argsoriginal"] = "(bool* p_open=((void *)0))" +defs["igShowMetricsWindow"][1]["argsoriginal"] = "(bool* p_open=((void*)0))" defs["igShowMetricsWindow"][1]["call_args"] = "(p_open)" defs["igShowMetricsWindow"][1]["cimguiname"] = "igShowMetricsWindow" defs["igShowMetricsWindow"][1]["comment"] = "" defs["igShowMetricsWindow"][1]["defaults"] = {} -defs["igShowMetricsWindow"][1]["defaults"]["p_open"] = "((void *)0)" +defs["igShowMetricsWindow"][1]["defaults"]["p_open"] = "((void*)0)" defs["igShowMetricsWindow"][1]["funcname"] = "ShowMetricsWindow" +defs["igShowMetricsWindow"][1]["namespace"] = "ImGui" +defs["igShowMetricsWindow"][1]["ov_cimguiname"] = "igShowMetricsWindow" defs["igShowMetricsWindow"][1]["ret"] = "void" defs["igShowMetricsWindow"][1]["signature"] = "(bool*)" -defs["igShowMetricsWindow"][1]["stname"] = "ImGui" +defs["igShowMetricsWindow"][1]["stname"] = "" defs["igShowMetricsWindow"]["(bool*)"] = defs["igShowMetricsWindow"][1] defs["igShowStyleEditor"] = {} defs["igShowStyleEditor"][1] = {} @@ -11805,16 +12610,18 @@ defs["igShowStyleEditor"][1]["argsT"] = {} defs["igShowStyleEditor"][1]["argsT"][1] = {} defs["igShowStyleEditor"][1]["argsT"][1]["name"] = "ref" defs["igShowStyleEditor"][1]["argsT"][1]["type"] = "ImGuiStyle*" -defs["igShowStyleEditor"][1]["argsoriginal"] = "(ImGuiStyle* ref=((void *)0))" +defs["igShowStyleEditor"][1]["argsoriginal"] = "(ImGuiStyle* ref=((void*)0))" defs["igShowStyleEditor"][1]["call_args"] = "(ref)" defs["igShowStyleEditor"][1]["cimguiname"] = "igShowStyleEditor" defs["igShowStyleEditor"][1]["comment"] = "" defs["igShowStyleEditor"][1]["defaults"] = {} -defs["igShowStyleEditor"][1]["defaults"]["ref"] = "((void *)0)" +defs["igShowStyleEditor"][1]["defaults"]["ref"] = "((void*)0)" defs["igShowStyleEditor"][1]["funcname"] = "ShowStyleEditor" +defs["igShowStyleEditor"][1]["namespace"] = "ImGui" +defs["igShowStyleEditor"][1]["ov_cimguiname"] = "igShowStyleEditor" defs["igShowStyleEditor"][1]["ret"] = "void" defs["igShowStyleEditor"][1]["signature"] = "(ImGuiStyle*)" -defs["igShowStyleEditor"][1]["stname"] = "ImGui" +defs["igShowStyleEditor"][1]["stname"] = "" defs["igShowStyleEditor"]["(ImGuiStyle*)"] = defs["igShowStyleEditor"][1] defs["igShowStyleSelector"] = {} defs["igShowStyleSelector"][1] = {} @@ -11829,9 +12636,11 @@ defs["igShowStyleSelector"][1]["cimguiname"] = "igShowStyleSelector" defs["igShowStyleSelector"][1]["comment"] = "" defs["igShowStyleSelector"][1]["defaults"] = {} defs["igShowStyleSelector"][1]["funcname"] = "ShowStyleSelector" +defs["igShowStyleSelector"][1]["namespace"] = "ImGui" +defs["igShowStyleSelector"][1]["ov_cimguiname"] = "igShowStyleSelector" defs["igShowStyleSelector"][1]["ret"] = "bool" defs["igShowStyleSelector"][1]["signature"] = "(const char*)" -defs["igShowStyleSelector"][1]["stname"] = "ImGui" +defs["igShowStyleSelector"][1]["stname"] = "" defs["igShowStyleSelector"]["(const char*)"] = defs["igShowStyleSelector"][1] defs["igShowUserGuide"] = {} defs["igShowUserGuide"][1] = {} @@ -11843,9 +12652,11 @@ defs["igShowUserGuide"][1]["cimguiname"] = "igShowUserGuide" defs["igShowUserGuide"][1]["comment"] = "" defs["igShowUserGuide"][1]["defaults"] = {} defs["igShowUserGuide"][1]["funcname"] = "ShowUserGuide" +defs["igShowUserGuide"][1]["namespace"] = "ImGui" +defs["igShowUserGuide"][1]["ov_cimguiname"] = "igShowUserGuide" defs["igShowUserGuide"][1]["ret"] = "void" defs["igShowUserGuide"][1]["signature"] = "()" -defs["igShowUserGuide"][1]["stname"] = "ImGui" +defs["igShowUserGuide"][1]["stname"] = "" defs["igShowUserGuide"]["()"] = defs["igShowUserGuide"][1] defs["igSliderAngle"] = {} defs["igSliderAngle"][1] = {} @@ -11875,9 +12686,11 @@ defs["igSliderAngle"][1]["defaults"]["format"] = "\"%.0f deg\"" defs["igSliderAngle"][1]["defaults"]["v_degrees_max"] = "+360.0f" defs["igSliderAngle"][1]["defaults"]["v_degrees_min"] = "-360.0f" defs["igSliderAngle"][1]["funcname"] = "SliderAngle" +defs["igSliderAngle"][1]["namespace"] = "ImGui" +defs["igSliderAngle"][1]["ov_cimguiname"] = "igSliderAngle" defs["igSliderAngle"][1]["ret"] = "bool" defs["igSliderAngle"][1]["signature"] = "(const char*,float*,float,float,const char*)" -defs["igSliderAngle"][1]["stname"] = "ImGui" +defs["igSliderAngle"][1]["stname"] = "" defs["igSliderAngle"]["(const char*,float*,float,float,const char*)"] = defs["igSliderAngle"][1] defs["igSliderFloat"] = {} defs["igSliderFloat"][1] = {} @@ -11909,9 +12722,11 @@ defs["igSliderFloat"][1]["defaults"] = {} defs["igSliderFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat"][1]["defaults"]["power"] = "1.0f" defs["igSliderFloat"][1]["funcname"] = "SliderFloat" +defs["igSliderFloat"][1]["namespace"] = "ImGui" +defs["igSliderFloat"][1]["ov_cimguiname"] = "igSliderFloat" defs["igSliderFloat"][1]["ret"] = "bool" defs["igSliderFloat"][1]["signature"] = "(const char*,float*,float,float,const char*,float)" -defs["igSliderFloat"][1]["stname"] = "ImGui" +defs["igSliderFloat"][1]["stname"] = "" defs["igSliderFloat"]["(const char*,float*,float,float,const char*,float)"] = defs["igSliderFloat"][1] defs["igSliderFloat2"] = {} defs["igSliderFloat2"][1] = {} @@ -11943,9 +12758,11 @@ defs["igSliderFloat2"][1]["defaults"] = {} defs["igSliderFloat2"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat2"][1]["defaults"]["power"] = "1.0f" defs["igSliderFloat2"][1]["funcname"] = "SliderFloat2" +defs["igSliderFloat2"][1]["namespace"] = "ImGui" +defs["igSliderFloat2"][1]["ov_cimguiname"] = "igSliderFloat2" defs["igSliderFloat2"][1]["ret"] = "bool" defs["igSliderFloat2"][1]["signature"] = "(const char*,float[2],float,float,const char*,float)" -defs["igSliderFloat2"][1]["stname"] = "ImGui" +defs["igSliderFloat2"][1]["stname"] = "" defs["igSliderFloat2"]["(const char*,float[2],float,float,const char*,float)"] = defs["igSliderFloat2"][1] defs["igSliderFloat3"] = {} defs["igSliderFloat3"][1] = {} @@ -11977,9 +12794,11 @@ defs["igSliderFloat3"][1]["defaults"] = {} defs["igSliderFloat3"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat3"][1]["defaults"]["power"] = "1.0f" defs["igSliderFloat3"][1]["funcname"] = "SliderFloat3" +defs["igSliderFloat3"][1]["namespace"] = "ImGui" +defs["igSliderFloat3"][1]["ov_cimguiname"] = "igSliderFloat3" defs["igSliderFloat3"][1]["ret"] = "bool" defs["igSliderFloat3"][1]["signature"] = "(const char*,float[3],float,float,const char*,float)" -defs["igSliderFloat3"][1]["stname"] = "ImGui" +defs["igSliderFloat3"][1]["stname"] = "" defs["igSliderFloat3"]["(const char*,float[3],float,float,const char*,float)"] = defs["igSliderFloat3"][1] defs["igSliderFloat4"] = {} defs["igSliderFloat4"][1] = {} @@ -12011,9 +12830,11 @@ defs["igSliderFloat4"][1]["defaults"] = {} defs["igSliderFloat4"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat4"][1]["defaults"]["power"] = "1.0f" defs["igSliderFloat4"][1]["funcname"] = "SliderFloat4" +defs["igSliderFloat4"][1]["namespace"] = "ImGui" +defs["igSliderFloat4"][1]["ov_cimguiname"] = "igSliderFloat4" defs["igSliderFloat4"][1]["ret"] = "bool" defs["igSliderFloat4"][1]["signature"] = "(const char*,float[4],float,float,const char*,float)" -defs["igSliderFloat4"][1]["stname"] = "ImGui" +defs["igSliderFloat4"][1]["stname"] = "" defs["igSliderFloat4"]["(const char*,float[4],float,float,const char*,float)"] = defs["igSliderFloat4"][1] defs["igSliderInt"] = {} defs["igSliderInt"][1] = {} @@ -12041,9 +12862,11 @@ defs["igSliderInt"][1]["comment"] = "" defs["igSliderInt"][1]["defaults"] = {} defs["igSliderInt"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt"][1]["funcname"] = "SliderInt" +defs["igSliderInt"][1]["namespace"] = "ImGui" +defs["igSliderInt"][1]["ov_cimguiname"] = "igSliderInt" defs["igSliderInt"][1]["ret"] = "bool" defs["igSliderInt"][1]["signature"] = "(const char*,int*,int,int,const char*)" -defs["igSliderInt"][1]["stname"] = "ImGui" +defs["igSliderInt"][1]["stname"] = "" defs["igSliderInt"]["(const char*,int*,int,int,const char*)"] = defs["igSliderInt"][1] defs["igSliderInt2"] = {} defs["igSliderInt2"][1] = {} @@ -12071,9 +12894,11 @@ defs["igSliderInt2"][1]["comment"] = "" defs["igSliderInt2"][1]["defaults"] = {} defs["igSliderInt2"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt2"][1]["funcname"] = "SliderInt2" +defs["igSliderInt2"][1]["namespace"] = "ImGui" +defs["igSliderInt2"][1]["ov_cimguiname"] = "igSliderInt2" defs["igSliderInt2"][1]["ret"] = "bool" defs["igSliderInt2"][1]["signature"] = "(const char*,int[2],int,int,const char*)" -defs["igSliderInt2"][1]["stname"] = "ImGui" +defs["igSliderInt2"][1]["stname"] = "" defs["igSliderInt2"]["(const char*,int[2],int,int,const char*)"] = defs["igSliderInt2"][1] defs["igSliderInt3"] = {} defs["igSliderInt3"][1] = {} @@ -12101,9 +12926,11 @@ defs["igSliderInt3"][1]["comment"] = "" defs["igSliderInt3"][1]["defaults"] = {} defs["igSliderInt3"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt3"][1]["funcname"] = "SliderInt3" +defs["igSliderInt3"][1]["namespace"] = "ImGui" +defs["igSliderInt3"][1]["ov_cimguiname"] = "igSliderInt3" defs["igSliderInt3"][1]["ret"] = "bool" defs["igSliderInt3"][1]["signature"] = "(const char*,int[3],int,int,const char*)" -defs["igSliderInt3"][1]["stname"] = "ImGui" +defs["igSliderInt3"][1]["stname"] = "" defs["igSliderInt3"]["(const char*,int[3],int,int,const char*)"] = defs["igSliderInt3"][1] defs["igSliderInt4"] = {} defs["igSliderInt4"][1] = {} @@ -12131,9 +12958,11 @@ defs["igSliderInt4"][1]["comment"] = "" defs["igSliderInt4"][1]["defaults"] = {} defs["igSliderInt4"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt4"][1]["funcname"] = "SliderInt4" +defs["igSliderInt4"][1]["namespace"] = "ImGui" +defs["igSliderInt4"][1]["ov_cimguiname"] = "igSliderInt4" defs["igSliderInt4"][1]["ret"] = "bool" defs["igSliderInt4"][1]["signature"] = "(const char*,int[4],int,int,const char*)" -defs["igSliderInt4"][1]["stname"] = "ImGui" +defs["igSliderInt4"][1]["stname"] = "" defs["igSliderInt4"]["(const char*,int[4],int,int,const char*)"] = defs["igSliderInt4"][1] defs["igSliderScalar"] = {} defs["igSliderScalar"][1] = {} @@ -12160,17 +12989,19 @@ defs["igSliderScalar"][1]["argsT"][6]["type"] = "const char*" defs["igSliderScalar"][1]["argsT"][7] = {} defs["igSliderScalar"][1]["argsT"][7]["name"] = "power" defs["igSliderScalar"][1]["argsT"][7]["type"] = "float" -defs["igSliderScalar"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,const void* v_min,const void* v_max,const char* format=((void *)0),float power=1.0f)" +defs["igSliderScalar"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,const void* v_min,const void* v_max,const char* format=((void*)0),float power=1.0f)" defs["igSliderScalar"][1]["call_args"] = "(label,data_type,v,v_min,v_max,format,power)" defs["igSliderScalar"][1]["cimguiname"] = "igSliderScalar" defs["igSliderScalar"][1]["comment"] = "" defs["igSliderScalar"][1]["defaults"] = {} -defs["igSliderScalar"][1]["defaults"]["format"] = "((void *)0)" +defs["igSliderScalar"][1]["defaults"]["format"] = "((void*)0)" defs["igSliderScalar"][1]["defaults"]["power"] = "1.0f" defs["igSliderScalar"][1]["funcname"] = "SliderScalar" +defs["igSliderScalar"][1]["namespace"] = "ImGui" +defs["igSliderScalar"][1]["ov_cimguiname"] = "igSliderScalar" defs["igSliderScalar"][1]["ret"] = "bool" defs["igSliderScalar"][1]["signature"] = "(const char*,ImGuiDataType,void*,const void*,const void*,const char*,float)" -defs["igSliderScalar"][1]["stname"] = "ImGui" +defs["igSliderScalar"][1]["stname"] = "" defs["igSliderScalar"]["(const char*,ImGuiDataType,void*,const void*,const void*,const char*,float)"] = defs["igSliderScalar"][1] defs["igSliderScalarN"] = {} defs["igSliderScalarN"][1] = {} @@ -12200,17 +13031,19 @@ defs["igSliderScalarN"][1]["argsT"][7]["type"] = "const char*" defs["igSliderScalarN"][1]["argsT"][8] = {} defs["igSliderScalarN"][1]["argsT"][8]["name"] = "power" defs["igSliderScalarN"][1]["argsT"][8]["type"] = "float" -defs["igSliderScalarN"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,int components,const void* v_min,const void* v_max,const char* format=((void *)0),float power=1.0f)" +defs["igSliderScalarN"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,int components,const void* v_min,const void* v_max,const char* format=((void*)0),float power=1.0f)" defs["igSliderScalarN"][1]["call_args"] = "(label,data_type,v,components,v_min,v_max,format,power)" defs["igSliderScalarN"][1]["cimguiname"] = "igSliderScalarN" defs["igSliderScalarN"][1]["comment"] = "" defs["igSliderScalarN"][1]["defaults"] = {} -defs["igSliderScalarN"][1]["defaults"]["format"] = "((void *)0)" +defs["igSliderScalarN"][1]["defaults"]["format"] = "((void*)0)" defs["igSliderScalarN"][1]["defaults"]["power"] = "1.0f" defs["igSliderScalarN"][1]["funcname"] = "SliderScalarN" +defs["igSliderScalarN"][1]["namespace"] = "ImGui" +defs["igSliderScalarN"][1]["ov_cimguiname"] = "igSliderScalarN" defs["igSliderScalarN"][1]["ret"] = "bool" defs["igSliderScalarN"][1]["signature"] = "(const char*,ImGuiDataType,void*,int,const void*,const void*,const char*,float)" -defs["igSliderScalarN"][1]["stname"] = "ImGui" +defs["igSliderScalarN"][1]["stname"] = "" defs["igSliderScalarN"]["(const char*,ImGuiDataType,void*,int,const void*,const void*,const char*,float)"] = defs["igSliderScalarN"][1] defs["igSmallButton"] = {} defs["igSmallButton"][1] = {} @@ -12225,9 +13058,11 @@ defs["igSmallButton"][1]["cimguiname"] = "igSmallButton" defs["igSmallButton"][1]["comment"] = "" defs["igSmallButton"][1]["defaults"] = {} defs["igSmallButton"][1]["funcname"] = "SmallButton" +defs["igSmallButton"][1]["namespace"] = "ImGui" +defs["igSmallButton"][1]["ov_cimguiname"] = "igSmallButton" defs["igSmallButton"][1]["ret"] = "bool" defs["igSmallButton"][1]["signature"] = "(const char*)" -defs["igSmallButton"][1]["stname"] = "ImGui" +defs["igSmallButton"][1]["stname"] = "" defs["igSmallButton"]["(const char*)"] = defs["igSmallButton"][1] defs["igSpacing"] = {} defs["igSpacing"][1] = {} @@ -12239,9 +13074,11 @@ defs["igSpacing"][1]["cimguiname"] = "igSpacing" defs["igSpacing"][1]["comment"] = "" defs["igSpacing"][1]["defaults"] = {} defs["igSpacing"][1]["funcname"] = "Spacing" +defs["igSpacing"][1]["namespace"] = "ImGui" +defs["igSpacing"][1]["ov_cimguiname"] = "igSpacing" defs["igSpacing"][1]["ret"] = "void" defs["igSpacing"][1]["signature"] = "()" -defs["igSpacing"][1]["stname"] = "ImGui" +defs["igSpacing"][1]["stname"] = "" defs["igSpacing"]["()"] = defs["igSpacing"][1] defs["igStyleColorsClassic"] = {} defs["igStyleColorsClassic"][1] = {} @@ -12250,16 +13087,18 @@ defs["igStyleColorsClassic"][1]["argsT"] = {} defs["igStyleColorsClassic"][1]["argsT"][1] = {} defs["igStyleColorsClassic"][1]["argsT"][1]["name"] = "dst" defs["igStyleColorsClassic"][1]["argsT"][1]["type"] = "ImGuiStyle*" -defs["igStyleColorsClassic"][1]["argsoriginal"] = "(ImGuiStyle* dst=((void *)0))" +defs["igStyleColorsClassic"][1]["argsoriginal"] = "(ImGuiStyle* dst=((void*)0))" defs["igStyleColorsClassic"][1]["call_args"] = "(dst)" defs["igStyleColorsClassic"][1]["cimguiname"] = "igStyleColorsClassic" defs["igStyleColorsClassic"][1]["comment"] = "" defs["igStyleColorsClassic"][1]["defaults"] = {} -defs["igStyleColorsClassic"][1]["defaults"]["dst"] = "((void *)0)" +defs["igStyleColorsClassic"][1]["defaults"]["dst"] = "((void*)0)" defs["igStyleColorsClassic"][1]["funcname"] = "StyleColorsClassic" +defs["igStyleColorsClassic"][1]["namespace"] = "ImGui" +defs["igStyleColorsClassic"][1]["ov_cimguiname"] = "igStyleColorsClassic" defs["igStyleColorsClassic"][1]["ret"] = "void" defs["igStyleColorsClassic"][1]["signature"] = "(ImGuiStyle*)" -defs["igStyleColorsClassic"][1]["stname"] = "ImGui" +defs["igStyleColorsClassic"][1]["stname"] = "" defs["igStyleColorsClassic"]["(ImGuiStyle*)"] = defs["igStyleColorsClassic"][1] defs["igStyleColorsDark"] = {} defs["igStyleColorsDark"][1] = {} @@ -12268,16 +13107,18 @@ defs["igStyleColorsDark"][1]["argsT"] = {} defs["igStyleColorsDark"][1]["argsT"][1] = {} defs["igStyleColorsDark"][1]["argsT"][1]["name"] = "dst" defs["igStyleColorsDark"][1]["argsT"][1]["type"] = "ImGuiStyle*" -defs["igStyleColorsDark"][1]["argsoriginal"] = "(ImGuiStyle* dst=((void *)0))" +defs["igStyleColorsDark"][1]["argsoriginal"] = "(ImGuiStyle* dst=((void*)0))" defs["igStyleColorsDark"][1]["call_args"] = "(dst)" defs["igStyleColorsDark"][1]["cimguiname"] = "igStyleColorsDark" defs["igStyleColorsDark"][1]["comment"] = "" defs["igStyleColorsDark"][1]["defaults"] = {} -defs["igStyleColorsDark"][1]["defaults"]["dst"] = "((void *)0)" +defs["igStyleColorsDark"][1]["defaults"]["dst"] = "((void*)0)" defs["igStyleColorsDark"][1]["funcname"] = "StyleColorsDark" +defs["igStyleColorsDark"][1]["namespace"] = "ImGui" +defs["igStyleColorsDark"][1]["ov_cimguiname"] = "igStyleColorsDark" defs["igStyleColorsDark"][1]["ret"] = "void" defs["igStyleColorsDark"][1]["signature"] = "(ImGuiStyle*)" -defs["igStyleColorsDark"][1]["stname"] = "ImGui" +defs["igStyleColorsDark"][1]["stname"] = "" defs["igStyleColorsDark"]["(ImGuiStyle*)"] = defs["igStyleColorsDark"][1] defs["igStyleColorsLight"] = {} defs["igStyleColorsLight"][1] = {} @@ -12286,16 +13127,18 @@ defs["igStyleColorsLight"][1]["argsT"] = {} defs["igStyleColorsLight"][1]["argsT"][1] = {} defs["igStyleColorsLight"][1]["argsT"][1]["name"] = "dst" defs["igStyleColorsLight"][1]["argsT"][1]["type"] = "ImGuiStyle*" -defs["igStyleColorsLight"][1]["argsoriginal"] = "(ImGuiStyle* dst=((void *)0))" +defs["igStyleColorsLight"][1]["argsoriginal"] = "(ImGuiStyle* dst=((void*)0))" defs["igStyleColorsLight"][1]["call_args"] = "(dst)" defs["igStyleColorsLight"][1]["cimguiname"] = "igStyleColorsLight" defs["igStyleColorsLight"][1]["comment"] = "" defs["igStyleColorsLight"][1]["defaults"] = {} -defs["igStyleColorsLight"][1]["defaults"]["dst"] = "((void *)0)" +defs["igStyleColorsLight"][1]["defaults"]["dst"] = "((void*)0)" defs["igStyleColorsLight"][1]["funcname"] = "StyleColorsLight" +defs["igStyleColorsLight"][1]["namespace"] = "ImGui" +defs["igStyleColorsLight"][1]["ov_cimguiname"] = "igStyleColorsLight" defs["igStyleColorsLight"][1]["ret"] = "void" defs["igStyleColorsLight"][1]["signature"] = "(ImGuiStyle*)" -defs["igStyleColorsLight"][1]["stname"] = "ImGui" +defs["igStyleColorsLight"][1]["stname"] = "" defs["igStyleColorsLight"]["(ImGuiStyle*)"] = defs["igStyleColorsLight"][1] defs["igText"] = {} defs["igText"][1] = {} @@ -12314,9 +13157,11 @@ defs["igText"][1]["comment"] = "" defs["igText"][1]["defaults"] = {} defs["igText"][1]["funcname"] = "Text" defs["igText"][1]["isvararg"] = "...)" +defs["igText"][1]["namespace"] = "ImGui" +defs["igText"][1]["ov_cimguiname"] = "igText" defs["igText"][1]["ret"] = "void" defs["igText"][1]["signature"] = "(const char*,...)" -defs["igText"][1]["stname"] = "ImGui" +defs["igText"][1]["stname"] = "" defs["igText"]["(const char*,...)"] = defs["igText"][1] defs["igTextColored"] = {} defs["igTextColored"][1] = {} @@ -12338,9 +13183,11 @@ defs["igTextColored"][1]["comment"] = "" defs["igTextColored"][1]["defaults"] = {} defs["igTextColored"][1]["funcname"] = "TextColored" defs["igTextColored"][1]["isvararg"] = "...)" +defs["igTextColored"][1]["namespace"] = "ImGui" +defs["igTextColored"][1]["ov_cimguiname"] = "igTextColored" defs["igTextColored"][1]["ret"] = "void" defs["igTextColored"][1]["signature"] = "(const ImVec4,const char*,...)" -defs["igTextColored"][1]["stname"] = "ImGui" +defs["igTextColored"][1]["stname"] = "" defs["igTextColored"]["(const ImVec4,const char*,...)"] = defs["igTextColored"][1] defs["igTextColoredV"] = {} defs["igTextColoredV"][1] = {} @@ -12361,9 +13208,11 @@ defs["igTextColoredV"][1]["cimguiname"] = "igTextColoredV" defs["igTextColoredV"][1]["comment"] = "" defs["igTextColoredV"][1]["defaults"] = {} defs["igTextColoredV"][1]["funcname"] = "TextColoredV" +defs["igTextColoredV"][1]["namespace"] = "ImGui" +defs["igTextColoredV"][1]["ov_cimguiname"] = "igTextColoredV" defs["igTextColoredV"][1]["ret"] = "void" defs["igTextColoredV"][1]["signature"] = "(const ImVec4,const char*,va_list)" -defs["igTextColoredV"][1]["stname"] = "ImGui" +defs["igTextColoredV"][1]["stname"] = "" defs["igTextColoredV"]["(const ImVec4,const char*,va_list)"] = defs["igTextColoredV"][1] defs["igTextDisabled"] = {} defs["igTextDisabled"][1] = {} @@ -12382,9 +13231,11 @@ defs["igTextDisabled"][1]["comment"] = "" defs["igTextDisabled"][1]["defaults"] = {} defs["igTextDisabled"][1]["funcname"] = "TextDisabled" defs["igTextDisabled"][1]["isvararg"] = "...)" +defs["igTextDisabled"][1]["namespace"] = "ImGui" +defs["igTextDisabled"][1]["ov_cimguiname"] = "igTextDisabled" defs["igTextDisabled"][1]["ret"] = "void" defs["igTextDisabled"][1]["signature"] = "(const char*,...)" -defs["igTextDisabled"][1]["stname"] = "ImGui" +defs["igTextDisabled"][1]["stname"] = "" defs["igTextDisabled"]["(const char*,...)"] = defs["igTextDisabled"][1] defs["igTextDisabledV"] = {} defs["igTextDisabledV"][1] = {} @@ -12402,9 +13253,11 @@ defs["igTextDisabledV"][1]["cimguiname"] = "igTextDisabledV" defs["igTextDisabledV"][1]["comment"] = "" defs["igTextDisabledV"][1]["defaults"] = {} defs["igTextDisabledV"][1]["funcname"] = "TextDisabledV" +defs["igTextDisabledV"][1]["namespace"] = "ImGui" +defs["igTextDisabledV"][1]["ov_cimguiname"] = "igTextDisabledV" defs["igTextDisabledV"][1]["ret"] = "void" defs["igTextDisabledV"][1]["signature"] = "(const char*,va_list)" -defs["igTextDisabledV"][1]["stname"] = "ImGui" +defs["igTextDisabledV"][1]["stname"] = "" defs["igTextDisabledV"]["(const char*,va_list)"] = defs["igTextDisabledV"][1] defs["igTextUnformatted"] = {} defs["igTextUnformatted"][1] = {} @@ -12416,16 +13269,18 @@ defs["igTextUnformatted"][1]["argsT"][1]["type"] = "const char*" defs["igTextUnformatted"][1]["argsT"][2] = {} defs["igTextUnformatted"][1]["argsT"][2]["name"] = "text_end" defs["igTextUnformatted"][1]["argsT"][2]["type"] = "const char*" -defs["igTextUnformatted"][1]["argsoriginal"] = "(const char* text,const char* text_end=((void *)0))" +defs["igTextUnformatted"][1]["argsoriginal"] = "(const char* text,const char* text_end=((void*)0))" defs["igTextUnformatted"][1]["call_args"] = "(text,text_end)" defs["igTextUnformatted"][1]["cimguiname"] = "igTextUnformatted" defs["igTextUnformatted"][1]["comment"] = "" defs["igTextUnformatted"][1]["defaults"] = {} -defs["igTextUnformatted"][1]["defaults"]["text_end"] = "((void *)0)" +defs["igTextUnformatted"][1]["defaults"]["text_end"] = "((void*)0)" defs["igTextUnformatted"][1]["funcname"] = "TextUnformatted" +defs["igTextUnformatted"][1]["namespace"] = "ImGui" +defs["igTextUnformatted"][1]["ov_cimguiname"] = "igTextUnformatted" defs["igTextUnformatted"][1]["ret"] = "void" defs["igTextUnformatted"][1]["signature"] = "(const char*,const char*)" -defs["igTextUnformatted"][1]["stname"] = "ImGui" +defs["igTextUnformatted"][1]["stname"] = "" defs["igTextUnformatted"]["(const char*,const char*)"] = defs["igTextUnformatted"][1] defs["igTextV"] = {} defs["igTextV"][1] = {} @@ -12443,9 +13298,11 @@ defs["igTextV"][1]["cimguiname"] = "igTextV" defs["igTextV"][1]["comment"] = "" defs["igTextV"][1]["defaults"] = {} defs["igTextV"][1]["funcname"] = "TextV" +defs["igTextV"][1]["namespace"] = "ImGui" +defs["igTextV"][1]["ov_cimguiname"] = "igTextV" defs["igTextV"][1]["ret"] = "void" defs["igTextV"][1]["signature"] = "(const char*,va_list)" -defs["igTextV"][1]["stname"] = "ImGui" +defs["igTextV"][1]["stname"] = "" defs["igTextV"]["(const char*,va_list)"] = defs["igTextV"][1] defs["igTextWrapped"] = {} defs["igTextWrapped"][1] = {} @@ -12464,9 +13321,11 @@ defs["igTextWrapped"][1]["comment"] = "" defs["igTextWrapped"][1]["defaults"] = {} defs["igTextWrapped"][1]["funcname"] = "TextWrapped" defs["igTextWrapped"][1]["isvararg"] = "...)" +defs["igTextWrapped"][1]["namespace"] = "ImGui" +defs["igTextWrapped"][1]["ov_cimguiname"] = "igTextWrapped" defs["igTextWrapped"][1]["ret"] = "void" defs["igTextWrapped"][1]["signature"] = "(const char*,...)" -defs["igTextWrapped"][1]["stname"] = "ImGui" +defs["igTextWrapped"][1]["stname"] = "" defs["igTextWrapped"]["(const char*,...)"] = defs["igTextWrapped"][1] defs["igTextWrappedV"] = {} defs["igTextWrappedV"][1] = {} @@ -12484,9 +13343,11 @@ defs["igTextWrappedV"][1]["cimguiname"] = "igTextWrappedV" defs["igTextWrappedV"][1]["comment"] = "" defs["igTextWrappedV"][1]["defaults"] = {} defs["igTextWrappedV"][1]["funcname"] = "TextWrappedV" +defs["igTextWrappedV"][1]["namespace"] = "ImGui" +defs["igTextWrappedV"][1]["ov_cimguiname"] = "igTextWrappedV" defs["igTextWrappedV"][1]["ret"] = "void" defs["igTextWrappedV"][1]["signature"] = "(const char*,va_list)" -defs["igTextWrappedV"][1]["stname"] = "ImGui" +defs["igTextWrappedV"][1]["stname"] = "" defs["igTextWrappedV"]["(const char*,va_list)"] = defs["igTextWrappedV"][1] defs["igTreeAdvanceToLabelPos"] = {} defs["igTreeAdvanceToLabelPos"][1] = {} @@ -12498,9 +13359,11 @@ defs["igTreeAdvanceToLabelPos"][1]["cimguiname"] = "igTreeAdvanceToLabelPos" defs["igTreeAdvanceToLabelPos"][1]["comment"] = "" defs["igTreeAdvanceToLabelPos"][1]["defaults"] = {} defs["igTreeAdvanceToLabelPos"][1]["funcname"] = "TreeAdvanceToLabelPos" +defs["igTreeAdvanceToLabelPos"][1]["namespace"] = "ImGui" +defs["igTreeAdvanceToLabelPos"][1]["ov_cimguiname"] = "igTreeAdvanceToLabelPos" defs["igTreeAdvanceToLabelPos"][1]["ret"] = "void" defs["igTreeAdvanceToLabelPos"][1]["signature"] = "()" -defs["igTreeAdvanceToLabelPos"][1]["stname"] = "ImGui" +defs["igTreeAdvanceToLabelPos"][1]["stname"] = "" defs["igTreeAdvanceToLabelPos"]["()"] = defs["igTreeAdvanceToLabelPos"][1] defs["igTreeNode"] = {} defs["igTreeNode"][1] = {} @@ -12515,10 +13378,11 @@ defs["igTreeNode"][1]["cimguiname"] = "igTreeNode" defs["igTreeNode"][1]["comment"] = "" defs["igTreeNode"][1]["defaults"] = {} defs["igTreeNode"][1]["funcname"] = "TreeNode" +defs["igTreeNode"][1]["namespace"] = "ImGui" defs["igTreeNode"][1]["ov_cimguiname"] = "igTreeNodeStr" defs["igTreeNode"][1]["ret"] = "bool" defs["igTreeNode"][1]["signature"] = "(const char*)" -defs["igTreeNode"][1]["stname"] = "ImGui" +defs["igTreeNode"][1]["stname"] = "" defs["igTreeNode"][2] = {} defs["igTreeNode"][2]["args"] = "(const char* str_id,const char* fmt,...)" defs["igTreeNode"][2]["argsT"] = {} @@ -12538,10 +13402,11 @@ defs["igTreeNode"][2]["comment"] = "" defs["igTreeNode"][2]["defaults"] = {} defs["igTreeNode"][2]["funcname"] = "TreeNode" defs["igTreeNode"][2]["isvararg"] = "...)" +defs["igTreeNode"][2]["namespace"] = "ImGui" defs["igTreeNode"][2]["ov_cimguiname"] = "igTreeNodeStrStr" defs["igTreeNode"][2]["ret"] = "bool" defs["igTreeNode"][2]["signature"] = "(const char*,const char*,...)" -defs["igTreeNode"][2]["stname"] = "ImGui" +defs["igTreeNode"][2]["stname"] = "" defs["igTreeNode"][3] = {} defs["igTreeNode"][3]["args"] = "(const void* ptr_id,const char* fmt,...)" defs["igTreeNode"][3]["argsT"] = {} @@ -12561,10 +13426,11 @@ defs["igTreeNode"][3]["comment"] = "" defs["igTreeNode"][3]["defaults"] = {} defs["igTreeNode"][3]["funcname"] = "TreeNode" defs["igTreeNode"][3]["isvararg"] = "...)" +defs["igTreeNode"][3]["namespace"] = "ImGui" defs["igTreeNode"][3]["ov_cimguiname"] = "igTreeNodePtr" defs["igTreeNode"][3]["ret"] = "bool" defs["igTreeNode"][3]["signature"] = "(const void*,const char*,...)" -defs["igTreeNode"][3]["stname"] = "ImGui" +defs["igTreeNode"][3]["stname"] = "" defs["igTreeNode"]["(const char*)"] = defs["igTreeNode"][1] defs["igTreeNode"]["(const char*,const char*,...)"] = defs["igTreeNode"][2] defs["igTreeNode"]["(const void*,const char*,...)"] = defs["igTreeNode"][3] @@ -12585,10 +13451,11 @@ defs["igTreeNodeEx"][1]["comment"] = "" defs["igTreeNodeEx"][1]["defaults"] = {} defs["igTreeNodeEx"][1]["defaults"]["flags"] = "0" defs["igTreeNodeEx"][1]["funcname"] = "TreeNodeEx" +defs["igTreeNodeEx"][1]["namespace"] = "ImGui" defs["igTreeNodeEx"][1]["ov_cimguiname"] = "igTreeNodeExStr" defs["igTreeNodeEx"][1]["ret"] = "bool" defs["igTreeNodeEx"][1]["signature"] = "(const char*,ImGuiTreeNodeFlags)" -defs["igTreeNodeEx"][1]["stname"] = "ImGui" +defs["igTreeNodeEx"][1]["stname"] = "" defs["igTreeNodeEx"][2] = {} defs["igTreeNodeEx"][2]["args"] = "(const char* str_id,ImGuiTreeNodeFlags flags,const char* fmt,...)" defs["igTreeNodeEx"][2]["argsT"] = {} @@ -12611,10 +13478,11 @@ defs["igTreeNodeEx"][2]["comment"] = "" defs["igTreeNodeEx"][2]["defaults"] = {} defs["igTreeNodeEx"][2]["funcname"] = "TreeNodeEx" defs["igTreeNodeEx"][2]["isvararg"] = "...)" +defs["igTreeNodeEx"][2]["namespace"] = "ImGui" defs["igTreeNodeEx"][2]["ov_cimguiname"] = "igTreeNodeExStrStr" defs["igTreeNodeEx"][2]["ret"] = "bool" defs["igTreeNodeEx"][2]["signature"] = "(const char*,ImGuiTreeNodeFlags,const char*,...)" -defs["igTreeNodeEx"][2]["stname"] = "ImGui" +defs["igTreeNodeEx"][2]["stname"] = "" defs["igTreeNodeEx"][3] = {} defs["igTreeNodeEx"][3]["args"] = "(const void* ptr_id,ImGuiTreeNodeFlags flags,const char* fmt,...)" defs["igTreeNodeEx"][3]["argsT"] = {} @@ -12637,10 +13505,11 @@ defs["igTreeNodeEx"][3]["comment"] = "" defs["igTreeNodeEx"][3]["defaults"] = {} defs["igTreeNodeEx"][3]["funcname"] = "TreeNodeEx" defs["igTreeNodeEx"][3]["isvararg"] = "...)" +defs["igTreeNodeEx"][3]["namespace"] = "ImGui" defs["igTreeNodeEx"][3]["ov_cimguiname"] = "igTreeNodeExPtr" defs["igTreeNodeEx"][3]["ret"] = "bool" defs["igTreeNodeEx"][3]["signature"] = "(const void*,ImGuiTreeNodeFlags,const char*,...)" -defs["igTreeNodeEx"][3]["stname"] = "ImGui" +defs["igTreeNodeEx"][3]["stname"] = "" defs["igTreeNodeEx"]["(const char*,ImGuiTreeNodeFlags)"] = defs["igTreeNodeEx"][1] defs["igTreeNodeEx"]["(const char*,ImGuiTreeNodeFlags,const char*,...)"] = defs["igTreeNodeEx"][2] defs["igTreeNodeEx"]["(const void*,ImGuiTreeNodeFlags,const char*,...)"] = defs["igTreeNodeEx"][3] @@ -12666,10 +13535,11 @@ defs["igTreeNodeExV"][1]["cimguiname"] = "igTreeNodeExV" defs["igTreeNodeExV"][1]["comment"] = "" defs["igTreeNodeExV"][1]["defaults"] = {} defs["igTreeNodeExV"][1]["funcname"] = "TreeNodeExV" +defs["igTreeNodeExV"][1]["namespace"] = "ImGui" defs["igTreeNodeExV"][1]["ov_cimguiname"] = "igTreeNodeExVStr" defs["igTreeNodeExV"][1]["ret"] = "bool" defs["igTreeNodeExV"][1]["signature"] = "(const char*,ImGuiTreeNodeFlags,const char*,va_list)" -defs["igTreeNodeExV"][1]["stname"] = "ImGui" +defs["igTreeNodeExV"][1]["stname"] = "" defs["igTreeNodeExV"][2] = {} defs["igTreeNodeExV"][2]["args"] = "(const void* ptr_id,ImGuiTreeNodeFlags flags,const char* fmt,va_list args)" defs["igTreeNodeExV"][2]["argsT"] = {} @@ -12691,10 +13561,11 @@ defs["igTreeNodeExV"][2]["cimguiname"] = "igTreeNodeExV" defs["igTreeNodeExV"][2]["comment"] = "" defs["igTreeNodeExV"][2]["defaults"] = {} defs["igTreeNodeExV"][2]["funcname"] = "TreeNodeExV" +defs["igTreeNodeExV"][2]["namespace"] = "ImGui" defs["igTreeNodeExV"][2]["ov_cimguiname"] = "igTreeNodeExVPtr" defs["igTreeNodeExV"][2]["ret"] = "bool" defs["igTreeNodeExV"][2]["signature"] = "(const void*,ImGuiTreeNodeFlags,const char*,va_list)" -defs["igTreeNodeExV"][2]["stname"] = "ImGui" +defs["igTreeNodeExV"][2]["stname"] = "" defs["igTreeNodeExV"]["(const char*,ImGuiTreeNodeFlags,const char*,va_list)"] = defs["igTreeNodeExV"][1] defs["igTreeNodeExV"]["(const void*,ImGuiTreeNodeFlags,const char*,va_list)"] = defs["igTreeNodeExV"][2] defs["igTreeNodeV"] = {} @@ -12716,10 +13587,11 @@ defs["igTreeNodeV"][1]["cimguiname"] = "igTreeNodeV" defs["igTreeNodeV"][1]["comment"] = "" defs["igTreeNodeV"][1]["defaults"] = {} defs["igTreeNodeV"][1]["funcname"] = "TreeNodeV" +defs["igTreeNodeV"][1]["namespace"] = "ImGui" defs["igTreeNodeV"][1]["ov_cimguiname"] = "igTreeNodeVStr" defs["igTreeNodeV"][1]["ret"] = "bool" defs["igTreeNodeV"][1]["signature"] = "(const char*,const char*,va_list)" -defs["igTreeNodeV"][1]["stname"] = "ImGui" +defs["igTreeNodeV"][1]["stname"] = "" defs["igTreeNodeV"][2] = {} defs["igTreeNodeV"][2]["args"] = "(const void* ptr_id,const char* fmt,va_list args)" defs["igTreeNodeV"][2]["argsT"] = {} @@ -12738,10 +13610,11 @@ defs["igTreeNodeV"][2]["cimguiname"] = "igTreeNodeV" defs["igTreeNodeV"][2]["comment"] = "" defs["igTreeNodeV"][2]["defaults"] = {} defs["igTreeNodeV"][2]["funcname"] = "TreeNodeV" +defs["igTreeNodeV"][2]["namespace"] = "ImGui" defs["igTreeNodeV"][2]["ov_cimguiname"] = "igTreeNodeVPtr" defs["igTreeNodeV"][2]["ret"] = "bool" defs["igTreeNodeV"][2]["signature"] = "(const void*,const char*,va_list)" -defs["igTreeNodeV"][2]["stname"] = "ImGui" +defs["igTreeNodeV"][2]["stname"] = "" defs["igTreeNodeV"]["(const char*,const char*,va_list)"] = defs["igTreeNodeV"][1] defs["igTreeNodeV"]["(const void*,const char*,va_list)"] = defs["igTreeNodeV"][2] defs["igTreePop"] = {} @@ -12754,9 +13627,11 @@ defs["igTreePop"][1]["cimguiname"] = "igTreePop" defs["igTreePop"][1]["comment"] = "" defs["igTreePop"][1]["defaults"] = {} defs["igTreePop"][1]["funcname"] = "TreePop" +defs["igTreePop"][1]["namespace"] = "ImGui" +defs["igTreePop"][1]["ov_cimguiname"] = "igTreePop" defs["igTreePop"][1]["ret"] = "void" defs["igTreePop"][1]["signature"] = "()" -defs["igTreePop"][1]["stname"] = "ImGui" +defs["igTreePop"][1]["stname"] = "" defs["igTreePop"]["()"] = defs["igTreePop"][1] defs["igTreePush"] = {} defs["igTreePush"][1] = {} @@ -12771,27 +13646,29 @@ defs["igTreePush"][1]["cimguiname"] = "igTreePush" defs["igTreePush"][1]["comment"] = "" defs["igTreePush"][1]["defaults"] = {} defs["igTreePush"][1]["funcname"] = "TreePush" +defs["igTreePush"][1]["namespace"] = "ImGui" defs["igTreePush"][1]["ov_cimguiname"] = "igTreePushStr" defs["igTreePush"][1]["ret"] = "void" defs["igTreePush"][1]["signature"] = "(const char*)" -defs["igTreePush"][1]["stname"] = "ImGui" +defs["igTreePush"][1]["stname"] = "" defs["igTreePush"][2] = {} defs["igTreePush"][2]["args"] = "(const void* ptr_id)" defs["igTreePush"][2]["argsT"] = {} defs["igTreePush"][2]["argsT"][1] = {} defs["igTreePush"][2]["argsT"][1]["name"] = "ptr_id" defs["igTreePush"][2]["argsT"][1]["type"] = "const void*" -defs["igTreePush"][2]["argsoriginal"] = "(const void* ptr_id=((void *)0))" +defs["igTreePush"][2]["argsoriginal"] = "(const void* ptr_id=((void*)0))" defs["igTreePush"][2]["call_args"] = "(ptr_id)" defs["igTreePush"][2]["cimguiname"] = "igTreePush" defs["igTreePush"][2]["comment"] = "" defs["igTreePush"][2]["defaults"] = {} -defs["igTreePush"][2]["defaults"]["ptr_id"] = "((void *)0)" +defs["igTreePush"][2]["defaults"]["ptr_id"] = "((void*)0)" defs["igTreePush"][2]["funcname"] = "TreePush" +defs["igTreePush"][2]["namespace"] = "ImGui" defs["igTreePush"][2]["ov_cimguiname"] = "igTreePushPtr" defs["igTreePush"][2]["ret"] = "void" defs["igTreePush"][2]["signature"] = "(const void*)" -defs["igTreePush"][2]["stname"] = "ImGui" +defs["igTreePush"][2]["stname"] = "" defs["igTreePush"]["(const char*)"] = defs["igTreePush"][1] defs["igTreePush"]["(const void*)"] = defs["igTreePush"][2] defs["igUnindent"] = {} @@ -12808,9 +13685,11 @@ defs["igUnindent"][1]["comment"] = "" defs["igUnindent"][1]["defaults"] = {} defs["igUnindent"][1]["defaults"]["indent_w"] = "0.0f" defs["igUnindent"][1]["funcname"] = "Unindent" +defs["igUnindent"][1]["namespace"] = "ImGui" +defs["igUnindent"][1]["ov_cimguiname"] = "igUnindent" defs["igUnindent"][1]["ret"] = "void" defs["igUnindent"][1]["signature"] = "(float)" -defs["igUnindent"][1]["stname"] = "ImGui" +defs["igUnindent"][1]["stname"] = "" defs["igUnindent"]["(float)"] = defs["igUnindent"][1] defs["igVSliderFloat"] = {} defs["igVSliderFloat"][1] = {} @@ -12845,9 +13724,11 @@ defs["igVSliderFloat"][1]["defaults"] = {} defs["igVSliderFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igVSliderFloat"][1]["defaults"]["power"] = "1.0f" defs["igVSliderFloat"][1]["funcname"] = "VSliderFloat" +defs["igVSliderFloat"][1]["namespace"] = "ImGui" +defs["igVSliderFloat"][1]["ov_cimguiname"] = "igVSliderFloat" defs["igVSliderFloat"][1]["ret"] = "bool" defs["igVSliderFloat"][1]["signature"] = "(const char*,const ImVec2,float*,float,float,const char*,float)" -defs["igVSliderFloat"][1]["stname"] = "ImGui" +defs["igVSliderFloat"][1]["stname"] = "" defs["igVSliderFloat"]["(const char*,const ImVec2,float*,float,float,const char*,float)"] = defs["igVSliderFloat"][1] defs["igVSliderInt"] = {} defs["igVSliderInt"][1] = {} @@ -12878,9 +13759,11 @@ defs["igVSliderInt"][1]["comment"] = "" defs["igVSliderInt"][1]["defaults"] = {} defs["igVSliderInt"][1]["defaults"]["format"] = "\"%d\"" defs["igVSliderInt"][1]["funcname"] = "VSliderInt" +defs["igVSliderInt"][1]["namespace"] = "ImGui" +defs["igVSliderInt"][1]["ov_cimguiname"] = "igVSliderInt" defs["igVSliderInt"][1]["ret"] = "bool" defs["igVSliderInt"][1]["signature"] = "(const char*,const ImVec2,int*,int,int,const char*)" -defs["igVSliderInt"][1]["stname"] = "ImGui" +defs["igVSliderInt"][1]["stname"] = "" defs["igVSliderInt"]["(const char*,const ImVec2,int*,int,int,const char*)"] = defs["igVSliderInt"][1] defs["igVSliderScalar"] = {} defs["igVSliderScalar"][1] = {} @@ -12910,17 +13793,19 @@ defs["igVSliderScalar"][1]["argsT"][7]["type"] = "const char*" defs["igVSliderScalar"][1]["argsT"][8] = {} defs["igVSliderScalar"][1]["argsT"][8]["name"] = "power" defs["igVSliderScalar"][1]["argsT"][8]["type"] = "float" -defs["igVSliderScalar"][1]["argsoriginal"] = "(const char* label,const ImVec2& size,ImGuiDataType data_type,void* v,const void* v_min,const void* v_max,const char* format=((void *)0),float power=1.0f)" +defs["igVSliderScalar"][1]["argsoriginal"] = "(const char* label,const ImVec2& size,ImGuiDataType data_type,void* v,const void* v_min,const void* v_max,const char* format=((void*)0),float power=1.0f)" defs["igVSliderScalar"][1]["call_args"] = "(label,size,data_type,v,v_min,v_max,format,power)" defs["igVSliderScalar"][1]["cimguiname"] = "igVSliderScalar" defs["igVSliderScalar"][1]["comment"] = "" defs["igVSliderScalar"][1]["defaults"] = {} -defs["igVSliderScalar"][1]["defaults"]["format"] = "((void *)0)" +defs["igVSliderScalar"][1]["defaults"]["format"] = "((void*)0)" defs["igVSliderScalar"][1]["defaults"]["power"] = "1.0f" defs["igVSliderScalar"][1]["funcname"] = "VSliderScalar" +defs["igVSliderScalar"][1]["namespace"] = "ImGui" +defs["igVSliderScalar"][1]["ov_cimguiname"] = "igVSliderScalar" defs["igVSliderScalar"][1]["ret"] = "bool" defs["igVSliderScalar"][1]["signature"] = "(const char*,const ImVec2,ImGuiDataType,void*,const void*,const void*,const char*,float)" -defs["igVSliderScalar"][1]["stname"] = "ImGui" +defs["igVSliderScalar"][1]["stname"] = "" defs["igVSliderScalar"]["(const char*,const ImVec2,ImGuiDataType,void*,const void*,const void*,const char*,float)"] = defs["igVSliderScalar"][1] defs["igValue"] = {} defs["igValue"][1] = {} @@ -12938,10 +13823,11 @@ defs["igValue"][1]["cimguiname"] = "igValue" defs["igValue"][1]["comment"] = "" defs["igValue"][1]["defaults"] = {} defs["igValue"][1]["funcname"] = "Value" +defs["igValue"][1]["namespace"] = "ImGui" defs["igValue"][1]["ov_cimguiname"] = "igValueBool" defs["igValue"][1]["ret"] = "void" defs["igValue"][1]["signature"] = "(const char*,bool)" -defs["igValue"][1]["stname"] = "ImGui" +defs["igValue"][1]["stname"] = "" defs["igValue"][2] = {} defs["igValue"][2]["args"] = "(const char* prefix,int v)" defs["igValue"][2]["argsT"] = {} @@ -12957,10 +13843,11 @@ defs["igValue"][2]["cimguiname"] = "igValue" defs["igValue"][2]["comment"] = "" defs["igValue"][2]["defaults"] = {} defs["igValue"][2]["funcname"] = "Value" +defs["igValue"][2]["namespace"] = "ImGui" defs["igValue"][2]["ov_cimguiname"] = "igValueInt" defs["igValue"][2]["ret"] = "void" defs["igValue"][2]["signature"] = "(const char*,int)" -defs["igValue"][2]["stname"] = "ImGui" +defs["igValue"][2]["stname"] = "" defs["igValue"][3] = {} defs["igValue"][3]["args"] = "(const char* prefix,unsigned int v)" defs["igValue"][3]["argsT"] = {} @@ -12976,10 +13863,11 @@ defs["igValue"][3]["cimguiname"] = "igValue" defs["igValue"][3]["comment"] = "" defs["igValue"][3]["defaults"] = {} defs["igValue"][3]["funcname"] = "Value" +defs["igValue"][3]["namespace"] = "ImGui" defs["igValue"][3]["ov_cimguiname"] = "igValueUint" defs["igValue"][3]["ret"] = "void" defs["igValue"][3]["signature"] = "(const char*,unsigned int)" -defs["igValue"][3]["stname"] = "ImGui" +defs["igValue"][3]["stname"] = "" defs["igValue"][4] = {} defs["igValue"][4]["args"] = "(const char* prefix,float v,const char* float_format)" defs["igValue"][4]["argsT"] = {} @@ -12992,17 +13880,18 @@ defs["igValue"][4]["argsT"][2]["type"] = "float" defs["igValue"][4]["argsT"][3] = {} defs["igValue"][4]["argsT"][3]["name"] = "float_format" defs["igValue"][4]["argsT"][3]["type"] = "const char*" -defs["igValue"][4]["argsoriginal"] = "(const char* prefix,float v,const char* float_format=((void *)0))" +defs["igValue"][4]["argsoriginal"] = "(const char* prefix,float v,const char* float_format=((void*)0))" defs["igValue"][4]["call_args"] = "(prefix,v,float_format)" defs["igValue"][4]["cimguiname"] = "igValue" defs["igValue"][4]["comment"] = "" defs["igValue"][4]["defaults"] = {} -defs["igValue"][4]["defaults"]["float_format"] = "((void *)0)" +defs["igValue"][4]["defaults"]["float_format"] = "((void*)0)" defs["igValue"][4]["funcname"] = "Value" +defs["igValue"][4]["namespace"] = "ImGui" defs["igValue"][4]["ov_cimguiname"] = "igValueFloat" defs["igValue"][4]["ret"] = "void" defs["igValue"][4]["signature"] = "(const char*,float,const char*)" -defs["igValue"][4]["stname"] = "ImGui" +defs["igValue"][4]["stname"] = "" defs["igValue"]["(const char*,bool)"] = defs["igValue"][1] defs["igValue"]["(const char*,float,const char*)"] = defs["igValue"][4] defs["igValue"]["(const char*,int)"] = defs["igValue"][2] diff --git a/generator/output/impl_definitions.json b/generator/output/impl_definitions.json index 735d6b4..1eb236c 100644 --- a/generator/output/impl_definitions.json +++ b/generator/output/impl_definitions.json @@ -18,7 +18,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_CharCallback", - "location": "imgui_impl_glfw", + "ov_cimguiname": "ImGui_ImplGlfw_CharCallback", "ret": "void", "signature": "(GLFWwindow*,unsigned int)", "stname": "" @@ -43,7 +43,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_InitForOpenGL", - "location": "imgui_impl_glfw", + "ov_cimguiname": "ImGui_ImplGlfw_InitForOpenGL", "ret": "bool", "signature": "(GLFWwindow*,bool)", "stname": "" @@ -68,7 +68,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_InitForVulkan", - "location": "imgui_impl_glfw", + "ov_cimguiname": "ImGui_ImplGlfw_InitForVulkan", "ret": "bool", "signature": "(GLFWwindow*,bool)", "stname": "" @@ -105,7 +105,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_KeyCallback", - "location": "imgui_impl_glfw", + "ov_cimguiname": "ImGui_ImplGlfw_KeyCallback", "ret": "void", "signature": "(GLFWwindow*,int,int,int,int)", "stname": "" @@ -138,7 +138,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_MouseButtonCallback", - "location": "imgui_impl_glfw", + "ov_cimguiname": "ImGui_ImplGlfw_MouseButtonCallback", "ret": "void", "signature": "(GLFWwindow*,int,int,int)", "stname": "" @@ -154,7 +154,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_NewFrame", - "location": "imgui_impl_glfw", + "ov_cimguiname": "ImGui_ImplGlfw_NewFrame", "ret": "void", "signature": "()", "stname": "" @@ -183,7 +183,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_ScrollCallback", - "location": "imgui_impl_glfw", + "ov_cimguiname": "ImGui_ImplGlfw_ScrollCallback", "ret": "void", "signature": "(GLFWwindow*,double,double)", "stname": "" @@ -199,7 +199,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_Shutdown", - "location": "imgui_impl_glfw", + "ov_cimguiname": "ImGui_ImplGlfw_Shutdown", "ret": "void", "signature": "()", "stname": "" @@ -215,7 +215,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_CreateDeviceObjects", - "location": "imgui_impl_opengl2", + "ov_cimguiname": "ImGui_ImplOpenGL2_CreateDeviceObjects", "ret": "bool", "signature": "()", "stname": "" @@ -231,7 +231,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_CreateFontsTexture", - "location": "imgui_impl_opengl2", + "ov_cimguiname": "ImGui_ImplOpenGL2_CreateFontsTexture", "ret": "bool", "signature": "()", "stname": "" @@ -247,7 +247,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", - "location": "imgui_impl_opengl2", + "ov_cimguiname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", "ret": "void", "signature": "()", "stname": "" @@ -263,7 +263,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_DestroyFontsTexture", - "location": "imgui_impl_opengl2", + "ov_cimguiname": "ImGui_ImplOpenGL2_DestroyFontsTexture", "ret": "void", "signature": "()", "stname": "" @@ -279,7 +279,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_Init", - "location": "imgui_impl_opengl2", + "ov_cimguiname": "ImGui_ImplOpenGL2_Init", "ret": "bool", "signature": "()", "stname": "" @@ -295,7 +295,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_NewFrame", - "location": "imgui_impl_opengl2", + "ov_cimguiname": "ImGui_ImplOpenGL2_NewFrame", "ret": "void", "signature": "()", "stname": "" @@ -316,7 +316,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_RenderDrawData", - "location": "imgui_impl_opengl2", + "ov_cimguiname": "ImGui_ImplOpenGL2_RenderDrawData", "ret": "void", "signature": "(ImDrawData*)", "stname": "" @@ -332,7 +332,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_Shutdown", - "location": "imgui_impl_opengl2", + "ov_cimguiname": "ImGui_ImplOpenGL2_Shutdown", "ret": "void", "signature": "()", "stname": "" @@ -348,7 +348,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL3_CreateDeviceObjects", - "location": "imgui_impl_opengl3", + "ov_cimguiname": "ImGui_ImplOpenGL3_CreateDeviceObjects", "ret": "bool", "signature": "()", "stname": "" @@ -364,7 +364,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL3_CreateFontsTexture", - "location": "imgui_impl_opengl3", + "ov_cimguiname": "ImGui_ImplOpenGL3_CreateFontsTexture", "ret": "bool", "signature": "()", "stname": "" @@ -380,7 +380,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", - "location": "imgui_impl_opengl3", + "ov_cimguiname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", "ret": "void", "signature": "()", "stname": "" @@ -396,7 +396,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL3_DestroyFontsTexture", - "location": "imgui_impl_opengl3", + "ov_cimguiname": "ImGui_ImplOpenGL3_DestroyFontsTexture", "ret": "void", "signature": "()", "stname": "" @@ -419,7 +419,7 @@ "glsl_version": "NULL" }, "funcname": "ImGui_ImplOpenGL3_Init", - "location": "imgui_impl_opengl3", + "ov_cimguiname": "ImGui_ImplOpenGL3_Init", "ret": "bool", "signature": "(const char*)", "stname": "" @@ -435,7 +435,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL3_NewFrame", - "location": "imgui_impl_opengl3", + "ov_cimguiname": "ImGui_ImplOpenGL3_NewFrame", "ret": "void", "signature": "()", "stname": "" @@ -456,7 +456,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL3_RenderDrawData", - "location": "imgui_impl_opengl3", + "ov_cimguiname": "ImGui_ImplOpenGL3_RenderDrawData", "ret": "void", "signature": "(ImDrawData*)", "stname": "" @@ -472,7 +472,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL3_Shutdown", - "location": "imgui_impl_opengl3", + "ov_cimguiname": "ImGui_ImplOpenGL3_Shutdown", "ret": "void", "signature": "()", "stname": "" @@ -497,7 +497,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplSDL2_InitForOpenGL", - "location": "imgui_impl_sdl", + "ov_cimguiname": "ImGui_ImplSDL2_InitForOpenGL", "ret": "bool", "signature": "(SDL_Window*,void*)", "stname": "" @@ -518,7 +518,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplSDL2_InitForVulkan", - "location": "imgui_impl_sdl", + "ov_cimguiname": "ImGui_ImplSDL2_InitForVulkan", "ret": "bool", "signature": "(SDL_Window*)", "stname": "" @@ -539,7 +539,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplSDL2_NewFrame", - "location": "imgui_impl_sdl", + "ov_cimguiname": "ImGui_ImplSDL2_NewFrame", "ret": "void", "signature": "(SDL_Window*)", "stname": "" @@ -560,7 +560,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplSDL2_ProcessEvent", - "location": "imgui_impl_sdl", + "ov_cimguiname": "ImGui_ImplSDL2_ProcessEvent", "ret": "bool", "signature": "(const SDL_Event*)", "stname": "" @@ -576,7 +576,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplSDL2_Shutdown", - "location": "imgui_impl_sdl", + "ov_cimguiname": "ImGui_ImplSDL2_Shutdown", "ret": "void", "signature": "()", "stname": "" diff --git a/generator/output/impl_definitions.lua b/generator/output/impl_definitions.lua index a3c5b47..d3bcdd8 100644 --- a/generator/output/impl_definitions.lua +++ b/generator/output/impl_definitions.lua @@ -15,7 +15,7 @@ defs["ImGui_ImplGlfw_CharCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CharCallb defs["ImGui_ImplGlfw_CharCallback"][1]["comment"] = "" defs["ImGui_ImplGlfw_CharCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_CharCallback"][1]["funcname"] = "ImGui_ImplGlfw_CharCallback" -defs["ImGui_ImplGlfw_CharCallback"][1]["location"] = "imgui_impl_glfw" +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)" defs["ImGui_ImplGlfw_CharCallback"][1]["stname"] = "" @@ -36,7 +36,7 @@ defs["ImGui_ImplGlfw_InitForOpenGL"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForO defs["ImGui_ImplGlfw_InitForOpenGL"][1]["comment"] = "" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InitForOpenGL"][1]["funcname"] = "ImGui_ImplGlfw_InitForOpenGL" -defs["ImGui_ImplGlfw_InitForOpenGL"][1]["location"] = "imgui_impl_glfw" +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)" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["stname"] = "" @@ -57,7 +57,7 @@ defs["ImGui_ImplGlfw_InitForVulkan"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForV defs["ImGui_ImplGlfw_InitForVulkan"][1]["comment"] = "" defs["ImGui_ImplGlfw_InitForVulkan"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InitForVulkan"][1]["funcname"] = "ImGui_ImplGlfw_InitForVulkan" -defs["ImGui_ImplGlfw_InitForVulkan"][1]["location"] = "imgui_impl_glfw" +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)" defs["ImGui_ImplGlfw_InitForVulkan"][1]["stname"] = "" @@ -87,7 +87,7 @@ defs["ImGui_ImplGlfw_KeyCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_KeyCallbac defs["ImGui_ImplGlfw_KeyCallback"][1]["comment"] = "" defs["ImGui_ImplGlfw_KeyCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_KeyCallback"][1]["funcname"] = "ImGui_ImplGlfw_KeyCallback" -defs["ImGui_ImplGlfw_KeyCallback"][1]["location"] = "imgui_impl_glfw" +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)" defs["ImGui_ImplGlfw_KeyCallback"][1]["stname"] = "" @@ -114,7 +114,7 @@ defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_Mo defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["comment"] = "" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["funcname"] = "ImGui_ImplGlfw_MouseButtonCallback" -defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["location"] = "imgui_impl_glfw" +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)" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["stname"] = "" @@ -129,7 +129,7 @@ defs["ImGui_ImplGlfw_NewFrame"][1]["cimguiname"] = "ImGui_ImplGlfw_NewFrame" defs["ImGui_ImplGlfw_NewFrame"][1]["comment"] = "" defs["ImGui_ImplGlfw_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplGlfw_NewFrame"][1]["funcname"] = "ImGui_ImplGlfw_NewFrame" -defs["ImGui_ImplGlfw_NewFrame"][1]["location"] = "imgui_impl_glfw" +defs["ImGui_ImplGlfw_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_NewFrame" defs["ImGui_ImplGlfw_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplGlfw_NewFrame"][1]["signature"] = "()" defs["ImGui_ImplGlfw_NewFrame"][1]["stname"] = "" @@ -153,7 +153,7 @@ defs["ImGui_ImplGlfw_ScrollCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_ScrollC defs["ImGui_ImplGlfw_ScrollCallback"][1]["comment"] = "" defs["ImGui_ImplGlfw_ScrollCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_ScrollCallback"][1]["funcname"] = "ImGui_ImplGlfw_ScrollCallback" -defs["ImGui_ImplGlfw_ScrollCallback"][1]["location"] = "imgui_impl_glfw" +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)" defs["ImGui_ImplGlfw_ScrollCallback"][1]["stname"] = "" @@ -168,7 +168,7 @@ defs["ImGui_ImplGlfw_Shutdown"][1]["cimguiname"] = "ImGui_ImplGlfw_Shutdown" defs["ImGui_ImplGlfw_Shutdown"][1]["comment"] = "" defs["ImGui_ImplGlfw_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplGlfw_Shutdown"][1]["funcname"] = "ImGui_ImplGlfw_Shutdown" -defs["ImGui_ImplGlfw_Shutdown"][1]["location"] = "imgui_impl_glfw" +defs["ImGui_ImplGlfw_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_Shutdown" defs["ImGui_ImplGlfw_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplGlfw_Shutdown"][1]["signature"] = "()" defs["ImGui_ImplGlfw_Shutdown"][1]["stname"] = "" @@ -183,7 +183,7 @@ defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpen defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["comment"] = "" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL2_CreateDeviceObjects" -defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_CreateDeviceObjects" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["signature"] = "()" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["stname"] = "" @@ -198,7 +198,7 @@ defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenG defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["comment"] = "" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL2_CreateFontsTexture" -defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_CreateFontsTexture" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["signature"] = "()" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["stname"] = "" @@ -213,7 +213,7 @@ defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpe defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["comment"] = "" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL2_DestroyDeviceObjects" -defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_DestroyDeviceObjects" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["signature"] = "()" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["stname"] = "" @@ -228,7 +228,7 @@ defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpen defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["comment"] = "" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL2_DestroyFontsTexture" -defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_DestroyFontsTexture" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["signature"] = "()" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["stname"] = "" @@ -243,7 +243,7 @@ defs["ImGui_ImplOpenGL2_Init"][1]["cimguiname"] = "ImGui_ImplOpenGL2_Init" defs["ImGui_ImplOpenGL2_Init"][1]["comment"] = "" defs["ImGui_ImplOpenGL2_Init"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_Init"][1]["funcname"] = "ImGui_ImplOpenGL2_Init" -defs["ImGui_ImplOpenGL2_Init"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_Init"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_Init" defs["ImGui_ImplOpenGL2_Init"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL2_Init"][1]["signature"] = "()" defs["ImGui_ImplOpenGL2_Init"][1]["stname"] = "" @@ -258,7 +258,7 @@ defs["ImGui_ImplOpenGL2_NewFrame"][1]["cimguiname"] = "ImGui_ImplOpenGL2_NewFram defs["ImGui_ImplOpenGL2_NewFrame"][1]["comment"] = "" defs["ImGui_ImplOpenGL2_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_NewFrame"][1]["funcname"] = "ImGui_ImplOpenGL2_NewFrame" -defs["ImGui_ImplOpenGL2_NewFrame"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_NewFrame" defs["ImGui_ImplOpenGL2_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_NewFrame"][1]["signature"] = "()" defs["ImGui_ImplOpenGL2_NewFrame"][1]["stname"] = "" @@ -276,7 +276,7 @@ defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["cimguiname"] = "ImGui_ImplOpenGL2_R defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["comment"] = "" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["funcname"] = "ImGui_ImplOpenGL2_RenderDrawData" -defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_RenderDrawData" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["signature"] = "(ImDrawData*)" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["stname"] = "" @@ -291,7 +291,7 @@ defs["ImGui_ImplOpenGL2_Shutdown"][1]["cimguiname"] = "ImGui_ImplOpenGL2_Shutdow defs["ImGui_ImplOpenGL2_Shutdown"][1]["comment"] = "" defs["ImGui_ImplOpenGL2_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_Shutdown"][1]["funcname"] = "ImGui_ImplOpenGL2_Shutdown" -defs["ImGui_ImplOpenGL2_Shutdown"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_Shutdown" defs["ImGui_ImplOpenGL2_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_Shutdown"][1]["signature"] = "()" defs["ImGui_ImplOpenGL2_Shutdown"][1]["stname"] = "" @@ -306,7 +306,7 @@ defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpen defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["comment"] = "" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL3_CreateDeviceObjects" -defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_CreateDeviceObjects" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["signature"] = "()" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["stname"] = "" @@ -321,7 +321,7 @@ defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenG defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["comment"] = "" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL3_CreateFontsTexture" -defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_CreateFontsTexture" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["signature"] = "()" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["stname"] = "" @@ -336,7 +336,7 @@ defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpe defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["comment"] = "" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL3_DestroyDeviceObjects" -defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_DestroyDeviceObjects" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["signature"] = "()" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["stname"] = "" @@ -351,7 +351,7 @@ defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpen defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["comment"] = "" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL3_DestroyFontsTexture" -defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_DestroyFontsTexture" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["signature"] = "()" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["stname"] = "" @@ -370,7 +370,7 @@ defs["ImGui_ImplOpenGL3_Init"][1]["comment"] = "" defs["ImGui_ImplOpenGL3_Init"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_Init"][1]["defaults"]["glsl_version"] = "NULL" defs["ImGui_ImplOpenGL3_Init"][1]["funcname"] = "ImGui_ImplOpenGL3_Init" -defs["ImGui_ImplOpenGL3_Init"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_Init"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_Init" defs["ImGui_ImplOpenGL3_Init"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL3_Init"][1]["signature"] = "(const char*)" defs["ImGui_ImplOpenGL3_Init"][1]["stname"] = "" @@ -385,7 +385,7 @@ defs["ImGui_ImplOpenGL3_NewFrame"][1]["cimguiname"] = "ImGui_ImplOpenGL3_NewFram defs["ImGui_ImplOpenGL3_NewFrame"][1]["comment"] = "" defs["ImGui_ImplOpenGL3_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_NewFrame"][1]["funcname"] = "ImGui_ImplOpenGL3_NewFrame" -defs["ImGui_ImplOpenGL3_NewFrame"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_NewFrame" defs["ImGui_ImplOpenGL3_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_NewFrame"][1]["signature"] = "()" defs["ImGui_ImplOpenGL3_NewFrame"][1]["stname"] = "" @@ -403,7 +403,7 @@ defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["cimguiname"] = "ImGui_ImplOpenGL3_R defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["comment"] = "" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["funcname"] = "ImGui_ImplOpenGL3_RenderDrawData" -defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_RenderDrawData" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["signature"] = "(ImDrawData*)" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["stname"] = "" @@ -418,7 +418,7 @@ defs["ImGui_ImplOpenGL3_Shutdown"][1]["cimguiname"] = "ImGui_ImplOpenGL3_Shutdow defs["ImGui_ImplOpenGL3_Shutdown"][1]["comment"] = "" defs["ImGui_ImplOpenGL3_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_Shutdown"][1]["funcname"] = "ImGui_ImplOpenGL3_Shutdown" -defs["ImGui_ImplOpenGL3_Shutdown"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_Shutdown" defs["ImGui_ImplOpenGL3_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_Shutdown"][1]["signature"] = "()" defs["ImGui_ImplOpenGL3_Shutdown"][1]["stname"] = "" @@ -439,7 +439,7 @@ defs["ImGui_ImplSDL2_InitForOpenGL"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForO defs["ImGui_ImplSDL2_InitForOpenGL"][1]["comment"] = "" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForOpenGL"][1]["funcname"] = "ImGui_ImplSDL2_InitForOpenGL" -defs["ImGui_ImplSDL2_InitForOpenGL"][1]["location"] = "imgui_impl_sdl" +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*)" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["stname"] = "" @@ -457,7 +457,7 @@ defs["ImGui_ImplSDL2_InitForVulkan"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForV defs["ImGui_ImplSDL2_InitForVulkan"][1]["comment"] = "" defs["ImGui_ImplSDL2_InitForVulkan"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForVulkan"][1]["funcname"] = "ImGui_ImplSDL2_InitForVulkan" -defs["ImGui_ImplSDL2_InitForVulkan"][1]["location"] = "imgui_impl_sdl" +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*)" defs["ImGui_ImplSDL2_InitForVulkan"][1]["stname"] = "" @@ -475,7 +475,7 @@ defs["ImGui_ImplSDL2_NewFrame"][1]["cimguiname"] = "ImGui_ImplSDL2_NewFrame" defs["ImGui_ImplSDL2_NewFrame"][1]["comment"] = "" defs["ImGui_ImplSDL2_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplSDL2_NewFrame"][1]["funcname"] = "ImGui_ImplSDL2_NewFrame" -defs["ImGui_ImplSDL2_NewFrame"][1]["location"] = "imgui_impl_sdl" +defs["ImGui_ImplSDL2_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_NewFrame" defs["ImGui_ImplSDL2_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplSDL2_NewFrame"][1]["signature"] = "(SDL_Window*)" defs["ImGui_ImplSDL2_NewFrame"][1]["stname"] = "" @@ -493,7 +493,7 @@ defs["ImGui_ImplSDL2_ProcessEvent"][1]["cimguiname"] = "ImGui_ImplSDL2_ProcessEv defs["ImGui_ImplSDL2_ProcessEvent"][1]["comment"] = "" defs["ImGui_ImplSDL2_ProcessEvent"][1]["defaults"] = {} defs["ImGui_ImplSDL2_ProcessEvent"][1]["funcname"] = "ImGui_ImplSDL2_ProcessEvent" -defs["ImGui_ImplSDL2_ProcessEvent"][1]["location"] = "imgui_impl_sdl" +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"] = "" @@ -508,7 +508,7 @@ defs["ImGui_ImplSDL2_Shutdown"][1]["cimguiname"] = "ImGui_ImplSDL2_Shutdown" defs["ImGui_ImplSDL2_Shutdown"][1]["comment"] = "" defs["ImGui_ImplSDL2_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplSDL2_Shutdown"][1]["funcname"] = "ImGui_ImplSDL2_Shutdown" -defs["ImGui_ImplSDL2_Shutdown"][1]["location"] = "imgui_impl_sdl" +defs["ImGui_ImplSDL2_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_Shutdown" defs["ImGui_ImplSDL2_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplSDL2_Shutdown"][1]["signature"] = "()" defs["ImGui_ImplSDL2_Shutdown"][1]["stname"] = "" diff --git a/generator/output/overloads.txt b/generator/output/overloads.txt index b2ed9be..6d3cf24 100644 --- a/generator/output/overloads.txt +++ b/generator/output/overloads.txt @@ -35,6 +35,9 @@ igSetWindowSize 2 igPushStyleColor 2 1 void igPushStyleColorU32 (ImGuiCol,ImU32) 2 void igPushStyleColor (ImGuiCol,const ImVec4) +ImVector_ImVector 2 +1 nil ImVector_ImVector () +2 nil ImVector_ImVectorVector_ (const ImVector_) igSetWindowCollapsed 2 1 void igSetWindowCollapsedBool (bool,ImGuiCond) 2 void igSetWindowCollapsedStr (const char*,bool,ImGuiCond) @@ -126,4 +129,4 @@ igTreeNode 3 igTreeNodeV 2 1 bool igTreeNodeVStr (const char*,const char*,va_list) 2 bool igTreeNodeVPtr (const void*,const char*,va_list) -89 overloaded \ No newline at end of file +91 overloaded \ No newline at end of file diff --git a/generator/output/typedefs_dict.json b/generator/output/typedefs_dict.json index 766c132..59f5988 100644 --- a/generator/output/typedefs_dict.json +++ b/generator/output/typedefs_dict.json @@ -60,6 +60,7 @@ "ImU64": "uint64_t", "ImVec2": "struct ImVec2", "ImVec4": "struct ImVec4", + "ImVector": "struct ImVector", "ImWchar": "unsigned short", "Pair": "struct Pair", "TextRange": "struct TextRange", diff --git a/generator/output/typedefs_dict.lua b/generator/output/typedefs_dict.lua index 19a2e8a..29a7528 100644 --- a/generator/output/typedefs_dict.lua +++ b/generator/output/typedefs_dict.lua @@ -60,6 +60,7 @@ defs["ImU32"] = "unsigned int" defs["ImU64"] = "uint64_t" defs["ImVec2"] = "struct ImVec2" defs["ImVec4"] = "struct ImVec4" +defs["ImVector"] = "struct ImVector" defs["ImWchar"] = "unsigned short" defs["Pair"] = "struct Pair" defs["TextRange"] = "struct TextRange" From 161385607dc2cf73b3404040701f332353a120ce Mon Sep 17 00:00:00 2001 From: sonoro1234 Date: Tue, 12 Feb 2019 19:59:39 +0100 Subject: [PATCH 04/12] not templated structs generated --- cimgui.cpp | 116 ------------------------ cimgui.h | 40 -------- generator/cpp2ffi.lua | 6 +- generator/generator2.lua | 4 +- generator/output/cimgui.cpp | 116 ------------------------ generator/output/cimgui.h | 40 -------- generator/output/structs_and_enums.json | 26 ------ generator/output/structs_and_enums.lua | 19 ---- generator/output/typedefs_dict.json | 1 - generator/output/typedefs_dict.lua | 1 - 10 files changed, 6 insertions(+), 363 deletions(-) diff --git a/cimgui.cpp b/cimgui.cpp index 36cad03..2c0927f 100644 --- a/cimgui.cpp +++ b/cimgui.cpp @@ -1427,126 +1427,10 @@ CIMGUI_API void igMemFree(void* ptr) { return ImGui::MemFree(ptr); } -CIMGUI_API ImVector* ImVector_ImVector(void) -{ - return IM_NEW(ImVector)(); -} CIMGUI_API void ImVector_destroy(ImVector* self) { IM_DELETE(self); } -CIMGUI_API ImVector* ImVector_ImVectorVector_(const ImVector_ src) -{ - return IM_NEW(ImVector)(src); -} -CIMGUI_API bool ImVector_empty(ImVector* self) -{ - return self->empty(); -} -CIMGUI_API int ImVector_size(ImVector* self) -{ - return self->size(); -} -CIMGUI_API int ImVector_size_in_bytes(ImVector* self) -{ - return self->size_in_bytes(); -} -CIMGUI_API int ImVector_capacity(ImVector* self) -{ - return self->capacity(); -} -CIMGUI_API void ImVector_clear(ImVector* self) -{ - return self->clear(); -} -CIMGUI_API const T* ImVector_begin(ImVector* self) -{ - return self->begin(); -} -CIMGUI_API const T* ImVector_begin(ImVector* self) -{ - return self->begin(); -} -CIMGUI_API const T* ImVector_end(ImVector* self) -{ - return self->end(); -} -CIMGUI_API const T* ImVector_end(ImVector* self) -{ - return self->end(); -} -CIMGUI_API const T* ImVector_front(ImVector* self) -{ - return &self->front(); -} -CIMGUI_API const T* ImVector_front(ImVector* self) -{ - return &self->front(); -} -CIMGUI_API const T* ImVector_back(ImVector* self) -{ - return &self->back(); -} -CIMGUI_API const T* ImVector_back(ImVector* self) -{ - return &self->back(); -} -CIMGUI_API void ImVector_swap(ImVector* self,ImVector_ rhs) -{ - return self->swap(rhs); -} -CIMGUI_API int ImVector__grow_capacity(ImVector* self,int sz) -{ - return self->_grow_capacity(sz); -} -CIMGUI_API void ImVector_resize(ImVector* self,int new_size) -{ - return self->resize(new_size); -} -CIMGUI_API void ImVector_resizeT(ImVector* self,int new_size,const T v) -{ - return self->resize(new_size,v); -} -CIMGUI_API void ImVector_reserve(ImVector* self,int new_capacity) -{ - return self->reserve(new_capacity); -} -CIMGUI_API void ImVector_push_back(ImVector* self,const T v) -{ - return self->push_back(v); -} -CIMGUI_API void ImVector_pop_back(ImVector* self) -{ - return self->pop_back(); -} -CIMGUI_API void ImVector_push_front(ImVector* self,const T v) -{ - return self->push_front(v); -} -CIMGUI_API T* ImVector_erase(ImVector* self,const T* it) -{ - return self->erase(it); -} -CIMGUI_API T* ImVector_eraseTPtr(ImVector* self,const T* it,const T* it_last) -{ - return self->erase(it,it_last); -} -CIMGUI_API T* ImVector_erase_unsorted(ImVector* self,const T* it) -{ - return self->erase_unsorted(it); -} -CIMGUI_API T* ImVector_insert(ImVector* self,const T* it,const T v) -{ - return self->insert(it,v); -} -CIMGUI_API bool ImVector_contains(ImVector* self,const T v) -{ - return self->contains(v); -} -CIMGUI_API int ImVector_index_from_ptr(ImVector* self,const T* it) -{ - return self->index_from_ptr(it); -} CIMGUI_API ImGuiStyle* ImGuiStyle_ImGuiStyle(void) { return IM_NEW(ImGuiStyle)(); diff --git a/cimgui.h b/cimgui.h index 98a8fdf..1bd09fc 100644 --- a/cimgui.h +++ b/cimgui.h @@ -45,7 +45,6 @@ typedef struct ImColor_Simple { ImVec4_Simple Value;} ImColor_Simple; typedef struct CustomRect CustomRect; typedef struct Pair Pair; typedef struct TextRange TextRange; -typedef struct ImVector ImVector; typedef struct ImVec4 ImVec4; typedef struct ImVec2 ImVec2; typedef struct ImGuiTextFilter ImGuiTextFilter; @@ -523,16 +522,6 @@ enum ImGuiCond_ ImGuiCond_FirstUseEver = 1 << 2, ImGuiCond_Appearing = 1 << 3 }; -template -struct ImVector -{ - int Size; - int Capacity; - T* Data; - typedef T value_type; - typedef value_type* iterator; - typedef const value_type* const_iterator; -}; struct ImGuiStyle { float Alpha; @@ -1263,36 +1252,7 @@ CIMGUI_API const char* igSaveIniSettingsToMemory(size_t* out_ini_size); CIMGUI_API void igSetAllocatorFunctions(void*(*alloc_func)(size_t sz,void* user_data),void(*free_func)(void* ptr,void* user_data),void* user_data); CIMGUI_API void* igMemAlloc(size_t size); CIMGUI_API void igMemFree(void* ptr); -CIMGUI_API ImVector* ImVector_ImVector(void); CIMGUI_API void ImVector_destroy(ImVector* self); -CIMGUI_API ImVector* ImVector_ImVectorVector_(const ImVector_ src); -CIMGUI_API bool ImVector_empty(ImVector* self); -CIMGUI_API int ImVector_size(ImVector* self); -CIMGUI_API int ImVector_size_in_bytes(ImVector* self); -CIMGUI_API int ImVector_capacity(ImVector* self); -CIMGUI_API void ImVector_clear(ImVector* self); -CIMGUI_API const T* ImVector_begin(ImVector* self); -CIMGUI_API const T* ImVector_begin(ImVector* self); -CIMGUI_API const T* ImVector_end(ImVector* self); -CIMGUI_API const T* ImVector_end(ImVector* self); -CIMGUI_API const T* ImVector_front(ImVector* self); -CIMGUI_API const T* ImVector_front(ImVector* self); -CIMGUI_API const T* ImVector_back(ImVector* self); -CIMGUI_API const T* ImVector_back(ImVector* self); -CIMGUI_API void ImVector_swap(ImVector* self,ImVector_ rhs); -CIMGUI_API int ImVector__grow_capacity(ImVector* self,int sz); -CIMGUI_API void ImVector_resize(ImVector* self,int new_size); -CIMGUI_API void ImVector_resizeT(ImVector* self,int new_size,const T v); -CIMGUI_API void ImVector_reserve(ImVector* self,int new_capacity); -CIMGUI_API void ImVector_push_back(ImVector* self,const T v); -CIMGUI_API void ImVector_pop_back(ImVector* self); -CIMGUI_API void ImVector_push_front(ImVector* self,const T v); -CIMGUI_API T* ImVector_erase(ImVector* self,const T* it); -CIMGUI_API T* ImVector_eraseTPtr(ImVector* self,const T* it,const T* it_last); -CIMGUI_API T* ImVector_erase_unsorted(ImVector* self,const T* it); -CIMGUI_API T* ImVector_insert(ImVector* self,const T* it,const T v); -CIMGUI_API bool ImVector_contains(ImVector* self,const T v); -CIMGUI_API int ImVector_index_from_ptr(ImVector* self,const T* it); CIMGUI_API ImGuiStyle* ImGuiStyle_ImGuiStyle(void); CIMGUI_API void ImGuiStyle_destroy(ImGuiStyle* self); CIMGUI_API void ImGuiStyle_ScaleAllSizes(ImGuiStyle* self,float scale_factor); diff --git a/generator/cpp2ffi.lua b/generator/cpp2ffi.lua index 00d8557..ad427bc 100644 --- a/generator/cpp2ffi.lua +++ b/generator/cpp2ffi.lua @@ -831,7 +831,8 @@ function M.Parser() table.insert(outtab,it.item) elseif it.re_name == "struct_re" then local cleanst,structname = self:clean_struct(it.item) - if structname then + --if not void stname or templated + if structname and not self.typenames[structname] then table.insert(outtab,cleanst) table.insert(typedefs_table,"typedef struct "..structname.." "..structname..";\n") self.typedefs_dict[structname]="struct "..structname @@ -914,7 +915,8 @@ function M.Parser() end elseif it.re_name == "struct_re" then local cleanst,structname,strtab = self:clean_struct(it.item) - if structname then --not empty struc + --if not void stname or templated + if structname and not self.typenames[structname] then outtab.structs[structname] = {} for j=3,#strtab-1 do self:parse_struct_line(strtab[j],outtab.structs[structname]) diff --git a/generator/generator2.lua b/generator/generator2.lua index a2b9fd4..673a04c 100644 --- a/generator/generator2.lua +++ b/generator/generator2.lua @@ -236,7 +236,7 @@ local function func_header_generate(FP) local def = cimf[t.signature] assert(def,t.signature..t.cimguiname) local manual = FP.get_manuals(def) - if not manual then + if not manual and not def.templated then --if FP.templates[t.stname] then print(t.cimguiname) end local addcoment = def.comment or "" local empty = def.args:match("^%(%)") --no args @@ -338,7 +338,7 @@ local function func_implementation(FP) local def = cimf[t.signature] assert(def) local manual = FP.get_manuals(def) - if not manual then + if not manual and not def.templated then if def.constructor then assert(def.stname ~= "","constructor without struct") local empty = def.args:match("^%(%)") --no args diff --git a/generator/output/cimgui.cpp b/generator/output/cimgui.cpp index 36cad03..2c0927f 100644 --- a/generator/output/cimgui.cpp +++ b/generator/output/cimgui.cpp @@ -1427,126 +1427,10 @@ CIMGUI_API void igMemFree(void* ptr) { return ImGui::MemFree(ptr); } -CIMGUI_API ImVector* ImVector_ImVector(void) -{ - return IM_NEW(ImVector)(); -} CIMGUI_API void ImVector_destroy(ImVector* self) { IM_DELETE(self); } -CIMGUI_API ImVector* ImVector_ImVectorVector_(const ImVector_ src) -{ - return IM_NEW(ImVector)(src); -} -CIMGUI_API bool ImVector_empty(ImVector* self) -{ - return self->empty(); -} -CIMGUI_API int ImVector_size(ImVector* self) -{ - return self->size(); -} -CIMGUI_API int ImVector_size_in_bytes(ImVector* self) -{ - return self->size_in_bytes(); -} -CIMGUI_API int ImVector_capacity(ImVector* self) -{ - return self->capacity(); -} -CIMGUI_API void ImVector_clear(ImVector* self) -{ - return self->clear(); -} -CIMGUI_API const T* ImVector_begin(ImVector* self) -{ - return self->begin(); -} -CIMGUI_API const T* ImVector_begin(ImVector* self) -{ - return self->begin(); -} -CIMGUI_API const T* ImVector_end(ImVector* self) -{ - return self->end(); -} -CIMGUI_API const T* ImVector_end(ImVector* self) -{ - return self->end(); -} -CIMGUI_API const T* ImVector_front(ImVector* self) -{ - return &self->front(); -} -CIMGUI_API const T* ImVector_front(ImVector* self) -{ - return &self->front(); -} -CIMGUI_API const T* ImVector_back(ImVector* self) -{ - return &self->back(); -} -CIMGUI_API const T* ImVector_back(ImVector* self) -{ - return &self->back(); -} -CIMGUI_API void ImVector_swap(ImVector* self,ImVector_ rhs) -{ - return self->swap(rhs); -} -CIMGUI_API int ImVector__grow_capacity(ImVector* self,int sz) -{ - return self->_grow_capacity(sz); -} -CIMGUI_API void ImVector_resize(ImVector* self,int new_size) -{ - return self->resize(new_size); -} -CIMGUI_API void ImVector_resizeT(ImVector* self,int new_size,const T v) -{ - return self->resize(new_size,v); -} -CIMGUI_API void ImVector_reserve(ImVector* self,int new_capacity) -{ - return self->reserve(new_capacity); -} -CIMGUI_API void ImVector_push_back(ImVector* self,const T v) -{ - return self->push_back(v); -} -CIMGUI_API void ImVector_pop_back(ImVector* self) -{ - return self->pop_back(); -} -CIMGUI_API void ImVector_push_front(ImVector* self,const T v) -{ - return self->push_front(v); -} -CIMGUI_API T* ImVector_erase(ImVector* self,const T* it) -{ - return self->erase(it); -} -CIMGUI_API T* ImVector_eraseTPtr(ImVector* self,const T* it,const T* it_last) -{ - return self->erase(it,it_last); -} -CIMGUI_API T* ImVector_erase_unsorted(ImVector* self,const T* it) -{ - return self->erase_unsorted(it); -} -CIMGUI_API T* ImVector_insert(ImVector* self,const T* it,const T v) -{ - return self->insert(it,v); -} -CIMGUI_API bool ImVector_contains(ImVector* self,const T v) -{ - return self->contains(v); -} -CIMGUI_API int ImVector_index_from_ptr(ImVector* self,const T* it) -{ - return self->index_from_ptr(it); -} CIMGUI_API ImGuiStyle* ImGuiStyle_ImGuiStyle(void) { return IM_NEW(ImGuiStyle)(); diff --git a/generator/output/cimgui.h b/generator/output/cimgui.h index 98a8fdf..1bd09fc 100644 --- a/generator/output/cimgui.h +++ b/generator/output/cimgui.h @@ -45,7 +45,6 @@ typedef struct ImColor_Simple { ImVec4_Simple Value;} ImColor_Simple; typedef struct CustomRect CustomRect; typedef struct Pair Pair; typedef struct TextRange TextRange; -typedef struct ImVector ImVector; typedef struct ImVec4 ImVec4; typedef struct ImVec2 ImVec2; typedef struct ImGuiTextFilter ImGuiTextFilter; @@ -523,16 +522,6 @@ enum ImGuiCond_ ImGuiCond_FirstUseEver = 1 << 2, ImGuiCond_Appearing = 1 << 3 }; -template -struct ImVector -{ - int Size; - int Capacity; - T* Data; - typedef T value_type; - typedef value_type* iterator; - typedef const value_type* const_iterator; -}; struct ImGuiStyle { float Alpha; @@ -1263,36 +1252,7 @@ CIMGUI_API const char* igSaveIniSettingsToMemory(size_t* out_ini_size); CIMGUI_API void igSetAllocatorFunctions(void*(*alloc_func)(size_t sz,void* user_data),void(*free_func)(void* ptr,void* user_data),void* user_data); CIMGUI_API void* igMemAlloc(size_t size); CIMGUI_API void igMemFree(void* ptr); -CIMGUI_API ImVector* ImVector_ImVector(void); CIMGUI_API void ImVector_destroy(ImVector* self); -CIMGUI_API ImVector* ImVector_ImVectorVector_(const ImVector_ src); -CIMGUI_API bool ImVector_empty(ImVector* self); -CIMGUI_API int ImVector_size(ImVector* self); -CIMGUI_API int ImVector_size_in_bytes(ImVector* self); -CIMGUI_API int ImVector_capacity(ImVector* self); -CIMGUI_API void ImVector_clear(ImVector* self); -CIMGUI_API const T* ImVector_begin(ImVector* self); -CIMGUI_API const T* ImVector_begin(ImVector* self); -CIMGUI_API const T* ImVector_end(ImVector* self); -CIMGUI_API const T* ImVector_end(ImVector* self); -CIMGUI_API const T* ImVector_front(ImVector* self); -CIMGUI_API const T* ImVector_front(ImVector* self); -CIMGUI_API const T* ImVector_back(ImVector* self); -CIMGUI_API const T* ImVector_back(ImVector* self); -CIMGUI_API void ImVector_swap(ImVector* self,ImVector_ rhs); -CIMGUI_API int ImVector__grow_capacity(ImVector* self,int sz); -CIMGUI_API void ImVector_resize(ImVector* self,int new_size); -CIMGUI_API void ImVector_resizeT(ImVector* self,int new_size,const T v); -CIMGUI_API void ImVector_reserve(ImVector* self,int new_capacity); -CIMGUI_API void ImVector_push_back(ImVector* self,const T v); -CIMGUI_API void ImVector_pop_back(ImVector* self); -CIMGUI_API void ImVector_push_front(ImVector* self,const T v); -CIMGUI_API T* ImVector_erase(ImVector* self,const T* it); -CIMGUI_API T* ImVector_eraseTPtr(ImVector* self,const T* it,const T* it_last); -CIMGUI_API T* ImVector_erase_unsorted(ImVector* self,const T* it); -CIMGUI_API T* ImVector_insert(ImVector* self,const T* it,const T v); -CIMGUI_API bool ImVector_contains(ImVector* self,const T v); -CIMGUI_API int ImVector_index_from_ptr(ImVector* self,const T* it); CIMGUI_API ImGuiStyle* ImGuiStyle_ImGuiStyle(void); CIMGUI_API void ImGuiStyle_destroy(ImGuiStyle* self); CIMGUI_API void ImGuiStyle_ScaleAllSizes(ImGuiStyle* self,float scale_factor); diff --git a/generator/output/structs_and_enums.json b/generator/output/structs_and_enums.json index 6b34237..a843bd1 100644 --- a/generator/output/structs_and_enums.json +++ b/generator/output/structs_and_enums.json @@ -2739,32 +2739,6 @@ "type": "float" } ], - "ImVector": [ - { - "name": "Size", - "type": "int" - }, - { - "name": "Capacity", - "type": "int" - }, - { - "name": "Data", - "type": "T*" - }, - { - "name": "value_type", - "type": "typedef T" - }, - { - "name": "iterator", - "type": "typedef value_type*" - }, - { - "name": "const_iterator", - "type": "typedef const value_type*" - } - ], "Pair": [ { "name": "key", diff --git a/generator/output/structs_and_enums.lua b/generator/output/structs_and_enums.lua index f042c8c..1add2b6 100644 --- a/generator/output/structs_and_enums.lua +++ b/generator/output/structs_and_enums.lua @@ -2120,25 +2120,6 @@ defs["structs"]["ImVec4"][3]["type"] = "float" defs["structs"]["ImVec4"][4] = {} defs["structs"]["ImVec4"][4]["name"] = "w" defs["structs"]["ImVec4"][4]["type"] = "float" -defs["structs"]["ImVector"] = {} -defs["structs"]["ImVector"][1] = {} -defs["structs"]["ImVector"][1]["name"] = "Size" -defs["structs"]["ImVector"][1]["type"] = "int" -defs["structs"]["ImVector"][2] = {} -defs["structs"]["ImVector"][2]["name"] = "Capacity" -defs["structs"]["ImVector"][2]["type"] = "int" -defs["structs"]["ImVector"][3] = {} -defs["structs"]["ImVector"][3]["name"] = "Data" -defs["structs"]["ImVector"][3]["type"] = "T*" -defs["structs"]["ImVector"][4] = {} -defs["structs"]["ImVector"][4]["name"] = "value_type" -defs["structs"]["ImVector"][4]["type"] = "typedef T" -defs["structs"]["ImVector"][5] = {} -defs["structs"]["ImVector"][5]["name"] = "iterator" -defs["structs"]["ImVector"][5]["type"] = "typedef value_type*" -defs["structs"]["ImVector"][6] = {} -defs["structs"]["ImVector"][6]["name"] = "const_iterator" -defs["structs"]["ImVector"][6]["type"] = "typedef const value_type*" defs["structs"]["Pair"] = {} defs["structs"]["Pair"][1] = {} defs["structs"]["Pair"][1]["name"] = "key" diff --git a/generator/output/typedefs_dict.json b/generator/output/typedefs_dict.json index 59f5988..766c132 100644 --- a/generator/output/typedefs_dict.json +++ b/generator/output/typedefs_dict.json @@ -60,7 +60,6 @@ "ImU64": "uint64_t", "ImVec2": "struct ImVec2", "ImVec4": "struct ImVec4", - "ImVector": "struct ImVector", "ImWchar": "unsigned short", "Pair": "struct Pair", "TextRange": "struct TextRange", diff --git a/generator/output/typedefs_dict.lua b/generator/output/typedefs_dict.lua index 29a7528..19a2e8a 100644 --- a/generator/output/typedefs_dict.lua +++ b/generator/output/typedefs_dict.lua @@ -60,7 +60,6 @@ defs["ImU32"] = "unsigned int" defs["ImU64"] = "uint64_t" defs["ImVec2"] = "struct ImVec2" defs["ImVec4"] = "struct ImVec4" -defs["ImVector"] = "struct ImVector" defs["ImWchar"] = "unsigned short" defs["Pair"] = "struct Pair" defs["TextRange"] = "struct TextRange" From 347d8d58b09d9ca4dd9b88dc8f30c85cfef48487 Mon Sep 17 00:00:00 2001 From: sonoro1234 Date: Thu, 14 Feb 2019 13:05:49 +0100 Subject: [PATCH 05/12] with templated structs generated --- cimgui.cpp | 2049 ++++- cimgui.h | 512 +- generator/cimgui_template.cpp | 5 +- generator/cimgui_template.h | 1 - generator/cpp2ffi.lua | 140 +- generator/generator2.lua | 9 +- generator/output/cimgui.cpp | 2049 ++++- generator/output/cimgui.h | 512 +- generator/output/definitions.json | 11141 +++++++++++++++++++++++++++- generator/output/definitions.lua | 9598 +++++++++++++++++++++++- generator/output/overloads.txt | 10 +- 11 files changed, 25810 insertions(+), 216 deletions(-) diff --git a/cimgui.cpp b/cimgui.cpp index 2c0927f..6bfee89 100644 --- a/cimgui.cpp +++ b/cimgui.cpp @@ -1427,10 +1427,6 @@ CIMGUI_API void igMemFree(void* ptr) { return ImGui::MemFree(ptr); } -CIMGUI_API void ImVector_destroy(ImVector* self) -{ - IM_DELETE(self); -} CIMGUI_API ImGuiStyle* ImGuiStyle_ImGuiStyle(void) { return IM_NEW(ImGuiStyle)(); @@ -2435,6 +2431,2046 @@ CIMGUI_API ImVec2_Simple ImFont_CalcTextSizeA_nonUDT2(ImFont* self,float size,fl ImVec2_Simple ret2 = ImVec2ToSimple(ret); return ret2; } +CIMGUI_API ImVector_float* ImVector_float_ImVector_float(void) +{ + return IM_NEW(ImVector_float)(); +} +CIMGUI_API void ImVector_float_destroy(ImVector_float* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_ImWchar* ImVector_ImWchar_ImVector_ImWchar(void) +{ + return IM_NEW(ImVector_ImWchar)(); +} +CIMGUI_API void ImVector_ImWchar_destroy(ImVector_ImWchar* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_ImFontConfig* ImVector_ImFontConfig_ImVector_ImFontConfig(void) +{ + return IM_NEW(ImVector_ImFontConfig)(); +} +CIMGUI_API void ImVector_ImFontConfig_destroy(ImVector_ImFontConfig* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_ImFontGlyph* ImVector_ImFontGlyph_ImVector_ImFontGlyph(void) +{ + return IM_NEW(ImVector_ImFontGlyph)(); +} +CIMGUI_API void ImVector_ImFontGlyph_destroy(ImVector_ImFontGlyph* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_TextRange* ImVector_TextRange_ImVector_TextRange(void) +{ + return IM_NEW(ImVector_TextRange)(); +} +CIMGUI_API void ImVector_TextRange_destroy(ImVector_TextRange* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_CustomRect* ImVector_CustomRect_ImVector_CustomRect(void) +{ + return IM_NEW(ImVector_CustomRect)(); +} +CIMGUI_API void ImVector_CustomRect_destroy(ImVector_CustomRect* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_ImDrawChannel* ImVector_ImDrawChannel_ImVector_ImDrawChannel(void) +{ + return IM_NEW(ImVector_ImDrawChannel)(); +} +CIMGUI_API void ImVector_ImDrawChannel_destroy(ImVector_ImDrawChannel* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_char* ImVector_char_ImVector_char(void) +{ + return IM_NEW(ImVector_char)(); +} +CIMGUI_API void ImVector_char_destroy(ImVector_char* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_ImTextureID* ImVector_ImTextureID_ImVector_ImTextureID(void) +{ + return IM_NEW(ImVector_ImTextureID)(); +} +CIMGUI_API void ImVector_ImTextureID_destroy(ImVector_ImTextureID* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_ImDrawVert* ImVector_ImDrawVert_ImVector_ImDrawVert(void) +{ + return IM_NEW(ImVector_ImDrawVert)(); +} +CIMGUI_API void ImVector_ImDrawVert_destroy(ImVector_ImDrawVert* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_int* ImVector_int_ImVector_int(void) +{ + return IM_NEW(ImVector_int)(); +} +CIMGUI_API void ImVector_int_destroy(ImVector_int* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_Pair* ImVector_Pair_ImVector_Pair(void) +{ + return IM_NEW(ImVector_Pair)(); +} +CIMGUI_API void ImVector_Pair_destroy(ImVector_Pair* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_ImFontPtr* ImVector_ImFontPtr_ImVector_ImFontPtr(void) +{ + return IM_NEW(ImVector_ImFontPtr)(); +} +CIMGUI_API void ImVector_ImFontPtr_destroy(ImVector_ImFontPtr* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_ImVec4* ImVector_ImVec4_ImVector_ImVec4(void) +{ + return IM_NEW(ImVector_ImVec4)(); +} +CIMGUI_API void ImVector_ImVec4_destroy(ImVector_ImVec4* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_ImDrawCmd* ImVector_ImDrawCmd_ImVector_ImDrawCmd(void) +{ + return IM_NEW(ImVector_ImDrawCmd)(); +} +CIMGUI_API void ImVector_ImDrawCmd_destroy(ImVector_ImDrawCmd* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_ImDrawIdx* ImVector_ImDrawIdx_ImVector_ImDrawIdx(void) +{ + return IM_NEW(ImVector_ImDrawIdx)(); +} +CIMGUI_API void ImVector_ImDrawIdx_destroy(ImVector_ImDrawIdx* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_ImVec2* ImVector_ImVec2_ImVector_ImVec2(void) +{ + return IM_NEW(ImVector_ImVec2)(); +} +CIMGUI_API void ImVector_ImVec2_destroy(ImVector_ImVec2* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_float* ImVector_float_ImVector_floatVector(const ImVector_float src) +{ + return IM_NEW(ImVector_float)(src); +} +CIMGUI_API ImVector_ImWchar* ImVector_ImWchar_ImVector_ImWcharVector(const ImVector_ImWchar src) +{ + return IM_NEW(ImVector_ImWchar)(src); +} +CIMGUI_API ImVector_ImFontConfig* ImVector_ImFontConfig_ImVector_ImFontConfigVector(const ImVector_ImFontConfig src) +{ + return IM_NEW(ImVector_ImFontConfig)(src); +} +CIMGUI_API ImVector_ImFontGlyph* ImVector_ImFontGlyph_ImVector_ImFontGlyphVector(const ImVector_ImFontGlyph src) +{ + return IM_NEW(ImVector_ImFontGlyph)(src); +} +CIMGUI_API ImVector_TextRange* ImVector_TextRange_ImVector_TextRangeVector(const ImVector_TextRange src) +{ + return IM_NEW(ImVector_TextRange)(src); +} +CIMGUI_API ImVector_CustomRect* ImVector_CustomRect_ImVector_CustomRectVector(const ImVector_CustomRect src) +{ + return IM_NEW(ImVector_CustomRect)(src); +} +CIMGUI_API ImVector_ImDrawChannel* ImVector_ImDrawChannel_ImVector_ImDrawChannelVector(const ImVector_ImDrawChannel src) +{ + return IM_NEW(ImVector_ImDrawChannel)(src); +} +CIMGUI_API ImVector_char* ImVector_char_ImVector_charVector(const ImVector_char src) +{ + return IM_NEW(ImVector_char)(src); +} +CIMGUI_API ImVector_ImTextureID* ImVector_ImTextureID_ImVector_ImTextureIDVector(const ImVector_ImTextureID src) +{ + return IM_NEW(ImVector_ImTextureID)(src); +} +CIMGUI_API ImVector_ImDrawVert* ImVector_ImDrawVert_ImVector_ImDrawVertVector(const ImVector_ImDrawVert src) +{ + return IM_NEW(ImVector_ImDrawVert)(src); +} +CIMGUI_API ImVector_int* ImVector_int_ImVector_intVector(const ImVector_int src) +{ + return IM_NEW(ImVector_int)(src); +} +CIMGUI_API ImVector_Pair* ImVector_Pair_ImVector_PairVector(const ImVector_Pair src) +{ + return IM_NEW(ImVector_Pair)(src); +} +CIMGUI_API ImVector_ImFontPtr* ImVector_ImFontPtr_ImVector_ImFontPtrVector(const ImVector_ImFontPtr src) +{ + return IM_NEW(ImVector_ImFontPtr)(src); +} +CIMGUI_API ImVector_ImVec4* ImVector_ImVec4_ImVector_ImVec4Vector(const ImVector_ImVec4 src) +{ + return IM_NEW(ImVector_ImVec4)(src); +} +CIMGUI_API ImVector_ImDrawCmd* ImVector_ImDrawCmd_ImVector_ImDrawCmdVector(const ImVector_ImDrawCmd src) +{ + return IM_NEW(ImVector_ImDrawCmd)(src); +} +CIMGUI_API ImVector_ImDrawIdx* ImVector_ImDrawIdx_ImVector_ImDrawIdxVector(const ImVector_ImDrawIdx src) +{ + return IM_NEW(ImVector_ImDrawIdx)(src); +} +CIMGUI_API ImVector_ImVec2* ImVector_ImVec2_ImVector_ImVec2Vector(const ImVector_ImVec2 src) +{ + return IM_NEW(ImVector_ImVec2)(src); +} +CIMGUI_API bool ImVector_float_empty(const ImVector_float* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_ImWchar_empty(const ImVector_ImWchar* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_ImFontConfig_empty(const ImVector_ImFontConfig* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_ImFontGlyph_empty(const ImVector_ImFontGlyph* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_TextRange_empty(const ImVector_TextRange* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_CustomRect_empty(const ImVector_CustomRect* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_ImDrawChannel_empty(const ImVector_ImDrawChannel* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_char_empty(const ImVector_char* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_ImTextureID_empty(const ImVector_ImTextureID* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_ImDrawVert_empty(const ImVector_ImDrawVert* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_int_empty(const ImVector_int* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_Pair_empty(const ImVector_Pair* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_ImFontPtr_empty(const ImVector_ImFontPtr* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_ImVec4_empty(const ImVector_ImVec4* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_ImDrawCmd_empty(const ImVector_ImDrawCmd* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_ImDrawIdx_empty(const ImVector_ImDrawIdx* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_ImVec2_empty(const ImVector_ImVec2* self) +{ + return self->empty(); +} +CIMGUI_API int ImVector_float_size(const ImVector_float* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_ImWchar_size(const ImVector_ImWchar* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_ImFontConfig_size(const ImVector_ImFontConfig* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_ImFontGlyph_size(const ImVector_ImFontGlyph* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_TextRange_size(const ImVector_TextRange* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_CustomRect_size(const ImVector_CustomRect* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_ImDrawChannel_size(const ImVector_ImDrawChannel* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_char_size(const ImVector_char* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_ImTextureID_size(const ImVector_ImTextureID* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_ImDrawVert_size(const ImVector_ImDrawVert* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_int_size(const ImVector_int* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_Pair_size(const ImVector_Pair* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_ImFontPtr_size(const ImVector_ImFontPtr* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_ImVec4_size(const ImVector_ImVec4* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_ImDrawCmd_size(const ImVector_ImDrawCmd* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_ImDrawIdx_size(const ImVector_ImDrawIdx* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_ImVec2_size(const ImVector_ImVec2* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_float_size_in_bytes(const ImVector_float* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_ImWchar_size_in_bytes(const ImVector_ImWchar* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_ImFontConfig_size_in_bytes(const ImVector_ImFontConfig* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_ImFontGlyph_size_in_bytes(const ImVector_ImFontGlyph* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_TextRange_size_in_bytes(const ImVector_TextRange* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_CustomRect_size_in_bytes(const ImVector_CustomRect* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_ImDrawChannel_size_in_bytes(const ImVector_ImDrawChannel* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_char_size_in_bytes(const ImVector_char* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_ImTextureID_size_in_bytes(const ImVector_ImTextureID* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_ImDrawVert_size_in_bytes(const ImVector_ImDrawVert* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_int_size_in_bytes(const ImVector_int* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_Pair_size_in_bytes(const ImVector_Pair* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_ImFontPtr_size_in_bytes(const ImVector_ImFontPtr* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_ImVec4_size_in_bytes(const ImVector_ImVec4* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_ImDrawCmd_size_in_bytes(const ImVector_ImDrawCmd* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_ImDrawIdx_size_in_bytes(const ImVector_ImDrawIdx* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_ImVec2_size_in_bytes(const ImVector_ImVec2* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_float_capacity(const ImVector_float* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_ImWchar_capacity(const ImVector_ImWchar* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_ImFontConfig_capacity(const ImVector_ImFontConfig* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_ImFontGlyph_capacity(const ImVector_ImFontGlyph* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_TextRange_capacity(const ImVector_TextRange* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_CustomRect_capacity(const ImVector_CustomRect* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_ImDrawChannel_capacity(const ImVector_ImDrawChannel* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_char_capacity(const ImVector_char* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_ImTextureID_capacity(const ImVector_ImTextureID* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_ImDrawVert_capacity(const ImVector_ImDrawVert* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_int_capacity(const ImVector_int* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_Pair_capacity(const ImVector_Pair* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_ImFontPtr_capacity(const ImVector_ImFontPtr* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_ImVec4_capacity(const ImVector_ImVec4* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_ImDrawCmd_capacity(const ImVector_ImDrawCmd* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_ImDrawIdx_capacity(const ImVector_ImDrawIdx* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_ImVec2_capacity(const ImVector_ImVec2* self) +{ + return self->capacity(); +} +CIMGUI_API void ImVector_float_clear(ImVector_float* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_ImWchar_clear(ImVector_ImWchar* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_ImFontConfig_clear(ImVector_ImFontConfig* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_ImFontGlyph_clear(ImVector_ImFontGlyph* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_TextRange_clear(ImVector_TextRange* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_CustomRect_clear(ImVector_CustomRect* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_ImDrawChannel_clear(ImVector_ImDrawChannel* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_char_clear(ImVector_char* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_ImTextureID_clear(ImVector_ImTextureID* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_ImDrawVert_clear(ImVector_ImDrawVert* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_int_clear(ImVector_int* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_Pair_clear(ImVector_Pair* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_ImFontPtr_clear(ImVector_ImFontPtr* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_ImVec4_clear(ImVector_ImVec4* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_ImDrawCmd_clear(ImVector_ImDrawCmd* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_ImDrawIdx_clear(ImVector_ImDrawIdx* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_ImVec2_clear(ImVector_ImVec2* self) +{ + return self->clear(); +} +CIMGUI_API float* ImVector_float_begin(ImVector_float* self) +{ + return self->begin(); +} +CIMGUI_API ImWchar* ImVector_ImWchar_begin(ImVector_ImWchar* self) +{ + return self->begin(); +} +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_begin(ImVector_ImFontConfig* self) +{ + return self->begin(); +} +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_begin(ImVector_ImFontGlyph* self) +{ + return self->begin(); +} +CIMGUI_API TextRange* ImVector_TextRange_begin(ImVector_TextRange* self) +{ + return self->begin(); +} +CIMGUI_API CustomRect* ImVector_CustomRect_begin(ImVector_CustomRect* self) +{ + return self->begin(); +} +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_begin(ImVector_ImDrawChannel* self) +{ + return self->begin(); +} +CIMGUI_API char* ImVector_char_begin(ImVector_char* self) +{ + return self->begin(); +} +CIMGUI_API ImTextureID* ImVector_ImTextureID_begin(ImVector_ImTextureID* self) +{ + return self->begin(); +} +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_begin(ImVector_ImDrawVert* self) +{ + return self->begin(); +} +CIMGUI_API int* ImVector_int_begin(ImVector_int* self) +{ + return self->begin(); +} +CIMGUI_API Pair* ImVector_Pair_begin(ImVector_Pair* self) +{ + return self->begin(); +} +CIMGUI_API ImFont** ImVector_ImFontPtr_begin(ImVector_ImFontPtr* self) +{ + return self->begin(); +} +CIMGUI_API ImVec4* ImVector_ImVec4_begin(ImVector_ImVec4* self) +{ + return self->begin(); +} +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_begin(ImVector_ImDrawCmd* self) +{ + return self->begin(); +} +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_begin(ImVector_ImDrawIdx* self) +{ + return self->begin(); +} +CIMGUI_API ImVec2* ImVector_ImVec2_begin(ImVector_ImVec2* self) +{ + return self->begin(); +} +CIMGUI_API float const * ImVector_float_begin_const(const ImVector_float* self) +{ + return self->begin(); +} +CIMGUI_API ImWchar const * ImVector_ImWchar_begin_const(const ImVector_ImWchar* self) +{ + return self->begin(); +} +CIMGUI_API ImFontConfig const * ImVector_ImFontConfig_begin_const(const ImVector_ImFontConfig* self) +{ + return self->begin(); +} +CIMGUI_API ImFontGlyph const * ImVector_ImFontGlyph_begin_const(const ImVector_ImFontGlyph* self) +{ + return self->begin(); +} +CIMGUI_API TextRange const * ImVector_TextRange_begin_const(const ImVector_TextRange* self) +{ + return self->begin(); +} +CIMGUI_API CustomRect const * ImVector_CustomRect_begin_const(const ImVector_CustomRect* self) +{ + return self->begin(); +} +CIMGUI_API ImDrawChannel const * ImVector_ImDrawChannel_begin_const(const ImVector_ImDrawChannel* self) +{ + return self->begin(); +} +CIMGUI_API char const * ImVector_char_begin_const(const ImVector_char* self) +{ + return self->begin(); +} +CIMGUI_API ImTextureID const * ImVector_ImTextureID_begin_const(const ImVector_ImTextureID* self) +{ + return self->begin(); +} +CIMGUI_API ImDrawVert const * ImVector_ImDrawVert_begin_const(const ImVector_ImDrawVert* self) +{ + return self->begin(); +} +CIMGUI_API int const * ImVector_int_begin_const(const ImVector_int* self) +{ + return self->begin(); +} +CIMGUI_API Pair const * ImVector_Pair_begin_const(const ImVector_Pair* self) +{ + return self->begin(); +} +CIMGUI_API ImFont* const * ImVector_ImFontPtr_begin_const(const ImVector_ImFontPtr* self) +{ + return self->begin(); +} +CIMGUI_API ImVec4 const * ImVector_ImVec4_begin_const(const ImVector_ImVec4* self) +{ + return self->begin(); +} +CIMGUI_API ImDrawCmd const * ImVector_ImDrawCmd_begin_const(const ImVector_ImDrawCmd* self) +{ + return self->begin(); +} +CIMGUI_API ImDrawIdx const * ImVector_ImDrawIdx_begin_const(const ImVector_ImDrawIdx* self) +{ + return self->begin(); +} +CIMGUI_API ImVec2 const * ImVector_ImVec2_begin_const(const ImVector_ImVec2* self) +{ + return self->begin(); +} +CIMGUI_API float* ImVector_float_end(ImVector_float* self) +{ + return self->end(); +} +CIMGUI_API ImWchar* ImVector_ImWchar_end(ImVector_ImWchar* self) +{ + return self->end(); +} +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_end(ImVector_ImFontConfig* self) +{ + return self->end(); +} +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_end(ImVector_ImFontGlyph* self) +{ + return self->end(); +} +CIMGUI_API TextRange* ImVector_TextRange_end(ImVector_TextRange* self) +{ + return self->end(); +} +CIMGUI_API CustomRect* ImVector_CustomRect_end(ImVector_CustomRect* self) +{ + return self->end(); +} +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_end(ImVector_ImDrawChannel* self) +{ + return self->end(); +} +CIMGUI_API char* ImVector_char_end(ImVector_char* self) +{ + return self->end(); +} +CIMGUI_API ImTextureID* ImVector_ImTextureID_end(ImVector_ImTextureID* self) +{ + return self->end(); +} +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_end(ImVector_ImDrawVert* self) +{ + return self->end(); +} +CIMGUI_API int* ImVector_int_end(ImVector_int* self) +{ + return self->end(); +} +CIMGUI_API Pair* ImVector_Pair_end(ImVector_Pair* self) +{ + return self->end(); +} +CIMGUI_API ImFont** ImVector_ImFontPtr_end(ImVector_ImFontPtr* self) +{ + return self->end(); +} +CIMGUI_API ImVec4* ImVector_ImVec4_end(ImVector_ImVec4* self) +{ + return self->end(); +} +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_end(ImVector_ImDrawCmd* self) +{ + return self->end(); +} +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_end(ImVector_ImDrawIdx* self) +{ + return self->end(); +} +CIMGUI_API ImVec2* ImVector_ImVec2_end(ImVector_ImVec2* self) +{ + return self->end(); +} +CIMGUI_API float const * ImVector_float_end_const(const ImVector_float* self) +{ + return self->end(); +} +CIMGUI_API ImWchar const * ImVector_ImWchar_end_const(const ImVector_ImWchar* self) +{ + return self->end(); +} +CIMGUI_API ImFontConfig const * ImVector_ImFontConfig_end_const(const ImVector_ImFontConfig* self) +{ + return self->end(); +} +CIMGUI_API ImFontGlyph const * ImVector_ImFontGlyph_end_const(const ImVector_ImFontGlyph* self) +{ + return self->end(); +} +CIMGUI_API TextRange const * ImVector_TextRange_end_const(const ImVector_TextRange* self) +{ + return self->end(); +} +CIMGUI_API CustomRect const * ImVector_CustomRect_end_const(const ImVector_CustomRect* self) +{ + return self->end(); +} +CIMGUI_API ImDrawChannel const * ImVector_ImDrawChannel_end_const(const ImVector_ImDrawChannel* self) +{ + return self->end(); +} +CIMGUI_API char const * ImVector_char_end_const(const ImVector_char* self) +{ + return self->end(); +} +CIMGUI_API ImTextureID const * ImVector_ImTextureID_end_const(const ImVector_ImTextureID* self) +{ + return self->end(); +} +CIMGUI_API ImDrawVert const * ImVector_ImDrawVert_end_const(const ImVector_ImDrawVert* self) +{ + return self->end(); +} +CIMGUI_API int const * ImVector_int_end_const(const ImVector_int* self) +{ + return self->end(); +} +CIMGUI_API Pair const * ImVector_Pair_end_const(const ImVector_Pair* self) +{ + return self->end(); +} +CIMGUI_API ImFont* const * ImVector_ImFontPtr_end_const(const ImVector_ImFontPtr* self) +{ + return self->end(); +} +CIMGUI_API ImVec4 const * ImVector_ImVec4_end_const(const ImVector_ImVec4* self) +{ + return self->end(); +} +CIMGUI_API ImDrawCmd const * ImVector_ImDrawCmd_end_const(const ImVector_ImDrawCmd* self) +{ + return self->end(); +} +CIMGUI_API ImDrawIdx const * ImVector_ImDrawIdx_end_const(const ImVector_ImDrawIdx* self) +{ + return self->end(); +} +CIMGUI_API ImVec2 const * ImVector_ImVec2_end_const(const ImVector_ImVec2* self) +{ + return self->end(); +} +CIMGUI_API float* ImVector_float_front(ImVector_float* self) +{ + return &self->front(); +} +CIMGUI_API ImWchar* ImVector_ImWchar_front(ImVector_ImWchar* self) +{ + return &self->front(); +} +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_front(ImVector_ImFontConfig* self) +{ + return &self->front(); +} +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_front(ImVector_ImFontGlyph* self) +{ + return &self->front(); +} +CIMGUI_API TextRange* ImVector_TextRange_front(ImVector_TextRange* self) +{ + return &self->front(); +} +CIMGUI_API CustomRect* ImVector_CustomRect_front(ImVector_CustomRect* self) +{ + return &self->front(); +} +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_front(ImVector_ImDrawChannel* self) +{ + return &self->front(); +} +CIMGUI_API char* ImVector_char_front(ImVector_char* self) +{ + return &self->front(); +} +CIMGUI_API ImTextureID* ImVector_ImTextureID_front(ImVector_ImTextureID* self) +{ + return &self->front(); +} +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_front(ImVector_ImDrawVert* self) +{ + return &self->front(); +} +CIMGUI_API int* ImVector_int_front(ImVector_int* self) +{ + return &self->front(); +} +CIMGUI_API Pair* ImVector_Pair_front(ImVector_Pair* self) +{ + return &self->front(); +} +CIMGUI_API ImFont** ImVector_ImFontPtr_front(ImVector_ImFontPtr* self) +{ + return &self->front(); +} +CIMGUI_API ImVec4* ImVector_ImVec4_front(ImVector_ImVec4* self) +{ + return &self->front(); +} +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_front(ImVector_ImDrawCmd* self) +{ + return &self->front(); +} +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_front(ImVector_ImDrawIdx* self) +{ + return &self->front(); +} +CIMGUI_API ImVec2* ImVector_ImVec2_front(ImVector_ImVec2* self) +{ + return &self->front(); +} +CIMGUI_API float const * ImVector_float_front_const(const ImVector_float* self) +{ + return &self->front(); +} +CIMGUI_API ImWchar const * ImVector_ImWchar_front_const(const ImVector_ImWchar* self) +{ + return &self->front(); +} +CIMGUI_API ImFontConfig const * ImVector_ImFontConfig_front_const(const ImVector_ImFontConfig* self) +{ + return &self->front(); +} +CIMGUI_API ImFontGlyph const * ImVector_ImFontGlyph_front_const(const ImVector_ImFontGlyph* self) +{ + return &self->front(); +} +CIMGUI_API TextRange const * ImVector_TextRange_front_const(const ImVector_TextRange* self) +{ + return &self->front(); +} +CIMGUI_API CustomRect const * ImVector_CustomRect_front_const(const ImVector_CustomRect* self) +{ + return &self->front(); +} +CIMGUI_API ImDrawChannel const * ImVector_ImDrawChannel_front_const(const ImVector_ImDrawChannel* self) +{ + return &self->front(); +} +CIMGUI_API char const * ImVector_char_front_const(const ImVector_char* self) +{ + return &self->front(); +} +CIMGUI_API ImTextureID const * ImVector_ImTextureID_front_const(const ImVector_ImTextureID* self) +{ + return &self->front(); +} +CIMGUI_API ImDrawVert const * ImVector_ImDrawVert_front_const(const ImVector_ImDrawVert* self) +{ + return &self->front(); +} +CIMGUI_API int const * ImVector_int_front_const(const ImVector_int* self) +{ + return &self->front(); +} +CIMGUI_API Pair const * ImVector_Pair_front_const(const ImVector_Pair* self) +{ + return &self->front(); +} +CIMGUI_API ImFont* const * ImVector_ImFontPtr_front_const(const ImVector_ImFontPtr* self) +{ + return &self->front(); +} +CIMGUI_API ImVec4 const * ImVector_ImVec4_front_const(const ImVector_ImVec4* self) +{ + return &self->front(); +} +CIMGUI_API ImDrawCmd const * ImVector_ImDrawCmd_front_const(const ImVector_ImDrawCmd* self) +{ + return &self->front(); +} +CIMGUI_API ImDrawIdx const * ImVector_ImDrawIdx_front_const(const ImVector_ImDrawIdx* self) +{ + return &self->front(); +} +CIMGUI_API ImVec2 const * ImVector_ImVec2_front_const(const ImVector_ImVec2* self) +{ + return &self->front(); +} +CIMGUI_API float* ImVector_float_back(ImVector_float* self) +{ + return &self->back(); +} +CIMGUI_API ImWchar* ImVector_ImWchar_back(ImVector_ImWchar* self) +{ + return &self->back(); +} +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_back(ImVector_ImFontConfig* self) +{ + return &self->back(); +} +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_back(ImVector_ImFontGlyph* self) +{ + return &self->back(); +} +CIMGUI_API TextRange* ImVector_TextRange_back(ImVector_TextRange* self) +{ + return &self->back(); +} +CIMGUI_API CustomRect* ImVector_CustomRect_back(ImVector_CustomRect* self) +{ + return &self->back(); +} +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_back(ImVector_ImDrawChannel* self) +{ + return &self->back(); +} +CIMGUI_API char* ImVector_char_back(ImVector_char* self) +{ + return &self->back(); +} +CIMGUI_API ImTextureID* ImVector_ImTextureID_back(ImVector_ImTextureID* self) +{ + return &self->back(); +} +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_back(ImVector_ImDrawVert* self) +{ + return &self->back(); +} +CIMGUI_API int* ImVector_int_back(ImVector_int* self) +{ + return &self->back(); +} +CIMGUI_API Pair* ImVector_Pair_back(ImVector_Pair* self) +{ + return &self->back(); +} +CIMGUI_API ImFont** ImVector_ImFontPtr_back(ImVector_ImFontPtr* self) +{ + return &self->back(); +} +CIMGUI_API ImVec4* ImVector_ImVec4_back(ImVector_ImVec4* self) +{ + return &self->back(); +} +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_back(ImVector_ImDrawCmd* self) +{ + return &self->back(); +} +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_back(ImVector_ImDrawIdx* self) +{ + return &self->back(); +} +CIMGUI_API ImVec2* ImVector_ImVec2_back(ImVector_ImVec2* self) +{ + return &self->back(); +} +CIMGUI_API float const * ImVector_float_back_const(const ImVector_float* self) +{ + return &self->back(); +} +CIMGUI_API ImWchar const * ImVector_ImWchar_back_const(const ImVector_ImWchar* self) +{ + return &self->back(); +} +CIMGUI_API ImFontConfig const * ImVector_ImFontConfig_back_const(const ImVector_ImFontConfig* self) +{ + return &self->back(); +} +CIMGUI_API ImFontGlyph const * ImVector_ImFontGlyph_back_const(const ImVector_ImFontGlyph* self) +{ + return &self->back(); +} +CIMGUI_API TextRange const * ImVector_TextRange_back_const(const ImVector_TextRange* self) +{ + return &self->back(); +} +CIMGUI_API CustomRect const * ImVector_CustomRect_back_const(const ImVector_CustomRect* self) +{ + return &self->back(); +} +CIMGUI_API ImDrawChannel const * ImVector_ImDrawChannel_back_const(const ImVector_ImDrawChannel* self) +{ + return &self->back(); +} +CIMGUI_API char const * ImVector_char_back_const(const ImVector_char* self) +{ + return &self->back(); +} +CIMGUI_API ImTextureID const * ImVector_ImTextureID_back_const(const ImVector_ImTextureID* self) +{ + return &self->back(); +} +CIMGUI_API ImDrawVert const * ImVector_ImDrawVert_back_const(const ImVector_ImDrawVert* self) +{ + return &self->back(); +} +CIMGUI_API int const * ImVector_int_back_const(const ImVector_int* self) +{ + return &self->back(); +} +CIMGUI_API Pair const * ImVector_Pair_back_const(const ImVector_Pair* self) +{ + return &self->back(); +} +CIMGUI_API ImFont* const * ImVector_ImFontPtr_back_const(const ImVector_ImFontPtr* self) +{ + return &self->back(); +} +CIMGUI_API ImVec4 const * ImVector_ImVec4_back_const(const ImVector_ImVec4* self) +{ + return &self->back(); +} +CIMGUI_API ImDrawCmd const * ImVector_ImDrawCmd_back_const(const ImVector_ImDrawCmd* self) +{ + return &self->back(); +} +CIMGUI_API ImDrawIdx const * ImVector_ImDrawIdx_back_const(const ImVector_ImDrawIdx* self) +{ + return &self->back(); +} +CIMGUI_API ImVec2 const * ImVector_ImVec2_back_const(const ImVector_ImVec2* self) +{ + return &self->back(); +} +CIMGUI_API void ImVector_float_swap(ImVector_float* self,ImVector_float rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_ImWchar_swap(ImVector_ImWchar* self,ImVector_ImWchar rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_ImFontConfig_swap(ImVector_ImFontConfig* self,ImVector_ImFontConfig rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_ImFontGlyph_swap(ImVector_ImFontGlyph* self,ImVector_ImFontGlyph rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_TextRange_swap(ImVector_TextRange* self,ImVector_TextRange rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_CustomRect_swap(ImVector_CustomRect* self,ImVector_CustomRect rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_ImDrawChannel_swap(ImVector_ImDrawChannel* self,ImVector_ImDrawChannel rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_char_swap(ImVector_char* self,ImVector_char rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_ImTextureID_swap(ImVector_ImTextureID* self,ImVector_ImTextureID rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_ImDrawVert_swap(ImVector_ImDrawVert* self,ImVector_ImDrawVert rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_int_swap(ImVector_int* self,ImVector_int rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_Pair_swap(ImVector_Pair* self,ImVector_Pair rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_ImFontPtr_swap(ImVector_ImFontPtr* self,ImVector_ImFontPtr rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_ImVec4_swap(ImVector_ImVec4* self,ImVector_ImVec4 rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_ImDrawCmd_swap(ImVector_ImDrawCmd* self,ImVector_ImDrawCmd rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_ImDrawIdx_swap(ImVector_ImDrawIdx* self,ImVector_ImDrawIdx rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_ImVec2_swap(ImVector_ImVec2* self,ImVector_ImVec2 rhs) +{ + return self->swap(rhs); +} +CIMGUI_API int ImVector_float__grow_capacity(const ImVector_float* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_ImWchar__grow_capacity(const ImVector_ImWchar* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_ImFontConfig__grow_capacity(const ImVector_ImFontConfig* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_ImFontGlyph__grow_capacity(const ImVector_ImFontGlyph* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_TextRange__grow_capacity(const ImVector_TextRange* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_CustomRect__grow_capacity(const ImVector_CustomRect* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_ImDrawChannel__grow_capacity(const ImVector_ImDrawChannel* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_char__grow_capacity(const ImVector_char* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_ImTextureID__grow_capacity(const ImVector_ImTextureID* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_ImDrawVert__grow_capacity(const ImVector_ImDrawVert* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_int__grow_capacity(const ImVector_int* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_Pair__grow_capacity(const ImVector_Pair* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_ImFontPtr__grow_capacity(const ImVector_ImFontPtr* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_ImVec4__grow_capacity(const ImVector_ImVec4* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_ImDrawCmd__grow_capacity(const ImVector_ImDrawCmd* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_ImDrawIdx__grow_capacity(const ImVector_ImDrawIdx* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_ImVec2__grow_capacity(const ImVector_ImVec2* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API void ImVector_float_resize(ImVector_float* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_ImWchar_resize(ImVector_ImWchar* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_ImFontConfig_resize(ImVector_ImFontConfig* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_ImFontGlyph_resize(ImVector_ImFontGlyph* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_TextRange_resize(ImVector_TextRange* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_CustomRect_resize(ImVector_CustomRect* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_ImDrawChannel_resize(ImVector_ImDrawChannel* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_char_resize(ImVector_char* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_ImTextureID_resize(ImVector_ImTextureID* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_ImDrawVert_resize(ImVector_ImDrawVert* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_int_resize(ImVector_int* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_Pair_resize(ImVector_Pair* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_ImFontPtr_resize(ImVector_ImFontPtr* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_ImVec4_resize(ImVector_ImVec4* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_ImDrawCmd_resize(ImVector_ImDrawCmd* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_ImDrawIdx_resize(ImVector_ImDrawIdx* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_ImVec2_resize(ImVector_ImVec2* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_float_resizeT(ImVector_float* self,int new_size,const float v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_ImWchar_resizeT(ImVector_ImWchar* self,int new_size,const ImWchar v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_ImFontConfig_resizeT(ImVector_ImFontConfig* self,int new_size,const ImFontConfig v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_ImFontGlyph_resizeT(ImVector_ImFontGlyph* self,int new_size,const ImFontGlyph v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_TextRange_resizeT(ImVector_TextRange* self,int new_size,const TextRange v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_CustomRect_resizeT(ImVector_CustomRect* self,int new_size,const CustomRect v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_ImDrawChannel_resizeT(ImVector_ImDrawChannel* self,int new_size,const ImDrawChannel v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_char_resizeT(ImVector_char* self,int new_size,const char v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_ImTextureID_resizeT(ImVector_ImTextureID* self,int new_size,const ImTextureID v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_ImDrawVert_resizeT(ImVector_ImDrawVert* self,int new_size,const ImDrawVert v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_int_resizeT(ImVector_int* self,int new_size,const int v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_Pair_resizeT(ImVector_Pair* self,int new_size,const Pair v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_ImFontPtr_resizeT(ImVector_ImFontPtr* self,int new_size,ImFont* const v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_ImVec4_resizeT(ImVector_ImVec4* self,int new_size,const ImVec4 v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_ImDrawCmd_resizeT(ImVector_ImDrawCmd* self,int new_size,const ImDrawCmd v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_ImDrawIdx_resizeT(ImVector_ImDrawIdx* self,int new_size,const ImDrawIdx v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_ImVec2_resizeT(ImVector_ImVec2* self,int new_size,const ImVec2 v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_float_reserve(ImVector_float* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_ImWchar_reserve(ImVector_ImWchar* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_ImFontConfig_reserve(ImVector_ImFontConfig* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_ImFontGlyph_reserve(ImVector_ImFontGlyph* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_TextRange_reserve(ImVector_TextRange* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_CustomRect_reserve(ImVector_CustomRect* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_ImDrawChannel_reserve(ImVector_ImDrawChannel* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_char_reserve(ImVector_char* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_ImTextureID_reserve(ImVector_ImTextureID* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_ImDrawVert_reserve(ImVector_ImDrawVert* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_int_reserve(ImVector_int* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_Pair_reserve(ImVector_Pair* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_ImFontPtr_reserve(ImVector_ImFontPtr* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_ImVec4_reserve(ImVector_ImVec4* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_ImDrawCmd_reserve(ImVector_ImDrawCmd* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_ImDrawIdx_reserve(ImVector_ImDrawIdx* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_ImVec2_reserve(ImVector_ImVec2* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_float_push_back(ImVector_float* self,const float v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_ImWchar_push_back(ImVector_ImWchar* self,const ImWchar v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_ImFontConfig_push_back(ImVector_ImFontConfig* self,const ImFontConfig v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_ImFontGlyph_push_back(ImVector_ImFontGlyph* self,const ImFontGlyph v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_TextRange_push_back(ImVector_TextRange* self,const TextRange v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_CustomRect_push_back(ImVector_CustomRect* self,const CustomRect v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_ImDrawChannel_push_back(ImVector_ImDrawChannel* self,const ImDrawChannel v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_char_push_back(ImVector_char* self,const char v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_ImTextureID_push_back(ImVector_ImTextureID* self,const ImTextureID v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_ImDrawVert_push_back(ImVector_ImDrawVert* self,const ImDrawVert v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_int_push_back(ImVector_int* self,const int v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_Pair_push_back(ImVector_Pair* self,const Pair v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_ImFontPtr_push_back(ImVector_ImFontPtr* self,ImFont* const v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_ImVec4_push_back(ImVector_ImVec4* self,const ImVec4 v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_ImDrawCmd_push_back(ImVector_ImDrawCmd* self,const ImDrawCmd v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_ImDrawIdx_push_back(ImVector_ImDrawIdx* self,const ImDrawIdx v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_ImVec2_push_back(ImVector_ImVec2* self,const ImVec2 v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_float_pop_back(ImVector_float* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_ImWchar_pop_back(ImVector_ImWchar* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_ImFontConfig_pop_back(ImVector_ImFontConfig* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_ImFontGlyph_pop_back(ImVector_ImFontGlyph* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_TextRange_pop_back(ImVector_TextRange* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_CustomRect_pop_back(ImVector_CustomRect* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_ImDrawChannel_pop_back(ImVector_ImDrawChannel* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_char_pop_back(ImVector_char* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_ImTextureID_pop_back(ImVector_ImTextureID* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_ImDrawVert_pop_back(ImVector_ImDrawVert* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_int_pop_back(ImVector_int* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_Pair_pop_back(ImVector_Pair* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_ImFontPtr_pop_back(ImVector_ImFontPtr* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_ImVec4_pop_back(ImVector_ImVec4* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_ImDrawCmd_pop_back(ImVector_ImDrawCmd* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_ImDrawIdx_pop_back(ImVector_ImDrawIdx* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_ImVec2_pop_back(ImVector_ImVec2* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_float_push_front(ImVector_float* self,const float v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_ImWchar_push_front(ImVector_ImWchar* self,const ImWchar v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_ImFontConfig_push_front(ImVector_ImFontConfig* self,const ImFontConfig v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_ImFontGlyph_push_front(ImVector_ImFontGlyph* self,const ImFontGlyph v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_TextRange_push_front(ImVector_TextRange* self,const TextRange v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_CustomRect_push_front(ImVector_CustomRect* self,const CustomRect v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_ImDrawChannel_push_front(ImVector_ImDrawChannel* self,const ImDrawChannel v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_char_push_front(ImVector_char* self,const char v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_ImTextureID_push_front(ImVector_ImTextureID* self,const ImTextureID v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_ImDrawVert_push_front(ImVector_ImDrawVert* self,const ImDrawVert v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_int_push_front(ImVector_int* self,const int v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_Pair_push_front(ImVector_Pair* self,const Pair v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_ImFontPtr_push_front(ImVector_ImFontPtr* self,ImFont* const v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_ImVec4_push_front(ImVector_ImVec4* self,const ImVec4 v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_ImDrawCmd_push_front(ImVector_ImDrawCmd* self,const ImDrawCmd v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_ImDrawIdx_push_front(ImVector_ImDrawIdx* self,const ImDrawIdx v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_ImVec2_push_front(ImVector_ImVec2* self,const ImVec2 v) +{ + return self->push_front(v); +} +CIMGUI_API float* ImVector_float_erase(ImVector_float* self,float const * it) +{ + return self->erase(it); +} +CIMGUI_API ImWchar* ImVector_ImWchar_erase(ImVector_ImWchar* self,ImWchar const * it) +{ + return self->erase(it); +} +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_erase(ImVector_ImFontConfig* self,ImFontConfig const * it) +{ + return self->erase(it); +} +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_erase(ImVector_ImFontGlyph* self,ImFontGlyph const * it) +{ + return self->erase(it); +} +CIMGUI_API TextRange* ImVector_TextRange_erase(ImVector_TextRange* self,TextRange const * it) +{ + return self->erase(it); +} +CIMGUI_API CustomRect* ImVector_CustomRect_erase(ImVector_CustomRect* self,CustomRect const * it) +{ + return self->erase(it); +} +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_erase(ImVector_ImDrawChannel* self,ImDrawChannel const * it) +{ + return self->erase(it); +} +CIMGUI_API char* ImVector_char_erase(ImVector_char* self,char const * it) +{ + return self->erase(it); +} +CIMGUI_API ImTextureID* ImVector_ImTextureID_erase(ImVector_ImTextureID* self,ImTextureID const * it) +{ + return self->erase(it); +} +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_erase(ImVector_ImDrawVert* self,ImDrawVert const * it) +{ + return self->erase(it); +} +CIMGUI_API int* ImVector_int_erase(ImVector_int* self,int const * it) +{ + return self->erase(it); +} +CIMGUI_API Pair* ImVector_Pair_erase(ImVector_Pair* self,Pair const * it) +{ + return self->erase(it); +} +CIMGUI_API ImFont** ImVector_ImFontPtr_erase(ImVector_ImFontPtr* self,ImFont* const * it) +{ + return self->erase(it); +} +CIMGUI_API ImVec4* ImVector_ImVec4_erase(ImVector_ImVec4* self,ImVec4 const * it) +{ + return self->erase(it); +} +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_erase(ImVector_ImDrawCmd* self,ImDrawCmd const * it) +{ + return self->erase(it); +} +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_erase(ImVector_ImDrawIdx* self,ImDrawIdx const * it) +{ + return self->erase(it); +} +CIMGUI_API ImVec2* ImVector_ImVec2_erase(ImVector_ImVec2* self,ImVec2 const * it) +{ + return self->erase(it); +} +CIMGUI_API float* ImVector_float_eraseTPtr(ImVector_float* self,float const * it,float const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API ImWchar* ImVector_ImWchar_eraseTPtr(ImVector_ImWchar* self,ImWchar const * it,ImWchar const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_eraseTPtr(ImVector_ImFontConfig* self,ImFontConfig const * it,ImFontConfig const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_eraseTPtr(ImVector_ImFontGlyph* self,ImFontGlyph const * it,ImFontGlyph const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API TextRange* ImVector_TextRange_eraseTPtr(ImVector_TextRange* self,TextRange const * it,TextRange const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API CustomRect* ImVector_CustomRect_eraseTPtr(ImVector_CustomRect* self,CustomRect const * it,CustomRect const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_eraseTPtr(ImVector_ImDrawChannel* self,ImDrawChannel const * it,ImDrawChannel const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API char* ImVector_char_eraseTPtr(ImVector_char* self,char const * it,char const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API ImTextureID* ImVector_ImTextureID_eraseTPtr(ImVector_ImTextureID* self,ImTextureID const * it,ImTextureID const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_eraseTPtr(ImVector_ImDrawVert* self,ImDrawVert const * it,ImDrawVert const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API int* ImVector_int_eraseTPtr(ImVector_int* self,int const * it,int const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API Pair* ImVector_Pair_eraseTPtr(ImVector_Pair* self,Pair const * it,Pair const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API ImFont** ImVector_ImFontPtr_eraseTPtr(ImVector_ImFontPtr* self,ImFont* const * it,ImFont* const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API ImVec4* ImVector_ImVec4_eraseTPtr(ImVector_ImVec4* self,ImVec4 const * it,ImVec4 const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_eraseTPtr(ImVector_ImDrawCmd* self,ImDrawCmd const * it,ImDrawCmd const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_eraseTPtr(ImVector_ImDrawIdx* self,ImDrawIdx const * it,ImDrawIdx const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API ImVec2* ImVector_ImVec2_eraseTPtr(ImVector_ImVec2* self,ImVec2 const * it,ImVec2 const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API float* ImVector_float_erase_unsorted(ImVector_float* self,float const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API ImWchar* ImVector_ImWchar_erase_unsorted(ImVector_ImWchar* self,ImWchar const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_erase_unsorted(ImVector_ImFontConfig* self,ImFontConfig const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_erase_unsorted(ImVector_ImFontGlyph* self,ImFontGlyph const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API TextRange* ImVector_TextRange_erase_unsorted(ImVector_TextRange* self,TextRange const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API CustomRect* ImVector_CustomRect_erase_unsorted(ImVector_CustomRect* self,CustomRect const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_erase_unsorted(ImVector_ImDrawChannel* self,ImDrawChannel const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API char* ImVector_char_erase_unsorted(ImVector_char* self,char const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API ImTextureID* ImVector_ImTextureID_erase_unsorted(ImVector_ImTextureID* self,ImTextureID const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_erase_unsorted(ImVector_ImDrawVert* self,ImDrawVert const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API int* ImVector_int_erase_unsorted(ImVector_int* self,int const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API Pair* ImVector_Pair_erase_unsorted(ImVector_Pair* self,Pair const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API ImFont** ImVector_ImFontPtr_erase_unsorted(ImVector_ImFontPtr* self,ImFont* const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API ImVec4* ImVector_ImVec4_erase_unsorted(ImVector_ImVec4* self,ImVec4 const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_erase_unsorted(ImVector_ImDrawCmd* self,ImDrawCmd const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_erase_unsorted(ImVector_ImDrawIdx* self,ImDrawIdx const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API ImVec2* ImVector_ImVec2_erase_unsorted(ImVector_ImVec2* self,ImVec2 const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API float* ImVector_float_insert(ImVector_float* self,float const * it,const float v) +{ + return self->insert(it,v); +} +CIMGUI_API ImWchar* ImVector_ImWchar_insert(ImVector_ImWchar* self,ImWchar const * it,const ImWchar v) +{ + return self->insert(it,v); +} +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_insert(ImVector_ImFontConfig* self,ImFontConfig const * it,const ImFontConfig v) +{ + return self->insert(it,v); +} +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_insert(ImVector_ImFontGlyph* self,ImFontGlyph const * it,const ImFontGlyph v) +{ + return self->insert(it,v); +} +CIMGUI_API TextRange* ImVector_TextRange_insert(ImVector_TextRange* self,TextRange const * it,const TextRange v) +{ + return self->insert(it,v); +} +CIMGUI_API CustomRect* ImVector_CustomRect_insert(ImVector_CustomRect* self,CustomRect const * it,const CustomRect v) +{ + return self->insert(it,v); +} +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_insert(ImVector_ImDrawChannel* self,ImDrawChannel const * it,const ImDrawChannel v) +{ + return self->insert(it,v); +} +CIMGUI_API char* ImVector_char_insert(ImVector_char* self,char const * it,const char v) +{ + return self->insert(it,v); +} +CIMGUI_API ImTextureID* ImVector_ImTextureID_insert(ImVector_ImTextureID* self,ImTextureID const * it,const ImTextureID v) +{ + return self->insert(it,v); +} +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_insert(ImVector_ImDrawVert* self,ImDrawVert const * it,const ImDrawVert v) +{ + return self->insert(it,v); +} +CIMGUI_API int* ImVector_int_insert(ImVector_int* self,int const * it,const int v) +{ + return self->insert(it,v); +} +CIMGUI_API Pair* ImVector_Pair_insert(ImVector_Pair* self,Pair const * it,const Pair v) +{ + return self->insert(it,v); +} +CIMGUI_API ImFont** ImVector_ImFontPtr_insert(ImVector_ImFontPtr* self,ImFont* const * it,ImFont* const v) +{ + return self->insert(it,v); +} +CIMGUI_API ImVec4* ImVector_ImVec4_insert(ImVector_ImVec4* self,ImVec4 const * it,const ImVec4 v) +{ + return self->insert(it,v); +} +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_insert(ImVector_ImDrawCmd* self,ImDrawCmd const * it,const ImDrawCmd v) +{ + return self->insert(it,v); +} +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_insert(ImVector_ImDrawIdx* self,ImDrawIdx const * it,const ImDrawIdx v) +{ + return self->insert(it,v); +} +CIMGUI_API ImVec2* ImVector_ImVec2_insert(ImVector_ImVec2* self,ImVec2 const * it,const ImVec2 v) +{ + return self->insert(it,v); +} +CIMGUI_API bool ImVector_float_contains(const ImVector_float* self,const float v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_ImWchar_contains(const ImVector_ImWchar* self,const ImWchar v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_ImFontConfig_contains(const ImVector_ImFontConfig* self,const ImFontConfig v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_ImFontGlyph_contains(const ImVector_ImFontGlyph* self,const ImFontGlyph v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_TextRange_contains(const ImVector_TextRange* self,const TextRange v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_CustomRect_contains(const ImVector_CustomRect* self,const CustomRect v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_ImDrawChannel_contains(const ImVector_ImDrawChannel* self,const ImDrawChannel v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_char_contains(const ImVector_char* self,const char v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_ImTextureID_contains(const ImVector_ImTextureID* self,const ImTextureID v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_ImDrawVert_contains(const ImVector_ImDrawVert* self,const ImDrawVert v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_int_contains(const ImVector_int* self,const int v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_Pair_contains(const ImVector_Pair* self,const Pair v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_ImFontPtr_contains(const ImVector_ImFontPtr* self,ImFont* const v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_ImVec4_contains(const ImVector_ImVec4* self,const ImVec4 v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_ImDrawCmd_contains(const ImVector_ImDrawCmd* self,const ImDrawCmd v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_ImDrawIdx_contains(const ImVector_ImDrawIdx* self,const ImDrawIdx v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_ImVec2_contains(const ImVector_ImVec2* self,const ImVec2 v) +{ + return self->contains(v); +} +CIMGUI_API int ImVector_float_index_from_ptr(const ImVector_float* self,float const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_ImWchar_index_from_ptr(const ImVector_ImWchar* self,ImWchar const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_ImFontConfig_index_from_ptr(const ImVector_ImFontConfig* self,ImFontConfig const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_ImFontGlyph_index_from_ptr(const ImVector_ImFontGlyph* self,ImFontGlyph const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_TextRange_index_from_ptr(const ImVector_TextRange* self,TextRange const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_CustomRect_index_from_ptr(const ImVector_CustomRect* self,CustomRect const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_ImDrawChannel_index_from_ptr(const ImVector_ImDrawChannel* self,ImDrawChannel const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_char_index_from_ptr(const ImVector_char* self,char const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_ImTextureID_index_from_ptr(const ImVector_ImTextureID* self,ImTextureID const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_ImDrawVert_index_from_ptr(const ImVector_ImDrawVert* self,ImDrawVert const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_int_index_from_ptr(const ImVector_int* self,int const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_Pair_index_from_ptr(const ImVector_Pair* self,Pair const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_ImFontPtr_index_from_ptr(const ImVector_ImFontPtr* self,ImFont* const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_ImVec4_index_from_ptr(const ImVector_ImVec4* self,ImVec4 const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_ImDrawCmd_index_from_ptr(const ImVector_ImDrawCmd* self,ImDrawCmd const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_ImDrawIdx_index_from_ptr(const ImVector_ImDrawIdx* self,ImDrawIdx const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_ImVec2_index_from_ptr(const ImVector_ImVec2* self,ImVec2 const * it) +{ + return self->index_from_ptr(it); +} @@ -2474,10 +4510,7 @@ CIMGUI_API ImVector_ImWchar* ImVector_ImWchar_create() { return IM_NEW(ImVector) (); } -CIMGUI_API void ImVector_ImWchar_destroy(ImVector_ImWchar* p) -{ - IM_DELETE(p); -} + CIMGUI_API void ImVector_ImWchar_Init(ImVector_ImWchar* p) { IM_PLACEMENT_NEW(p) ImVector(); diff --git a/cimgui.h b/cimgui.h index 1bd09fc..895ea05 100644 --- a/cimgui.h +++ b/cimgui.h @@ -1252,7 +1252,6 @@ CIMGUI_API const char* igSaveIniSettingsToMemory(size_t* out_ini_size); CIMGUI_API void igSetAllocatorFunctions(void*(*alloc_func)(size_t sz,void* user_data),void(*free_func)(void* ptr,void* user_data),void* user_data); CIMGUI_API void* igMemAlloc(size_t size); CIMGUI_API void igMemFree(void* ptr); -CIMGUI_API void ImVector_destroy(ImVector* self); CIMGUI_API ImGuiStyle* ImGuiStyle_ImGuiStyle(void); CIMGUI_API void ImGuiStyle_destroy(ImGuiStyle* self); CIMGUI_API void ImGuiStyle_ScaleAllSizes(ImGuiStyle* self,float scale_factor); @@ -1493,6 +1492,516 @@ CIMGUI_API void ImDrawList_GetClipRectMax_nonUDT(ImVec2 *pOut,ImDrawList* self); CIMGUI_API ImVec2_Simple ImDrawList_GetClipRectMax_nonUDT2(ImDrawList* self); CIMGUI_API void ImFont_CalcTextSizeA_nonUDT(ImVec2 *pOut,ImFont* self,float size,float max_width,float wrap_width,const char* text_begin,const char* text_end,const char** remaining); CIMGUI_API ImVec2_Simple ImFont_CalcTextSizeA_nonUDT2(ImFont* self,float size,float max_width,float wrap_width,const char* text_begin,const char* text_end,const char** remaining); +CIMGUI_API ImVector_float* ImVector_float_ImVector_float(void); +CIMGUI_API void ImVector_float_destroy(ImVector_float* self); +CIMGUI_API ImVector_ImWchar* ImVector_ImWchar_ImVector_ImWchar(void); +CIMGUI_API void ImVector_ImWchar_destroy(ImVector_ImWchar* self); +CIMGUI_API ImVector_ImFontConfig* ImVector_ImFontConfig_ImVector_ImFontConfig(void); +CIMGUI_API void ImVector_ImFontConfig_destroy(ImVector_ImFontConfig* self); +CIMGUI_API ImVector_ImFontGlyph* ImVector_ImFontGlyph_ImVector_ImFontGlyph(void); +CIMGUI_API void ImVector_ImFontGlyph_destroy(ImVector_ImFontGlyph* self); +CIMGUI_API ImVector_TextRange* ImVector_TextRange_ImVector_TextRange(void); +CIMGUI_API void ImVector_TextRange_destroy(ImVector_TextRange* self); +CIMGUI_API ImVector_CustomRect* ImVector_CustomRect_ImVector_CustomRect(void); +CIMGUI_API void ImVector_CustomRect_destroy(ImVector_CustomRect* self); +CIMGUI_API ImVector_ImDrawChannel* ImVector_ImDrawChannel_ImVector_ImDrawChannel(void); +CIMGUI_API void ImVector_ImDrawChannel_destroy(ImVector_ImDrawChannel* self); +CIMGUI_API ImVector_char* ImVector_char_ImVector_char(void); +CIMGUI_API void ImVector_char_destroy(ImVector_char* self); +CIMGUI_API ImVector_ImTextureID* ImVector_ImTextureID_ImVector_ImTextureID(void); +CIMGUI_API void ImVector_ImTextureID_destroy(ImVector_ImTextureID* self); +CIMGUI_API ImVector_ImDrawVert* ImVector_ImDrawVert_ImVector_ImDrawVert(void); +CIMGUI_API void ImVector_ImDrawVert_destroy(ImVector_ImDrawVert* self); +CIMGUI_API ImVector_int* ImVector_int_ImVector_int(void); +CIMGUI_API void ImVector_int_destroy(ImVector_int* self); +CIMGUI_API ImVector_Pair* ImVector_Pair_ImVector_Pair(void); +CIMGUI_API void ImVector_Pair_destroy(ImVector_Pair* self); +CIMGUI_API ImVector_ImFontPtr* ImVector_ImFontPtr_ImVector_ImFontPtr(void); +CIMGUI_API void ImVector_ImFontPtr_destroy(ImVector_ImFontPtr* self); +CIMGUI_API ImVector_ImVec4* ImVector_ImVec4_ImVector_ImVec4(void); +CIMGUI_API void ImVector_ImVec4_destroy(ImVector_ImVec4* self); +CIMGUI_API ImVector_ImDrawCmd* ImVector_ImDrawCmd_ImVector_ImDrawCmd(void); +CIMGUI_API void ImVector_ImDrawCmd_destroy(ImVector_ImDrawCmd* self); +CIMGUI_API ImVector_ImDrawIdx* ImVector_ImDrawIdx_ImVector_ImDrawIdx(void); +CIMGUI_API void ImVector_ImDrawIdx_destroy(ImVector_ImDrawIdx* self); +CIMGUI_API ImVector_ImVec2* ImVector_ImVec2_ImVector_ImVec2(void); +CIMGUI_API void ImVector_ImVec2_destroy(ImVector_ImVec2* self); +CIMGUI_API ImVector_float* ImVector_float_ImVector_floatVector(const ImVector_float src); +CIMGUI_API ImVector_ImWchar* ImVector_ImWchar_ImVector_ImWcharVector(const ImVector_ImWchar src); +CIMGUI_API ImVector_ImFontConfig* ImVector_ImFontConfig_ImVector_ImFontConfigVector(const ImVector_ImFontConfig src); +CIMGUI_API ImVector_ImFontGlyph* ImVector_ImFontGlyph_ImVector_ImFontGlyphVector(const ImVector_ImFontGlyph src); +CIMGUI_API ImVector_TextRange* ImVector_TextRange_ImVector_TextRangeVector(const ImVector_TextRange src); +CIMGUI_API ImVector_CustomRect* ImVector_CustomRect_ImVector_CustomRectVector(const ImVector_CustomRect src); +CIMGUI_API ImVector_ImDrawChannel* ImVector_ImDrawChannel_ImVector_ImDrawChannelVector(const ImVector_ImDrawChannel src); +CIMGUI_API ImVector_char* ImVector_char_ImVector_charVector(const ImVector_char src); +CIMGUI_API ImVector_ImTextureID* ImVector_ImTextureID_ImVector_ImTextureIDVector(const ImVector_ImTextureID src); +CIMGUI_API ImVector_ImDrawVert* ImVector_ImDrawVert_ImVector_ImDrawVertVector(const ImVector_ImDrawVert src); +CIMGUI_API ImVector_int* ImVector_int_ImVector_intVector(const ImVector_int src); +CIMGUI_API ImVector_Pair* ImVector_Pair_ImVector_PairVector(const ImVector_Pair src); +CIMGUI_API ImVector_ImFontPtr* ImVector_ImFontPtr_ImVector_ImFontPtrVector(const ImVector_ImFontPtr src); +CIMGUI_API ImVector_ImVec4* ImVector_ImVec4_ImVector_ImVec4Vector(const ImVector_ImVec4 src); +CIMGUI_API ImVector_ImDrawCmd* ImVector_ImDrawCmd_ImVector_ImDrawCmdVector(const ImVector_ImDrawCmd src); +CIMGUI_API ImVector_ImDrawIdx* ImVector_ImDrawIdx_ImVector_ImDrawIdxVector(const ImVector_ImDrawIdx src); +CIMGUI_API ImVector_ImVec2* ImVector_ImVec2_ImVector_ImVec2Vector(const ImVector_ImVec2 src); +CIMGUI_API bool ImVector_float_empty(const ImVector_float* self); +CIMGUI_API bool ImVector_ImWchar_empty(const ImVector_ImWchar* self); +CIMGUI_API bool ImVector_ImFontConfig_empty(const ImVector_ImFontConfig* self); +CIMGUI_API bool ImVector_ImFontGlyph_empty(const ImVector_ImFontGlyph* self); +CIMGUI_API bool ImVector_TextRange_empty(const ImVector_TextRange* self); +CIMGUI_API bool ImVector_CustomRect_empty(const ImVector_CustomRect* self); +CIMGUI_API bool ImVector_ImDrawChannel_empty(const ImVector_ImDrawChannel* self); +CIMGUI_API bool ImVector_char_empty(const ImVector_char* self); +CIMGUI_API bool ImVector_ImTextureID_empty(const ImVector_ImTextureID* self); +CIMGUI_API bool ImVector_ImDrawVert_empty(const ImVector_ImDrawVert* self); +CIMGUI_API bool ImVector_int_empty(const ImVector_int* self); +CIMGUI_API bool ImVector_Pair_empty(const ImVector_Pair* self); +CIMGUI_API bool ImVector_ImFontPtr_empty(const ImVector_ImFontPtr* self); +CIMGUI_API bool ImVector_ImVec4_empty(const ImVector_ImVec4* self); +CIMGUI_API bool ImVector_ImDrawCmd_empty(const ImVector_ImDrawCmd* self); +CIMGUI_API bool ImVector_ImDrawIdx_empty(const ImVector_ImDrawIdx* self); +CIMGUI_API bool ImVector_ImVec2_empty(const ImVector_ImVec2* self); +CIMGUI_API int ImVector_float_size(const ImVector_float* self); +CIMGUI_API int ImVector_ImWchar_size(const ImVector_ImWchar* self); +CIMGUI_API int ImVector_ImFontConfig_size(const ImVector_ImFontConfig* self); +CIMGUI_API int ImVector_ImFontGlyph_size(const ImVector_ImFontGlyph* self); +CIMGUI_API int ImVector_TextRange_size(const ImVector_TextRange* self); +CIMGUI_API int ImVector_CustomRect_size(const ImVector_CustomRect* self); +CIMGUI_API int ImVector_ImDrawChannel_size(const ImVector_ImDrawChannel* self); +CIMGUI_API int ImVector_char_size(const ImVector_char* self); +CIMGUI_API int ImVector_ImTextureID_size(const ImVector_ImTextureID* self); +CIMGUI_API int ImVector_ImDrawVert_size(const ImVector_ImDrawVert* self); +CIMGUI_API int ImVector_int_size(const ImVector_int* self); +CIMGUI_API int ImVector_Pair_size(const ImVector_Pair* self); +CIMGUI_API int ImVector_ImFontPtr_size(const ImVector_ImFontPtr* self); +CIMGUI_API int ImVector_ImVec4_size(const ImVector_ImVec4* self); +CIMGUI_API int ImVector_ImDrawCmd_size(const ImVector_ImDrawCmd* self); +CIMGUI_API int ImVector_ImDrawIdx_size(const ImVector_ImDrawIdx* self); +CIMGUI_API int ImVector_ImVec2_size(const ImVector_ImVec2* self); +CIMGUI_API int ImVector_float_size_in_bytes(const ImVector_float* self); +CIMGUI_API int ImVector_ImWchar_size_in_bytes(const ImVector_ImWchar* self); +CIMGUI_API int ImVector_ImFontConfig_size_in_bytes(const ImVector_ImFontConfig* self); +CIMGUI_API int ImVector_ImFontGlyph_size_in_bytes(const ImVector_ImFontGlyph* self); +CIMGUI_API int ImVector_TextRange_size_in_bytes(const ImVector_TextRange* self); +CIMGUI_API int ImVector_CustomRect_size_in_bytes(const ImVector_CustomRect* self); +CIMGUI_API int ImVector_ImDrawChannel_size_in_bytes(const ImVector_ImDrawChannel* self); +CIMGUI_API int ImVector_char_size_in_bytes(const ImVector_char* self); +CIMGUI_API int ImVector_ImTextureID_size_in_bytes(const ImVector_ImTextureID* self); +CIMGUI_API int ImVector_ImDrawVert_size_in_bytes(const ImVector_ImDrawVert* self); +CIMGUI_API int ImVector_int_size_in_bytes(const ImVector_int* self); +CIMGUI_API int ImVector_Pair_size_in_bytes(const ImVector_Pair* self); +CIMGUI_API int ImVector_ImFontPtr_size_in_bytes(const ImVector_ImFontPtr* self); +CIMGUI_API int ImVector_ImVec4_size_in_bytes(const ImVector_ImVec4* self); +CIMGUI_API int ImVector_ImDrawCmd_size_in_bytes(const ImVector_ImDrawCmd* self); +CIMGUI_API int ImVector_ImDrawIdx_size_in_bytes(const ImVector_ImDrawIdx* self); +CIMGUI_API int ImVector_ImVec2_size_in_bytes(const ImVector_ImVec2* self); +CIMGUI_API int ImVector_float_capacity(const ImVector_float* self); +CIMGUI_API int ImVector_ImWchar_capacity(const ImVector_ImWchar* self); +CIMGUI_API int ImVector_ImFontConfig_capacity(const ImVector_ImFontConfig* self); +CIMGUI_API int ImVector_ImFontGlyph_capacity(const ImVector_ImFontGlyph* self); +CIMGUI_API int ImVector_TextRange_capacity(const ImVector_TextRange* self); +CIMGUI_API int ImVector_CustomRect_capacity(const ImVector_CustomRect* self); +CIMGUI_API int ImVector_ImDrawChannel_capacity(const ImVector_ImDrawChannel* self); +CIMGUI_API int ImVector_char_capacity(const ImVector_char* self); +CIMGUI_API int ImVector_ImTextureID_capacity(const ImVector_ImTextureID* self); +CIMGUI_API int ImVector_ImDrawVert_capacity(const ImVector_ImDrawVert* self); +CIMGUI_API int ImVector_int_capacity(const ImVector_int* self); +CIMGUI_API int ImVector_Pair_capacity(const ImVector_Pair* self); +CIMGUI_API int ImVector_ImFontPtr_capacity(const ImVector_ImFontPtr* self); +CIMGUI_API int ImVector_ImVec4_capacity(const ImVector_ImVec4* self); +CIMGUI_API int ImVector_ImDrawCmd_capacity(const ImVector_ImDrawCmd* self); +CIMGUI_API int ImVector_ImDrawIdx_capacity(const ImVector_ImDrawIdx* self); +CIMGUI_API int ImVector_ImVec2_capacity(const ImVector_ImVec2* self); +CIMGUI_API void ImVector_float_clear(ImVector_float* self); +CIMGUI_API void ImVector_ImWchar_clear(ImVector_ImWchar* self); +CIMGUI_API void ImVector_ImFontConfig_clear(ImVector_ImFontConfig* self); +CIMGUI_API void ImVector_ImFontGlyph_clear(ImVector_ImFontGlyph* self); +CIMGUI_API void ImVector_TextRange_clear(ImVector_TextRange* self); +CIMGUI_API void ImVector_CustomRect_clear(ImVector_CustomRect* self); +CIMGUI_API void ImVector_ImDrawChannel_clear(ImVector_ImDrawChannel* self); +CIMGUI_API void ImVector_char_clear(ImVector_char* self); +CIMGUI_API void ImVector_ImTextureID_clear(ImVector_ImTextureID* self); +CIMGUI_API void ImVector_ImDrawVert_clear(ImVector_ImDrawVert* self); +CIMGUI_API void ImVector_int_clear(ImVector_int* self); +CIMGUI_API void ImVector_Pair_clear(ImVector_Pair* self); +CIMGUI_API void ImVector_ImFontPtr_clear(ImVector_ImFontPtr* self); +CIMGUI_API void ImVector_ImVec4_clear(ImVector_ImVec4* self); +CIMGUI_API void ImVector_ImDrawCmd_clear(ImVector_ImDrawCmd* self); +CIMGUI_API void ImVector_ImDrawIdx_clear(ImVector_ImDrawIdx* self); +CIMGUI_API void ImVector_ImVec2_clear(ImVector_ImVec2* self); +CIMGUI_API float* ImVector_float_begin(ImVector_float* self); +CIMGUI_API ImWchar* ImVector_ImWchar_begin(ImVector_ImWchar* self); +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_begin(ImVector_ImFontConfig* self); +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_begin(ImVector_ImFontGlyph* self); +CIMGUI_API TextRange* ImVector_TextRange_begin(ImVector_TextRange* self); +CIMGUI_API CustomRect* ImVector_CustomRect_begin(ImVector_CustomRect* self); +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_begin(ImVector_ImDrawChannel* self); +CIMGUI_API char* ImVector_char_begin(ImVector_char* self); +CIMGUI_API ImTextureID* ImVector_ImTextureID_begin(ImVector_ImTextureID* self); +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_begin(ImVector_ImDrawVert* self); +CIMGUI_API int* ImVector_int_begin(ImVector_int* self); +CIMGUI_API Pair* ImVector_Pair_begin(ImVector_Pair* self); +CIMGUI_API ImFont** ImVector_ImFontPtr_begin(ImVector_ImFontPtr* self); +CIMGUI_API ImVec4* ImVector_ImVec4_begin(ImVector_ImVec4* self); +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_begin(ImVector_ImDrawCmd* self); +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_begin(ImVector_ImDrawIdx* self); +CIMGUI_API ImVec2* ImVector_ImVec2_begin(ImVector_ImVec2* self); +CIMGUI_API float const * ImVector_float_begin_const(const ImVector_float* self); +CIMGUI_API ImWchar const * ImVector_ImWchar_begin_const(const ImVector_ImWchar* self); +CIMGUI_API ImFontConfig const * ImVector_ImFontConfig_begin_const(const ImVector_ImFontConfig* self); +CIMGUI_API ImFontGlyph const * ImVector_ImFontGlyph_begin_const(const ImVector_ImFontGlyph* self); +CIMGUI_API TextRange const * ImVector_TextRange_begin_const(const ImVector_TextRange* self); +CIMGUI_API CustomRect const * ImVector_CustomRect_begin_const(const ImVector_CustomRect* self); +CIMGUI_API ImDrawChannel const * ImVector_ImDrawChannel_begin_const(const ImVector_ImDrawChannel* self); +CIMGUI_API char const * ImVector_char_begin_const(const ImVector_char* self); +CIMGUI_API ImTextureID const * ImVector_ImTextureID_begin_const(const ImVector_ImTextureID* self); +CIMGUI_API ImDrawVert const * ImVector_ImDrawVert_begin_const(const ImVector_ImDrawVert* self); +CIMGUI_API int const * ImVector_int_begin_const(const ImVector_int* self); +CIMGUI_API Pair const * ImVector_Pair_begin_const(const ImVector_Pair* self); +CIMGUI_API ImFont* const * ImVector_ImFontPtr_begin_const(const ImVector_ImFontPtr* self); +CIMGUI_API ImVec4 const * ImVector_ImVec4_begin_const(const ImVector_ImVec4* self); +CIMGUI_API ImDrawCmd const * ImVector_ImDrawCmd_begin_const(const ImVector_ImDrawCmd* self); +CIMGUI_API ImDrawIdx const * ImVector_ImDrawIdx_begin_const(const ImVector_ImDrawIdx* self); +CIMGUI_API ImVec2 const * ImVector_ImVec2_begin_const(const ImVector_ImVec2* self); +CIMGUI_API float* ImVector_float_end(ImVector_float* self); +CIMGUI_API ImWchar* ImVector_ImWchar_end(ImVector_ImWchar* self); +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_end(ImVector_ImFontConfig* self); +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_end(ImVector_ImFontGlyph* self); +CIMGUI_API TextRange* ImVector_TextRange_end(ImVector_TextRange* self); +CIMGUI_API CustomRect* ImVector_CustomRect_end(ImVector_CustomRect* self); +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_end(ImVector_ImDrawChannel* self); +CIMGUI_API char* ImVector_char_end(ImVector_char* self); +CIMGUI_API ImTextureID* ImVector_ImTextureID_end(ImVector_ImTextureID* self); +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_end(ImVector_ImDrawVert* self); +CIMGUI_API int* ImVector_int_end(ImVector_int* self); +CIMGUI_API Pair* ImVector_Pair_end(ImVector_Pair* self); +CIMGUI_API ImFont** ImVector_ImFontPtr_end(ImVector_ImFontPtr* self); +CIMGUI_API ImVec4* ImVector_ImVec4_end(ImVector_ImVec4* self); +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_end(ImVector_ImDrawCmd* self); +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_end(ImVector_ImDrawIdx* self); +CIMGUI_API ImVec2* ImVector_ImVec2_end(ImVector_ImVec2* self); +CIMGUI_API float const * ImVector_float_end_const(const ImVector_float* self); +CIMGUI_API ImWchar const * ImVector_ImWchar_end_const(const ImVector_ImWchar* self); +CIMGUI_API ImFontConfig const * ImVector_ImFontConfig_end_const(const ImVector_ImFontConfig* self); +CIMGUI_API ImFontGlyph const * ImVector_ImFontGlyph_end_const(const ImVector_ImFontGlyph* self); +CIMGUI_API TextRange const * ImVector_TextRange_end_const(const ImVector_TextRange* self); +CIMGUI_API CustomRect const * ImVector_CustomRect_end_const(const ImVector_CustomRect* self); +CIMGUI_API ImDrawChannel const * ImVector_ImDrawChannel_end_const(const ImVector_ImDrawChannel* self); +CIMGUI_API char const * ImVector_char_end_const(const ImVector_char* self); +CIMGUI_API ImTextureID const * ImVector_ImTextureID_end_const(const ImVector_ImTextureID* self); +CIMGUI_API ImDrawVert const * ImVector_ImDrawVert_end_const(const ImVector_ImDrawVert* self); +CIMGUI_API int const * ImVector_int_end_const(const ImVector_int* self); +CIMGUI_API Pair const * ImVector_Pair_end_const(const ImVector_Pair* self); +CIMGUI_API ImFont* const * ImVector_ImFontPtr_end_const(const ImVector_ImFontPtr* self); +CIMGUI_API ImVec4 const * ImVector_ImVec4_end_const(const ImVector_ImVec4* self); +CIMGUI_API ImDrawCmd const * ImVector_ImDrawCmd_end_const(const ImVector_ImDrawCmd* self); +CIMGUI_API ImDrawIdx const * ImVector_ImDrawIdx_end_const(const ImVector_ImDrawIdx* self); +CIMGUI_API ImVec2 const * ImVector_ImVec2_end_const(const ImVector_ImVec2* self); +CIMGUI_API float* ImVector_float_front(ImVector_float* self); +CIMGUI_API ImWchar* ImVector_ImWchar_front(ImVector_ImWchar* self); +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_front(ImVector_ImFontConfig* self); +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_front(ImVector_ImFontGlyph* self); +CIMGUI_API TextRange* ImVector_TextRange_front(ImVector_TextRange* self); +CIMGUI_API CustomRect* ImVector_CustomRect_front(ImVector_CustomRect* self); +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_front(ImVector_ImDrawChannel* self); +CIMGUI_API char* ImVector_char_front(ImVector_char* self); +CIMGUI_API ImTextureID* ImVector_ImTextureID_front(ImVector_ImTextureID* self); +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_front(ImVector_ImDrawVert* self); +CIMGUI_API int* ImVector_int_front(ImVector_int* self); +CIMGUI_API Pair* ImVector_Pair_front(ImVector_Pair* self); +CIMGUI_API ImFont** ImVector_ImFontPtr_front(ImVector_ImFontPtr* self); +CIMGUI_API ImVec4* ImVector_ImVec4_front(ImVector_ImVec4* self); +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_front(ImVector_ImDrawCmd* self); +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_front(ImVector_ImDrawIdx* self); +CIMGUI_API ImVec2* ImVector_ImVec2_front(ImVector_ImVec2* self); +CIMGUI_API float const * ImVector_float_front_const(const ImVector_float* self); +CIMGUI_API ImWchar const * ImVector_ImWchar_front_const(const ImVector_ImWchar* self); +CIMGUI_API ImFontConfig const * ImVector_ImFontConfig_front_const(const ImVector_ImFontConfig* self); +CIMGUI_API ImFontGlyph const * ImVector_ImFontGlyph_front_const(const ImVector_ImFontGlyph* self); +CIMGUI_API TextRange const * ImVector_TextRange_front_const(const ImVector_TextRange* self); +CIMGUI_API CustomRect const * ImVector_CustomRect_front_const(const ImVector_CustomRect* self); +CIMGUI_API ImDrawChannel const * ImVector_ImDrawChannel_front_const(const ImVector_ImDrawChannel* self); +CIMGUI_API char const * ImVector_char_front_const(const ImVector_char* self); +CIMGUI_API ImTextureID const * ImVector_ImTextureID_front_const(const ImVector_ImTextureID* self); +CIMGUI_API ImDrawVert const * ImVector_ImDrawVert_front_const(const ImVector_ImDrawVert* self); +CIMGUI_API int const * ImVector_int_front_const(const ImVector_int* self); +CIMGUI_API Pair const * ImVector_Pair_front_const(const ImVector_Pair* self); +CIMGUI_API ImFont* const * ImVector_ImFontPtr_front_const(const ImVector_ImFontPtr* self); +CIMGUI_API ImVec4 const * ImVector_ImVec4_front_const(const ImVector_ImVec4* self); +CIMGUI_API ImDrawCmd const * ImVector_ImDrawCmd_front_const(const ImVector_ImDrawCmd* self); +CIMGUI_API ImDrawIdx const * ImVector_ImDrawIdx_front_const(const ImVector_ImDrawIdx* self); +CIMGUI_API ImVec2 const * ImVector_ImVec2_front_const(const ImVector_ImVec2* self); +CIMGUI_API float* ImVector_float_back(ImVector_float* self); +CIMGUI_API ImWchar* ImVector_ImWchar_back(ImVector_ImWchar* self); +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_back(ImVector_ImFontConfig* self); +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_back(ImVector_ImFontGlyph* self); +CIMGUI_API TextRange* ImVector_TextRange_back(ImVector_TextRange* self); +CIMGUI_API CustomRect* ImVector_CustomRect_back(ImVector_CustomRect* self); +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_back(ImVector_ImDrawChannel* self); +CIMGUI_API char* ImVector_char_back(ImVector_char* self); +CIMGUI_API ImTextureID* ImVector_ImTextureID_back(ImVector_ImTextureID* self); +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_back(ImVector_ImDrawVert* self); +CIMGUI_API int* ImVector_int_back(ImVector_int* self); +CIMGUI_API Pair* ImVector_Pair_back(ImVector_Pair* self); +CIMGUI_API ImFont** ImVector_ImFontPtr_back(ImVector_ImFontPtr* self); +CIMGUI_API ImVec4* ImVector_ImVec4_back(ImVector_ImVec4* self); +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_back(ImVector_ImDrawCmd* self); +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_back(ImVector_ImDrawIdx* self); +CIMGUI_API ImVec2* ImVector_ImVec2_back(ImVector_ImVec2* self); +CIMGUI_API float const * ImVector_float_back_const(const ImVector_float* self); +CIMGUI_API ImWchar const * ImVector_ImWchar_back_const(const ImVector_ImWchar* self); +CIMGUI_API ImFontConfig const * ImVector_ImFontConfig_back_const(const ImVector_ImFontConfig* self); +CIMGUI_API ImFontGlyph const * ImVector_ImFontGlyph_back_const(const ImVector_ImFontGlyph* self); +CIMGUI_API TextRange const * ImVector_TextRange_back_const(const ImVector_TextRange* self); +CIMGUI_API CustomRect const * ImVector_CustomRect_back_const(const ImVector_CustomRect* self); +CIMGUI_API ImDrawChannel const * ImVector_ImDrawChannel_back_const(const ImVector_ImDrawChannel* self); +CIMGUI_API char const * ImVector_char_back_const(const ImVector_char* self); +CIMGUI_API ImTextureID const * ImVector_ImTextureID_back_const(const ImVector_ImTextureID* self); +CIMGUI_API ImDrawVert const * ImVector_ImDrawVert_back_const(const ImVector_ImDrawVert* self); +CIMGUI_API int const * ImVector_int_back_const(const ImVector_int* self); +CIMGUI_API Pair const * ImVector_Pair_back_const(const ImVector_Pair* self); +CIMGUI_API ImFont* const * ImVector_ImFontPtr_back_const(const ImVector_ImFontPtr* self); +CIMGUI_API ImVec4 const * ImVector_ImVec4_back_const(const ImVector_ImVec4* self); +CIMGUI_API ImDrawCmd const * ImVector_ImDrawCmd_back_const(const ImVector_ImDrawCmd* self); +CIMGUI_API ImDrawIdx const * ImVector_ImDrawIdx_back_const(const ImVector_ImDrawIdx* self); +CIMGUI_API ImVec2 const * ImVector_ImVec2_back_const(const ImVector_ImVec2* self); +CIMGUI_API void ImVector_float_swap(ImVector_float* self,ImVector_float rhs); +CIMGUI_API void ImVector_ImWchar_swap(ImVector_ImWchar* self,ImVector_ImWchar rhs); +CIMGUI_API void ImVector_ImFontConfig_swap(ImVector_ImFontConfig* self,ImVector_ImFontConfig rhs); +CIMGUI_API void ImVector_ImFontGlyph_swap(ImVector_ImFontGlyph* self,ImVector_ImFontGlyph rhs); +CIMGUI_API void ImVector_TextRange_swap(ImVector_TextRange* self,ImVector_TextRange rhs); +CIMGUI_API void ImVector_CustomRect_swap(ImVector_CustomRect* self,ImVector_CustomRect rhs); +CIMGUI_API void ImVector_ImDrawChannel_swap(ImVector_ImDrawChannel* self,ImVector_ImDrawChannel rhs); +CIMGUI_API void ImVector_char_swap(ImVector_char* self,ImVector_char rhs); +CIMGUI_API void ImVector_ImTextureID_swap(ImVector_ImTextureID* self,ImVector_ImTextureID rhs); +CIMGUI_API void ImVector_ImDrawVert_swap(ImVector_ImDrawVert* self,ImVector_ImDrawVert rhs); +CIMGUI_API void ImVector_int_swap(ImVector_int* self,ImVector_int rhs); +CIMGUI_API void ImVector_Pair_swap(ImVector_Pair* self,ImVector_Pair rhs); +CIMGUI_API void ImVector_ImFontPtr_swap(ImVector_ImFontPtr* self,ImVector_ImFontPtr rhs); +CIMGUI_API void ImVector_ImVec4_swap(ImVector_ImVec4* self,ImVector_ImVec4 rhs); +CIMGUI_API void ImVector_ImDrawCmd_swap(ImVector_ImDrawCmd* self,ImVector_ImDrawCmd rhs); +CIMGUI_API void ImVector_ImDrawIdx_swap(ImVector_ImDrawIdx* self,ImVector_ImDrawIdx rhs); +CIMGUI_API void ImVector_ImVec2_swap(ImVector_ImVec2* self,ImVector_ImVec2 rhs); +CIMGUI_API int ImVector_float__grow_capacity(const ImVector_float* self,int sz); +CIMGUI_API int ImVector_ImWchar__grow_capacity(const ImVector_ImWchar* self,int sz); +CIMGUI_API int ImVector_ImFontConfig__grow_capacity(const ImVector_ImFontConfig* self,int sz); +CIMGUI_API int ImVector_ImFontGlyph__grow_capacity(const ImVector_ImFontGlyph* self,int sz); +CIMGUI_API int ImVector_TextRange__grow_capacity(const ImVector_TextRange* self,int sz); +CIMGUI_API int ImVector_CustomRect__grow_capacity(const ImVector_CustomRect* self,int sz); +CIMGUI_API int ImVector_ImDrawChannel__grow_capacity(const ImVector_ImDrawChannel* self,int sz); +CIMGUI_API int ImVector_char__grow_capacity(const ImVector_char* self,int sz); +CIMGUI_API int ImVector_ImTextureID__grow_capacity(const ImVector_ImTextureID* self,int sz); +CIMGUI_API int ImVector_ImDrawVert__grow_capacity(const ImVector_ImDrawVert* self,int sz); +CIMGUI_API int ImVector_int__grow_capacity(const ImVector_int* self,int sz); +CIMGUI_API int ImVector_Pair__grow_capacity(const ImVector_Pair* self,int sz); +CIMGUI_API int ImVector_ImFontPtr__grow_capacity(const ImVector_ImFontPtr* self,int sz); +CIMGUI_API int ImVector_ImVec4__grow_capacity(const ImVector_ImVec4* self,int sz); +CIMGUI_API int ImVector_ImDrawCmd__grow_capacity(const ImVector_ImDrawCmd* self,int sz); +CIMGUI_API int ImVector_ImDrawIdx__grow_capacity(const ImVector_ImDrawIdx* self,int sz); +CIMGUI_API int ImVector_ImVec2__grow_capacity(const ImVector_ImVec2* self,int sz); +CIMGUI_API void ImVector_float_resize(ImVector_float* self,int new_size); +CIMGUI_API void ImVector_ImWchar_resize(ImVector_ImWchar* self,int new_size); +CIMGUI_API void ImVector_ImFontConfig_resize(ImVector_ImFontConfig* self,int new_size); +CIMGUI_API void ImVector_ImFontGlyph_resize(ImVector_ImFontGlyph* self,int new_size); +CIMGUI_API void ImVector_TextRange_resize(ImVector_TextRange* self,int new_size); +CIMGUI_API void ImVector_CustomRect_resize(ImVector_CustomRect* self,int new_size); +CIMGUI_API void ImVector_ImDrawChannel_resize(ImVector_ImDrawChannel* self,int new_size); +CIMGUI_API void ImVector_char_resize(ImVector_char* self,int new_size); +CIMGUI_API void ImVector_ImTextureID_resize(ImVector_ImTextureID* self,int new_size); +CIMGUI_API void ImVector_ImDrawVert_resize(ImVector_ImDrawVert* self,int new_size); +CIMGUI_API void ImVector_int_resize(ImVector_int* self,int new_size); +CIMGUI_API void ImVector_Pair_resize(ImVector_Pair* self,int new_size); +CIMGUI_API void ImVector_ImFontPtr_resize(ImVector_ImFontPtr* self,int new_size); +CIMGUI_API void ImVector_ImVec4_resize(ImVector_ImVec4* self,int new_size); +CIMGUI_API void ImVector_ImDrawCmd_resize(ImVector_ImDrawCmd* self,int new_size); +CIMGUI_API void ImVector_ImDrawIdx_resize(ImVector_ImDrawIdx* self,int new_size); +CIMGUI_API void ImVector_ImVec2_resize(ImVector_ImVec2* self,int new_size); +CIMGUI_API void ImVector_float_resizeT(ImVector_float* self,int new_size,const float v); +CIMGUI_API void ImVector_ImWchar_resizeT(ImVector_ImWchar* self,int new_size,const ImWchar v); +CIMGUI_API void ImVector_ImFontConfig_resizeT(ImVector_ImFontConfig* self,int new_size,const ImFontConfig v); +CIMGUI_API void ImVector_ImFontGlyph_resizeT(ImVector_ImFontGlyph* self,int new_size,const ImFontGlyph v); +CIMGUI_API void ImVector_TextRange_resizeT(ImVector_TextRange* self,int new_size,const TextRange v); +CIMGUI_API void ImVector_CustomRect_resizeT(ImVector_CustomRect* self,int new_size,const CustomRect v); +CIMGUI_API void ImVector_ImDrawChannel_resizeT(ImVector_ImDrawChannel* self,int new_size,const ImDrawChannel v); +CIMGUI_API void ImVector_char_resizeT(ImVector_char* self,int new_size,const char v); +CIMGUI_API void ImVector_ImTextureID_resizeT(ImVector_ImTextureID* self,int new_size,const ImTextureID v); +CIMGUI_API void ImVector_ImDrawVert_resizeT(ImVector_ImDrawVert* self,int new_size,const ImDrawVert v); +CIMGUI_API void ImVector_int_resizeT(ImVector_int* self,int new_size,const int v); +CIMGUI_API void ImVector_Pair_resizeT(ImVector_Pair* self,int new_size,const Pair v); +CIMGUI_API void ImVector_ImFontPtr_resizeT(ImVector_ImFontPtr* self,int new_size,ImFont* const v); +CIMGUI_API void ImVector_ImVec4_resizeT(ImVector_ImVec4* self,int new_size,const ImVec4 v); +CIMGUI_API void ImVector_ImDrawCmd_resizeT(ImVector_ImDrawCmd* self,int new_size,const ImDrawCmd v); +CIMGUI_API void ImVector_ImDrawIdx_resizeT(ImVector_ImDrawIdx* self,int new_size,const ImDrawIdx v); +CIMGUI_API void ImVector_ImVec2_resizeT(ImVector_ImVec2* self,int new_size,const ImVec2 v); +CIMGUI_API void ImVector_float_reserve(ImVector_float* self,int new_capacity); +CIMGUI_API void ImVector_ImWchar_reserve(ImVector_ImWchar* self,int new_capacity); +CIMGUI_API void ImVector_ImFontConfig_reserve(ImVector_ImFontConfig* self,int new_capacity); +CIMGUI_API void ImVector_ImFontGlyph_reserve(ImVector_ImFontGlyph* self,int new_capacity); +CIMGUI_API void ImVector_TextRange_reserve(ImVector_TextRange* self,int new_capacity); +CIMGUI_API void ImVector_CustomRect_reserve(ImVector_CustomRect* self,int new_capacity); +CIMGUI_API void ImVector_ImDrawChannel_reserve(ImVector_ImDrawChannel* self,int new_capacity); +CIMGUI_API void ImVector_char_reserve(ImVector_char* self,int new_capacity); +CIMGUI_API void ImVector_ImTextureID_reserve(ImVector_ImTextureID* self,int new_capacity); +CIMGUI_API void ImVector_ImDrawVert_reserve(ImVector_ImDrawVert* self,int new_capacity); +CIMGUI_API void ImVector_int_reserve(ImVector_int* self,int new_capacity); +CIMGUI_API void ImVector_Pair_reserve(ImVector_Pair* self,int new_capacity); +CIMGUI_API void ImVector_ImFontPtr_reserve(ImVector_ImFontPtr* self,int new_capacity); +CIMGUI_API void ImVector_ImVec4_reserve(ImVector_ImVec4* self,int new_capacity); +CIMGUI_API void ImVector_ImDrawCmd_reserve(ImVector_ImDrawCmd* self,int new_capacity); +CIMGUI_API void ImVector_ImDrawIdx_reserve(ImVector_ImDrawIdx* self,int new_capacity); +CIMGUI_API void ImVector_ImVec2_reserve(ImVector_ImVec2* self,int new_capacity); +CIMGUI_API void ImVector_float_push_back(ImVector_float* self,const float v); +CIMGUI_API void ImVector_ImWchar_push_back(ImVector_ImWchar* self,const ImWchar v); +CIMGUI_API void ImVector_ImFontConfig_push_back(ImVector_ImFontConfig* self,const ImFontConfig v); +CIMGUI_API void ImVector_ImFontGlyph_push_back(ImVector_ImFontGlyph* self,const ImFontGlyph v); +CIMGUI_API void ImVector_TextRange_push_back(ImVector_TextRange* self,const TextRange v); +CIMGUI_API void ImVector_CustomRect_push_back(ImVector_CustomRect* self,const CustomRect v); +CIMGUI_API void ImVector_ImDrawChannel_push_back(ImVector_ImDrawChannel* self,const ImDrawChannel v); +CIMGUI_API void ImVector_char_push_back(ImVector_char* self,const char v); +CIMGUI_API void ImVector_ImTextureID_push_back(ImVector_ImTextureID* self,const ImTextureID v); +CIMGUI_API void ImVector_ImDrawVert_push_back(ImVector_ImDrawVert* self,const ImDrawVert v); +CIMGUI_API void ImVector_int_push_back(ImVector_int* self,const int v); +CIMGUI_API void ImVector_Pair_push_back(ImVector_Pair* self,const Pair v); +CIMGUI_API void ImVector_ImFontPtr_push_back(ImVector_ImFontPtr* self,ImFont* const v); +CIMGUI_API void ImVector_ImVec4_push_back(ImVector_ImVec4* self,const ImVec4 v); +CIMGUI_API void ImVector_ImDrawCmd_push_back(ImVector_ImDrawCmd* self,const ImDrawCmd v); +CIMGUI_API void ImVector_ImDrawIdx_push_back(ImVector_ImDrawIdx* self,const ImDrawIdx v); +CIMGUI_API void ImVector_ImVec2_push_back(ImVector_ImVec2* self,const ImVec2 v); +CIMGUI_API void ImVector_float_pop_back(ImVector_float* self); +CIMGUI_API void ImVector_ImWchar_pop_back(ImVector_ImWchar* self); +CIMGUI_API void ImVector_ImFontConfig_pop_back(ImVector_ImFontConfig* self); +CIMGUI_API void ImVector_ImFontGlyph_pop_back(ImVector_ImFontGlyph* self); +CIMGUI_API void ImVector_TextRange_pop_back(ImVector_TextRange* self); +CIMGUI_API void ImVector_CustomRect_pop_back(ImVector_CustomRect* self); +CIMGUI_API void ImVector_ImDrawChannel_pop_back(ImVector_ImDrawChannel* self); +CIMGUI_API void ImVector_char_pop_back(ImVector_char* self); +CIMGUI_API void ImVector_ImTextureID_pop_back(ImVector_ImTextureID* self); +CIMGUI_API void ImVector_ImDrawVert_pop_back(ImVector_ImDrawVert* self); +CIMGUI_API void ImVector_int_pop_back(ImVector_int* self); +CIMGUI_API void ImVector_Pair_pop_back(ImVector_Pair* self); +CIMGUI_API void ImVector_ImFontPtr_pop_back(ImVector_ImFontPtr* self); +CIMGUI_API void ImVector_ImVec4_pop_back(ImVector_ImVec4* self); +CIMGUI_API void ImVector_ImDrawCmd_pop_back(ImVector_ImDrawCmd* self); +CIMGUI_API void ImVector_ImDrawIdx_pop_back(ImVector_ImDrawIdx* self); +CIMGUI_API void ImVector_ImVec2_pop_back(ImVector_ImVec2* self); +CIMGUI_API void ImVector_float_push_front(ImVector_float* self,const float v); +CIMGUI_API void ImVector_ImWchar_push_front(ImVector_ImWchar* self,const ImWchar v); +CIMGUI_API void ImVector_ImFontConfig_push_front(ImVector_ImFontConfig* self,const ImFontConfig v); +CIMGUI_API void ImVector_ImFontGlyph_push_front(ImVector_ImFontGlyph* self,const ImFontGlyph v); +CIMGUI_API void ImVector_TextRange_push_front(ImVector_TextRange* self,const TextRange v); +CIMGUI_API void ImVector_CustomRect_push_front(ImVector_CustomRect* self,const CustomRect v); +CIMGUI_API void ImVector_ImDrawChannel_push_front(ImVector_ImDrawChannel* self,const ImDrawChannel v); +CIMGUI_API void ImVector_char_push_front(ImVector_char* self,const char v); +CIMGUI_API void ImVector_ImTextureID_push_front(ImVector_ImTextureID* self,const ImTextureID v); +CIMGUI_API void ImVector_ImDrawVert_push_front(ImVector_ImDrawVert* self,const ImDrawVert v); +CIMGUI_API void ImVector_int_push_front(ImVector_int* self,const int v); +CIMGUI_API void ImVector_Pair_push_front(ImVector_Pair* self,const Pair v); +CIMGUI_API void ImVector_ImFontPtr_push_front(ImVector_ImFontPtr* self,ImFont* const v); +CIMGUI_API void ImVector_ImVec4_push_front(ImVector_ImVec4* self,const ImVec4 v); +CIMGUI_API void ImVector_ImDrawCmd_push_front(ImVector_ImDrawCmd* self,const ImDrawCmd v); +CIMGUI_API void ImVector_ImDrawIdx_push_front(ImVector_ImDrawIdx* self,const ImDrawIdx v); +CIMGUI_API void ImVector_ImVec2_push_front(ImVector_ImVec2* self,const ImVec2 v); +CIMGUI_API float* ImVector_float_erase(ImVector_float* self,float const * it); +CIMGUI_API ImWchar* ImVector_ImWchar_erase(ImVector_ImWchar* self,ImWchar const * it); +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_erase(ImVector_ImFontConfig* self,ImFontConfig const * it); +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_erase(ImVector_ImFontGlyph* self,ImFontGlyph const * it); +CIMGUI_API TextRange* ImVector_TextRange_erase(ImVector_TextRange* self,TextRange const * it); +CIMGUI_API CustomRect* ImVector_CustomRect_erase(ImVector_CustomRect* self,CustomRect const * it); +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_erase(ImVector_ImDrawChannel* self,ImDrawChannel const * it); +CIMGUI_API char* ImVector_char_erase(ImVector_char* self,char const * it); +CIMGUI_API ImTextureID* ImVector_ImTextureID_erase(ImVector_ImTextureID* self,ImTextureID const * it); +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_erase(ImVector_ImDrawVert* self,ImDrawVert const * it); +CIMGUI_API int* ImVector_int_erase(ImVector_int* self,int const * it); +CIMGUI_API Pair* ImVector_Pair_erase(ImVector_Pair* self,Pair const * it); +CIMGUI_API ImFont** ImVector_ImFontPtr_erase(ImVector_ImFontPtr* self,ImFont* const * it); +CIMGUI_API ImVec4* ImVector_ImVec4_erase(ImVector_ImVec4* self,ImVec4 const * it); +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_erase(ImVector_ImDrawCmd* self,ImDrawCmd const * it); +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_erase(ImVector_ImDrawIdx* self,ImDrawIdx const * it); +CIMGUI_API ImVec2* ImVector_ImVec2_erase(ImVector_ImVec2* self,ImVec2 const * it); +CIMGUI_API float* ImVector_float_eraseTPtr(ImVector_float* self,float const * it,float const * it_last); +CIMGUI_API ImWchar* ImVector_ImWchar_eraseTPtr(ImVector_ImWchar* self,ImWchar const * it,ImWchar const * it_last); +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_eraseTPtr(ImVector_ImFontConfig* self,ImFontConfig const * it,ImFontConfig const * it_last); +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_eraseTPtr(ImVector_ImFontGlyph* self,ImFontGlyph const * it,ImFontGlyph const * it_last); +CIMGUI_API TextRange* ImVector_TextRange_eraseTPtr(ImVector_TextRange* self,TextRange const * it,TextRange const * it_last); +CIMGUI_API CustomRect* ImVector_CustomRect_eraseTPtr(ImVector_CustomRect* self,CustomRect const * it,CustomRect const * it_last); +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_eraseTPtr(ImVector_ImDrawChannel* self,ImDrawChannel const * it,ImDrawChannel const * it_last); +CIMGUI_API char* ImVector_char_eraseTPtr(ImVector_char* self,char const * it,char const * it_last); +CIMGUI_API ImTextureID* ImVector_ImTextureID_eraseTPtr(ImVector_ImTextureID* self,ImTextureID const * it,ImTextureID const * it_last); +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_eraseTPtr(ImVector_ImDrawVert* self,ImDrawVert const * it,ImDrawVert const * it_last); +CIMGUI_API int* ImVector_int_eraseTPtr(ImVector_int* self,int const * it,int const * it_last); +CIMGUI_API Pair* ImVector_Pair_eraseTPtr(ImVector_Pair* self,Pair const * it,Pair const * it_last); +CIMGUI_API ImFont** ImVector_ImFontPtr_eraseTPtr(ImVector_ImFontPtr* self,ImFont* const * it,ImFont* const * it_last); +CIMGUI_API ImVec4* ImVector_ImVec4_eraseTPtr(ImVector_ImVec4* self,ImVec4 const * it,ImVec4 const * it_last); +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_eraseTPtr(ImVector_ImDrawCmd* self,ImDrawCmd const * it,ImDrawCmd const * it_last); +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_eraseTPtr(ImVector_ImDrawIdx* self,ImDrawIdx const * it,ImDrawIdx const * it_last); +CIMGUI_API ImVec2* ImVector_ImVec2_eraseTPtr(ImVector_ImVec2* self,ImVec2 const * it,ImVec2 const * it_last); +CIMGUI_API float* ImVector_float_erase_unsorted(ImVector_float* self,float const * it); +CIMGUI_API ImWchar* ImVector_ImWchar_erase_unsorted(ImVector_ImWchar* self,ImWchar const * it); +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_erase_unsorted(ImVector_ImFontConfig* self,ImFontConfig const * it); +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_erase_unsorted(ImVector_ImFontGlyph* self,ImFontGlyph const * it); +CIMGUI_API TextRange* ImVector_TextRange_erase_unsorted(ImVector_TextRange* self,TextRange const * it); +CIMGUI_API CustomRect* ImVector_CustomRect_erase_unsorted(ImVector_CustomRect* self,CustomRect const * it); +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_erase_unsorted(ImVector_ImDrawChannel* self,ImDrawChannel const * it); +CIMGUI_API char* ImVector_char_erase_unsorted(ImVector_char* self,char const * it); +CIMGUI_API ImTextureID* ImVector_ImTextureID_erase_unsorted(ImVector_ImTextureID* self,ImTextureID const * it); +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_erase_unsorted(ImVector_ImDrawVert* self,ImDrawVert const * it); +CIMGUI_API int* ImVector_int_erase_unsorted(ImVector_int* self,int const * it); +CIMGUI_API Pair* ImVector_Pair_erase_unsorted(ImVector_Pair* self,Pair const * it); +CIMGUI_API ImFont** ImVector_ImFontPtr_erase_unsorted(ImVector_ImFontPtr* self,ImFont* const * it); +CIMGUI_API ImVec4* ImVector_ImVec4_erase_unsorted(ImVector_ImVec4* self,ImVec4 const * it); +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_erase_unsorted(ImVector_ImDrawCmd* self,ImDrawCmd const * it); +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_erase_unsorted(ImVector_ImDrawIdx* self,ImDrawIdx const * it); +CIMGUI_API ImVec2* ImVector_ImVec2_erase_unsorted(ImVector_ImVec2* self,ImVec2 const * it); +CIMGUI_API float* ImVector_float_insert(ImVector_float* self,float const * it,const float v); +CIMGUI_API ImWchar* ImVector_ImWchar_insert(ImVector_ImWchar* self,ImWchar const * it,const ImWchar v); +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_insert(ImVector_ImFontConfig* self,ImFontConfig const * it,const ImFontConfig v); +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_insert(ImVector_ImFontGlyph* self,ImFontGlyph const * it,const ImFontGlyph v); +CIMGUI_API TextRange* ImVector_TextRange_insert(ImVector_TextRange* self,TextRange const * it,const TextRange v); +CIMGUI_API CustomRect* ImVector_CustomRect_insert(ImVector_CustomRect* self,CustomRect const * it,const CustomRect v); +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_insert(ImVector_ImDrawChannel* self,ImDrawChannel const * it,const ImDrawChannel v); +CIMGUI_API char* ImVector_char_insert(ImVector_char* self,char const * it,const char v); +CIMGUI_API ImTextureID* ImVector_ImTextureID_insert(ImVector_ImTextureID* self,ImTextureID const * it,const ImTextureID v); +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_insert(ImVector_ImDrawVert* self,ImDrawVert const * it,const ImDrawVert v); +CIMGUI_API int* ImVector_int_insert(ImVector_int* self,int const * it,const int v); +CIMGUI_API Pair* ImVector_Pair_insert(ImVector_Pair* self,Pair const * it,const Pair v); +CIMGUI_API ImFont** ImVector_ImFontPtr_insert(ImVector_ImFontPtr* self,ImFont* const * it,ImFont* const v); +CIMGUI_API ImVec4* ImVector_ImVec4_insert(ImVector_ImVec4* self,ImVec4 const * it,const ImVec4 v); +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_insert(ImVector_ImDrawCmd* self,ImDrawCmd const * it,const ImDrawCmd v); +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_insert(ImVector_ImDrawIdx* self,ImDrawIdx const * it,const ImDrawIdx v); +CIMGUI_API ImVec2* ImVector_ImVec2_insert(ImVector_ImVec2* self,ImVec2 const * it,const ImVec2 v); +CIMGUI_API bool ImVector_float_contains(const ImVector_float* self,const float v); +CIMGUI_API bool ImVector_ImWchar_contains(const ImVector_ImWchar* self,const ImWchar v); +CIMGUI_API bool ImVector_ImFontConfig_contains(const ImVector_ImFontConfig* self,const ImFontConfig v); +CIMGUI_API bool ImVector_ImFontGlyph_contains(const ImVector_ImFontGlyph* self,const ImFontGlyph v); +CIMGUI_API bool ImVector_TextRange_contains(const ImVector_TextRange* self,const TextRange v); +CIMGUI_API bool ImVector_CustomRect_contains(const ImVector_CustomRect* self,const CustomRect v); +CIMGUI_API bool ImVector_ImDrawChannel_contains(const ImVector_ImDrawChannel* self,const ImDrawChannel v); +CIMGUI_API bool ImVector_char_contains(const ImVector_char* self,const char v); +CIMGUI_API bool ImVector_ImTextureID_contains(const ImVector_ImTextureID* self,const ImTextureID v); +CIMGUI_API bool ImVector_ImDrawVert_contains(const ImVector_ImDrawVert* self,const ImDrawVert v); +CIMGUI_API bool ImVector_int_contains(const ImVector_int* self,const int v); +CIMGUI_API bool ImVector_Pair_contains(const ImVector_Pair* self,const Pair v); +CIMGUI_API bool ImVector_ImFontPtr_contains(const ImVector_ImFontPtr* self,ImFont* const v); +CIMGUI_API bool ImVector_ImVec4_contains(const ImVector_ImVec4* self,const ImVec4 v); +CIMGUI_API bool ImVector_ImDrawCmd_contains(const ImVector_ImDrawCmd* self,const ImDrawCmd v); +CIMGUI_API bool ImVector_ImDrawIdx_contains(const ImVector_ImDrawIdx* self,const ImDrawIdx v); +CIMGUI_API bool ImVector_ImVec2_contains(const ImVector_ImVec2* self,const ImVec2 v); +CIMGUI_API int ImVector_float_index_from_ptr(const ImVector_float* self,float const * it); +CIMGUI_API int ImVector_ImWchar_index_from_ptr(const ImVector_ImWchar* self,ImWchar const * it); +CIMGUI_API int ImVector_ImFontConfig_index_from_ptr(const ImVector_ImFontConfig* self,ImFontConfig const * it); +CIMGUI_API int ImVector_ImFontGlyph_index_from_ptr(const ImVector_ImFontGlyph* self,ImFontGlyph const * it); +CIMGUI_API int ImVector_TextRange_index_from_ptr(const ImVector_TextRange* self,TextRange const * it); +CIMGUI_API int ImVector_CustomRect_index_from_ptr(const ImVector_CustomRect* self,CustomRect const * it); +CIMGUI_API int ImVector_ImDrawChannel_index_from_ptr(const ImVector_ImDrawChannel* self,ImDrawChannel const * it); +CIMGUI_API int ImVector_char_index_from_ptr(const ImVector_char* self,char const * it); +CIMGUI_API int ImVector_ImTextureID_index_from_ptr(const ImVector_ImTextureID* self,ImTextureID const * it); +CIMGUI_API int ImVector_ImDrawVert_index_from_ptr(const ImVector_ImDrawVert* self,ImDrawVert const * it); +CIMGUI_API int ImVector_int_index_from_ptr(const ImVector_int* self,int const * it); +CIMGUI_API int ImVector_Pair_index_from_ptr(const ImVector_Pair* self,Pair const * it); +CIMGUI_API int ImVector_ImFontPtr_index_from_ptr(const ImVector_ImFontPtr* self,ImFont* const * it); +CIMGUI_API int ImVector_ImVec4_index_from_ptr(const ImVector_ImVec4* self,ImVec4 const * it); +CIMGUI_API int ImVector_ImDrawCmd_index_from_ptr(const ImVector_ImDrawCmd* self,ImDrawCmd const * it); +CIMGUI_API int ImVector_ImDrawIdx_index_from_ptr(const ImVector_ImDrawIdx* self,ImDrawIdx const * it); +CIMGUI_API int ImVector_ImVec2_index_from_ptr(const ImVector_ImVec2* self,ImVec2 const * it); /////////////////////////hand written functions @@ -1507,7 +2016,6 @@ CIMGUI_API void igColorConvertRGBtoHSV(float r,float g,float b,float *out_h,floa CIMGUI_API void igColorConvertHSVtoRGB(float h,float s,float v,float *out_r,float *out_g,float *out_b); CIMGUI_API ImVector_ImWchar* ImVector_ImWchar_create(); -CIMGUI_API void ImVector_ImWchar_destroy(ImVector_ImWchar* p); CIMGUI_API void ImVector_ImWchar_Init(ImVector_ImWchar* p); CIMGUI_API void ImVector_ImWchar_UnInit(ImVector_ImWchar* p); #endif //CIMGUI_INCLUDED diff --git a/generator/cimgui_template.cpp b/generator/cimgui_template.cpp index 9bee09f..9e63bad 100644 --- a/generator/cimgui_template.cpp +++ b/generator/cimgui_template.cpp @@ -43,10 +43,7 @@ CIMGUI_API ImVector_ImWchar* ImVector_ImWchar_create() { return IM_NEW(ImVector) (); } -CIMGUI_API void ImVector_ImWchar_destroy(ImVector_ImWchar* p) -{ - IM_DELETE(p); -} + CIMGUI_API void ImVector_ImWchar_Init(ImVector_ImWchar* p) { IM_PLACEMENT_NEW(p) ImVector(); diff --git a/generator/cimgui_template.h b/generator/cimgui_template.h index 4a4130f..5b99e87 100644 --- a/generator/cimgui_template.h +++ b/generator/cimgui_template.h @@ -83,7 +83,6 @@ CIMGUI_API void igColorConvertRGBtoHSV(float r,float g,float b,float *out_h,floa CIMGUI_API void igColorConvertHSVtoRGB(float h,float s,float v,float *out_r,float *out_g,float *out_b); CIMGUI_API ImVector_ImWchar* ImVector_ImWchar_create(); -CIMGUI_API void ImVector_ImWchar_destroy(ImVector_ImWchar* p); CIMGUI_API void ImVector_ImWchar_Init(ImVector_ImWchar* p); CIMGUI_API void ImVector_ImWchar_UnInit(ImVector_ImWchar* p); #endif //CIMGUI_INCLUDED diff --git a/generator/cpp2ffi.lua b/generator/cpp2ffi.lua index ad427bc..2255619 100644 --- a/generator/cpp2ffi.lua +++ b/generator/cpp2ffi.lua @@ -248,7 +248,14 @@ local function name_overloadsAlgo(v) local maxnum = 0 for i,t in ipairs(v) do bb[i] = "" - local signature = t.signature:sub(2,-2) -- without parenthesis + --local signature = t.signature:sub(2,-2) -- without parenthesis + --inside parenthesis + local signature = t.signature:match("%b()") + signature = signature:sub(2,-2) + --add const function + if t.signature:match("const$") then + signature = signature .. ",_const" + end aa[i] = {} local num = 1 --for typec in t.signature:gmatch(".-([^,%(%s]+)[,%)]") do @@ -336,8 +343,10 @@ local function parseFunction(self,stname,lineorig,namespace) if line:match("template") then return end local ret = line:match("([^%(%)]+[%*%s])%s?~?[_%w]+%b()") - local funcname, args = line:match("(~?[_%w]+)%s*(%b())") - + --local funcname, args = line:match("(~?[_%w]+)%s*(%b())") + local funcname, args, extraconst = line:match("(~?[_%w]+)%s*(%b())(.*)") + extraconst = extraconst:match("const") + if not args then print"not gettint args in" print(line,lineorig) @@ -357,18 +366,21 @@ local function parseFunction(self,stname,lineorig,namespace) --for _,ttype in ipairs(self.templatedTypes) do --local template = argscsinpars:match(ttype.."%s*<(.+)>") + --TODO several diferent templates local ttype,template = argscsinpars:match("([^%s,%(%)]+)%s*<(.+)>") local te="" if template then if self.typenames[stname] ~= template then --rule out template typename te = template:gsub("%s","_") te = te:gsub("%*","Ptr") + te = "_"..te + self.templates[ttype] = self.templates[ttype] or {} self.templates[ttype][template] = te end end --end - argscsinpars = argscsinpars:gsub("<([%w_%*]+)>","_"..te) --ImVector + argscsinpars = argscsinpars:gsub("<([%w_%*]+)>",te) --ImVector local argsArr = {} local functype_re = "^%s*[%w%s%*]+%(%*[%w_]+%)%([^%(%)]*%)" @@ -431,6 +443,7 @@ local function parseFunction(self,stname,lineorig,namespace) signature = signature:gsub(",%s*",",")--space after , signature = signature:gsub("([%w_]+)%s[%w_]+(%[%d*%])","%1%2") -- float[2] signature = signature:gsub("(%(%*)[%w_]+(%)%([^%(%)]*%))","%1%2") --func defs + signature = signature .. (extraconst or "") local call_args = argscsinpars:gsub("([%w_]+%s[%w_]+)%[%d*%]","%1") --float[2] call_args = call_args:gsub("%(%*([%w_]+)%)%([^%(%)]*%)"," %1") --func type @@ -589,9 +602,13 @@ local function ADDdestructors(FP) for j,cons in ipairs(defT) do cons.constructor = true end - assert(defT[1].stname==defT[1].funcname) + if(defT[1].stname~=defT[1].funcname) then + print(defT[1].stname, defT[1].funcname) + error"names should be equal" + end local def = {} def.stname = defT[1].stname + def.templated = defT[1].templated def.ret = "void" def.ov_cimguiname = def.stname.."_destroy" def.cimguiname = def.ov_cimguiname @@ -691,6 +708,9 @@ function M.Parser() self:parseItems() self:parseFunctions() self:compute_overloads() + self:gen_structs_and_enums() + self:compute_templated() + ADDdestructors(self) end function par:parseItems() --typedefs dictionary @@ -812,7 +832,8 @@ function M.Parser() local outtab = {} local outtabpre = {} local typedefs_table = {} - + self.inerstructs = {} + --first typedefs for i,it in ipairs(itemsarr) do if it.re_name == "typedef_re" or it.re_name == "functypedef_re" or it.re_name == "vardef_re" then @@ -1040,9 +1061,114 @@ function M.Parser() table.insert(strt,string.format("%d overloaded",numoverloaded)) AdjustArguments(self) ADDnonUDT(self) - ADDdestructors(self) + --ADDdestructors(self) self.overloadstxt = table.concat(strt,"\n") end + local function typename_gsub(cad,typename,tname) + local str,n = "",0 + if tname:match"%*" then + str,n = cad:gsub("(const%s+)("..typename..")", tname.." %1") + end + if n==0 then + str,n = cad:gsub("(const%s+)("..typename..")(%s*%*)", tname.." %1%3") + end + if n==0 then + str,n = cad:gsub("([^_%w])("..typename..")([^_%w])", "%1"..tname.."%3") + end + if n==0 then + str,n = cad:gsub("([^_%w])("..typename..")$", "%1"..tname) + end + if n==0 then + str,n = cad:gsub("^("..typename..")(%s*%*)", tname.."%2") + end + return str + end + function par:compute_templated() + local defsT = self.defsT + local newcdefs = {} + for numcdef,t in ipairs(self.funcdefs) do + if t.cimguiname then + local cimf = defsT[t.cimguiname] + local defT = cimf[t.signature] + if defT.templated then + local templates = self.templates[defT.stname] + local typename = self.typenames[defT.stname] + for tname,tnamestr in pairs(templates) do + --local tnamestr = typetoStr(tname) + local stname = defT.stname .. "_" .. tnamestr + local templ_stname = defT.stname .. "_" .. typename + local cimguiname = t.cimguiname:gsub(defT.stname,stname) + local ov_cimguiname = defT.ov_cimguiname:gsub(defT.stname,stname) + local signature = defT.signature:gsub(typename, tname) + local ret + if defT.ret then + --ret = defT.ret:gsub(typename, tname) + ret = typename_gsub(defT.ret, typename, tname) + end + + local args = defT.args:gsub(defT.stname,stname) + + args = typename_gsub(args, typename, tname) + + local argsT = {} + for i,ar in ipairs(defT.argsT) do + argsT[i] = {} + for k,v in pairs(ar) do + if k=="type" then + v = v:gsub(defT.stname,stname) + v = typename_gsub(v, typename, tname) + end + argsT[i][k]=v + end + end + -----------reconstruct args + --if(#argsT==0 and not defT.constructor) then M.prtable(defT) end + --if is const function make self const + if #argsT>0 and signature:match"const$" then + argsT[1].type = "const "..argsT[1].type + end + + args = "(" + for i=1,#argsT-1 do + local ar = argsT[i] + args = args .. ar.type .. " " ..ar.name .. "," + end + local ar = argsT[#argsT] + if ar then args = args .. ar.type .. " " ..ar.name .. ")" + else args = args .. ")" end + args = args:gsub("&","") + ------------------------------ + + defTnew = {} + defTnew.cimguiname = cimguiname + defTnew.ov_cimguiname = ov_cimguiname + defTnew.signature = signature + defTnew.ret = ret + defTnew.retref = defT.retref + defTnew.templatedgen = true + defTnew.call_args = defT.call_args + defTnew.stname = stname + local funcname = defT.funcname + if funcname == defT.stname then --is constructor + funcname = stname + end + defTnew.funcname = funcname + defTnew.args = args + defTnew.argsT = argsT + defTnew.defaults = {} + --print(cimguiname,ov_cimguiname, signature , ret) + defsT[cimguiname] = defsT[cimguiname] or {} + defsT[cimguiname][#defsT[cimguiname] + 1] = defTnew + defsT[cimguiname][signature] = defTnew + table.insert(newcdefs,{stname=stname,funcname=t.funcname,args=args,argsc=argscsinpars,signature=signature,cimguiname=cimguiname,call_args=call_args,ret =t.ret,comment=comment}) + end + end -- templated + end --cimguiname + end + for i,v in ipairs(newcdefs) do + table.insert(self.funcdefs,v) + end + end return par end diff --git a/generator/generator2.lua b/generator/generator2.lua index 673a04c..1ff6804 100644 --- a/generator/generator2.lua +++ b/generator/generator2.lua @@ -230,14 +230,14 @@ local function func_header_generate(FP) table.insert(outtab,"#endif //CIMGUI_DEFINE_ENUMS_AND_STRUCTS\n") for _,t in ipairs(FP.funcdefs) do - --if t.stname=="ImVector" then print(t.cimguiname) end + if t.cimguiname then local cimf = FP.defsT[t.cimguiname] local def = cimf[t.signature] assert(def,t.signature..t.cimguiname) local manual = FP.get_manuals(def) if not manual and not def.templated then - --if FP.templates[t.stname] then print(t.cimguiname) end + local addcoment = def.comment or "" local empty = def.args:match("^%(%)") --no args if def.constructor then @@ -246,8 +246,7 @@ local function func_header_generate(FP) elseif def.destructor then table.insert(outtab,"CIMGUI_API void "..def.ov_cimguiname..def.args..";"..addcoment.."\n") else --not constructor - --if t.stname=="ImVector" then print("2",t.cimguiname) end - + if def.stname == "" then --ImGui namespace or top level table.insert(outtab,"CIMGUI_API "..def.ret.." ".. def.ov_cimguiname ..(empty and "(void)" or def.args)..";"..addcoment.."\n") else @@ -264,6 +263,8 @@ local function func_header_generate(FP) cfuncsstr = cfuncsstr:gsub("\n+","\n") --several empty lines to one empty line return cfuncsstr end + + local function ImGui_f_implementation(outtab,def) local ptret = def.retref and "&" or "" table.insert(outtab,"CIMGUI_API".." "..def.ret.." "..def.ov_cimguiname..def.args.."\n") diff --git a/generator/output/cimgui.cpp b/generator/output/cimgui.cpp index 2c0927f..6bfee89 100644 --- a/generator/output/cimgui.cpp +++ b/generator/output/cimgui.cpp @@ -1427,10 +1427,6 @@ CIMGUI_API void igMemFree(void* ptr) { return ImGui::MemFree(ptr); } -CIMGUI_API void ImVector_destroy(ImVector* self) -{ - IM_DELETE(self); -} CIMGUI_API ImGuiStyle* ImGuiStyle_ImGuiStyle(void) { return IM_NEW(ImGuiStyle)(); @@ -2435,6 +2431,2046 @@ CIMGUI_API ImVec2_Simple ImFont_CalcTextSizeA_nonUDT2(ImFont* self,float size,fl ImVec2_Simple ret2 = ImVec2ToSimple(ret); return ret2; } +CIMGUI_API ImVector_float* ImVector_float_ImVector_float(void) +{ + return IM_NEW(ImVector_float)(); +} +CIMGUI_API void ImVector_float_destroy(ImVector_float* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_ImWchar* ImVector_ImWchar_ImVector_ImWchar(void) +{ + return IM_NEW(ImVector_ImWchar)(); +} +CIMGUI_API void ImVector_ImWchar_destroy(ImVector_ImWchar* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_ImFontConfig* ImVector_ImFontConfig_ImVector_ImFontConfig(void) +{ + return IM_NEW(ImVector_ImFontConfig)(); +} +CIMGUI_API void ImVector_ImFontConfig_destroy(ImVector_ImFontConfig* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_ImFontGlyph* ImVector_ImFontGlyph_ImVector_ImFontGlyph(void) +{ + return IM_NEW(ImVector_ImFontGlyph)(); +} +CIMGUI_API void ImVector_ImFontGlyph_destroy(ImVector_ImFontGlyph* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_TextRange* ImVector_TextRange_ImVector_TextRange(void) +{ + return IM_NEW(ImVector_TextRange)(); +} +CIMGUI_API void ImVector_TextRange_destroy(ImVector_TextRange* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_CustomRect* ImVector_CustomRect_ImVector_CustomRect(void) +{ + return IM_NEW(ImVector_CustomRect)(); +} +CIMGUI_API void ImVector_CustomRect_destroy(ImVector_CustomRect* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_ImDrawChannel* ImVector_ImDrawChannel_ImVector_ImDrawChannel(void) +{ + return IM_NEW(ImVector_ImDrawChannel)(); +} +CIMGUI_API void ImVector_ImDrawChannel_destroy(ImVector_ImDrawChannel* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_char* ImVector_char_ImVector_char(void) +{ + return IM_NEW(ImVector_char)(); +} +CIMGUI_API void ImVector_char_destroy(ImVector_char* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_ImTextureID* ImVector_ImTextureID_ImVector_ImTextureID(void) +{ + return IM_NEW(ImVector_ImTextureID)(); +} +CIMGUI_API void ImVector_ImTextureID_destroy(ImVector_ImTextureID* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_ImDrawVert* ImVector_ImDrawVert_ImVector_ImDrawVert(void) +{ + return IM_NEW(ImVector_ImDrawVert)(); +} +CIMGUI_API void ImVector_ImDrawVert_destroy(ImVector_ImDrawVert* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_int* ImVector_int_ImVector_int(void) +{ + return IM_NEW(ImVector_int)(); +} +CIMGUI_API void ImVector_int_destroy(ImVector_int* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_Pair* ImVector_Pair_ImVector_Pair(void) +{ + return IM_NEW(ImVector_Pair)(); +} +CIMGUI_API void ImVector_Pair_destroy(ImVector_Pair* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_ImFontPtr* ImVector_ImFontPtr_ImVector_ImFontPtr(void) +{ + return IM_NEW(ImVector_ImFontPtr)(); +} +CIMGUI_API void ImVector_ImFontPtr_destroy(ImVector_ImFontPtr* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_ImVec4* ImVector_ImVec4_ImVector_ImVec4(void) +{ + return IM_NEW(ImVector_ImVec4)(); +} +CIMGUI_API void ImVector_ImVec4_destroy(ImVector_ImVec4* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_ImDrawCmd* ImVector_ImDrawCmd_ImVector_ImDrawCmd(void) +{ + return IM_NEW(ImVector_ImDrawCmd)(); +} +CIMGUI_API void ImVector_ImDrawCmd_destroy(ImVector_ImDrawCmd* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_ImDrawIdx* ImVector_ImDrawIdx_ImVector_ImDrawIdx(void) +{ + return IM_NEW(ImVector_ImDrawIdx)(); +} +CIMGUI_API void ImVector_ImDrawIdx_destroy(ImVector_ImDrawIdx* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_ImVec2* ImVector_ImVec2_ImVector_ImVec2(void) +{ + return IM_NEW(ImVector_ImVec2)(); +} +CIMGUI_API void ImVector_ImVec2_destroy(ImVector_ImVec2* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImVector_float* ImVector_float_ImVector_floatVector(const ImVector_float src) +{ + return IM_NEW(ImVector_float)(src); +} +CIMGUI_API ImVector_ImWchar* ImVector_ImWchar_ImVector_ImWcharVector(const ImVector_ImWchar src) +{ + return IM_NEW(ImVector_ImWchar)(src); +} +CIMGUI_API ImVector_ImFontConfig* ImVector_ImFontConfig_ImVector_ImFontConfigVector(const ImVector_ImFontConfig src) +{ + return IM_NEW(ImVector_ImFontConfig)(src); +} +CIMGUI_API ImVector_ImFontGlyph* ImVector_ImFontGlyph_ImVector_ImFontGlyphVector(const ImVector_ImFontGlyph src) +{ + return IM_NEW(ImVector_ImFontGlyph)(src); +} +CIMGUI_API ImVector_TextRange* ImVector_TextRange_ImVector_TextRangeVector(const ImVector_TextRange src) +{ + return IM_NEW(ImVector_TextRange)(src); +} +CIMGUI_API ImVector_CustomRect* ImVector_CustomRect_ImVector_CustomRectVector(const ImVector_CustomRect src) +{ + return IM_NEW(ImVector_CustomRect)(src); +} +CIMGUI_API ImVector_ImDrawChannel* ImVector_ImDrawChannel_ImVector_ImDrawChannelVector(const ImVector_ImDrawChannel src) +{ + return IM_NEW(ImVector_ImDrawChannel)(src); +} +CIMGUI_API ImVector_char* ImVector_char_ImVector_charVector(const ImVector_char src) +{ + return IM_NEW(ImVector_char)(src); +} +CIMGUI_API ImVector_ImTextureID* ImVector_ImTextureID_ImVector_ImTextureIDVector(const ImVector_ImTextureID src) +{ + return IM_NEW(ImVector_ImTextureID)(src); +} +CIMGUI_API ImVector_ImDrawVert* ImVector_ImDrawVert_ImVector_ImDrawVertVector(const ImVector_ImDrawVert src) +{ + return IM_NEW(ImVector_ImDrawVert)(src); +} +CIMGUI_API ImVector_int* ImVector_int_ImVector_intVector(const ImVector_int src) +{ + return IM_NEW(ImVector_int)(src); +} +CIMGUI_API ImVector_Pair* ImVector_Pair_ImVector_PairVector(const ImVector_Pair src) +{ + return IM_NEW(ImVector_Pair)(src); +} +CIMGUI_API ImVector_ImFontPtr* ImVector_ImFontPtr_ImVector_ImFontPtrVector(const ImVector_ImFontPtr src) +{ + return IM_NEW(ImVector_ImFontPtr)(src); +} +CIMGUI_API ImVector_ImVec4* ImVector_ImVec4_ImVector_ImVec4Vector(const ImVector_ImVec4 src) +{ + return IM_NEW(ImVector_ImVec4)(src); +} +CIMGUI_API ImVector_ImDrawCmd* ImVector_ImDrawCmd_ImVector_ImDrawCmdVector(const ImVector_ImDrawCmd src) +{ + return IM_NEW(ImVector_ImDrawCmd)(src); +} +CIMGUI_API ImVector_ImDrawIdx* ImVector_ImDrawIdx_ImVector_ImDrawIdxVector(const ImVector_ImDrawIdx src) +{ + return IM_NEW(ImVector_ImDrawIdx)(src); +} +CIMGUI_API ImVector_ImVec2* ImVector_ImVec2_ImVector_ImVec2Vector(const ImVector_ImVec2 src) +{ + return IM_NEW(ImVector_ImVec2)(src); +} +CIMGUI_API bool ImVector_float_empty(const ImVector_float* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_ImWchar_empty(const ImVector_ImWchar* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_ImFontConfig_empty(const ImVector_ImFontConfig* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_ImFontGlyph_empty(const ImVector_ImFontGlyph* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_TextRange_empty(const ImVector_TextRange* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_CustomRect_empty(const ImVector_CustomRect* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_ImDrawChannel_empty(const ImVector_ImDrawChannel* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_char_empty(const ImVector_char* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_ImTextureID_empty(const ImVector_ImTextureID* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_ImDrawVert_empty(const ImVector_ImDrawVert* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_int_empty(const ImVector_int* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_Pair_empty(const ImVector_Pair* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_ImFontPtr_empty(const ImVector_ImFontPtr* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_ImVec4_empty(const ImVector_ImVec4* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_ImDrawCmd_empty(const ImVector_ImDrawCmd* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_ImDrawIdx_empty(const ImVector_ImDrawIdx* self) +{ + return self->empty(); +} +CIMGUI_API bool ImVector_ImVec2_empty(const ImVector_ImVec2* self) +{ + return self->empty(); +} +CIMGUI_API int ImVector_float_size(const ImVector_float* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_ImWchar_size(const ImVector_ImWchar* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_ImFontConfig_size(const ImVector_ImFontConfig* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_ImFontGlyph_size(const ImVector_ImFontGlyph* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_TextRange_size(const ImVector_TextRange* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_CustomRect_size(const ImVector_CustomRect* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_ImDrawChannel_size(const ImVector_ImDrawChannel* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_char_size(const ImVector_char* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_ImTextureID_size(const ImVector_ImTextureID* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_ImDrawVert_size(const ImVector_ImDrawVert* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_int_size(const ImVector_int* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_Pair_size(const ImVector_Pair* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_ImFontPtr_size(const ImVector_ImFontPtr* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_ImVec4_size(const ImVector_ImVec4* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_ImDrawCmd_size(const ImVector_ImDrawCmd* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_ImDrawIdx_size(const ImVector_ImDrawIdx* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_ImVec2_size(const ImVector_ImVec2* self) +{ + return self->size(); +} +CIMGUI_API int ImVector_float_size_in_bytes(const ImVector_float* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_ImWchar_size_in_bytes(const ImVector_ImWchar* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_ImFontConfig_size_in_bytes(const ImVector_ImFontConfig* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_ImFontGlyph_size_in_bytes(const ImVector_ImFontGlyph* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_TextRange_size_in_bytes(const ImVector_TextRange* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_CustomRect_size_in_bytes(const ImVector_CustomRect* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_ImDrawChannel_size_in_bytes(const ImVector_ImDrawChannel* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_char_size_in_bytes(const ImVector_char* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_ImTextureID_size_in_bytes(const ImVector_ImTextureID* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_ImDrawVert_size_in_bytes(const ImVector_ImDrawVert* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_int_size_in_bytes(const ImVector_int* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_Pair_size_in_bytes(const ImVector_Pair* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_ImFontPtr_size_in_bytes(const ImVector_ImFontPtr* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_ImVec4_size_in_bytes(const ImVector_ImVec4* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_ImDrawCmd_size_in_bytes(const ImVector_ImDrawCmd* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_ImDrawIdx_size_in_bytes(const ImVector_ImDrawIdx* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_ImVec2_size_in_bytes(const ImVector_ImVec2* self) +{ + return self->size_in_bytes(); +} +CIMGUI_API int ImVector_float_capacity(const ImVector_float* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_ImWchar_capacity(const ImVector_ImWchar* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_ImFontConfig_capacity(const ImVector_ImFontConfig* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_ImFontGlyph_capacity(const ImVector_ImFontGlyph* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_TextRange_capacity(const ImVector_TextRange* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_CustomRect_capacity(const ImVector_CustomRect* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_ImDrawChannel_capacity(const ImVector_ImDrawChannel* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_char_capacity(const ImVector_char* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_ImTextureID_capacity(const ImVector_ImTextureID* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_ImDrawVert_capacity(const ImVector_ImDrawVert* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_int_capacity(const ImVector_int* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_Pair_capacity(const ImVector_Pair* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_ImFontPtr_capacity(const ImVector_ImFontPtr* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_ImVec4_capacity(const ImVector_ImVec4* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_ImDrawCmd_capacity(const ImVector_ImDrawCmd* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_ImDrawIdx_capacity(const ImVector_ImDrawIdx* self) +{ + return self->capacity(); +} +CIMGUI_API int ImVector_ImVec2_capacity(const ImVector_ImVec2* self) +{ + return self->capacity(); +} +CIMGUI_API void ImVector_float_clear(ImVector_float* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_ImWchar_clear(ImVector_ImWchar* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_ImFontConfig_clear(ImVector_ImFontConfig* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_ImFontGlyph_clear(ImVector_ImFontGlyph* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_TextRange_clear(ImVector_TextRange* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_CustomRect_clear(ImVector_CustomRect* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_ImDrawChannel_clear(ImVector_ImDrawChannel* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_char_clear(ImVector_char* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_ImTextureID_clear(ImVector_ImTextureID* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_ImDrawVert_clear(ImVector_ImDrawVert* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_int_clear(ImVector_int* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_Pair_clear(ImVector_Pair* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_ImFontPtr_clear(ImVector_ImFontPtr* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_ImVec4_clear(ImVector_ImVec4* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_ImDrawCmd_clear(ImVector_ImDrawCmd* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_ImDrawIdx_clear(ImVector_ImDrawIdx* self) +{ + return self->clear(); +} +CIMGUI_API void ImVector_ImVec2_clear(ImVector_ImVec2* self) +{ + return self->clear(); +} +CIMGUI_API float* ImVector_float_begin(ImVector_float* self) +{ + return self->begin(); +} +CIMGUI_API ImWchar* ImVector_ImWchar_begin(ImVector_ImWchar* self) +{ + return self->begin(); +} +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_begin(ImVector_ImFontConfig* self) +{ + return self->begin(); +} +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_begin(ImVector_ImFontGlyph* self) +{ + return self->begin(); +} +CIMGUI_API TextRange* ImVector_TextRange_begin(ImVector_TextRange* self) +{ + return self->begin(); +} +CIMGUI_API CustomRect* ImVector_CustomRect_begin(ImVector_CustomRect* self) +{ + return self->begin(); +} +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_begin(ImVector_ImDrawChannel* self) +{ + return self->begin(); +} +CIMGUI_API char* ImVector_char_begin(ImVector_char* self) +{ + return self->begin(); +} +CIMGUI_API ImTextureID* ImVector_ImTextureID_begin(ImVector_ImTextureID* self) +{ + return self->begin(); +} +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_begin(ImVector_ImDrawVert* self) +{ + return self->begin(); +} +CIMGUI_API int* ImVector_int_begin(ImVector_int* self) +{ + return self->begin(); +} +CIMGUI_API Pair* ImVector_Pair_begin(ImVector_Pair* self) +{ + return self->begin(); +} +CIMGUI_API ImFont** ImVector_ImFontPtr_begin(ImVector_ImFontPtr* self) +{ + return self->begin(); +} +CIMGUI_API ImVec4* ImVector_ImVec4_begin(ImVector_ImVec4* self) +{ + return self->begin(); +} +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_begin(ImVector_ImDrawCmd* self) +{ + return self->begin(); +} +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_begin(ImVector_ImDrawIdx* self) +{ + return self->begin(); +} +CIMGUI_API ImVec2* ImVector_ImVec2_begin(ImVector_ImVec2* self) +{ + return self->begin(); +} +CIMGUI_API float const * ImVector_float_begin_const(const ImVector_float* self) +{ + return self->begin(); +} +CIMGUI_API ImWchar const * ImVector_ImWchar_begin_const(const ImVector_ImWchar* self) +{ + return self->begin(); +} +CIMGUI_API ImFontConfig const * ImVector_ImFontConfig_begin_const(const ImVector_ImFontConfig* self) +{ + return self->begin(); +} +CIMGUI_API ImFontGlyph const * ImVector_ImFontGlyph_begin_const(const ImVector_ImFontGlyph* self) +{ + return self->begin(); +} +CIMGUI_API TextRange const * ImVector_TextRange_begin_const(const ImVector_TextRange* self) +{ + return self->begin(); +} +CIMGUI_API CustomRect const * ImVector_CustomRect_begin_const(const ImVector_CustomRect* self) +{ + return self->begin(); +} +CIMGUI_API ImDrawChannel const * ImVector_ImDrawChannel_begin_const(const ImVector_ImDrawChannel* self) +{ + return self->begin(); +} +CIMGUI_API char const * ImVector_char_begin_const(const ImVector_char* self) +{ + return self->begin(); +} +CIMGUI_API ImTextureID const * ImVector_ImTextureID_begin_const(const ImVector_ImTextureID* self) +{ + return self->begin(); +} +CIMGUI_API ImDrawVert const * ImVector_ImDrawVert_begin_const(const ImVector_ImDrawVert* self) +{ + return self->begin(); +} +CIMGUI_API int const * ImVector_int_begin_const(const ImVector_int* self) +{ + return self->begin(); +} +CIMGUI_API Pair const * ImVector_Pair_begin_const(const ImVector_Pair* self) +{ + return self->begin(); +} +CIMGUI_API ImFont* const * ImVector_ImFontPtr_begin_const(const ImVector_ImFontPtr* self) +{ + return self->begin(); +} +CIMGUI_API ImVec4 const * ImVector_ImVec4_begin_const(const ImVector_ImVec4* self) +{ + return self->begin(); +} +CIMGUI_API ImDrawCmd const * ImVector_ImDrawCmd_begin_const(const ImVector_ImDrawCmd* self) +{ + return self->begin(); +} +CIMGUI_API ImDrawIdx const * ImVector_ImDrawIdx_begin_const(const ImVector_ImDrawIdx* self) +{ + return self->begin(); +} +CIMGUI_API ImVec2 const * ImVector_ImVec2_begin_const(const ImVector_ImVec2* self) +{ + return self->begin(); +} +CIMGUI_API float* ImVector_float_end(ImVector_float* self) +{ + return self->end(); +} +CIMGUI_API ImWchar* ImVector_ImWchar_end(ImVector_ImWchar* self) +{ + return self->end(); +} +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_end(ImVector_ImFontConfig* self) +{ + return self->end(); +} +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_end(ImVector_ImFontGlyph* self) +{ + return self->end(); +} +CIMGUI_API TextRange* ImVector_TextRange_end(ImVector_TextRange* self) +{ + return self->end(); +} +CIMGUI_API CustomRect* ImVector_CustomRect_end(ImVector_CustomRect* self) +{ + return self->end(); +} +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_end(ImVector_ImDrawChannel* self) +{ + return self->end(); +} +CIMGUI_API char* ImVector_char_end(ImVector_char* self) +{ + return self->end(); +} +CIMGUI_API ImTextureID* ImVector_ImTextureID_end(ImVector_ImTextureID* self) +{ + return self->end(); +} +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_end(ImVector_ImDrawVert* self) +{ + return self->end(); +} +CIMGUI_API int* ImVector_int_end(ImVector_int* self) +{ + return self->end(); +} +CIMGUI_API Pair* ImVector_Pair_end(ImVector_Pair* self) +{ + return self->end(); +} +CIMGUI_API ImFont** ImVector_ImFontPtr_end(ImVector_ImFontPtr* self) +{ + return self->end(); +} +CIMGUI_API ImVec4* ImVector_ImVec4_end(ImVector_ImVec4* self) +{ + return self->end(); +} +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_end(ImVector_ImDrawCmd* self) +{ + return self->end(); +} +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_end(ImVector_ImDrawIdx* self) +{ + return self->end(); +} +CIMGUI_API ImVec2* ImVector_ImVec2_end(ImVector_ImVec2* self) +{ + return self->end(); +} +CIMGUI_API float const * ImVector_float_end_const(const ImVector_float* self) +{ + return self->end(); +} +CIMGUI_API ImWchar const * ImVector_ImWchar_end_const(const ImVector_ImWchar* self) +{ + return self->end(); +} +CIMGUI_API ImFontConfig const * ImVector_ImFontConfig_end_const(const ImVector_ImFontConfig* self) +{ + return self->end(); +} +CIMGUI_API ImFontGlyph const * ImVector_ImFontGlyph_end_const(const ImVector_ImFontGlyph* self) +{ + return self->end(); +} +CIMGUI_API TextRange const * ImVector_TextRange_end_const(const ImVector_TextRange* self) +{ + return self->end(); +} +CIMGUI_API CustomRect const * ImVector_CustomRect_end_const(const ImVector_CustomRect* self) +{ + return self->end(); +} +CIMGUI_API ImDrawChannel const * ImVector_ImDrawChannel_end_const(const ImVector_ImDrawChannel* self) +{ + return self->end(); +} +CIMGUI_API char const * ImVector_char_end_const(const ImVector_char* self) +{ + return self->end(); +} +CIMGUI_API ImTextureID const * ImVector_ImTextureID_end_const(const ImVector_ImTextureID* self) +{ + return self->end(); +} +CIMGUI_API ImDrawVert const * ImVector_ImDrawVert_end_const(const ImVector_ImDrawVert* self) +{ + return self->end(); +} +CIMGUI_API int const * ImVector_int_end_const(const ImVector_int* self) +{ + return self->end(); +} +CIMGUI_API Pair const * ImVector_Pair_end_const(const ImVector_Pair* self) +{ + return self->end(); +} +CIMGUI_API ImFont* const * ImVector_ImFontPtr_end_const(const ImVector_ImFontPtr* self) +{ + return self->end(); +} +CIMGUI_API ImVec4 const * ImVector_ImVec4_end_const(const ImVector_ImVec4* self) +{ + return self->end(); +} +CIMGUI_API ImDrawCmd const * ImVector_ImDrawCmd_end_const(const ImVector_ImDrawCmd* self) +{ + return self->end(); +} +CIMGUI_API ImDrawIdx const * ImVector_ImDrawIdx_end_const(const ImVector_ImDrawIdx* self) +{ + return self->end(); +} +CIMGUI_API ImVec2 const * ImVector_ImVec2_end_const(const ImVector_ImVec2* self) +{ + return self->end(); +} +CIMGUI_API float* ImVector_float_front(ImVector_float* self) +{ + return &self->front(); +} +CIMGUI_API ImWchar* ImVector_ImWchar_front(ImVector_ImWchar* self) +{ + return &self->front(); +} +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_front(ImVector_ImFontConfig* self) +{ + return &self->front(); +} +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_front(ImVector_ImFontGlyph* self) +{ + return &self->front(); +} +CIMGUI_API TextRange* ImVector_TextRange_front(ImVector_TextRange* self) +{ + return &self->front(); +} +CIMGUI_API CustomRect* ImVector_CustomRect_front(ImVector_CustomRect* self) +{ + return &self->front(); +} +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_front(ImVector_ImDrawChannel* self) +{ + return &self->front(); +} +CIMGUI_API char* ImVector_char_front(ImVector_char* self) +{ + return &self->front(); +} +CIMGUI_API ImTextureID* ImVector_ImTextureID_front(ImVector_ImTextureID* self) +{ + return &self->front(); +} +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_front(ImVector_ImDrawVert* self) +{ + return &self->front(); +} +CIMGUI_API int* ImVector_int_front(ImVector_int* self) +{ + return &self->front(); +} +CIMGUI_API Pair* ImVector_Pair_front(ImVector_Pair* self) +{ + return &self->front(); +} +CIMGUI_API ImFont** ImVector_ImFontPtr_front(ImVector_ImFontPtr* self) +{ + return &self->front(); +} +CIMGUI_API ImVec4* ImVector_ImVec4_front(ImVector_ImVec4* self) +{ + return &self->front(); +} +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_front(ImVector_ImDrawCmd* self) +{ + return &self->front(); +} +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_front(ImVector_ImDrawIdx* self) +{ + return &self->front(); +} +CIMGUI_API ImVec2* ImVector_ImVec2_front(ImVector_ImVec2* self) +{ + return &self->front(); +} +CIMGUI_API float const * ImVector_float_front_const(const ImVector_float* self) +{ + return &self->front(); +} +CIMGUI_API ImWchar const * ImVector_ImWchar_front_const(const ImVector_ImWchar* self) +{ + return &self->front(); +} +CIMGUI_API ImFontConfig const * ImVector_ImFontConfig_front_const(const ImVector_ImFontConfig* self) +{ + return &self->front(); +} +CIMGUI_API ImFontGlyph const * ImVector_ImFontGlyph_front_const(const ImVector_ImFontGlyph* self) +{ + return &self->front(); +} +CIMGUI_API TextRange const * ImVector_TextRange_front_const(const ImVector_TextRange* self) +{ + return &self->front(); +} +CIMGUI_API CustomRect const * ImVector_CustomRect_front_const(const ImVector_CustomRect* self) +{ + return &self->front(); +} +CIMGUI_API ImDrawChannel const * ImVector_ImDrawChannel_front_const(const ImVector_ImDrawChannel* self) +{ + return &self->front(); +} +CIMGUI_API char const * ImVector_char_front_const(const ImVector_char* self) +{ + return &self->front(); +} +CIMGUI_API ImTextureID const * ImVector_ImTextureID_front_const(const ImVector_ImTextureID* self) +{ + return &self->front(); +} +CIMGUI_API ImDrawVert const * ImVector_ImDrawVert_front_const(const ImVector_ImDrawVert* self) +{ + return &self->front(); +} +CIMGUI_API int const * ImVector_int_front_const(const ImVector_int* self) +{ + return &self->front(); +} +CIMGUI_API Pair const * ImVector_Pair_front_const(const ImVector_Pair* self) +{ + return &self->front(); +} +CIMGUI_API ImFont* const * ImVector_ImFontPtr_front_const(const ImVector_ImFontPtr* self) +{ + return &self->front(); +} +CIMGUI_API ImVec4 const * ImVector_ImVec4_front_const(const ImVector_ImVec4* self) +{ + return &self->front(); +} +CIMGUI_API ImDrawCmd const * ImVector_ImDrawCmd_front_const(const ImVector_ImDrawCmd* self) +{ + return &self->front(); +} +CIMGUI_API ImDrawIdx const * ImVector_ImDrawIdx_front_const(const ImVector_ImDrawIdx* self) +{ + return &self->front(); +} +CIMGUI_API ImVec2 const * ImVector_ImVec2_front_const(const ImVector_ImVec2* self) +{ + return &self->front(); +} +CIMGUI_API float* ImVector_float_back(ImVector_float* self) +{ + return &self->back(); +} +CIMGUI_API ImWchar* ImVector_ImWchar_back(ImVector_ImWchar* self) +{ + return &self->back(); +} +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_back(ImVector_ImFontConfig* self) +{ + return &self->back(); +} +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_back(ImVector_ImFontGlyph* self) +{ + return &self->back(); +} +CIMGUI_API TextRange* ImVector_TextRange_back(ImVector_TextRange* self) +{ + return &self->back(); +} +CIMGUI_API CustomRect* ImVector_CustomRect_back(ImVector_CustomRect* self) +{ + return &self->back(); +} +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_back(ImVector_ImDrawChannel* self) +{ + return &self->back(); +} +CIMGUI_API char* ImVector_char_back(ImVector_char* self) +{ + return &self->back(); +} +CIMGUI_API ImTextureID* ImVector_ImTextureID_back(ImVector_ImTextureID* self) +{ + return &self->back(); +} +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_back(ImVector_ImDrawVert* self) +{ + return &self->back(); +} +CIMGUI_API int* ImVector_int_back(ImVector_int* self) +{ + return &self->back(); +} +CIMGUI_API Pair* ImVector_Pair_back(ImVector_Pair* self) +{ + return &self->back(); +} +CIMGUI_API ImFont** ImVector_ImFontPtr_back(ImVector_ImFontPtr* self) +{ + return &self->back(); +} +CIMGUI_API ImVec4* ImVector_ImVec4_back(ImVector_ImVec4* self) +{ + return &self->back(); +} +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_back(ImVector_ImDrawCmd* self) +{ + return &self->back(); +} +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_back(ImVector_ImDrawIdx* self) +{ + return &self->back(); +} +CIMGUI_API ImVec2* ImVector_ImVec2_back(ImVector_ImVec2* self) +{ + return &self->back(); +} +CIMGUI_API float const * ImVector_float_back_const(const ImVector_float* self) +{ + return &self->back(); +} +CIMGUI_API ImWchar const * ImVector_ImWchar_back_const(const ImVector_ImWchar* self) +{ + return &self->back(); +} +CIMGUI_API ImFontConfig const * ImVector_ImFontConfig_back_const(const ImVector_ImFontConfig* self) +{ + return &self->back(); +} +CIMGUI_API ImFontGlyph const * ImVector_ImFontGlyph_back_const(const ImVector_ImFontGlyph* self) +{ + return &self->back(); +} +CIMGUI_API TextRange const * ImVector_TextRange_back_const(const ImVector_TextRange* self) +{ + return &self->back(); +} +CIMGUI_API CustomRect const * ImVector_CustomRect_back_const(const ImVector_CustomRect* self) +{ + return &self->back(); +} +CIMGUI_API ImDrawChannel const * ImVector_ImDrawChannel_back_const(const ImVector_ImDrawChannel* self) +{ + return &self->back(); +} +CIMGUI_API char const * ImVector_char_back_const(const ImVector_char* self) +{ + return &self->back(); +} +CIMGUI_API ImTextureID const * ImVector_ImTextureID_back_const(const ImVector_ImTextureID* self) +{ + return &self->back(); +} +CIMGUI_API ImDrawVert const * ImVector_ImDrawVert_back_const(const ImVector_ImDrawVert* self) +{ + return &self->back(); +} +CIMGUI_API int const * ImVector_int_back_const(const ImVector_int* self) +{ + return &self->back(); +} +CIMGUI_API Pair const * ImVector_Pair_back_const(const ImVector_Pair* self) +{ + return &self->back(); +} +CIMGUI_API ImFont* const * ImVector_ImFontPtr_back_const(const ImVector_ImFontPtr* self) +{ + return &self->back(); +} +CIMGUI_API ImVec4 const * ImVector_ImVec4_back_const(const ImVector_ImVec4* self) +{ + return &self->back(); +} +CIMGUI_API ImDrawCmd const * ImVector_ImDrawCmd_back_const(const ImVector_ImDrawCmd* self) +{ + return &self->back(); +} +CIMGUI_API ImDrawIdx const * ImVector_ImDrawIdx_back_const(const ImVector_ImDrawIdx* self) +{ + return &self->back(); +} +CIMGUI_API ImVec2 const * ImVector_ImVec2_back_const(const ImVector_ImVec2* self) +{ + return &self->back(); +} +CIMGUI_API void ImVector_float_swap(ImVector_float* self,ImVector_float rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_ImWchar_swap(ImVector_ImWchar* self,ImVector_ImWchar rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_ImFontConfig_swap(ImVector_ImFontConfig* self,ImVector_ImFontConfig rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_ImFontGlyph_swap(ImVector_ImFontGlyph* self,ImVector_ImFontGlyph rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_TextRange_swap(ImVector_TextRange* self,ImVector_TextRange rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_CustomRect_swap(ImVector_CustomRect* self,ImVector_CustomRect rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_ImDrawChannel_swap(ImVector_ImDrawChannel* self,ImVector_ImDrawChannel rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_char_swap(ImVector_char* self,ImVector_char rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_ImTextureID_swap(ImVector_ImTextureID* self,ImVector_ImTextureID rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_ImDrawVert_swap(ImVector_ImDrawVert* self,ImVector_ImDrawVert rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_int_swap(ImVector_int* self,ImVector_int rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_Pair_swap(ImVector_Pair* self,ImVector_Pair rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_ImFontPtr_swap(ImVector_ImFontPtr* self,ImVector_ImFontPtr rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_ImVec4_swap(ImVector_ImVec4* self,ImVector_ImVec4 rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_ImDrawCmd_swap(ImVector_ImDrawCmd* self,ImVector_ImDrawCmd rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_ImDrawIdx_swap(ImVector_ImDrawIdx* self,ImVector_ImDrawIdx rhs) +{ + return self->swap(rhs); +} +CIMGUI_API void ImVector_ImVec2_swap(ImVector_ImVec2* self,ImVector_ImVec2 rhs) +{ + return self->swap(rhs); +} +CIMGUI_API int ImVector_float__grow_capacity(const ImVector_float* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_ImWchar__grow_capacity(const ImVector_ImWchar* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_ImFontConfig__grow_capacity(const ImVector_ImFontConfig* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_ImFontGlyph__grow_capacity(const ImVector_ImFontGlyph* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_TextRange__grow_capacity(const ImVector_TextRange* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_CustomRect__grow_capacity(const ImVector_CustomRect* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_ImDrawChannel__grow_capacity(const ImVector_ImDrawChannel* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_char__grow_capacity(const ImVector_char* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_ImTextureID__grow_capacity(const ImVector_ImTextureID* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_ImDrawVert__grow_capacity(const ImVector_ImDrawVert* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_int__grow_capacity(const ImVector_int* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_Pair__grow_capacity(const ImVector_Pair* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_ImFontPtr__grow_capacity(const ImVector_ImFontPtr* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_ImVec4__grow_capacity(const ImVector_ImVec4* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_ImDrawCmd__grow_capacity(const ImVector_ImDrawCmd* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_ImDrawIdx__grow_capacity(const ImVector_ImDrawIdx* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API int ImVector_ImVec2__grow_capacity(const ImVector_ImVec2* self,int sz) +{ + return self->_grow_capacity(sz); +} +CIMGUI_API void ImVector_float_resize(ImVector_float* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_ImWchar_resize(ImVector_ImWchar* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_ImFontConfig_resize(ImVector_ImFontConfig* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_ImFontGlyph_resize(ImVector_ImFontGlyph* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_TextRange_resize(ImVector_TextRange* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_CustomRect_resize(ImVector_CustomRect* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_ImDrawChannel_resize(ImVector_ImDrawChannel* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_char_resize(ImVector_char* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_ImTextureID_resize(ImVector_ImTextureID* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_ImDrawVert_resize(ImVector_ImDrawVert* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_int_resize(ImVector_int* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_Pair_resize(ImVector_Pair* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_ImFontPtr_resize(ImVector_ImFontPtr* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_ImVec4_resize(ImVector_ImVec4* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_ImDrawCmd_resize(ImVector_ImDrawCmd* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_ImDrawIdx_resize(ImVector_ImDrawIdx* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_ImVec2_resize(ImVector_ImVec2* self,int new_size) +{ + return self->resize(new_size); +} +CIMGUI_API void ImVector_float_resizeT(ImVector_float* self,int new_size,const float v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_ImWchar_resizeT(ImVector_ImWchar* self,int new_size,const ImWchar v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_ImFontConfig_resizeT(ImVector_ImFontConfig* self,int new_size,const ImFontConfig v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_ImFontGlyph_resizeT(ImVector_ImFontGlyph* self,int new_size,const ImFontGlyph v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_TextRange_resizeT(ImVector_TextRange* self,int new_size,const TextRange v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_CustomRect_resizeT(ImVector_CustomRect* self,int new_size,const CustomRect v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_ImDrawChannel_resizeT(ImVector_ImDrawChannel* self,int new_size,const ImDrawChannel v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_char_resizeT(ImVector_char* self,int new_size,const char v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_ImTextureID_resizeT(ImVector_ImTextureID* self,int new_size,const ImTextureID v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_ImDrawVert_resizeT(ImVector_ImDrawVert* self,int new_size,const ImDrawVert v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_int_resizeT(ImVector_int* self,int new_size,const int v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_Pair_resizeT(ImVector_Pair* self,int new_size,const Pair v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_ImFontPtr_resizeT(ImVector_ImFontPtr* self,int new_size,ImFont* const v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_ImVec4_resizeT(ImVector_ImVec4* self,int new_size,const ImVec4 v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_ImDrawCmd_resizeT(ImVector_ImDrawCmd* self,int new_size,const ImDrawCmd v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_ImDrawIdx_resizeT(ImVector_ImDrawIdx* self,int new_size,const ImDrawIdx v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_ImVec2_resizeT(ImVector_ImVec2* self,int new_size,const ImVec2 v) +{ + return self->resize(new_size,v); +} +CIMGUI_API void ImVector_float_reserve(ImVector_float* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_ImWchar_reserve(ImVector_ImWchar* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_ImFontConfig_reserve(ImVector_ImFontConfig* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_ImFontGlyph_reserve(ImVector_ImFontGlyph* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_TextRange_reserve(ImVector_TextRange* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_CustomRect_reserve(ImVector_CustomRect* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_ImDrawChannel_reserve(ImVector_ImDrawChannel* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_char_reserve(ImVector_char* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_ImTextureID_reserve(ImVector_ImTextureID* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_ImDrawVert_reserve(ImVector_ImDrawVert* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_int_reserve(ImVector_int* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_Pair_reserve(ImVector_Pair* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_ImFontPtr_reserve(ImVector_ImFontPtr* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_ImVec4_reserve(ImVector_ImVec4* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_ImDrawCmd_reserve(ImVector_ImDrawCmd* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_ImDrawIdx_reserve(ImVector_ImDrawIdx* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_ImVec2_reserve(ImVector_ImVec2* self,int new_capacity) +{ + return self->reserve(new_capacity); +} +CIMGUI_API void ImVector_float_push_back(ImVector_float* self,const float v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_ImWchar_push_back(ImVector_ImWchar* self,const ImWchar v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_ImFontConfig_push_back(ImVector_ImFontConfig* self,const ImFontConfig v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_ImFontGlyph_push_back(ImVector_ImFontGlyph* self,const ImFontGlyph v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_TextRange_push_back(ImVector_TextRange* self,const TextRange v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_CustomRect_push_back(ImVector_CustomRect* self,const CustomRect v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_ImDrawChannel_push_back(ImVector_ImDrawChannel* self,const ImDrawChannel v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_char_push_back(ImVector_char* self,const char v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_ImTextureID_push_back(ImVector_ImTextureID* self,const ImTextureID v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_ImDrawVert_push_back(ImVector_ImDrawVert* self,const ImDrawVert v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_int_push_back(ImVector_int* self,const int v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_Pair_push_back(ImVector_Pair* self,const Pair v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_ImFontPtr_push_back(ImVector_ImFontPtr* self,ImFont* const v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_ImVec4_push_back(ImVector_ImVec4* self,const ImVec4 v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_ImDrawCmd_push_back(ImVector_ImDrawCmd* self,const ImDrawCmd v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_ImDrawIdx_push_back(ImVector_ImDrawIdx* self,const ImDrawIdx v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_ImVec2_push_back(ImVector_ImVec2* self,const ImVec2 v) +{ + return self->push_back(v); +} +CIMGUI_API void ImVector_float_pop_back(ImVector_float* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_ImWchar_pop_back(ImVector_ImWchar* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_ImFontConfig_pop_back(ImVector_ImFontConfig* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_ImFontGlyph_pop_back(ImVector_ImFontGlyph* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_TextRange_pop_back(ImVector_TextRange* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_CustomRect_pop_back(ImVector_CustomRect* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_ImDrawChannel_pop_back(ImVector_ImDrawChannel* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_char_pop_back(ImVector_char* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_ImTextureID_pop_back(ImVector_ImTextureID* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_ImDrawVert_pop_back(ImVector_ImDrawVert* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_int_pop_back(ImVector_int* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_Pair_pop_back(ImVector_Pair* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_ImFontPtr_pop_back(ImVector_ImFontPtr* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_ImVec4_pop_back(ImVector_ImVec4* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_ImDrawCmd_pop_back(ImVector_ImDrawCmd* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_ImDrawIdx_pop_back(ImVector_ImDrawIdx* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_ImVec2_pop_back(ImVector_ImVec2* self) +{ + return self->pop_back(); +} +CIMGUI_API void ImVector_float_push_front(ImVector_float* self,const float v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_ImWchar_push_front(ImVector_ImWchar* self,const ImWchar v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_ImFontConfig_push_front(ImVector_ImFontConfig* self,const ImFontConfig v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_ImFontGlyph_push_front(ImVector_ImFontGlyph* self,const ImFontGlyph v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_TextRange_push_front(ImVector_TextRange* self,const TextRange v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_CustomRect_push_front(ImVector_CustomRect* self,const CustomRect v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_ImDrawChannel_push_front(ImVector_ImDrawChannel* self,const ImDrawChannel v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_char_push_front(ImVector_char* self,const char v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_ImTextureID_push_front(ImVector_ImTextureID* self,const ImTextureID v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_ImDrawVert_push_front(ImVector_ImDrawVert* self,const ImDrawVert v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_int_push_front(ImVector_int* self,const int v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_Pair_push_front(ImVector_Pair* self,const Pair v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_ImFontPtr_push_front(ImVector_ImFontPtr* self,ImFont* const v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_ImVec4_push_front(ImVector_ImVec4* self,const ImVec4 v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_ImDrawCmd_push_front(ImVector_ImDrawCmd* self,const ImDrawCmd v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_ImDrawIdx_push_front(ImVector_ImDrawIdx* self,const ImDrawIdx v) +{ + return self->push_front(v); +} +CIMGUI_API void ImVector_ImVec2_push_front(ImVector_ImVec2* self,const ImVec2 v) +{ + return self->push_front(v); +} +CIMGUI_API float* ImVector_float_erase(ImVector_float* self,float const * it) +{ + return self->erase(it); +} +CIMGUI_API ImWchar* ImVector_ImWchar_erase(ImVector_ImWchar* self,ImWchar const * it) +{ + return self->erase(it); +} +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_erase(ImVector_ImFontConfig* self,ImFontConfig const * it) +{ + return self->erase(it); +} +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_erase(ImVector_ImFontGlyph* self,ImFontGlyph const * it) +{ + return self->erase(it); +} +CIMGUI_API TextRange* ImVector_TextRange_erase(ImVector_TextRange* self,TextRange const * it) +{ + return self->erase(it); +} +CIMGUI_API CustomRect* ImVector_CustomRect_erase(ImVector_CustomRect* self,CustomRect const * it) +{ + return self->erase(it); +} +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_erase(ImVector_ImDrawChannel* self,ImDrawChannel const * it) +{ + return self->erase(it); +} +CIMGUI_API char* ImVector_char_erase(ImVector_char* self,char const * it) +{ + return self->erase(it); +} +CIMGUI_API ImTextureID* ImVector_ImTextureID_erase(ImVector_ImTextureID* self,ImTextureID const * it) +{ + return self->erase(it); +} +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_erase(ImVector_ImDrawVert* self,ImDrawVert const * it) +{ + return self->erase(it); +} +CIMGUI_API int* ImVector_int_erase(ImVector_int* self,int const * it) +{ + return self->erase(it); +} +CIMGUI_API Pair* ImVector_Pair_erase(ImVector_Pair* self,Pair const * it) +{ + return self->erase(it); +} +CIMGUI_API ImFont** ImVector_ImFontPtr_erase(ImVector_ImFontPtr* self,ImFont* const * it) +{ + return self->erase(it); +} +CIMGUI_API ImVec4* ImVector_ImVec4_erase(ImVector_ImVec4* self,ImVec4 const * it) +{ + return self->erase(it); +} +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_erase(ImVector_ImDrawCmd* self,ImDrawCmd const * it) +{ + return self->erase(it); +} +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_erase(ImVector_ImDrawIdx* self,ImDrawIdx const * it) +{ + return self->erase(it); +} +CIMGUI_API ImVec2* ImVector_ImVec2_erase(ImVector_ImVec2* self,ImVec2 const * it) +{ + return self->erase(it); +} +CIMGUI_API float* ImVector_float_eraseTPtr(ImVector_float* self,float const * it,float const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API ImWchar* ImVector_ImWchar_eraseTPtr(ImVector_ImWchar* self,ImWchar const * it,ImWchar const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_eraseTPtr(ImVector_ImFontConfig* self,ImFontConfig const * it,ImFontConfig const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_eraseTPtr(ImVector_ImFontGlyph* self,ImFontGlyph const * it,ImFontGlyph const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API TextRange* ImVector_TextRange_eraseTPtr(ImVector_TextRange* self,TextRange const * it,TextRange const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API CustomRect* ImVector_CustomRect_eraseTPtr(ImVector_CustomRect* self,CustomRect const * it,CustomRect const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_eraseTPtr(ImVector_ImDrawChannel* self,ImDrawChannel const * it,ImDrawChannel const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API char* ImVector_char_eraseTPtr(ImVector_char* self,char const * it,char const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API ImTextureID* ImVector_ImTextureID_eraseTPtr(ImVector_ImTextureID* self,ImTextureID const * it,ImTextureID const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_eraseTPtr(ImVector_ImDrawVert* self,ImDrawVert const * it,ImDrawVert const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API int* ImVector_int_eraseTPtr(ImVector_int* self,int const * it,int const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API Pair* ImVector_Pair_eraseTPtr(ImVector_Pair* self,Pair const * it,Pair const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API ImFont** ImVector_ImFontPtr_eraseTPtr(ImVector_ImFontPtr* self,ImFont* const * it,ImFont* const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API ImVec4* ImVector_ImVec4_eraseTPtr(ImVector_ImVec4* self,ImVec4 const * it,ImVec4 const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_eraseTPtr(ImVector_ImDrawCmd* self,ImDrawCmd const * it,ImDrawCmd const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_eraseTPtr(ImVector_ImDrawIdx* self,ImDrawIdx const * it,ImDrawIdx const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API ImVec2* ImVector_ImVec2_eraseTPtr(ImVector_ImVec2* self,ImVec2 const * it,ImVec2 const * it_last) +{ + return self->erase(it,it_last); +} +CIMGUI_API float* ImVector_float_erase_unsorted(ImVector_float* self,float const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API ImWchar* ImVector_ImWchar_erase_unsorted(ImVector_ImWchar* self,ImWchar const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_erase_unsorted(ImVector_ImFontConfig* self,ImFontConfig const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_erase_unsorted(ImVector_ImFontGlyph* self,ImFontGlyph const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API TextRange* ImVector_TextRange_erase_unsorted(ImVector_TextRange* self,TextRange const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API CustomRect* ImVector_CustomRect_erase_unsorted(ImVector_CustomRect* self,CustomRect const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_erase_unsorted(ImVector_ImDrawChannel* self,ImDrawChannel const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API char* ImVector_char_erase_unsorted(ImVector_char* self,char const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API ImTextureID* ImVector_ImTextureID_erase_unsorted(ImVector_ImTextureID* self,ImTextureID const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_erase_unsorted(ImVector_ImDrawVert* self,ImDrawVert const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API int* ImVector_int_erase_unsorted(ImVector_int* self,int const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API Pair* ImVector_Pair_erase_unsorted(ImVector_Pair* self,Pair const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API ImFont** ImVector_ImFontPtr_erase_unsorted(ImVector_ImFontPtr* self,ImFont* const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API ImVec4* ImVector_ImVec4_erase_unsorted(ImVector_ImVec4* self,ImVec4 const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_erase_unsorted(ImVector_ImDrawCmd* self,ImDrawCmd const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_erase_unsorted(ImVector_ImDrawIdx* self,ImDrawIdx const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API ImVec2* ImVector_ImVec2_erase_unsorted(ImVector_ImVec2* self,ImVec2 const * it) +{ + return self->erase_unsorted(it); +} +CIMGUI_API float* ImVector_float_insert(ImVector_float* self,float const * it,const float v) +{ + return self->insert(it,v); +} +CIMGUI_API ImWchar* ImVector_ImWchar_insert(ImVector_ImWchar* self,ImWchar const * it,const ImWchar v) +{ + return self->insert(it,v); +} +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_insert(ImVector_ImFontConfig* self,ImFontConfig const * it,const ImFontConfig v) +{ + return self->insert(it,v); +} +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_insert(ImVector_ImFontGlyph* self,ImFontGlyph const * it,const ImFontGlyph v) +{ + return self->insert(it,v); +} +CIMGUI_API TextRange* ImVector_TextRange_insert(ImVector_TextRange* self,TextRange const * it,const TextRange v) +{ + return self->insert(it,v); +} +CIMGUI_API CustomRect* ImVector_CustomRect_insert(ImVector_CustomRect* self,CustomRect const * it,const CustomRect v) +{ + return self->insert(it,v); +} +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_insert(ImVector_ImDrawChannel* self,ImDrawChannel const * it,const ImDrawChannel v) +{ + return self->insert(it,v); +} +CIMGUI_API char* ImVector_char_insert(ImVector_char* self,char const * it,const char v) +{ + return self->insert(it,v); +} +CIMGUI_API ImTextureID* ImVector_ImTextureID_insert(ImVector_ImTextureID* self,ImTextureID const * it,const ImTextureID v) +{ + return self->insert(it,v); +} +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_insert(ImVector_ImDrawVert* self,ImDrawVert const * it,const ImDrawVert v) +{ + return self->insert(it,v); +} +CIMGUI_API int* ImVector_int_insert(ImVector_int* self,int const * it,const int v) +{ + return self->insert(it,v); +} +CIMGUI_API Pair* ImVector_Pair_insert(ImVector_Pair* self,Pair const * it,const Pair v) +{ + return self->insert(it,v); +} +CIMGUI_API ImFont** ImVector_ImFontPtr_insert(ImVector_ImFontPtr* self,ImFont* const * it,ImFont* const v) +{ + return self->insert(it,v); +} +CIMGUI_API ImVec4* ImVector_ImVec4_insert(ImVector_ImVec4* self,ImVec4 const * it,const ImVec4 v) +{ + return self->insert(it,v); +} +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_insert(ImVector_ImDrawCmd* self,ImDrawCmd const * it,const ImDrawCmd v) +{ + return self->insert(it,v); +} +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_insert(ImVector_ImDrawIdx* self,ImDrawIdx const * it,const ImDrawIdx v) +{ + return self->insert(it,v); +} +CIMGUI_API ImVec2* ImVector_ImVec2_insert(ImVector_ImVec2* self,ImVec2 const * it,const ImVec2 v) +{ + return self->insert(it,v); +} +CIMGUI_API bool ImVector_float_contains(const ImVector_float* self,const float v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_ImWchar_contains(const ImVector_ImWchar* self,const ImWchar v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_ImFontConfig_contains(const ImVector_ImFontConfig* self,const ImFontConfig v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_ImFontGlyph_contains(const ImVector_ImFontGlyph* self,const ImFontGlyph v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_TextRange_contains(const ImVector_TextRange* self,const TextRange v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_CustomRect_contains(const ImVector_CustomRect* self,const CustomRect v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_ImDrawChannel_contains(const ImVector_ImDrawChannel* self,const ImDrawChannel v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_char_contains(const ImVector_char* self,const char v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_ImTextureID_contains(const ImVector_ImTextureID* self,const ImTextureID v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_ImDrawVert_contains(const ImVector_ImDrawVert* self,const ImDrawVert v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_int_contains(const ImVector_int* self,const int v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_Pair_contains(const ImVector_Pair* self,const Pair v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_ImFontPtr_contains(const ImVector_ImFontPtr* self,ImFont* const v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_ImVec4_contains(const ImVector_ImVec4* self,const ImVec4 v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_ImDrawCmd_contains(const ImVector_ImDrawCmd* self,const ImDrawCmd v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_ImDrawIdx_contains(const ImVector_ImDrawIdx* self,const ImDrawIdx v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_ImVec2_contains(const ImVector_ImVec2* self,const ImVec2 v) +{ + return self->contains(v); +} +CIMGUI_API int ImVector_float_index_from_ptr(const ImVector_float* self,float const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_ImWchar_index_from_ptr(const ImVector_ImWchar* self,ImWchar const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_ImFontConfig_index_from_ptr(const ImVector_ImFontConfig* self,ImFontConfig const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_ImFontGlyph_index_from_ptr(const ImVector_ImFontGlyph* self,ImFontGlyph const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_TextRange_index_from_ptr(const ImVector_TextRange* self,TextRange const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_CustomRect_index_from_ptr(const ImVector_CustomRect* self,CustomRect const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_ImDrawChannel_index_from_ptr(const ImVector_ImDrawChannel* self,ImDrawChannel const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_char_index_from_ptr(const ImVector_char* self,char const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_ImTextureID_index_from_ptr(const ImVector_ImTextureID* self,ImTextureID const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_ImDrawVert_index_from_ptr(const ImVector_ImDrawVert* self,ImDrawVert const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_int_index_from_ptr(const ImVector_int* self,int const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_Pair_index_from_ptr(const ImVector_Pair* self,Pair const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_ImFontPtr_index_from_ptr(const ImVector_ImFontPtr* self,ImFont* const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_ImVec4_index_from_ptr(const ImVector_ImVec4* self,ImVec4 const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_ImDrawCmd_index_from_ptr(const ImVector_ImDrawCmd* self,ImDrawCmd const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_ImDrawIdx_index_from_ptr(const ImVector_ImDrawIdx* self,ImDrawIdx const * it) +{ + return self->index_from_ptr(it); +} +CIMGUI_API int ImVector_ImVec2_index_from_ptr(const ImVector_ImVec2* self,ImVec2 const * it) +{ + return self->index_from_ptr(it); +} @@ -2474,10 +4510,7 @@ CIMGUI_API ImVector_ImWchar* ImVector_ImWchar_create() { return IM_NEW(ImVector) (); } -CIMGUI_API void ImVector_ImWchar_destroy(ImVector_ImWchar* p) -{ - IM_DELETE(p); -} + CIMGUI_API void ImVector_ImWchar_Init(ImVector_ImWchar* p) { IM_PLACEMENT_NEW(p) ImVector(); diff --git a/generator/output/cimgui.h b/generator/output/cimgui.h index 1bd09fc..895ea05 100644 --- a/generator/output/cimgui.h +++ b/generator/output/cimgui.h @@ -1252,7 +1252,6 @@ CIMGUI_API const char* igSaveIniSettingsToMemory(size_t* out_ini_size); CIMGUI_API void igSetAllocatorFunctions(void*(*alloc_func)(size_t sz,void* user_data),void(*free_func)(void* ptr,void* user_data),void* user_data); CIMGUI_API void* igMemAlloc(size_t size); CIMGUI_API void igMemFree(void* ptr); -CIMGUI_API void ImVector_destroy(ImVector* self); CIMGUI_API ImGuiStyle* ImGuiStyle_ImGuiStyle(void); CIMGUI_API void ImGuiStyle_destroy(ImGuiStyle* self); CIMGUI_API void ImGuiStyle_ScaleAllSizes(ImGuiStyle* self,float scale_factor); @@ -1493,6 +1492,516 @@ CIMGUI_API void ImDrawList_GetClipRectMax_nonUDT(ImVec2 *pOut,ImDrawList* self); CIMGUI_API ImVec2_Simple ImDrawList_GetClipRectMax_nonUDT2(ImDrawList* self); CIMGUI_API void ImFont_CalcTextSizeA_nonUDT(ImVec2 *pOut,ImFont* self,float size,float max_width,float wrap_width,const char* text_begin,const char* text_end,const char** remaining); CIMGUI_API ImVec2_Simple ImFont_CalcTextSizeA_nonUDT2(ImFont* self,float size,float max_width,float wrap_width,const char* text_begin,const char* text_end,const char** remaining); +CIMGUI_API ImVector_float* ImVector_float_ImVector_float(void); +CIMGUI_API void ImVector_float_destroy(ImVector_float* self); +CIMGUI_API ImVector_ImWchar* ImVector_ImWchar_ImVector_ImWchar(void); +CIMGUI_API void ImVector_ImWchar_destroy(ImVector_ImWchar* self); +CIMGUI_API ImVector_ImFontConfig* ImVector_ImFontConfig_ImVector_ImFontConfig(void); +CIMGUI_API void ImVector_ImFontConfig_destroy(ImVector_ImFontConfig* self); +CIMGUI_API ImVector_ImFontGlyph* ImVector_ImFontGlyph_ImVector_ImFontGlyph(void); +CIMGUI_API void ImVector_ImFontGlyph_destroy(ImVector_ImFontGlyph* self); +CIMGUI_API ImVector_TextRange* ImVector_TextRange_ImVector_TextRange(void); +CIMGUI_API void ImVector_TextRange_destroy(ImVector_TextRange* self); +CIMGUI_API ImVector_CustomRect* ImVector_CustomRect_ImVector_CustomRect(void); +CIMGUI_API void ImVector_CustomRect_destroy(ImVector_CustomRect* self); +CIMGUI_API ImVector_ImDrawChannel* ImVector_ImDrawChannel_ImVector_ImDrawChannel(void); +CIMGUI_API void ImVector_ImDrawChannel_destroy(ImVector_ImDrawChannel* self); +CIMGUI_API ImVector_char* ImVector_char_ImVector_char(void); +CIMGUI_API void ImVector_char_destroy(ImVector_char* self); +CIMGUI_API ImVector_ImTextureID* ImVector_ImTextureID_ImVector_ImTextureID(void); +CIMGUI_API void ImVector_ImTextureID_destroy(ImVector_ImTextureID* self); +CIMGUI_API ImVector_ImDrawVert* ImVector_ImDrawVert_ImVector_ImDrawVert(void); +CIMGUI_API void ImVector_ImDrawVert_destroy(ImVector_ImDrawVert* self); +CIMGUI_API ImVector_int* ImVector_int_ImVector_int(void); +CIMGUI_API void ImVector_int_destroy(ImVector_int* self); +CIMGUI_API ImVector_Pair* ImVector_Pair_ImVector_Pair(void); +CIMGUI_API void ImVector_Pair_destroy(ImVector_Pair* self); +CIMGUI_API ImVector_ImFontPtr* ImVector_ImFontPtr_ImVector_ImFontPtr(void); +CIMGUI_API void ImVector_ImFontPtr_destroy(ImVector_ImFontPtr* self); +CIMGUI_API ImVector_ImVec4* ImVector_ImVec4_ImVector_ImVec4(void); +CIMGUI_API void ImVector_ImVec4_destroy(ImVector_ImVec4* self); +CIMGUI_API ImVector_ImDrawCmd* ImVector_ImDrawCmd_ImVector_ImDrawCmd(void); +CIMGUI_API void ImVector_ImDrawCmd_destroy(ImVector_ImDrawCmd* self); +CIMGUI_API ImVector_ImDrawIdx* ImVector_ImDrawIdx_ImVector_ImDrawIdx(void); +CIMGUI_API void ImVector_ImDrawIdx_destroy(ImVector_ImDrawIdx* self); +CIMGUI_API ImVector_ImVec2* ImVector_ImVec2_ImVector_ImVec2(void); +CIMGUI_API void ImVector_ImVec2_destroy(ImVector_ImVec2* self); +CIMGUI_API ImVector_float* ImVector_float_ImVector_floatVector(const ImVector_float src); +CIMGUI_API ImVector_ImWchar* ImVector_ImWchar_ImVector_ImWcharVector(const ImVector_ImWchar src); +CIMGUI_API ImVector_ImFontConfig* ImVector_ImFontConfig_ImVector_ImFontConfigVector(const ImVector_ImFontConfig src); +CIMGUI_API ImVector_ImFontGlyph* ImVector_ImFontGlyph_ImVector_ImFontGlyphVector(const ImVector_ImFontGlyph src); +CIMGUI_API ImVector_TextRange* ImVector_TextRange_ImVector_TextRangeVector(const ImVector_TextRange src); +CIMGUI_API ImVector_CustomRect* ImVector_CustomRect_ImVector_CustomRectVector(const ImVector_CustomRect src); +CIMGUI_API ImVector_ImDrawChannel* ImVector_ImDrawChannel_ImVector_ImDrawChannelVector(const ImVector_ImDrawChannel src); +CIMGUI_API ImVector_char* ImVector_char_ImVector_charVector(const ImVector_char src); +CIMGUI_API ImVector_ImTextureID* ImVector_ImTextureID_ImVector_ImTextureIDVector(const ImVector_ImTextureID src); +CIMGUI_API ImVector_ImDrawVert* ImVector_ImDrawVert_ImVector_ImDrawVertVector(const ImVector_ImDrawVert src); +CIMGUI_API ImVector_int* ImVector_int_ImVector_intVector(const ImVector_int src); +CIMGUI_API ImVector_Pair* ImVector_Pair_ImVector_PairVector(const ImVector_Pair src); +CIMGUI_API ImVector_ImFontPtr* ImVector_ImFontPtr_ImVector_ImFontPtrVector(const ImVector_ImFontPtr src); +CIMGUI_API ImVector_ImVec4* ImVector_ImVec4_ImVector_ImVec4Vector(const ImVector_ImVec4 src); +CIMGUI_API ImVector_ImDrawCmd* ImVector_ImDrawCmd_ImVector_ImDrawCmdVector(const ImVector_ImDrawCmd src); +CIMGUI_API ImVector_ImDrawIdx* ImVector_ImDrawIdx_ImVector_ImDrawIdxVector(const ImVector_ImDrawIdx src); +CIMGUI_API ImVector_ImVec2* ImVector_ImVec2_ImVector_ImVec2Vector(const ImVector_ImVec2 src); +CIMGUI_API bool ImVector_float_empty(const ImVector_float* self); +CIMGUI_API bool ImVector_ImWchar_empty(const ImVector_ImWchar* self); +CIMGUI_API bool ImVector_ImFontConfig_empty(const ImVector_ImFontConfig* self); +CIMGUI_API bool ImVector_ImFontGlyph_empty(const ImVector_ImFontGlyph* self); +CIMGUI_API bool ImVector_TextRange_empty(const ImVector_TextRange* self); +CIMGUI_API bool ImVector_CustomRect_empty(const ImVector_CustomRect* self); +CIMGUI_API bool ImVector_ImDrawChannel_empty(const ImVector_ImDrawChannel* self); +CIMGUI_API bool ImVector_char_empty(const ImVector_char* self); +CIMGUI_API bool ImVector_ImTextureID_empty(const ImVector_ImTextureID* self); +CIMGUI_API bool ImVector_ImDrawVert_empty(const ImVector_ImDrawVert* self); +CIMGUI_API bool ImVector_int_empty(const ImVector_int* self); +CIMGUI_API bool ImVector_Pair_empty(const ImVector_Pair* self); +CIMGUI_API bool ImVector_ImFontPtr_empty(const ImVector_ImFontPtr* self); +CIMGUI_API bool ImVector_ImVec4_empty(const ImVector_ImVec4* self); +CIMGUI_API bool ImVector_ImDrawCmd_empty(const ImVector_ImDrawCmd* self); +CIMGUI_API bool ImVector_ImDrawIdx_empty(const ImVector_ImDrawIdx* self); +CIMGUI_API bool ImVector_ImVec2_empty(const ImVector_ImVec2* self); +CIMGUI_API int ImVector_float_size(const ImVector_float* self); +CIMGUI_API int ImVector_ImWchar_size(const ImVector_ImWchar* self); +CIMGUI_API int ImVector_ImFontConfig_size(const ImVector_ImFontConfig* self); +CIMGUI_API int ImVector_ImFontGlyph_size(const ImVector_ImFontGlyph* self); +CIMGUI_API int ImVector_TextRange_size(const ImVector_TextRange* self); +CIMGUI_API int ImVector_CustomRect_size(const ImVector_CustomRect* self); +CIMGUI_API int ImVector_ImDrawChannel_size(const ImVector_ImDrawChannel* self); +CIMGUI_API int ImVector_char_size(const ImVector_char* self); +CIMGUI_API int ImVector_ImTextureID_size(const ImVector_ImTextureID* self); +CIMGUI_API int ImVector_ImDrawVert_size(const ImVector_ImDrawVert* self); +CIMGUI_API int ImVector_int_size(const ImVector_int* self); +CIMGUI_API int ImVector_Pair_size(const ImVector_Pair* self); +CIMGUI_API int ImVector_ImFontPtr_size(const ImVector_ImFontPtr* self); +CIMGUI_API int ImVector_ImVec4_size(const ImVector_ImVec4* self); +CIMGUI_API int ImVector_ImDrawCmd_size(const ImVector_ImDrawCmd* self); +CIMGUI_API int ImVector_ImDrawIdx_size(const ImVector_ImDrawIdx* self); +CIMGUI_API int ImVector_ImVec2_size(const ImVector_ImVec2* self); +CIMGUI_API int ImVector_float_size_in_bytes(const ImVector_float* self); +CIMGUI_API int ImVector_ImWchar_size_in_bytes(const ImVector_ImWchar* self); +CIMGUI_API int ImVector_ImFontConfig_size_in_bytes(const ImVector_ImFontConfig* self); +CIMGUI_API int ImVector_ImFontGlyph_size_in_bytes(const ImVector_ImFontGlyph* self); +CIMGUI_API int ImVector_TextRange_size_in_bytes(const ImVector_TextRange* self); +CIMGUI_API int ImVector_CustomRect_size_in_bytes(const ImVector_CustomRect* self); +CIMGUI_API int ImVector_ImDrawChannel_size_in_bytes(const ImVector_ImDrawChannel* self); +CIMGUI_API int ImVector_char_size_in_bytes(const ImVector_char* self); +CIMGUI_API int ImVector_ImTextureID_size_in_bytes(const ImVector_ImTextureID* self); +CIMGUI_API int ImVector_ImDrawVert_size_in_bytes(const ImVector_ImDrawVert* self); +CIMGUI_API int ImVector_int_size_in_bytes(const ImVector_int* self); +CIMGUI_API int ImVector_Pair_size_in_bytes(const ImVector_Pair* self); +CIMGUI_API int ImVector_ImFontPtr_size_in_bytes(const ImVector_ImFontPtr* self); +CIMGUI_API int ImVector_ImVec4_size_in_bytes(const ImVector_ImVec4* self); +CIMGUI_API int ImVector_ImDrawCmd_size_in_bytes(const ImVector_ImDrawCmd* self); +CIMGUI_API int ImVector_ImDrawIdx_size_in_bytes(const ImVector_ImDrawIdx* self); +CIMGUI_API int ImVector_ImVec2_size_in_bytes(const ImVector_ImVec2* self); +CIMGUI_API int ImVector_float_capacity(const ImVector_float* self); +CIMGUI_API int ImVector_ImWchar_capacity(const ImVector_ImWchar* self); +CIMGUI_API int ImVector_ImFontConfig_capacity(const ImVector_ImFontConfig* self); +CIMGUI_API int ImVector_ImFontGlyph_capacity(const ImVector_ImFontGlyph* self); +CIMGUI_API int ImVector_TextRange_capacity(const ImVector_TextRange* self); +CIMGUI_API int ImVector_CustomRect_capacity(const ImVector_CustomRect* self); +CIMGUI_API int ImVector_ImDrawChannel_capacity(const ImVector_ImDrawChannel* self); +CIMGUI_API int ImVector_char_capacity(const ImVector_char* self); +CIMGUI_API int ImVector_ImTextureID_capacity(const ImVector_ImTextureID* self); +CIMGUI_API int ImVector_ImDrawVert_capacity(const ImVector_ImDrawVert* self); +CIMGUI_API int ImVector_int_capacity(const ImVector_int* self); +CIMGUI_API int ImVector_Pair_capacity(const ImVector_Pair* self); +CIMGUI_API int ImVector_ImFontPtr_capacity(const ImVector_ImFontPtr* self); +CIMGUI_API int ImVector_ImVec4_capacity(const ImVector_ImVec4* self); +CIMGUI_API int ImVector_ImDrawCmd_capacity(const ImVector_ImDrawCmd* self); +CIMGUI_API int ImVector_ImDrawIdx_capacity(const ImVector_ImDrawIdx* self); +CIMGUI_API int ImVector_ImVec2_capacity(const ImVector_ImVec2* self); +CIMGUI_API void ImVector_float_clear(ImVector_float* self); +CIMGUI_API void ImVector_ImWchar_clear(ImVector_ImWchar* self); +CIMGUI_API void ImVector_ImFontConfig_clear(ImVector_ImFontConfig* self); +CIMGUI_API void ImVector_ImFontGlyph_clear(ImVector_ImFontGlyph* self); +CIMGUI_API void ImVector_TextRange_clear(ImVector_TextRange* self); +CIMGUI_API void ImVector_CustomRect_clear(ImVector_CustomRect* self); +CIMGUI_API void ImVector_ImDrawChannel_clear(ImVector_ImDrawChannel* self); +CIMGUI_API void ImVector_char_clear(ImVector_char* self); +CIMGUI_API void ImVector_ImTextureID_clear(ImVector_ImTextureID* self); +CIMGUI_API void ImVector_ImDrawVert_clear(ImVector_ImDrawVert* self); +CIMGUI_API void ImVector_int_clear(ImVector_int* self); +CIMGUI_API void ImVector_Pair_clear(ImVector_Pair* self); +CIMGUI_API void ImVector_ImFontPtr_clear(ImVector_ImFontPtr* self); +CIMGUI_API void ImVector_ImVec4_clear(ImVector_ImVec4* self); +CIMGUI_API void ImVector_ImDrawCmd_clear(ImVector_ImDrawCmd* self); +CIMGUI_API void ImVector_ImDrawIdx_clear(ImVector_ImDrawIdx* self); +CIMGUI_API void ImVector_ImVec2_clear(ImVector_ImVec2* self); +CIMGUI_API float* ImVector_float_begin(ImVector_float* self); +CIMGUI_API ImWchar* ImVector_ImWchar_begin(ImVector_ImWchar* self); +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_begin(ImVector_ImFontConfig* self); +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_begin(ImVector_ImFontGlyph* self); +CIMGUI_API TextRange* ImVector_TextRange_begin(ImVector_TextRange* self); +CIMGUI_API CustomRect* ImVector_CustomRect_begin(ImVector_CustomRect* self); +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_begin(ImVector_ImDrawChannel* self); +CIMGUI_API char* ImVector_char_begin(ImVector_char* self); +CIMGUI_API ImTextureID* ImVector_ImTextureID_begin(ImVector_ImTextureID* self); +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_begin(ImVector_ImDrawVert* self); +CIMGUI_API int* ImVector_int_begin(ImVector_int* self); +CIMGUI_API Pair* ImVector_Pair_begin(ImVector_Pair* self); +CIMGUI_API ImFont** ImVector_ImFontPtr_begin(ImVector_ImFontPtr* self); +CIMGUI_API ImVec4* ImVector_ImVec4_begin(ImVector_ImVec4* self); +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_begin(ImVector_ImDrawCmd* self); +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_begin(ImVector_ImDrawIdx* self); +CIMGUI_API ImVec2* ImVector_ImVec2_begin(ImVector_ImVec2* self); +CIMGUI_API float const * ImVector_float_begin_const(const ImVector_float* self); +CIMGUI_API ImWchar const * ImVector_ImWchar_begin_const(const ImVector_ImWchar* self); +CIMGUI_API ImFontConfig const * ImVector_ImFontConfig_begin_const(const ImVector_ImFontConfig* self); +CIMGUI_API ImFontGlyph const * ImVector_ImFontGlyph_begin_const(const ImVector_ImFontGlyph* self); +CIMGUI_API TextRange const * ImVector_TextRange_begin_const(const ImVector_TextRange* self); +CIMGUI_API CustomRect const * ImVector_CustomRect_begin_const(const ImVector_CustomRect* self); +CIMGUI_API ImDrawChannel const * ImVector_ImDrawChannel_begin_const(const ImVector_ImDrawChannel* self); +CIMGUI_API char const * ImVector_char_begin_const(const ImVector_char* self); +CIMGUI_API ImTextureID const * ImVector_ImTextureID_begin_const(const ImVector_ImTextureID* self); +CIMGUI_API ImDrawVert const * ImVector_ImDrawVert_begin_const(const ImVector_ImDrawVert* self); +CIMGUI_API int const * ImVector_int_begin_const(const ImVector_int* self); +CIMGUI_API Pair const * ImVector_Pair_begin_const(const ImVector_Pair* self); +CIMGUI_API ImFont* const * ImVector_ImFontPtr_begin_const(const ImVector_ImFontPtr* self); +CIMGUI_API ImVec4 const * ImVector_ImVec4_begin_const(const ImVector_ImVec4* self); +CIMGUI_API ImDrawCmd const * ImVector_ImDrawCmd_begin_const(const ImVector_ImDrawCmd* self); +CIMGUI_API ImDrawIdx const * ImVector_ImDrawIdx_begin_const(const ImVector_ImDrawIdx* self); +CIMGUI_API ImVec2 const * ImVector_ImVec2_begin_const(const ImVector_ImVec2* self); +CIMGUI_API float* ImVector_float_end(ImVector_float* self); +CIMGUI_API ImWchar* ImVector_ImWchar_end(ImVector_ImWchar* self); +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_end(ImVector_ImFontConfig* self); +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_end(ImVector_ImFontGlyph* self); +CIMGUI_API TextRange* ImVector_TextRange_end(ImVector_TextRange* self); +CIMGUI_API CustomRect* ImVector_CustomRect_end(ImVector_CustomRect* self); +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_end(ImVector_ImDrawChannel* self); +CIMGUI_API char* ImVector_char_end(ImVector_char* self); +CIMGUI_API ImTextureID* ImVector_ImTextureID_end(ImVector_ImTextureID* self); +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_end(ImVector_ImDrawVert* self); +CIMGUI_API int* ImVector_int_end(ImVector_int* self); +CIMGUI_API Pair* ImVector_Pair_end(ImVector_Pair* self); +CIMGUI_API ImFont** ImVector_ImFontPtr_end(ImVector_ImFontPtr* self); +CIMGUI_API ImVec4* ImVector_ImVec4_end(ImVector_ImVec4* self); +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_end(ImVector_ImDrawCmd* self); +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_end(ImVector_ImDrawIdx* self); +CIMGUI_API ImVec2* ImVector_ImVec2_end(ImVector_ImVec2* self); +CIMGUI_API float const * ImVector_float_end_const(const ImVector_float* self); +CIMGUI_API ImWchar const * ImVector_ImWchar_end_const(const ImVector_ImWchar* self); +CIMGUI_API ImFontConfig const * ImVector_ImFontConfig_end_const(const ImVector_ImFontConfig* self); +CIMGUI_API ImFontGlyph const * ImVector_ImFontGlyph_end_const(const ImVector_ImFontGlyph* self); +CIMGUI_API TextRange const * ImVector_TextRange_end_const(const ImVector_TextRange* self); +CIMGUI_API CustomRect const * ImVector_CustomRect_end_const(const ImVector_CustomRect* self); +CIMGUI_API ImDrawChannel const * ImVector_ImDrawChannel_end_const(const ImVector_ImDrawChannel* self); +CIMGUI_API char const * ImVector_char_end_const(const ImVector_char* self); +CIMGUI_API ImTextureID const * ImVector_ImTextureID_end_const(const ImVector_ImTextureID* self); +CIMGUI_API ImDrawVert const * ImVector_ImDrawVert_end_const(const ImVector_ImDrawVert* self); +CIMGUI_API int const * ImVector_int_end_const(const ImVector_int* self); +CIMGUI_API Pair const * ImVector_Pair_end_const(const ImVector_Pair* self); +CIMGUI_API ImFont* const * ImVector_ImFontPtr_end_const(const ImVector_ImFontPtr* self); +CIMGUI_API ImVec4 const * ImVector_ImVec4_end_const(const ImVector_ImVec4* self); +CIMGUI_API ImDrawCmd const * ImVector_ImDrawCmd_end_const(const ImVector_ImDrawCmd* self); +CIMGUI_API ImDrawIdx const * ImVector_ImDrawIdx_end_const(const ImVector_ImDrawIdx* self); +CIMGUI_API ImVec2 const * ImVector_ImVec2_end_const(const ImVector_ImVec2* self); +CIMGUI_API float* ImVector_float_front(ImVector_float* self); +CIMGUI_API ImWchar* ImVector_ImWchar_front(ImVector_ImWchar* self); +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_front(ImVector_ImFontConfig* self); +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_front(ImVector_ImFontGlyph* self); +CIMGUI_API TextRange* ImVector_TextRange_front(ImVector_TextRange* self); +CIMGUI_API CustomRect* ImVector_CustomRect_front(ImVector_CustomRect* self); +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_front(ImVector_ImDrawChannel* self); +CIMGUI_API char* ImVector_char_front(ImVector_char* self); +CIMGUI_API ImTextureID* ImVector_ImTextureID_front(ImVector_ImTextureID* self); +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_front(ImVector_ImDrawVert* self); +CIMGUI_API int* ImVector_int_front(ImVector_int* self); +CIMGUI_API Pair* ImVector_Pair_front(ImVector_Pair* self); +CIMGUI_API ImFont** ImVector_ImFontPtr_front(ImVector_ImFontPtr* self); +CIMGUI_API ImVec4* ImVector_ImVec4_front(ImVector_ImVec4* self); +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_front(ImVector_ImDrawCmd* self); +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_front(ImVector_ImDrawIdx* self); +CIMGUI_API ImVec2* ImVector_ImVec2_front(ImVector_ImVec2* self); +CIMGUI_API float const * ImVector_float_front_const(const ImVector_float* self); +CIMGUI_API ImWchar const * ImVector_ImWchar_front_const(const ImVector_ImWchar* self); +CIMGUI_API ImFontConfig const * ImVector_ImFontConfig_front_const(const ImVector_ImFontConfig* self); +CIMGUI_API ImFontGlyph const * ImVector_ImFontGlyph_front_const(const ImVector_ImFontGlyph* self); +CIMGUI_API TextRange const * ImVector_TextRange_front_const(const ImVector_TextRange* self); +CIMGUI_API CustomRect const * ImVector_CustomRect_front_const(const ImVector_CustomRect* self); +CIMGUI_API ImDrawChannel const * ImVector_ImDrawChannel_front_const(const ImVector_ImDrawChannel* self); +CIMGUI_API char const * ImVector_char_front_const(const ImVector_char* self); +CIMGUI_API ImTextureID const * ImVector_ImTextureID_front_const(const ImVector_ImTextureID* self); +CIMGUI_API ImDrawVert const * ImVector_ImDrawVert_front_const(const ImVector_ImDrawVert* self); +CIMGUI_API int const * ImVector_int_front_const(const ImVector_int* self); +CIMGUI_API Pair const * ImVector_Pair_front_const(const ImVector_Pair* self); +CIMGUI_API ImFont* const * ImVector_ImFontPtr_front_const(const ImVector_ImFontPtr* self); +CIMGUI_API ImVec4 const * ImVector_ImVec4_front_const(const ImVector_ImVec4* self); +CIMGUI_API ImDrawCmd const * ImVector_ImDrawCmd_front_const(const ImVector_ImDrawCmd* self); +CIMGUI_API ImDrawIdx const * ImVector_ImDrawIdx_front_const(const ImVector_ImDrawIdx* self); +CIMGUI_API ImVec2 const * ImVector_ImVec2_front_const(const ImVector_ImVec2* self); +CIMGUI_API float* ImVector_float_back(ImVector_float* self); +CIMGUI_API ImWchar* ImVector_ImWchar_back(ImVector_ImWchar* self); +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_back(ImVector_ImFontConfig* self); +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_back(ImVector_ImFontGlyph* self); +CIMGUI_API TextRange* ImVector_TextRange_back(ImVector_TextRange* self); +CIMGUI_API CustomRect* ImVector_CustomRect_back(ImVector_CustomRect* self); +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_back(ImVector_ImDrawChannel* self); +CIMGUI_API char* ImVector_char_back(ImVector_char* self); +CIMGUI_API ImTextureID* ImVector_ImTextureID_back(ImVector_ImTextureID* self); +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_back(ImVector_ImDrawVert* self); +CIMGUI_API int* ImVector_int_back(ImVector_int* self); +CIMGUI_API Pair* ImVector_Pair_back(ImVector_Pair* self); +CIMGUI_API ImFont** ImVector_ImFontPtr_back(ImVector_ImFontPtr* self); +CIMGUI_API ImVec4* ImVector_ImVec4_back(ImVector_ImVec4* self); +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_back(ImVector_ImDrawCmd* self); +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_back(ImVector_ImDrawIdx* self); +CIMGUI_API ImVec2* ImVector_ImVec2_back(ImVector_ImVec2* self); +CIMGUI_API float const * ImVector_float_back_const(const ImVector_float* self); +CIMGUI_API ImWchar const * ImVector_ImWchar_back_const(const ImVector_ImWchar* self); +CIMGUI_API ImFontConfig const * ImVector_ImFontConfig_back_const(const ImVector_ImFontConfig* self); +CIMGUI_API ImFontGlyph const * ImVector_ImFontGlyph_back_const(const ImVector_ImFontGlyph* self); +CIMGUI_API TextRange const * ImVector_TextRange_back_const(const ImVector_TextRange* self); +CIMGUI_API CustomRect const * ImVector_CustomRect_back_const(const ImVector_CustomRect* self); +CIMGUI_API ImDrawChannel const * ImVector_ImDrawChannel_back_const(const ImVector_ImDrawChannel* self); +CIMGUI_API char const * ImVector_char_back_const(const ImVector_char* self); +CIMGUI_API ImTextureID const * ImVector_ImTextureID_back_const(const ImVector_ImTextureID* self); +CIMGUI_API ImDrawVert const * ImVector_ImDrawVert_back_const(const ImVector_ImDrawVert* self); +CIMGUI_API int const * ImVector_int_back_const(const ImVector_int* self); +CIMGUI_API Pair const * ImVector_Pair_back_const(const ImVector_Pair* self); +CIMGUI_API ImFont* const * ImVector_ImFontPtr_back_const(const ImVector_ImFontPtr* self); +CIMGUI_API ImVec4 const * ImVector_ImVec4_back_const(const ImVector_ImVec4* self); +CIMGUI_API ImDrawCmd const * ImVector_ImDrawCmd_back_const(const ImVector_ImDrawCmd* self); +CIMGUI_API ImDrawIdx const * ImVector_ImDrawIdx_back_const(const ImVector_ImDrawIdx* self); +CIMGUI_API ImVec2 const * ImVector_ImVec2_back_const(const ImVector_ImVec2* self); +CIMGUI_API void ImVector_float_swap(ImVector_float* self,ImVector_float rhs); +CIMGUI_API void ImVector_ImWchar_swap(ImVector_ImWchar* self,ImVector_ImWchar rhs); +CIMGUI_API void ImVector_ImFontConfig_swap(ImVector_ImFontConfig* self,ImVector_ImFontConfig rhs); +CIMGUI_API void ImVector_ImFontGlyph_swap(ImVector_ImFontGlyph* self,ImVector_ImFontGlyph rhs); +CIMGUI_API void ImVector_TextRange_swap(ImVector_TextRange* self,ImVector_TextRange rhs); +CIMGUI_API void ImVector_CustomRect_swap(ImVector_CustomRect* self,ImVector_CustomRect rhs); +CIMGUI_API void ImVector_ImDrawChannel_swap(ImVector_ImDrawChannel* self,ImVector_ImDrawChannel rhs); +CIMGUI_API void ImVector_char_swap(ImVector_char* self,ImVector_char rhs); +CIMGUI_API void ImVector_ImTextureID_swap(ImVector_ImTextureID* self,ImVector_ImTextureID rhs); +CIMGUI_API void ImVector_ImDrawVert_swap(ImVector_ImDrawVert* self,ImVector_ImDrawVert rhs); +CIMGUI_API void ImVector_int_swap(ImVector_int* self,ImVector_int rhs); +CIMGUI_API void ImVector_Pair_swap(ImVector_Pair* self,ImVector_Pair rhs); +CIMGUI_API void ImVector_ImFontPtr_swap(ImVector_ImFontPtr* self,ImVector_ImFontPtr rhs); +CIMGUI_API void ImVector_ImVec4_swap(ImVector_ImVec4* self,ImVector_ImVec4 rhs); +CIMGUI_API void ImVector_ImDrawCmd_swap(ImVector_ImDrawCmd* self,ImVector_ImDrawCmd rhs); +CIMGUI_API void ImVector_ImDrawIdx_swap(ImVector_ImDrawIdx* self,ImVector_ImDrawIdx rhs); +CIMGUI_API void ImVector_ImVec2_swap(ImVector_ImVec2* self,ImVector_ImVec2 rhs); +CIMGUI_API int ImVector_float__grow_capacity(const ImVector_float* self,int sz); +CIMGUI_API int ImVector_ImWchar__grow_capacity(const ImVector_ImWchar* self,int sz); +CIMGUI_API int ImVector_ImFontConfig__grow_capacity(const ImVector_ImFontConfig* self,int sz); +CIMGUI_API int ImVector_ImFontGlyph__grow_capacity(const ImVector_ImFontGlyph* self,int sz); +CIMGUI_API int ImVector_TextRange__grow_capacity(const ImVector_TextRange* self,int sz); +CIMGUI_API int ImVector_CustomRect__grow_capacity(const ImVector_CustomRect* self,int sz); +CIMGUI_API int ImVector_ImDrawChannel__grow_capacity(const ImVector_ImDrawChannel* self,int sz); +CIMGUI_API int ImVector_char__grow_capacity(const ImVector_char* self,int sz); +CIMGUI_API int ImVector_ImTextureID__grow_capacity(const ImVector_ImTextureID* self,int sz); +CIMGUI_API int ImVector_ImDrawVert__grow_capacity(const ImVector_ImDrawVert* self,int sz); +CIMGUI_API int ImVector_int__grow_capacity(const ImVector_int* self,int sz); +CIMGUI_API int ImVector_Pair__grow_capacity(const ImVector_Pair* self,int sz); +CIMGUI_API int ImVector_ImFontPtr__grow_capacity(const ImVector_ImFontPtr* self,int sz); +CIMGUI_API int ImVector_ImVec4__grow_capacity(const ImVector_ImVec4* self,int sz); +CIMGUI_API int ImVector_ImDrawCmd__grow_capacity(const ImVector_ImDrawCmd* self,int sz); +CIMGUI_API int ImVector_ImDrawIdx__grow_capacity(const ImVector_ImDrawIdx* self,int sz); +CIMGUI_API int ImVector_ImVec2__grow_capacity(const ImVector_ImVec2* self,int sz); +CIMGUI_API void ImVector_float_resize(ImVector_float* self,int new_size); +CIMGUI_API void ImVector_ImWchar_resize(ImVector_ImWchar* self,int new_size); +CIMGUI_API void ImVector_ImFontConfig_resize(ImVector_ImFontConfig* self,int new_size); +CIMGUI_API void ImVector_ImFontGlyph_resize(ImVector_ImFontGlyph* self,int new_size); +CIMGUI_API void ImVector_TextRange_resize(ImVector_TextRange* self,int new_size); +CIMGUI_API void ImVector_CustomRect_resize(ImVector_CustomRect* self,int new_size); +CIMGUI_API void ImVector_ImDrawChannel_resize(ImVector_ImDrawChannel* self,int new_size); +CIMGUI_API void ImVector_char_resize(ImVector_char* self,int new_size); +CIMGUI_API void ImVector_ImTextureID_resize(ImVector_ImTextureID* self,int new_size); +CIMGUI_API void ImVector_ImDrawVert_resize(ImVector_ImDrawVert* self,int new_size); +CIMGUI_API void ImVector_int_resize(ImVector_int* self,int new_size); +CIMGUI_API void ImVector_Pair_resize(ImVector_Pair* self,int new_size); +CIMGUI_API void ImVector_ImFontPtr_resize(ImVector_ImFontPtr* self,int new_size); +CIMGUI_API void ImVector_ImVec4_resize(ImVector_ImVec4* self,int new_size); +CIMGUI_API void ImVector_ImDrawCmd_resize(ImVector_ImDrawCmd* self,int new_size); +CIMGUI_API void ImVector_ImDrawIdx_resize(ImVector_ImDrawIdx* self,int new_size); +CIMGUI_API void ImVector_ImVec2_resize(ImVector_ImVec2* self,int new_size); +CIMGUI_API void ImVector_float_resizeT(ImVector_float* self,int new_size,const float v); +CIMGUI_API void ImVector_ImWchar_resizeT(ImVector_ImWchar* self,int new_size,const ImWchar v); +CIMGUI_API void ImVector_ImFontConfig_resizeT(ImVector_ImFontConfig* self,int new_size,const ImFontConfig v); +CIMGUI_API void ImVector_ImFontGlyph_resizeT(ImVector_ImFontGlyph* self,int new_size,const ImFontGlyph v); +CIMGUI_API void ImVector_TextRange_resizeT(ImVector_TextRange* self,int new_size,const TextRange v); +CIMGUI_API void ImVector_CustomRect_resizeT(ImVector_CustomRect* self,int new_size,const CustomRect v); +CIMGUI_API void ImVector_ImDrawChannel_resizeT(ImVector_ImDrawChannel* self,int new_size,const ImDrawChannel v); +CIMGUI_API void ImVector_char_resizeT(ImVector_char* self,int new_size,const char v); +CIMGUI_API void ImVector_ImTextureID_resizeT(ImVector_ImTextureID* self,int new_size,const ImTextureID v); +CIMGUI_API void ImVector_ImDrawVert_resizeT(ImVector_ImDrawVert* self,int new_size,const ImDrawVert v); +CIMGUI_API void ImVector_int_resizeT(ImVector_int* self,int new_size,const int v); +CIMGUI_API void ImVector_Pair_resizeT(ImVector_Pair* self,int new_size,const Pair v); +CIMGUI_API void ImVector_ImFontPtr_resizeT(ImVector_ImFontPtr* self,int new_size,ImFont* const v); +CIMGUI_API void ImVector_ImVec4_resizeT(ImVector_ImVec4* self,int new_size,const ImVec4 v); +CIMGUI_API void ImVector_ImDrawCmd_resizeT(ImVector_ImDrawCmd* self,int new_size,const ImDrawCmd v); +CIMGUI_API void ImVector_ImDrawIdx_resizeT(ImVector_ImDrawIdx* self,int new_size,const ImDrawIdx v); +CIMGUI_API void ImVector_ImVec2_resizeT(ImVector_ImVec2* self,int new_size,const ImVec2 v); +CIMGUI_API void ImVector_float_reserve(ImVector_float* self,int new_capacity); +CIMGUI_API void ImVector_ImWchar_reserve(ImVector_ImWchar* self,int new_capacity); +CIMGUI_API void ImVector_ImFontConfig_reserve(ImVector_ImFontConfig* self,int new_capacity); +CIMGUI_API void ImVector_ImFontGlyph_reserve(ImVector_ImFontGlyph* self,int new_capacity); +CIMGUI_API void ImVector_TextRange_reserve(ImVector_TextRange* self,int new_capacity); +CIMGUI_API void ImVector_CustomRect_reserve(ImVector_CustomRect* self,int new_capacity); +CIMGUI_API void ImVector_ImDrawChannel_reserve(ImVector_ImDrawChannel* self,int new_capacity); +CIMGUI_API void ImVector_char_reserve(ImVector_char* self,int new_capacity); +CIMGUI_API void ImVector_ImTextureID_reserve(ImVector_ImTextureID* self,int new_capacity); +CIMGUI_API void ImVector_ImDrawVert_reserve(ImVector_ImDrawVert* self,int new_capacity); +CIMGUI_API void ImVector_int_reserve(ImVector_int* self,int new_capacity); +CIMGUI_API void ImVector_Pair_reserve(ImVector_Pair* self,int new_capacity); +CIMGUI_API void ImVector_ImFontPtr_reserve(ImVector_ImFontPtr* self,int new_capacity); +CIMGUI_API void ImVector_ImVec4_reserve(ImVector_ImVec4* self,int new_capacity); +CIMGUI_API void ImVector_ImDrawCmd_reserve(ImVector_ImDrawCmd* self,int new_capacity); +CIMGUI_API void ImVector_ImDrawIdx_reserve(ImVector_ImDrawIdx* self,int new_capacity); +CIMGUI_API void ImVector_ImVec2_reserve(ImVector_ImVec2* self,int new_capacity); +CIMGUI_API void ImVector_float_push_back(ImVector_float* self,const float v); +CIMGUI_API void ImVector_ImWchar_push_back(ImVector_ImWchar* self,const ImWchar v); +CIMGUI_API void ImVector_ImFontConfig_push_back(ImVector_ImFontConfig* self,const ImFontConfig v); +CIMGUI_API void ImVector_ImFontGlyph_push_back(ImVector_ImFontGlyph* self,const ImFontGlyph v); +CIMGUI_API void ImVector_TextRange_push_back(ImVector_TextRange* self,const TextRange v); +CIMGUI_API void ImVector_CustomRect_push_back(ImVector_CustomRect* self,const CustomRect v); +CIMGUI_API void ImVector_ImDrawChannel_push_back(ImVector_ImDrawChannel* self,const ImDrawChannel v); +CIMGUI_API void ImVector_char_push_back(ImVector_char* self,const char v); +CIMGUI_API void ImVector_ImTextureID_push_back(ImVector_ImTextureID* self,const ImTextureID v); +CIMGUI_API void ImVector_ImDrawVert_push_back(ImVector_ImDrawVert* self,const ImDrawVert v); +CIMGUI_API void ImVector_int_push_back(ImVector_int* self,const int v); +CIMGUI_API void ImVector_Pair_push_back(ImVector_Pair* self,const Pair v); +CIMGUI_API void ImVector_ImFontPtr_push_back(ImVector_ImFontPtr* self,ImFont* const v); +CIMGUI_API void ImVector_ImVec4_push_back(ImVector_ImVec4* self,const ImVec4 v); +CIMGUI_API void ImVector_ImDrawCmd_push_back(ImVector_ImDrawCmd* self,const ImDrawCmd v); +CIMGUI_API void ImVector_ImDrawIdx_push_back(ImVector_ImDrawIdx* self,const ImDrawIdx v); +CIMGUI_API void ImVector_ImVec2_push_back(ImVector_ImVec2* self,const ImVec2 v); +CIMGUI_API void ImVector_float_pop_back(ImVector_float* self); +CIMGUI_API void ImVector_ImWchar_pop_back(ImVector_ImWchar* self); +CIMGUI_API void ImVector_ImFontConfig_pop_back(ImVector_ImFontConfig* self); +CIMGUI_API void ImVector_ImFontGlyph_pop_back(ImVector_ImFontGlyph* self); +CIMGUI_API void ImVector_TextRange_pop_back(ImVector_TextRange* self); +CIMGUI_API void ImVector_CustomRect_pop_back(ImVector_CustomRect* self); +CIMGUI_API void ImVector_ImDrawChannel_pop_back(ImVector_ImDrawChannel* self); +CIMGUI_API void ImVector_char_pop_back(ImVector_char* self); +CIMGUI_API void ImVector_ImTextureID_pop_back(ImVector_ImTextureID* self); +CIMGUI_API void ImVector_ImDrawVert_pop_back(ImVector_ImDrawVert* self); +CIMGUI_API void ImVector_int_pop_back(ImVector_int* self); +CIMGUI_API void ImVector_Pair_pop_back(ImVector_Pair* self); +CIMGUI_API void ImVector_ImFontPtr_pop_back(ImVector_ImFontPtr* self); +CIMGUI_API void ImVector_ImVec4_pop_back(ImVector_ImVec4* self); +CIMGUI_API void ImVector_ImDrawCmd_pop_back(ImVector_ImDrawCmd* self); +CIMGUI_API void ImVector_ImDrawIdx_pop_back(ImVector_ImDrawIdx* self); +CIMGUI_API void ImVector_ImVec2_pop_back(ImVector_ImVec2* self); +CIMGUI_API void ImVector_float_push_front(ImVector_float* self,const float v); +CIMGUI_API void ImVector_ImWchar_push_front(ImVector_ImWchar* self,const ImWchar v); +CIMGUI_API void ImVector_ImFontConfig_push_front(ImVector_ImFontConfig* self,const ImFontConfig v); +CIMGUI_API void ImVector_ImFontGlyph_push_front(ImVector_ImFontGlyph* self,const ImFontGlyph v); +CIMGUI_API void ImVector_TextRange_push_front(ImVector_TextRange* self,const TextRange v); +CIMGUI_API void ImVector_CustomRect_push_front(ImVector_CustomRect* self,const CustomRect v); +CIMGUI_API void ImVector_ImDrawChannel_push_front(ImVector_ImDrawChannel* self,const ImDrawChannel v); +CIMGUI_API void ImVector_char_push_front(ImVector_char* self,const char v); +CIMGUI_API void ImVector_ImTextureID_push_front(ImVector_ImTextureID* self,const ImTextureID v); +CIMGUI_API void ImVector_ImDrawVert_push_front(ImVector_ImDrawVert* self,const ImDrawVert v); +CIMGUI_API void ImVector_int_push_front(ImVector_int* self,const int v); +CIMGUI_API void ImVector_Pair_push_front(ImVector_Pair* self,const Pair v); +CIMGUI_API void ImVector_ImFontPtr_push_front(ImVector_ImFontPtr* self,ImFont* const v); +CIMGUI_API void ImVector_ImVec4_push_front(ImVector_ImVec4* self,const ImVec4 v); +CIMGUI_API void ImVector_ImDrawCmd_push_front(ImVector_ImDrawCmd* self,const ImDrawCmd v); +CIMGUI_API void ImVector_ImDrawIdx_push_front(ImVector_ImDrawIdx* self,const ImDrawIdx v); +CIMGUI_API void ImVector_ImVec2_push_front(ImVector_ImVec2* self,const ImVec2 v); +CIMGUI_API float* ImVector_float_erase(ImVector_float* self,float const * it); +CIMGUI_API ImWchar* ImVector_ImWchar_erase(ImVector_ImWchar* self,ImWchar const * it); +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_erase(ImVector_ImFontConfig* self,ImFontConfig const * it); +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_erase(ImVector_ImFontGlyph* self,ImFontGlyph const * it); +CIMGUI_API TextRange* ImVector_TextRange_erase(ImVector_TextRange* self,TextRange const * it); +CIMGUI_API CustomRect* ImVector_CustomRect_erase(ImVector_CustomRect* self,CustomRect const * it); +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_erase(ImVector_ImDrawChannel* self,ImDrawChannel const * it); +CIMGUI_API char* ImVector_char_erase(ImVector_char* self,char const * it); +CIMGUI_API ImTextureID* ImVector_ImTextureID_erase(ImVector_ImTextureID* self,ImTextureID const * it); +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_erase(ImVector_ImDrawVert* self,ImDrawVert const * it); +CIMGUI_API int* ImVector_int_erase(ImVector_int* self,int const * it); +CIMGUI_API Pair* ImVector_Pair_erase(ImVector_Pair* self,Pair const * it); +CIMGUI_API ImFont** ImVector_ImFontPtr_erase(ImVector_ImFontPtr* self,ImFont* const * it); +CIMGUI_API ImVec4* ImVector_ImVec4_erase(ImVector_ImVec4* self,ImVec4 const * it); +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_erase(ImVector_ImDrawCmd* self,ImDrawCmd const * it); +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_erase(ImVector_ImDrawIdx* self,ImDrawIdx const * it); +CIMGUI_API ImVec2* ImVector_ImVec2_erase(ImVector_ImVec2* self,ImVec2 const * it); +CIMGUI_API float* ImVector_float_eraseTPtr(ImVector_float* self,float const * it,float const * it_last); +CIMGUI_API ImWchar* ImVector_ImWchar_eraseTPtr(ImVector_ImWchar* self,ImWchar const * it,ImWchar const * it_last); +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_eraseTPtr(ImVector_ImFontConfig* self,ImFontConfig const * it,ImFontConfig const * it_last); +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_eraseTPtr(ImVector_ImFontGlyph* self,ImFontGlyph const * it,ImFontGlyph const * it_last); +CIMGUI_API TextRange* ImVector_TextRange_eraseTPtr(ImVector_TextRange* self,TextRange const * it,TextRange const * it_last); +CIMGUI_API CustomRect* ImVector_CustomRect_eraseTPtr(ImVector_CustomRect* self,CustomRect const * it,CustomRect const * it_last); +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_eraseTPtr(ImVector_ImDrawChannel* self,ImDrawChannel const * it,ImDrawChannel const * it_last); +CIMGUI_API char* ImVector_char_eraseTPtr(ImVector_char* self,char const * it,char const * it_last); +CIMGUI_API ImTextureID* ImVector_ImTextureID_eraseTPtr(ImVector_ImTextureID* self,ImTextureID const * it,ImTextureID const * it_last); +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_eraseTPtr(ImVector_ImDrawVert* self,ImDrawVert const * it,ImDrawVert const * it_last); +CIMGUI_API int* ImVector_int_eraseTPtr(ImVector_int* self,int const * it,int const * it_last); +CIMGUI_API Pair* ImVector_Pair_eraseTPtr(ImVector_Pair* self,Pair const * it,Pair const * it_last); +CIMGUI_API ImFont** ImVector_ImFontPtr_eraseTPtr(ImVector_ImFontPtr* self,ImFont* const * it,ImFont* const * it_last); +CIMGUI_API ImVec4* ImVector_ImVec4_eraseTPtr(ImVector_ImVec4* self,ImVec4 const * it,ImVec4 const * it_last); +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_eraseTPtr(ImVector_ImDrawCmd* self,ImDrawCmd const * it,ImDrawCmd const * it_last); +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_eraseTPtr(ImVector_ImDrawIdx* self,ImDrawIdx const * it,ImDrawIdx const * it_last); +CIMGUI_API ImVec2* ImVector_ImVec2_eraseTPtr(ImVector_ImVec2* self,ImVec2 const * it,ImVec2 const * it_last); +CIMGUI_API float* ImVector_float_erase_unsorted(ImVector_float* self,float const * it); +CIMGUI_API ImWchar* ImVector_ImWchar_erase_unsorted(ImVector_ImWchar* self,ImWchar const * it); +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_erase_unsorted(ImVector_ImFontConfig* self,ImFontConfig const * it); +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_erase_unsorted(ImVector_ImFontGlyph* self,ImFontGlyph const * it); +CIMGUI_API TextRange* ImVector_TextRange_erase_unsorted(ImVector_TextRange* self,TextRange const * it); +CIMGUI_API CustomRect* ImVector_CustomRect_erase_unsorted(ImVector_CustomRect* self,CustomRect const * it); +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_erase_unsorted(ImVector_ImDrawChannel* self,ImDrawChannel const * it); +CIMGUI_API char* ImVector_char_erase_unsorted(ImVector_char* self,char const * it); +CIMGUI_API ImTextureID* ImVector_ImTextureID_erase_unsorted(ImVector_ImTextureID* self,ImTextureID const * it); +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_erase_unsorted(ImVector_ImDrawVert* self,ImDrawVert const * it); +CIMGUI_API int* ImVector_int_erase_unsorted(ImVector_int* self,int const * it); +CIMGUI_API Pair* ImVector_Pair_erase_unsorted(ImVector_Pair* self,Pair const * it); +CIMGUI_API ImFont** ImVector_ImFontPtr_erase_unsorted(ImVector_ImFontPtr* self,ImFont* const * it); +CIMGUI_API ImVec4* ImVector_ImVec4_erase_unsorted(ImVector_ImVec4* self,ImVec4 const * it); +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_erase_unsorted(ImVector_ImDrawCmd* self,ImDrawCmd const * it); +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_erase_unsorted(ImVector_ImDrawIdx* self,ImDrawIdx const * it); +CIMGUI_API ImVec2* ImVector_ImVec2_erase_unsorted(ImVector_ImVec2* self,ImVec2 const * it); +CIMGUI_API float* ImVector_float_insert(ImVector_float* self,float const * it,const float v); +CIMGUI_API ImWchar* ImVector_ImWchar_insert(ImVector_ImWchar* self,ImWchar const * it,const ImWchar v); +CIMGUI_API ImFontConfig* ImVector_ImFontConfig_insert(ImVector_ImFontConfig* self,ImFontConfig const * it,const ImFontConfig v); +CIMGUI_API ImFontGlyph* ImVector_ImFontGlyph_insert(ImVector_ImFontGlyph* self,ImFontGlyph const * it,const ImFontGlyph v); +CIMGUI_API TextRange* ImVector_TextRange_insert(ImVector_TextRange* self,TextRange const * it,const TextRange v); +CIMGUI_API CustomRect* ImVector_CustomRect_insert(ImVector_CustomRect* self,CustomRect const * it,const CustomRect v); +CIMGUI_API ImDrawChannel* ImVector_ImDrawChannel_insert(ImVector_ImDrawChannel* self,ImDrawChannel const * it,const ImDrawChannel v); +CIMGUI_API char* ImVector_char_insert(ImVector_char* self,char const * it,const char v); +CIMGUI_API ImTextureID* ImVector_ImTextureID_insert(ImVector_ImTextureID* self,ImTextureID const * it,const ImTextureID v); +CIMGUI_API ImDrawVert* ImVector_ImDrawVert_insert(ImVector_ImDrawVert* self,ImDrawVert const * it,const ImDrawVert v); +CIMGUI_API int* ImVector_int_insert(ImVector_int* self,int const * it,const int v); +CIMGUI_API Pair* ImVector_Pair_insert(ImVector_Pair* self,Pair const * it,const Pair v); +CIMGUI_API ImFont** ImVector_ImFontPtr_insert(ImVector_ImFontPtr* self,ImFont* const * it,ImFont* const v); +CIMGUI_API ImVec4* ImVector_ImVec4_insert(ImVector_ImVec4* self,ImVec4 const * it,const ImVec4 v); +CIMGUI_API ImDrawCmd* ImVector_ImDrawCmd_insert(ImVector_ImDrawCmd* self,ImDrawCmd const * it,const ImDrawCmd v); +CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_insert(ImVector_ImDrawIdx* self,ImDrawIdx const * it,const ImDrawIdx v); +CIMGUI_API ImVec2* ImVector_ImVec2_insert(ImVector_ImVec2* self,ImVec2 const * it,const ImVec2 v); +CIMGUI_API bool ImVector_float_contains(const ImVector_float* self,const float v); +CIMGUI_API bool ImVector_ImWchar_contains(const ImVector_ImWchar* self,const ImWchar v); +CIMGUI_API bool ImVector_ImFontConfig_contains(const ImVector_ImFontConfig* self,const ImFontConfig v); +CIMGUI_API bool ImVector_ImFontGlyph_contains(const ImVector_ImFontGlyph* self,const ImFontGlyph v); +CIMGUI_API bool ImVector_TextRange_contains(const ImVector_TextRange* self,const TextRange v); +CIMGUI_API bool ImVector_CustomRect_contains(const ImVector_CustomRect* self,const CustomRect v); +CIMGUI_API bool ImVector_ImDrawChannel_contains(const ImVector_ImDrawChannel* self,const ImDrawChannel v); +CIMGUI_API bool ImVector_char_contains(const ImVector_char* self,const char v); +CIMGUI_API bool ImVector_ImTextureID_contains(const ImVector_ImTextureID* self,const ImTextureID v); +CIMGUI_API bool ImVector_ImDrawVert_contains(const ImVector_ImDrawVert* self,const ImDrawVert v); +CIMGUI_API bool ImVector_int_contains(const ImVector_int* self,const int v); +CIMGUI_API bool ImVector_Pair_contains(const ImVector_Pair* self,const Pair v); +CIMGUI_API bool ImVector_ImFontPtr_contains(const ImVector_ImFontPtr* self,ImFont* const v); +CIMGUI_API bool ImVector_ImVec4_contains(const ImVector_ImVec4* self,const ImVec4 v); +CIMGUI_API bool ImVector_ImDrawCmd_contains(const ImVector_ImDrawCmd* self,const ImDrawCmd v); +CIMGUI_API bool ImVector_ImDrawIdx_contains(const ImVector_ImDrawIdx* self,const ImDrawIdx v); +CIMGUI_API bool ImVector_ImVec2_contains(const ImVector_ImVec2* self,const ImVec2 v); +CIMGUI_API int ImVector_float_index_from_ptr(const ImVector_float* self,float const * it); +CIMGUI_API int ImVector_ImWchar_index_from_ptr(const ImVector_ImWchar* self,ImWchar const * it); +CIMGUI_API int ImVector_ImFontConfig_index_from_ptr(const ImVector_ImFontConfig* self,ImFontConfig const * it); +CIMGUI_API int ImVector_ImFontGlyph_index_from_ptr(const ImVector_ImFontGlyph* self,ImFontGlyph const * it); +CIMGUI_API int ImVector_TextRange_index_from_ptr(const ImVector_TextRange* self,TextRange const * it); +CIMGUI_API int ImVector_CustomRect_index_from_ptr(const ImVector_CustomRect* self,CustomRect const * it); +CIMGUI_API int ImVector_ImDrawChannel_index_from_ptr(const ImVector_ImDrawChannel* self,ImDrawChannel const * it); +CIMGUI_API int ImVector_char_index_from_ptr(const ImVector_char* self,char const * it); +CIMGUI_API int ImVector_ImTextureID_index_from_ptr(const ImVector_ImTextureID* self,ImTextureID const * it); +CIMGUI_API int ImVector_ImDrawVert_index_from_ptr(const ImVector_ImDrawVert* self,ImDrawVert const * it); +CIMGUI_API int ImVector_int_index_from_ptr(const ImVector_int* self,int const * it); +CIMGUI_API int ImVector_Pair_index_from_ptr(const ImVector_Pair* self,Pair const * it); +CIMGUI_API int ImVector_ImFontPtr_index_from_ptr(const ImVector_ImFontPtr* self,ImFont* const * it); +CIMGUI_API int ImVector_ImVec4_index_from_ptr(const ImVector_ImVec4* self,ImVec4 const * it); +CIMGUI_API int ImVector_ImDrawCmd_index_from_ptr(const ImVector_ImDrawCmd* self,ImDrawCmd const * it); +CIMGUI_API int ImVector_ImDrawIdx_index_from_ptr(const ImVector_ImDrawIdx* self,ImDrawIdx const * it); +CIMGUI_API int ImVector_ImVec2_index_from_ptr(const ImVector_ImVec2* self,ImVec2 const * it); /////////////////////////hand written functions @@ -1507,7 +2016,6 @@ CIMGUI_API void igColorConvertRGBtoHSV(float r,float g,float b,float *out_h,floa CIMGUI_API void igColorConvertHSVtoRGB(float h,float s,float v,float *out_r,float *out_g,float *out_b); CIMGUI_API ImVector_ImWchar* ImVector_ImWchar_create(); -CIMGUI_API void ImVector_ImWchar_destroy(ImVector_ImWchar* p); CIMGUI_API void ImVector_ImWchar_Init(ImVector_ImWchar* p); CIMGUI_API void ImVector_ImWchar_UnInit(ImVector_ImWchar* p); #endif //CIMGUI_INCLUDED diff --git a/generator/output/definitions.json b/generator/output/definitions.json index 04b34a9..484216a 100644 --- a/generator/output/definitions.json +++ b/generator/output/definitions.json @@ -32,7 +32,7 @@ "funcname": "IsPacked", "ov_cimguiname": "CustomRect_IsPacked", "ret": "bool", - "signature": "()", + "signature": "()const", "stname": "CustomRect" } ], @@ -1488,7 +1488,7 @@ "funcname": "CloneOutput", "ov_cimguiname": "ImDrawList_CloneOutput", "ret": "ImDrawList*", - "signature": "()", + "signature": "()const", "stname": "ImDrawList" } ], @@ -1509,7 +1509,7 @@ "funcname": "GetClipRectMax", "ov_cimguiname": "ImDrawList_GetClipRectMax", "ret": "ImVec2", - "signature": "()", + "signature": "()const", "stname": "ImDrawList" }, { @@ -1533,7 +1533,7 @@ "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMax_nonUDT", "ret": "void", - "signature": "()", + "signature": "()const", "stname": "ImDrawList" }, { @@ -1554,7 +1554,7 @@ "ov_cimguiname": "ImDrawList_GetClipRectMax_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", - "signature": "()", + "signature": "()const", "stname": "ImDrawList" } ], @@ -1575,7 +1575,7 @@ "funcname": "GetClipRectMin", "ov_cimguiname": "ImDrawList_GetClipRectMin", "ret": "ImVec2", - "signature": "()", + "signature": "()const", "stname": "ImDrawList" }, { @@ -1599,7 +1599,7 @@ "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMin_nonUDT", "ret": "void", - "signature": "()", + "signature": "()const", "stname": "ImDrawList" }, { @@ -1620,7 +1620,7 @@ "ov_cimguiname": "ImDrawList_GetClipRectMin_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", - "signature": "()", + "signature": "()const", "stname": "ImDrawList" } ], @@ -2829,7 +2829,7 @@ "funcname": "GetCustomRectByIndex", "ov_cimguiname": "ImFontAtlas_GetCustomRectByIndex", "ret": "const CustomRect*", - "signature": "(int)", + "signature": "(int)const", "stname": "ImFontAtlas" } ], @@ -3342,7 +3342,7 @@ "funcname": "GetBit", "ov_cimguiname": "ImFontGlyphRangesBuilder_GetBit", "ret": "bool", - "signature": "(int)", + "signature": "(int)const", "stname": "ImFontGlyphRangesBuilder" } ], @@ -3567,7 +3567,7 @@ "funcname": "CalcTextSizeA", "ov_cimguiname": "ImFont_CalcTextSizeA", "ret": "ImVec2", - "signature": "(float,float,float,const char*,const char*,const char**)", + "signature": "(float,float,float,const char*,const char*,const char**)const", "stname": "ImFont" }, { @@ -3618,7 +3618,7 @@ "nonUDT": 1, "ov_cimguiname": "ImFont_CalcTextSizeA_nonUDT", "ret": "void", - "signature": "(float,float,float,const char*,const char*,const char**)", + "signature": "(float,float,float,const char*,const char*,const char**)const", "stname": "ImFont" }, { @@ -3666,7 +3666,7 @@ "ov_cimguiname": "ImFont_CalcTextSizeA_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", - "signature": "(float,float,float,const char*,const char*,const char**)", + "signature": "(float,float,float,const char*,const char*,const char**)const", "stname": "ImFont" } ], @@ -3703,7 +3703,7 @@ "funcname": "CalcWordWrapPositionA", "ov_cimguiname": "ImFont_CalcWordWrapPositionA", "ret": "const char*", - "signature": "(float,const char*,const char*,float)", + "signature": "(float,const char*,const char*,float)const", "stname": "ImFont" } ], @@ -3749,7 +3749,7 @@ "funcname": "FindGlyph", "ov_cimguiname": "ImFont_FindGlyph", "ret": "const ImFontGlyph*", - "signature": "(ImWchar)", + "signature": "(ImWchar)const", "stname": "ImFont" } ], @@ -3774,7 +3774,7 @@ "funcname": "FindGlyphNoFallback", "ov_cimguiname": "ImFont_FindGlyphNoFallback", "ret": "const ImFontGlyph*", - "signature": "(ImWchar)", + "signature": "(ImWchar)const", "stname": "ImFont" } ], @@ -3799,7 +3799,7 @@ "funcname": "GetCharAdvance", "ov_cimguiname": "ImFont_GetCharAdvance", "ret": "float", - "signature": "(ImWchar)", + "signature": "(ImWchar)const", "stname": "ImFont" } ], @@ -3820,7 +3820,7 @@ "funcname": "GetDebugName", "ov_cimguiname": "ImFont_GetDebugName", "ret": "const char*", - "signature": "()", + "signature": "()const", "stname": "ImFont" } ], @@ -3882,7 +3882,7 @@ "funcname": "IsLoaded", "ov_cimguiname": "ImFont_IsLoaded", "ret": "bool", - "signature": "()", + "signature": "()const", "stname": "ImFont" } ], @@ -3923,7 +3923,7 @@ "funcname": "RenderChar", "ov_cimguiname": "ImFont_RenderChar", "ret": "void", - "signature": "(ImDrawList*,float,ImVec2,ImU32,ImWchar)", + "signature": "(ImDrawList*,float,ImVec2,ImU32,ImWchar)const", "stname": "ImFont" } ], @@ -3983,7 +3983,7 @@ "funcname": "RenderText", "ov_cimguiname": "ImFont_RenderText", "ret": "void", - "signature": "(ImDrawList*,float,ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)", + "signature": "(ImDrawList*,float,ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)const", "stname": "ImFont" } ], @@ -4183,7 +4183,7 @@ "funcname": "HasSelection", "ov_cimguiname": "ImGuiInputTextCallbackData_HasSelection", "ret": "bool", - "signature": "()", + "signature": "()const", "stname": "ImGuiInputTextCallbackData" } ], @@ -4470,7 +4470,7 @@ "funcname": "IsDataType", "ov_cimguiname": "ImGuiPayload_IsDataType", "ret": "bool", - "signature": "(const char*)", + "signature": "(const char*)const", "stname": "ImGuiPayload" } ], @@ -4491,7 +4491,7 @@ "funcname": "IsDelivery", "ov_cimguiname": "ImGuiPayload_IsDelivery", "ret": "bool", - "signature": "()", + "signature": "()const", "stname": "ImGuiPayload" } ], @@ -4512,7 +4512,7 @@ "funcname": "IsPreview", "ov_cimguiname": "ImGuiPayload_IsPreview", "ret": "bool", - "signature": "()", + "signature": "()const", "stname": "ImGuiPayload" } ], @@ -4604,7 +4604,7 @@ "funcname": "GetBool", "ov_cimguiname": "ImGuiStorage_GetBool", "ret": "bool", - "signature": "(ImGuiID,bool)", + "signature": "(ImGuiID,bool)const", "stname": "ImGuiStorage" } ], @@ -4666,7 +4666,7 @@ "funcname": "GetFloat", "ov_cimguiname": "ImGuiStorage_GetFloat", "ret": "float", - "signature": "(ImGuiID,float)", + "signature": "(ImGuiID,float)const", "stname": "ImGuiStorage" } ], @@ -4728,7 +4728,7 @@ "funcname": "GetInt", "ov_cimguiname": "ImGuiStorage_GetInt", "ret": "int", - "signature": "(ImGuiID,int)", + "signature": "(ImGuiID,int)const", "stname": "ImGuiStorage" } ], @@ -4784,7 +4784,7 @@ "funcname": "GetVoidPtr", "ov_cimguiname": "ImGuiStorage_GetVoidPtr", "ret": "void*", - "signature": "(ImGuiID)", + "signature": "(ImGuiID)const", "stname": "ImGuiStorage" } ], @@ -5113,7 +5113,7 @@ "funcname": "begin", "ov_cimguiname": "ImGuiTextBuffer_begin", "ret": "const char*", - "signature": "()", + "signature": "()const", "stname": "ImGuiTextBuffer" } ], @@ -5134,7 +5134,7 @@ "funcname": "c_str", "ov_cimguiname": "ImGuiTextBuffer_c_str", "ret": "const char*", - "signature": "()", + "signature": "()const", "stname": "ImGuiTextBuffer" } ], @@ -5216,7 +5216,7 @@ "funcname": "end", "ov_cimguiname": "ImGuiTextBuffer_end", "ret": "const char*", - "signature": "()", + "signature": "()const", "stname": "ImGuiTextBuffer" } ], @@ -5262,7 +5262,7 @@ "funcname": "size", "ov_cimguiname": "ImGuiTextBuffer_size", "ret": "int", - "signature": "()", + "signature": "()const", "stname": "ImGuiTextBuffer" } ], @@ -5380,7 +5380,7 @@ "funcname": "IsActive", "ov_cimguiname": "ImGuiTextFilter_IsActive", "ret": "bool", - "signature": "()", + "signature": "()const", "stname": "ImGuiTextFilter" } ], @@ -5411,7 +5411,7 @@ "funcname": "PassFilter", "ov_cimguiname": "ImGuiTextFilter_PassFilter", "ret": "bool", - "signature": "(const char*,const char*)", + "signature": "(const char*,const char*)const", "stname": "ImGuiTextFilter" } ], @@ -5558,6 +5558,7134 @@ "stname": "ImVec4" } ], + "ImVector_CustomRect_ImVector_CustomRect": [ + { + "args": "()", + "argsT": [], + "call_args": "()", + "cimguiname": "ImVector_CustomRect_ImVector_CustomRect", + "constructor": true, + "defaults": [], + "funcname": "ImVector_CustomRect", + "ov_cimguiname": "ImVector_CustomRect_ImVector_CustomRect", + "signature": "()", + "stname": "ImVector_CustomRect", + "templatedgen": true + }, + { + "args": "(const ImVector_CustomRect src)", + "argsT": [ + { + "name": "src", + "type": "const ImVector_CustomRect" + } + ], + "call_args": "(src)", + "cimguiname": "ImVector_CustomRect_ImVector_CustomRect", + "constructor": true, + "defaults": [], + "funcname": "ImVector_CustomRect", + "ov_cimguiname": "ImVector_CustomRect_ImVector_CustomRectVector", + "signature": "(const ImVector)", + "stname": "ImVector_CustomRect", + "templatedgen": true + } + ], + "ImVector_CustomRect__grow_capacity": [ + { + "args": "(const ImVector_CustomRect* self,int sz)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_CustomRect*" + }, + { + "name": "sz", + "type": "int" + } + ], + "call_args": "(sz)", + "cimguiname": "ImVector_CustomRect__grow_capacity", + "defaults": [], + "funcname": "_grow_capacity", + "ov_cimguiname": "ImVector_CustomRect__grow_capacity", + "ret": "int", + "signature": "(int)const", + "stname": "ImVector_CustomRect", + "templatedgen": true + } + ], + "ImVector_CustomRect_back": [ + { + "args": "(ImVector_CustomRect* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_CustomRect*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_CustomRect_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_CustomRect_back", + "ret": "CustomRect*", + "retref": "&", + "signature": "()", + "stname": "ImVector_CustomRect", + "templatedgen": true + }, + { + "args": "(const ImVector_CustomRect* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_CustomRect*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_CustomRect_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_CustomRect_back_const", + "ret": "CustomRect const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_CustomRect", + "templatedgen": true + } + ], + "ImVector_CustomRect_begin": [ + { + "args": "(ImVector_CustomRect* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_CustomRect*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_CustomRect_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_CustomRect_begin", + "ret": "CustomRect*", + "signature": "()", + "stname": "ImVector_CustomRect", + "templatedgen": true + }, + { + "args": "(const ImVector_CustomRect* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_CustomRect*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_CustomRect_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_CustomRect_begin_const", + "ret": "CustomRect const *", + "signature": "()const", + "stname": "ImVector_CustomRect", + "templatedgen": true + } + ], + "ImVector_CustomRect_capacity": [ + { + "args": "(const ImVector_CustomRect* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_CustomRect*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_CustomRect_capacity", + "defaults": [], + "funcname": "capacity", + "ov_cimguiname": "ImVector_CustomRect_capacity", + "ret": "int", + "signature": "()const", + "stname": "ImVector_CustomRect", + "templatedgen": true + } + ], + "ImVector_CustomRect_clear": [ + { + "args": "(ImVector_CustomRect* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_CustomRect*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_CustomRect_clear", + "defaults": [], + "funcname": "clear", + "ov_cimguiname": "ImVector_CustomRect_clear", + "ret": "void", + "signature": "()", + "stname": "ImVector_CustomRect", + "templatedgen": true + } + ], + "ImVector_CustomRect_contains": [ + { + "args": "(const ImVector_CustomRect* self,const CustomRect v)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_CustomRect*" + }, + { + "name": "v", + "type": "const CustomRect" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_CustomRect_contains", + "defaults": [], + "funcname": "contains", + "ov_cimguiname": "ImVector_CustomRect_contains", + "ret": "bool", + "signature": "(const CustomRect)const", + "stname": "ImVector_CustomRect", + "templatedgen": true + } + ], + "ImVector_CustomRect_destroy": [ + { + "args": "(ImVector_CustomRect* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_CustomRect*" + } + ], + "call_args": "(self)", + "cimguiname": "ImVector_CustomRect_destroy", + "defaults": [], + "destructor": true, + "ov_cimguiname": "ImVector_CustomRect_destroy", + "ret": "void", + "signature": "(ImVector_CustomRect*)", + "stname": "ImVector_CustomRect" + } + ], + "ImVector_CustomRect_empty": [ + { + "args": "(const ImVector_CustomRect* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_CustomRect*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_CustomRect_empty", + "defaults": [], + "funcname": "empty", + "ov_cimguiname": "ImVector_CustomRect_empty", + "ret": "bool", + "signature": "()const", + "stname": "ImVector_CustomRect", + "templatedgen": true + } + ], + "ImVector_CustomRect_end": [ + { + "args": "(ImVector_CustomRect* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_CustomRect*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_CustomRect_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_CustomRect_end", + "ret": "CustomRect*", + "signature": "()", + "stname": "ImVector_CustomRect", + "templatedgen": true + }, + { + "args": "(const ImVector_CustomRect* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_CustomRect*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_CustomRect_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_CustomRect_end_const", + "ret": "CustomRect const *", + "signature": "()const", + "stname": "ImVector_CustomRect", + "templatedgen": true + } + ], + "ImVector_CustomRect_erase": [ + { + "args": "(ImVector_CustomRect* self,CustomRect const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_CustomRect*" + }, + { + "name": "it", + "type": "CustomRect const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_CustomRect_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_CustomRect_erase", + "ret": "CustomRect*", + "signature": "(const CustomRect*)", + "stname": "ImVector_CustomRect", + "templatedgen": true + }, + { + "args": "(ImVector_CustomRect* self,CustomRect const * it,CustomRect const * it_last)", + "argsT": [ + { + "name": "self", + "type": "ImVector_CustomRect*" + }, + { + "name": "it", + "type": "CustomRect const *" + }, + { + "name": "it_last", + "type": "CustomRect const *" + } + ], + "call_args": "(it,it_last)", + "cimguiname": "ImVector_CustomRect_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_CustomRect_eraseTPtr", + "ret": "CustomRect*", + "signature": "(const CustomRect*,const CustomRect*)", + "stname": "ImVector_CustomRect", + "templatedgen": true + } + ], + "ImVector_CustomRect_erase_unsorted": [ + { + "args": "(ImVector_CustomRect* self,CustomRect const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_CustomRect*" + }, + { + "name": "it", + "type": "CustomRect const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_CustomRect_erase_unsorted", + "defaults": [], + "funcname": "erase_unsorted", + "ov_cimguiname": "ImVector_CustomRect_erase_unsorted", + "ret": "CustomRect*", + "signature": "(const CustomRect*)", + "stname": "ImVector_CustomRect", + "templatedgen": true + } + ], + "ImVector_CustomRect_front": [ + { + "args": "(ImVector_CustomRect* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_CustomRect*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_CustomRect_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_CustomRect_front", + "ret": "CustomRect*", + "retref": "&", + "signature": "()", + "stname": "ImVector_CustomRect", + "templatedgen": true + }, + { + "args": "(const ImVector_CustomRect* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_CustomRect*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_CustomRect_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_CustomRect_front_const", + "ret": "CustomRect const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_CustomRect", + "templatedgen": true + } + ], + "ImVector_CustomRect_index_from_ptr": [ + { + "args": "(const ImVector_CustomRect* self,CustomRect const * it)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_CustomRect*" + }, + { + "name": "it", + "type": "CustomRect const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_CustomRect_index_from_ptr", + "defaults": [], + "funcname": "index_from_ptr", + "ov_cimguiname": "ImVector_CustomRect_index_from_ptr", + "ret": "int", + "signature": "(const CustomRect*)const", + "stname": "ImVector_CustomRect", + "templatedgen": true + } + ], + "ImVector_CustomRect_insert": [ + { + "args": "(ImVector_CustomRect* self,CustomRect const * it,const CustomRect v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_CustomRect*" + }, + { + "name": "it", + "type": "CustomRect const *" + }, + { + "name": "v", + "type": "const CustomRect" + } + ], + "call_args": "(it,v)", + "cimguiname": "ImVector_CustomRect_insert", + "defaults": [], + "funcname": "insert", + "ov_cimguiname": "ImVector_CustomRect_insert", + "ret": "CustomRect*", + "signature": "(const CustomRect*,const CustomRect)", + "stname": "ImVector_CustomRect", + "templatedgen": true + } + ], + "ImVector_CustomRect_pop_back": [ + { + "args": "(ImVector_CustomRect* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_CustomRect*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_CustomRect_pop_back", + "defaults": [], + "funcname": "pop_back", + "ov_cimguiname": "ImVector_CustomRect_pop_back", + "ret": "void", + "signature": "()", + "stname": "ImVector_CustomRect", + "templatedgen": true + } + ], + "ImVector_CustomRect_push_back": [ + { + "args": "(ImVector_CustomRect* self,const CustomRect v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_CustomRect*" + }, + { + "name": "v", + "type": "const CustomRect" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_CustomRect_push_back", + "defaults": [], + "funcname": "push_back", + "ov_cimguiname": "ImVector_CustomRect_push_back", + "ret": "void", + "signature": "(const CustomRect)", + "stname": "ImVector_CustomRect", + "templatedgen": true + } + ], + "ImVector_CustomRect_push_front": [ + { + "args": "(ImVector_CustomRect* self,const CustomRect v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_CustomRect*" + }, + { + "name": "v", + "type": "const CustomRect" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_CustomRect_push_front", + "defaults": [], + "funcname": "push_front", + "ov_cimguiname": "ImVector_CustomRect_push_front", + "ret": "void", + "signature": "(const CustomRect)", + "stname": "ImVector_CustomRect", + "templatedgen": true + } + ], + "ImVector_CustomRect_reserve": [ + { + "args": "(ImVector_CustomRect* self,int new_capacity)", + "argsT": [ + { + "name": "self", + "type": "ImVector_CustomRect*" + }, + { + "name": "new_capacity", + "type": "int" + } + ], + "call_args": "(new_capacity)", + "cimguiname": "ImVector_CustomRect_reserve", + "defaults": [], + "funcname": "reserve", + "ov_cimguiname": "ImVector_CustomRect_reserve", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_CustomRect", + "templatedgen": true + } + ], + "ImVector_CustomRect_resize": [ + { + "args": "(ImVector_CustomRect* self,int new_size)", + "argsT": [ + { + "name": "self", + "type": "ImVector_CustomRect*" + }, + { + "name": "new_size", + "type": "int" + } + ], + "call_args": "(new_size)", + "cimguiname": "ImVector_CustomRect_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_CustomRect_resize", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_CustomRect", + "templatedgen": true + }, + { + "args": "(ImVector_CustomRect* self,int new_size,const CustomRect v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_CustomRect*" + }, + { + "name": "new_size", + "type": "int" + }, + { + "name": "v", + "type": "const CustomRect" + } + ], + "call_args": "(new_size,v)", + "cimguiname": "ImVector_CustomRect_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_CustomRect_resizeT", + "ret": "void", + "signature": "(int,const CustomRect)", + "stname": "ImVector_CustomRect", + "templatedgen": true + } + ], + "ImVector_CustomRect_size": [ + { + "args": "(const ImVector_CustomRect* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_CustomRect*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_CustomRect_size", + "defaults": [], + "funcname": "size", + "ov_cimguiname": "ImVector_CustomRect_size", + "ret": "int", + "signature": "()const", + "stname": "ImVector_CustomRect", + "templatedgen": true + } + ], + "ImVector_CustomRect_size_in_bytes": [ + { + "args": "(const ImVector_CustomRect* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_CustomRect*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_CustomRect_size_in_bytes", + "defaults": [], + "funcname": "size_in_bytes", + "ov_cimguiname": "ImVector_CustomRect_size_in_bytes", + "ret": "int", + "signature": "()const", + "stname": "ImVector_CustomRect", + "templatedgen": true + } + ], + "ImVector_CustomRect_swap": [ + { + "args": "(ImVector_CustomRect* self,ImVector_CustomRect rhs)", + "argsT": [ + { + "name": "self", + "type": "ImVector_CustomRect*" + }, + { + "name": "rhs", + "type": "ImVector_CustomRect&" + } + ], + "call_args": "(rhs)", + "cimguiname": "ImVector_CustomRect_swap", + "defaults": [], + "funcname": "swap", + "ov_cimguiname": "ImVector_CustomRect_swap", + "ret": "void", + "signature": "(ImVector)", + "stname": "ImVector_CustomRect", + "templatedgen": true + } + ], + "ImVector_ImDrawChannel_ImVector_ImDrawChannel": [ + { + "args": "()", + "argsT": [], + "call_args": "()", + "cimguiname": "ImVector_ImDrawChannel_ImVector_ImDrawChannel", + "constructor": true, + "defaults": [], + "funcname": "ImVector_ImDrawChannel", + "ov_cimguiname": "ImVector_ImDrawChannel_ImVector_ImDrawChannel", + "signature": "()", + "stname": "ImVector_ImDrawChannel", + "templatedgen": true + }, + { + "args": "(const ImVector_ImDrawChannel src)", + "argsT": [ + { + "name": "src", + "type": "const ImVector_ImDrawChannel" + } + ], + "call_args": "(src)", + "cimguiname": "ImVector_ImDrawChannel_ImVector_ImDrawChannel", + "constructor": true, + "defaults": [], + "funcname": "ImVector_ImDrawChannel", + "ov_cimguiname": "ImVector_ImDrawChannel_ImVector_ImDrawChannelVector", + "signature": "(const ImVector)", + "stname": "ImVector_ImDrawChannel", + "templatedgen": true + } + ], + "ImVector_ImDrawChannel__grow_capacity": [ + { + "args": "(const ImVector_ImDrawChannel* self,int sz)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawChannel*" + }, + { + "name": "sz", + "type": "int" + } + ], + "call_args": "(sz)", + "cimguiname": "ImVector_ImDrawChannel__grow_capacity", + "defaults": [], + "funcname": "_grow_capacity", + "ov_cimguiname": "ImVector_ImDrawChannel__grow_capacity", + "ret": "int", + "signature": "(int)const", + "stname": "ImVector_ImDrawChannel", + "templatedgen": true + } + ], + "ImVector_ImDrawChannel_back": [ + { + "args": "(ImVector_ImDrawChannel* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawChannel*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawChannel_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_ImDrawChannel_back", + "ret": "ImDrawChannel*", + "retref": "&", + "signature": "()", + "stname": "ImVector_ImDrawChannel", + "templatedgen": true + }, + { + "args": "(const ImVector_ImDrawChannel* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawChannel*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawChannel_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_ImDrawChannel_back_const", + "ret": "ImDrawChannel const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_ImDrawChannel", + "templatedgen": true + } + ], + "ImVector_ImDrawChannel_begin": [ + { + "args": "(ImVector_ImDrawChannel* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawChannel*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawChannel_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_ImDrawChannel_begin", + "ret": "ImDrawChannel*", + "signature": "()", + "stname": "ImVector_ImDrawChannel", + "templatedgen": true + }, + { + "args": "(const ImVector_ImDrawChannel* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawChannel*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawChannel_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_ImDrawChannel_begin_const", + "ret": "ImDrawChannel const *", + "signature": "()const", + "stname": "ImVector_ImDrawChannel", + "templatedgen": true + } + ], + "ImVector_ImDrawChannel_capacity": [ + { + "args": "(const ImVector_ImDrawChannel* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawChannel*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawChannel_capacity", + "defaults": [], + "funcname": "capacity", + "ov_cimguiname": "ImVector_ImDrawChannel_capacity", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImDrawChannel", + "templatedgen": true + } + ], + "ImVector_ImDrawChannel_clear": [ + { + "args": "(ImVector_ImDrawChannel* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawChannel*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawChannel_clear", + "defaults": [], + "funcname": "clear", + "ov_cimguiname": "ImVector_ImDrawChannel_clear", + "ret": "void", + "signature": "()", + "stname": "ImVector_ImDrawChannel", + "templatedgen": true + } + ], + "ImVector_ImDrawChannel_contains": [ + { + "args": "(const ImVector_ImDrawChannel* self,const ImDrawChannel v)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawChannel*" + }, + { + "name": "v", + "type": "const ImDrawChannel" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImDrawChannel_contains", + "defaults": [], + "funcname": "contains", + "ov_cimguiname": "ImVector_ImDrawChannel_contains", + "ret": "bool", + "signature": "(const ImDrawChannel)const", + "stname": "ImVector_ImDrawChannel", + "templatedgen": true + } + ], + "ImVector_ImDrawChannel_destroy": [ + { + "args": "(ImVector_ImDrawChannel* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawChannel*" + } + ], + "call_args": "(self)", + "cimguiname": "ImVector_ImDrawChannel_destroy", + "defaults": [], + "destructor": true, + "ov_cimguiname": "ImVector_ImDrawChannel_destroy", + "ret": "void", + "signature": "(ImVector_ImDrawChannel*)", + "stname": "ImVector_ImDrawChannel" + } + ], + "ImVector_ImDrawChannel_empty": [ + { + "args": "(const ImVector_ImDrawChannel* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawChannel*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawChannel_empty", + "defaults": [], + "funcname": "empty", + "ov_cimguiname": "ImVector_ImDrawChannel_empty", + "ret": "bool", + "signature": "()const", + "stname": "ImVector_ImDrawChannel", + "templatedgen": true + } + ], + "ImVector_ImDrawChannel_end": [ + { + "args": "(ImVector_ImDrawChannel* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawChannel*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawChannel_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_ImDrawChannel_end", + "ret": "ImDrawChannel*", + "signature": "()", + "stname": "ImVector_ImDrawChannel", + "templatedgen": true + }, + { + "args": "(const ImVector_ImDrawChannel* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawChannel*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawChannel_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_ImDrawChannel_end_const", + "ret": "ImDrawChannel const *", + "signature": "()const", + "stname": "ImVector_ImDrawChannel", + "templatedgen": true + } + ], + "ImVector_ImDrawChannel_erase": [ + { + "args": "(ImVector_ImDrawChannel* self,ImDrawChannel const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawChannel*" + }, + { + "name": "it", + "type": "ImDrawChannel const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImDrawChannel_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_ImDrawChannel_erase", + "ret": "ImDrawChannel*", + "signature": "(const ImDrawChannel*)", + "stname": "ImVector_ImDrawChannel", + "templatedgen": true + }, + { + "args": "(ImVector_ImDrawChannel* self,ImDrawChannel const * it,ImDrawChannel const * it_last)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawChannel*" + }, + { + "name": "it", + "type": "ImDrawChannel const *" + }, + { + "name": "it_last", + "type": "ImDrawChannel const *" + } + ], + "call_args": "(it,it_last)", + "cimguiname": "ImVector_ImDrawChannel_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_ImDrawChannel_eraseTPtr", + "ret": "ImDrawChannel*", + "signature": "(const ImDrawChannel*,const ImDrawChannel*)", + "stname": "ImVector_ImDrawChannel", + "templatedgen": true + } + ], + "ImVector_ImDrawChannel_erase_unsorted": [ + { + "args": "(ImVector_ImDrawChannel* self,ImDrawChannel const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawChannel*" + }, + { + "name": "it", + "type": "ImDrawChannel const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImDrawChannel_erase_unsorted", + "defaults": [], + "funcname": "erase_unsorted", + "ov_cimguiname": "ImVector_ImDrawChannel_erase_unsorted", + "ret": "ImDrawChannel*", + "signature": "(const ImDrawChannel*)", + "stname": "ImVector_ImDrawChannel", + "templatedgen": true + } + ], + "ImVector_ImDrawChannel_front": [ + { + "args": "(ImVector_ImDrawChannel* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawChannel*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawChannel_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_ImDrawChannel_front", + "ret": "ImDrawChannel*", + "retref": "&", + "signature": "()", + "stname": "ImVector_ImDrawChannel", + "templatedgen": true + }, + { + "args": "(const ImVector_ImDrawChannel* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawChannel*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawChannel_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_ImDrawChannel_front_const", + "ret": "ImDrawChannel const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_ImDrawChannel", + "templatedgen": true + } + ], + "ImVector_ImDrawChannel_index_from_ptr": [ + { + "args": "(const ImVector_ImDrawChannel* self,ImDrawChannel const * it)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawChannel*" + }, + { + "name": "it", + "type": "ImDrawChannel const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImDrawChannel_index_from_ptr", + "defaults": [], + "funcname": "index_from_ptr", + "ov_cimguiname": "ImVector_ImDrawChannel_index_from_ptr", + "ret": "int", + "signature": "(const ImDrawChannel*)const", + "stname": "ImVector_ImDrawChannel", + "templatedgen": true + } + ], + "ImVector_ImDrawChannel_insert": [ + { + "args": "(ImVector_ImDrawChannel* self,ImDrawChannel const * it,const ImDrawChannel v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawChannel*" + }, + { + "name": "it", + "type": "ImDrawChannel const *" + }, + { + "name": "v", + "type": "const ImDrawChannel" + } + ], + "call_args": "(it,v)", + "cimguiname": "ImVector_ImDrawChannel_insert", + "defaults": [], + "funcname": "insert", + "ov_cimguiname": "ImVector_ImDrawChannel_insert", + "ret": "ImDrawChannel*", + "signature": "(const ImDrawChannel*,const ImDrawChannel)", + "stname": "ImVector_ImDrawChannel", + "templatedgen": true + } + ], + "ImVector_ImDrawChannel_pop_back": [ + { + "args": "(ImVector_ImDrawChannel* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawChannel*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawChannel_pop_back", + "defaults": [], + "funcname": "pop_back", + "ov_cimguiname": "ImVector_ImDrawChannel_pop_back", + "ret": "void", + "signature": "()", + "stname": "ImVector_ImDrawChannel", + "templatedgen": true + } + ], + "ImVector_ImDrawChannel_push_back": [ + { + "args": "(ImVector_ImDrawChannel* self,const ImDrawChannel v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawChannel*" + }, + { + "name": "v", + "type": "const ImDrawChannel" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImDrawChannel_push_back", + "defaults": [], + "funcname": "push_back", + "ov_cimguiname": "ImVector_ImDrawChannel_push_back", + "ret": "void", + "signature": "(const ImDrawChannel)", + "stname": "ImVector_ImDrawChannel", + "templatedgen": true + } + ], + "ImVector_ImDrawChannel_push_front": [ + { + "args": "(ImVector_ImDrawChannel* self,const ImDrawChannel v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawChannel*" + }, + { + "name": "v", + "type": "const ImDrawChannel" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImDrawChannel_push_front", + "defaults": [], + "funcname": "push_front", + "ov_cimguiname": "ImVector_ImDrawChannel_push_front", + "ret": "void", + "signature": "(const ImDrawChannel)", + "stname": "ImVector_ImDrawChannel", + "templatedgen": true + } + ], + "ImVector_ImDrawChannel_reserve": [ + { + "args": "(ImVector_ImDrawChannel* self,int new_capacity)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawChannel*" + }, + { + "name": "new_capacity", + "type": "int" + } + ], + "call_args": "(new_capacity)", + "cimguiname": "ImVector_ImDrawChannel_reserve", + "defaults": [], + "funcname": "reserve", + "ov_cimguiname": "ImVector_ImDrawChannel_reserve", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_ImDrawChannel", + "templatedgen": true + } + ], + "ImVector_ImDrawChannel_resize": [ + { + "args": "(ImVector_ImDrawChannel* self,int new_size)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawChannel*" + }, + { + "name": "new_size", + "type": "int" + } + ], + "call_args": "(new_size)", + "cimguiname": "ImVector_ImDrawChannel_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_ImDrawChannel_resize", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_ImDrawChannel", + "templatedgen": true + }, + { + "args": "(ImVector_ImDrawChannel* self,int new_size,const ImDrawChannel v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawChannel*" + }, + { + "name": "new_size", + "type": "int" + }, + { + "name": "v", + "type": "const ImDrawChannel" + } + ], + "call_args": "(new_size,v)", + "cimguiname": "ImVector_ImDrawChannel_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_ImDrawChannel_resizeT", + "ret": "void", + "signature": "(int,const ImDrawChannel)", + "stname": "ImVector_ImDrawChannel", + "templatedgen": true + } + ], + "ImVector_ImDrawChannel_size": [ + { + "args": "(const ImVector_ImDrawChannel* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawChannel*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawChannel_size", + "defaults": [], + "funcname": "size", + "ov_cimguiname": "ImVector_ImDrawChannel_size", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImDrawChannel", + "templatedgen": true + } + ], + "ImVector_ImDrawChannel_size_in_bytes": [ + { + "args": "(const ImVector_ImDrawChannel* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawChannel*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawChannel_size_in_bytes", + "defaults": [], + "funcname": "size_in_bytes", + "ov_cimguiname": "ImVector_ImDrawChannel_size_in_bytes", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImDrawChannel", + "templatedgen": true + } + ], + "ImVector_ImDrawChannel_swap": [ + { + "args": "(ImVector_ImDrawChannel* self,ImVector_ImDrawChannel rhs)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawChannel*" + }, + { + "name": "rhs", + "type": "ImVector_ImDrawChannel&" + } + ], + "call_args": "(rhs)", + "cimguiname": "ImVector_ImDrawChannel_swap", + "defaults": [], + "funcname": "swap", + "ov_cimguiname": "ImVector_ImDrawChannel_swap", + "ret": "void", + "signature": "(ImVector)", + "stname": "ImVector_ImDrawChannel", + "templatedgen": true + } + ], + "ImVector_ImDrawCmd_ImVector_ImDrawCmd": [ + { + "args": "()", + "argsT": [], + "call_args": "()", + "cimguiname": "ImVector_ImDrawCmd_ImVector_ImDrawCmd", + "constructor": true, + "defaults": [], + "funcname": "ImVector_ImDrawCmd", + "ov_cimguiname": "ImVector_ImDrawCmd_ImVector_ImDrawCmd", + "signature": "()", + "stname": "ImVector_ImDrawCmd", + "templatedgen": true + }, + { + "args": "(const ImVector_ImDrawCmd src)", + "argsT": [ + { + "name": "src", + "type": "const ImVector_ImDrawCmd" + } + ], + "call_args": "(src)", + "cimguiname": "ImVector_ImDrawCmd_ImVector_ImDrawCmd", + "constructor": true, + "defaults": [], + "funcname": "ImVector_ImDrawCmd", + "ov_cimguiname": "ImVector_ImDrawCmd_ImVector_ImDrawCmdVector", + "signature": "(const ImVector)", + "stname": "ImVector_ImDrawCmd", + "templatedgen": true + } + ], + "ImVector_ImDrawCmd__grow_capacity": [ + { + "args": "(const ImVector_ImDrawCmd* self,int sz)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawCmd*" + }, + { + "name": "sz", + "type": "int" + } + ], + "call_args": "(sz)", + "cimguiname": "ImVector_ImDrawCmd__grow_capacity", + "defaults": [], + "funcname": "_grow_capacity", + "ov_cimguiname": "ImVector_ImDrawCmd__grow_capacity", + "ret": "int", + "signature": "(int)const", + "stname": "ImVector_ImDrawCmd", + "templatedgen": true + } + ], + "ImVector_ImDrawCmd_back": [ + { + "args": "(ImVector_ImDrawCmd* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawCmd*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawCmd_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_ImDrawCmd_back", + "ret": "ImDrawCmd*", + "retref": "&", + "signature": "()", + "stname": "ImVector_ImDrawCmd", + "templatedgen": true + }, + { + "args": "(const ImVector_ImDrawCmd* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawCmd*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawCmd_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_ImDrawCmd_back_const", + "ret": "ImDrawCmd const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_ImDrawCmd", + "templatedgen": true + } + ], + "ImVector_ImDrawCmd_begin": [ + { + "args": "(ImVector_ImDrawCmd* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawCmd*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawCmd_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_ImDrawCmd_begin", + "ret": "ImDrawCmd*", + "signature": "()", + "stname": "ImVector_ImDrawCmd", + "templatedgen": true + }, + { + "args": "(const ImVector_ImDrawCmd* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawCmd*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawCmd_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_ImDrawCmd_begin_const", + "ret": "ImDrawCmd const *", + "signature": "()const", + "stname": "ImVector_ImDrawCmd", + "templatedgen": true + } + ], + "ImVector_ImDrawCmd_capacity": [ + { + "args": "(const ImVector_ImDrawCmd* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawCmd*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawCmd_capacity", + "defaults": [], + "funcname": "capacity", + "ov_cimguiname": "ImVector_ImDrawCmd_capacity", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImDrawCmd", + "templatedgen": true + } + ], + "ImVector_ImDrawCmd_clear": [ + { + "args": "(ImVector_ImDrawCmd* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawCmd*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawCmd_clear", + "defaults": [], + "funcname": "clear", + "ov_cimguiname": "ImVector_ImDrawCmd_clear", + "ret": "void", + "signature": "()", + "stname": "ImVector_ImDrawCmd", + "templatedgen": true + } + ], + "ImVector_ImDrawCmd_contains": [ + { + "args": "(const ImVector_ImDrawCmd* self,const ImDrawCmd v)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawCmd*" + }, + { + "name": "v", + "type": "const ImDrawCmd" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImDrawCmd_contains", + "defaults": [], + "funcname": "contains", + "ov_cimguiname": "ImVector_ImDrawCmd_contains", + "ret": "bool", + "signature": "(const ImDrawCmd)const", + "stname": "ImVector_ImDrawCmd", + "templatedgen": true + } + ], + "ImVector_ImDrawCmd_destroy": [ + { + "args": "(ImVector_ImDrawCmd* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawCmd*" + } + ], + "call_args": "(self)", + "cimguiname": "ImVector_ImDrawCmd_destroy", + "defaults": [], + "destructor": true, + "ov_cimguiname": "ImVector_ImDrawCmd_destroy", + "ret": "void", + "signature": "(ImVector_ImDrawCmd*)", + "stname": "ImVector_ImDrawCmd" + } + ], + "ImVector_ImDrawCmd_empty": [ + { + "args": "(const ImVector_ImDrawCmd* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawCmd*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawCmd_empty", + "defaults": [], + "funcname": "empty", + "ov_cimguiname": "ImVector_ImDrawCmd_empty", + "ret": "bool", + "signature": "()const", + "stname": "ImVector_ImDrawCmd", + "templatedgen": true + } + ], + "ImVector_ImDrawCmd_end": [ + { + "args": "(ImVector_ImDrawCmd* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawCmd*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawCmd_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_ImDrawCmd_end", + "ret": "ImDrawCmd*", + "signature": "()", + "stname": "ImVector_ImDrawCmd", + "templatedgen": true + }, + { + "args": "(const ImVector_ImDrawCmd* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawCmd*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawCmd_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_ImDrawCmd_end_const", + "ret": "ImDrawCmd const *", + "signature": "()const", + "stname": "ImVector_ImDrawCmd", + "templatedgen": true + } + ], + "ImVector_ImDrawCmd_erase": [ + { + "args": "(ImVector_ImDrawCmd* self,ImDrawCmd const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawCmd*" + }, + { + "name": "it", + "type": "ImDrawCmd const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImDrawCmd_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_ImDrawCmd_erase", + "ret": "ImDrawCmd*", + "signature": "(const ImDrawCmd*)", + "stname": "ImVector_ImDrawCmd", + "templatedgen": true + }, + { + "args": "(ImVector_ImDrawCmd* self,ImDrawCmd const * it,ImDrawCmd const * it_last)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawCmd*" + }, + { + "name": "it", + "type": "ImDrawCmd const *" + }, + { + "name": "it_last", + "type": "ImDrawCmd const *" + } + ], + "call_args": "(it,it_last)", + "cimguiname": "ImVector_ImDrawCmd_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_ImDrawCmd_eraseTPtr", + "ret": "ImDrawCmd*", + "signature": "(const ImDrawCmd*,const ImDrawCmd*)", + "stname": "ImVector_ImDrawCmd", + "templatedgen": true + } + ], + "ImVector_ImDrawCmd_erase_unsorted": [ + { + "args": "(ImVector_ImDrawCmd* self,ImDrawCmd const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawCmd*" + }, + { + "name": "it", + "type": "ImDrawCmd const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImDrawCmd_erase_unsorted", + "defaults": [], + "funcname": "erase_unsorted", + "ov_cimguiname": "ImVector_ImDrawCmd_erase_unsorted", + "ret": "ImDrawCmd*", + "signature": "(const ImDrawCmd*)", + "stname": "ImVector_ImDrawCmd", + "templatedgen": true + } + ], + "ImVector_ImDrawCmd_front": [ + { + "args": "(ImVector_ImDrawCmd* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawCmd*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawCmd_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_ImDrawCmd_front", + "ret": "ImDrawCmd*", + "retref": "&", + "signature": "()", + "stname": "ImVector_ImDrawCmd", + "templatedgen": true + }, + { + "args": "(const ImVector_ImDrawCmd* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawCmd*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawCmd_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_ImDrawCmd_front_const", + "ret": "ImDrawCmd const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_ImDrawCmd", + "templatedgen": true + } + ], + "ImVector_ImDrawCmd_index_from_ptr": [ + { + "args": "(const ImVector_ImDrawCmd* self,ImDrawCmd const * it)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawCmd*" + }, + { + "name": "it", + "type": "ImDrawCmd const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImDrawCmd_index_from_ptr", + "defaults": [], + "funcname": "index_from_ptr", + "ov_cimguiname": "ImVector_ImDrawCmd_index_from_ptr", + "ret": "int", + "signature": "(const ImDrawCmd*)const", + "stname": "ImVector_ImDrawCmd", + "templatedgen": true + } + ], + "ImVector_ImDrawCmd_insert": [ + { + "args": "(ImVector_ImDrawCmd* self,ImDrawCmd const * it,const ImDrawCmd v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawCmd*" + }, + { + "name": "it", + "type": "ImDrawCmd const *" + }, + { + "name": "v", + "type": "const ImDrawCmd" + } + ], + "call_args": "(it,v)", + "cimguiname": "ImVector_ImDrawCmd_insert", + "defaults": [], + "funcname": "insert", + "ov_cimguiname": "ImVector_ImDrawCmd_insert", + "ret": "ImDrawCmd*", + "signature": "(const ImDrawCmd*,const ImDrawCmd)", + "stname": "ImVector_ImDrawCmd", + "templatedgen": true + } + ], + "ImVector_ImDrawCmd_pop_back": [ + { + "args": "(ImVector_ImDrawCmd* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawCmd*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawCmd_pop_back", + "defaults": [], + "funcname": "pop_back", + "ov_cimguiname": "ImVector_ImDrawCmd_pop_back", + "ret": "void", + "signature": "()", + "stname": "ImVector_ImDrawCmd", + "templatedgen": true + } + ], + "ImVector_ImDrawCmd_push_back": [ + { + "args": "(ImVector_ImDrawCmd* self,const ImDrawCmd v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawCmd*" + }, + { + "name": "v", + "type": "const ImDrawCmd" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImDrawCmd_push_back", + "defaults": [], + "funcname": "push_back", + "ov_cimguiname": "ImVector_ImDrawCmd_push_back", + "ret": "void", + "signature": "(const ImDrawCmd)", + "stname": "ImVector_ImDrawCmd", + "templatedgen": true + } + ], + "ImVector_ImDrawCmd_push_front": [ + { + "args": "(ImVector_ImDrawCmd* self,const ImDrawCmd v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawCmd*" + }, + { + "name": "v", + "type": "const ImDrawCmd" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImDrawCmd_push_front", + "defaults": [], + "funcname": "push_front", + "ov_cimguiname": "ImVector_ImDrawCmd_push_front", + "ret": "void", + "signature": "(const ImDrawCmd)", + "stname": "ImVector_ImDrawCmd", + "templatedgen": true + } + ], + "ImVector_ImDrawCmd_reserve": [ + { + "args": "(ImVector_ImDrawCmd* self,int new_capacity)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawCmd*" + }, + { + "name": "new_capacity", + "type": "int" + } + ], + "call_args": "(new_capacity)", + "cimguiname": "ImVector_ImDrawCmd_reserve", + "defaults": [], + "funcname": "reserve", + "ov_cimguiname": "ImVector_ImDrawCmd_reserve", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_ImDrawCmd", + "templatedgen": true + } + ], + "ImVector_ImDrawCmd_resize": [ + { + "args": "(ImVector_ImDrawCmd* self,int new_size)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawCmd*" + }, + { + "name": "new_size", + "type": "int" + } + ], + "call_args": "(new_size)", + "cimguiname": "ImVector_ImDrawCmd_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_ImDrawCmd_resize", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_ImDrawCmd", + "templatedgen": true + }, + { + "args": "(ImVector_ImDrawCmd* self,int new_size,const ImDrawCmd v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawCmd*" + }, + { + "name": "new_size", + "type": "int" + }, + { + "name": "v", + "type": "const ImDrawCmd" + } + ], + "call_args": "(new_size,v)", + "cimguiname": "ImVector_ImDrawCmd_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_ImDrawCmd_resizeT", + "ret": "void", + "signature": "(int,const ImDrawCmd)", + "stname": "ImVector_ImDrawCmd", + "templatedgen": true + } + ], + "ImVector_ImDrawCmd_size": [ + { + "args": "(const ImVector_ImDrawCmd* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawCmd*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawCmd_size", + "defaults": [], + "funcname": "size", + "ov_cimguiname": "ImVector_ImDrawCmd_size", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImDrawCmd", + "templatedgen": true + } + ], + "ImVector_ImDrawCmd_size_in_bytes": [ + { + "args": "(const ImVector_ImDrawCmd* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawCmd*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawCmd_size_in_bytes", + "defaults": [], + "funcname": "size_in_bytes", + "ov_cimguiname": "ImVector_ImDrawCmd_size_in_bytes", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImDrawCmd", + "templatedgen": true + } + ], + "ImVector_ImDrawCmd_swap": [ + { + "args": "(ImVector_ImDrawCmd* self,ImVector_ImDrawCmd rhs)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawCmd*" + }, + { + "name": "rhs", + "type": "ImVector_ImDrawCmd&" + } + ], + "call_args": "(rhs)", + "cimguiname": "ImVector_ImDrawCmd_swap", + "defaults": [], + "funcname": "swap", + "ov_cimguiname": "ImVector_ImDrawCmd_swap", + "ret": "void", + "signature": "(ImVector)", + "stname": "ImVector_ImDrawCmd", + "templatedgen": true + } + ], + "ImVector_ImDrawIdx_ImVector_ImDrawIdx": [ + { + "args": "()", + "argsT": [], + "call_args": "()", + "cimguiname": "ImVector_ImDrawIdx_ImVector_ImDrawIdx", + "constructor": true, + "defaults": [], + "funcname": "ImVector_ImDrawIdx", + "ov_cimguiname": "ImVector_ImDrawIdx_ImVector_ImDrawIdx", + "signature": "()", + "stname": "ImVector_ImDrawIdx", + "templatedgen": true + }, + { + "args": "(const ImVector_ImDrawIdx src)", + "argsT": [ + { + "name": "src", + "type": "const ImVector_ImDrawIdx" + } + ], + "call_args": "(src)", + "cimguiname": "ImVector_ImDrawIdx_ImVector_ImDrawIdx", + "constructor": true, + "defaults": [], + "funcname": "ImVector_ImDrawIdx", + "ov_cimguiname": "ImVector_ImDrawIdx_ImVector_ImDrawIdxVector", + "signature": "(const ImVector)", + "stname": "ImVector_ImDrawIdx", + "templatedgen": true + } + ], + "ImVector_ImDrawIdx__grow_capacity": [ + { + "args": "(const ImVector_ImDrawIdx* self,int sz)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawIdx*" + }, + { + "name": "sz", + "type": "int" + } + ], + "call_args": "(sz)", + "cimguiname": "ImVector_ImDrawIdx__grow_capacity", + "defaults": [], + "funcname": "_grow_capacity", + "ov_cimguiname": "ImVector_ImDrawIdx__grow_capacity", + "ret": "int", + "signature": "(int)const", + "stname": "ImVector_ImDrawIdx", + "templatedgen": true + } + ], + "ImVector_ImDrawIdx_back": [ + { + "args": "(ImVector_ImDrawIdx* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawIdx*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawIdx_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_ImDrawIdx_back", + "ret": "ImDrawIdx*", + "retref": "&", + "signature": "()", + "stname": "ImVector_ImDrawIdx", + "templatedgen": true + }, + { + "args": "(const ImVector_ImDrawIdx* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawIdx*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawIdx_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_ImDrawIdx_back_const", + "ret": "ImDrawIdx const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_ImDrawIdx", + "templatedgen": true + } + ], + "ImVector_ImDrawIdx_begin": [ + { + "args": "(ImVector_ImDrawIdx* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawIdx*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawIdx_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_ImDrawIdx_begin", + "ret": "ImDrawIdx*", + "signature": "()", + "stname": "ImVector_ImDrawIdx", + "templatedgen": true + }, + { + "args": "(const ImVector_ImDrawIdx* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawIdx*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawIdx_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_ImDrawIdx_begin_const", + "ret": "ImDrawIdx const *", + "signature": "()const", + "stname": "ImVector_ImDrawIdx", + "templatedgen": true + } + ], + "ImVector_ImDrawIdx_capacity": [ + { + "args": "(const ImVector_ImDrawIdx* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawIdx*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawIdx_capacity", + "defaults": [], + "funcname": "capacity", + "ov_cimguiname": "ImVector_ImDrawIdx_capacity", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImDrawIdx", + "templatedgen": true + } + ], + "ImVector_ImDrawIdx_clear": [ + { + "args": "(ImVector_ImDrawIdx* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawIdx*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawIdx_clear", + "defaults": [], + "funcname": "clear", + "ov_cimguiname": "ImVector_ImDrawIdx_clear", + "ret": "void", + "signature": "()", + "stname": "ImVector_ImDrawIdx", + "templatedgen": true + } + ], + "ImVector_ImDrawIdx_contains": [ + { + "args": "(const ImVector_ImDrawIdx* self,const ImDrawIdx v)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawIdx*" + }, + { + "name": "v", + "type": "const ImDrawIdx" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImDrawIdx_contains", + "defaults": [], + "funcname": "contains", + "ov_cimguiname": "ImVector_ImDrawIdx_contains", + "ret": "bool", + "signature": "(const ImDrawIdx)const", + "stname": "ImVector_ImDrawIdx", + "templatedgen": true + } + ], + "ImVector_ImDrawIdx_destroy": [ + { + "args": "(ImVector_ImDrawIdx* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawIdx*" + } + ], + "call_args": "(self)", + "cimguiname": "ImVector_ImDrawIdx_destroy", + "defaults": [], + "destructor": true, + "ov_cimguiname": "ImVector_ImDrawIdx_destroy", + "ret": "void", + "signature": "(ImVector_ImDrawIdx*)", + "stname": "ImVector_ImDrawIdx" + } + ], + "ImVector_ImDrawIdx_empty": [ + { + "args": "(const ImVector_ImDrawIdx* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawIdx*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawIdx_empty", + "defaults": [], + "funcname": "empty", + "ov_cimguiname": "ImVector_ImDrawIdx_empty", + "ret": "bool", + "signature": "()const", + "stname": "ImVector_ImDrawIdx", + "templatedgen": true + } + ], + "ImVector_ImDrawIdx_end": [ + { + "args": "(ImVector_ImDrawIdx* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawIdx*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawIdx_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_ImDrawIdx_end", + "ret": "ImDrawIdx*", + "signature": "()", + "stname": "ImVector_ImDrawIdx", + "templatedgen": true + }, + { + "args": "(const ImVector_ImDrawIdx* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawIdx*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawIdx_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_ImDrawIdx_end_const", + "ret": "ImDrawIdx const *", + "signature": "()const", + "stname": "ImVector_ImDrawIdx", + "templatedgen": true + } + ], + "ImVector_ImDrawIdx_erase": [ + { + "args": "(ImVector_ImDrawIdx* self,ImDrawIdx const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawIdx*" + }, + { + "name": "it", + "type": "ImDrawIdx const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImDrawIdx_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_ImDrawIdx_erase", + "ret": "ImDrawIdx*", + "signature": "(const ImDrawIdx*)", + "stname": "ImVector_ImDrawIdx", + "templatedgen": true + }, + { + "args": "(ImVector_ImDrawIdx* self,ImDrawIdx const * it,ImDrawIdx const * it_last)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawIdx*" + }, + { + "name": "it", + "type": "ImDrawIdx const *" + }, + { + "name": "it_last", + "type": "ImDrawIdx const *" + } + ], + "call_args": "(it,it_last)", + "cimguiname": "ImVector_ImDrawIdx_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_ImDrawIdx_eraseTPtr", + "ret": "ImDrawIdx*", + "signature": "(const ImDrawIdx*,const ImDrawIdx*)", + "stname": "ImVector_ImDrawIdx", + "templatedgen": true + } + ], + "ImVector_ImDrawIdx_erase_unsorted": [ + { + "args": "(ImVector_ImDrawIdx* self,ImDrawIdx const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawIdx*" + }, + { + "name": "it", + "type": "ImDrawIdx const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImDrawIdx_erase_unsorted", + "defaults": [], + "funcname": "erase_unsorted", + "ov_cimguiname": "ImVector_ImDrawIdx_erase_unsorted", + "ret": "ImDrawIdx*", + "signature": "(const ImDrawIdx*)", + "stname": "ImVector_ImDrawIdx", + "templatedgen": true + } + ], + "ImVector_ImDrawIdx_front": [ + { + "args": "(ImVector_ImDrawIdx* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawIdx*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawIdx_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_ImDrawIdx_front", + "ret": "ImDrawIdx*", + "retref": "&", + "signature": "()", + "stname": "ImVector_ImDrawIdx", + "templatedgen": true + }, + { + "args": "(const ImVector_ImDrawIdx* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawIdx*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawIdx_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_ImDrawIdx_front_const", + "ret": "ImDrawIdx const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_ImDrawIdx", + "templatedgen": true + } + ], + "ImVector_ImDrawIdx_index_from_ptr": [ + { + "args": "(const ImVector_ImDrawIdx* self,ImDrawIdx const * it)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawIdx*" + }, + { + "name": "it", + "type": "ImDrawIdx const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImDrawIdx_index_from_ptr", + "defaults": [], + "funcname": "index_from_ptr", + "ov_cimguiname": "ImVector_ImDrawIdx_index_from_ptr", + "ret": "int", + "signature": "(const ImDrawIdx*)const", + "stname": "ImVector_ImDrawIdx", + "templatedgen": true + } + ], + "ImVector_ImDrawIdx_insert": [ + { + "args": "(ImVector_ImDrawIdx* self,ImDrawIdx const * it,const ImDrawIdx v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawIdx*" + }, + { + "name": "it", + "type": "ImDrawIdx const *" + }, + { + "name": "v", + "type": "const ImDrawIdx" + } + ], + "call_args": "(it,v)", + "cimguiname": "ImVector_ImDrawIdx_insert", + "defaults": [], + "funcname": "insert", + "ov_cimguiname": "ImVector_ImDrawIdx_insert", + "ret": "ImDrawIdx*", + "signature": "(const ImDrawIdx*,const ImDrawIdx)", + "stname": "ImVector_ImDrawIdx", + "templatedgen": true + } + ], + "ImVector_ImDrawIdx_pop_back": [ + { + "args": "(ImVector_ImDrawIdx* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawIdx*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawIdx_pop_back", + "defaults": [], + "funcname": "pop_back", + "ov_cimguiname": "ImVector_ImDrawIdx_pop_back", + "ret": "void", + "signature": "()", + "stname": "ImVector_ImDrawIdx", + "templatedgen": true + } + ], + "ImVector_ImDrawIdx_push_back": [ + { + "args": "(ImVector_ImDrawIdx* self,const ImDrawIdx v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawIdx*" + }, + { + "name": "v", + "type": "const ImDrawIdx" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImDrawIdx_push_back", + "defaults": [], + "funcname": "push_back", + "ov_cimguiname": "ImVector_ImDrawIdx_push_back", + "ret": "void", + "signature": "(const ImDrawIdx)", + "stname": "ImVector_ImDrawIdx", + "templatedgen": true + } + ], + "ImVector_ImDrawIdx_push_front": [ + { + "args": "(ImVector_ImDrawIdx* self,const ImDrawIdx v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawIdx*" + }, + { + "name": "v", + "type": "const ImDrawIdx" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImDrawIdx_push_front", + "defaults": [], + "funcname": "push_front", + "ov_cimguiname": "ImVector_ImDrawIdx_push_front", + "ret": "void", + "signature": "(const ImDrawIdx)", + "stname": "ImVector_ImDrawIdx", + "templatedgen": true + } + ], + "ImVector_ImDrawIdx_reserve": [ + { + "args": "(ImVector_ImDrawIdx* self,int new_capacity)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawIdx*" + }, + { + "name": "new_capacity", + "type": "int" + } + ], + "call_args": "(new_capacity)", + "cimguiname": "ImVector_ImDrawIdx_reserve", + "defaults": [], + "funcname": "reserve", + "ov_cimguiname": "ImVector_ImDrawIdx_reserve", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_ImDrawIdx", + "templatedgen": true + } + ], + "ImVector_ImDrawIdx_resize": [ + { + "args": "(ImVector_ImDrawIdx* self,int new_size)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawIdx*" + }, + { + "name": "new_size", + "type": "int" + } + ], + "call_args": "(new_size)", + "cimguiname": "ImVector_ImDrawIdx_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_ImDrawIdx_resize", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_ImDrawIdx", + "templatedgen": true + }, + { + "args": "(ImVector_ImDrawIdx* self,int new_size,const ImDrawIdx v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawIdx*" + }, + { + "name": "new_size", + "type": "int" + }, + { + "name": "v", + "type": "const ImDrawIdx" + } + ], + "call_args": "(new_size,v)", + "cimguiname": "ImVector_ImDrawIdx_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_ImDrawIdx_resizeT", + "ret": "void", + "signature": "(int,const ImDrawIdx)", + "stname": "ImVector_ImDrawIdx", + "templatedgen": true + } + ], + "ImVector_ImDrawIdx_size": [ + { + "args": "(const ImVector_ImDrawIdx* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawIdx*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawIdx_size", + "defaults": [], + "funcname": "size", + "ov_cimguiname": "ImVector_ImDrawIdx_size", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImDrawIdx", + "templatedgen": true + } + ], + "ImVector_ImDrawIdx_size_in_bytes": [ + { + "args": "(const ImVector_ImDrawIdx* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawIdx*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawIdx_size_in_bytes", + "defaults": [], + "funcname": "size_in_bytes", + "ov_cimguiname": "ImVector_ImDrawIdx_size_in_bytes", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImDrawIdx", + "templatedgen": true + } + ], + "ImVector_ImDrawIdx_swap": [ + { + "args": "(ImVector_ImDrawIdx* self,ImVector_ImDrawIdx rhs)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawIdx*" + }, + { + "name": "rhs", + "type": "ImVector_ImDrawIdx&" + } + ], + "call_args": "(rhs)", + "cimguiname": "ImVector_ImDrawIdx_swap", + "defaults": [], + "funcname": "swap", + "ov_cimguiname": "ImVector_ImDrawIdx_swap", + "ret": "void", + "signature": "(ImVector)", + "stname": "ImVector_ImDrawIdx", + "templatedgen": true + } + ], + "ImVector_ImDrawVert_ImVector_ImDrawVert": [ + { + "args": "()", + "argsT": [], + "call_args": "()", + "cimguiname": "ImVector_ImDrawVert_ImVector_ImDrawVert", + "constructor": true, + "defaults": [], + "funcname": "ImVector_ImDrawVert", + "ov_cimguiname": "ImVector_ImDrawVert_ImVector_ImDrawVert", + "signature": "()", + "stname": "ImVector_ImDrawVert", + "templatedgen": true + }, + { + "args": "(const ImVector_ImDrawVert src)", + "argsT": [ + { + "name": "src", + "type": "const ImVector_ImDrawVert" + } + ], + "call_args": "(src)", + "cimguiname": "ImVector_ImDrawVert_ImVector_ImDrawVert", + "constructor": true, + "defaults": [], + "funcname": "ImVector_ImDrawVert", + "ov_cimguiname": "ImVector_ImDrawVert_ImVector_ImDrawVertVector", + "signature": "(const ImVector)", + "stname": "ImVector_ImDrawVert", + "templatedgen": true + } + ], + "ImVector_ImDrawVert__grow_capacity": [ + { + "args": "(const ImVector_ImDrawVert* self,int sz)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawVert*" + }, + { + "name": "sz", + "type": "int" + } + ], + "call_args": "(sz)", + "cimguiname": "ImVector_ImDrawVert__grow_capacity", + "defaults": [], + "funcname": "_grow_capacity", + "ov_cimguiname": "ImVector_ImDrawVert__grow_capacity", + "ret": "int", + "signature": "(int)const", + "stname": "ImVector_ImDrawVert", + "templatedgen": true + } + ], + "ImVector_ImDrawVert_back": [ + { + "args": "(ImVector_ImDrawVert* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawVert*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawVert_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_ImDrawVert_back", + "ret": "ImDrawVert*", + "retref": "&", + "signature": "()", + "stname": "ImVector_ImDrawVert", + "templatedgen": true + }, + { + "args": "(const ImVector_ImDrawVert* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawVert*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawVert_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_ImDrawVert_back_const", + "ret": "ImDrawVert const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_ImDrawVert", + "templatedgen": true + } + ], + "ImVector_ImDrawVert_begin": [ + { + "args": "(ImVector_ImDrawVert* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawVert*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawVert_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_ImDrawVert_begin", + "ret": "ImDrawVert*", + "signature": "()", + "stname": "ImVector_ImDrawVert", + "templatedgen": true + }, + { + "args": "(const ImVector_ImDrawVert* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawVert*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawVert_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_ImDrawVert_begin_const", + "ret": "ImDrawVert const *", + "signature": "()const", + "stname": "ImVector_ImDrawVert", + "templatedgen": true + } + ], + "ImVector_ImDrawVert_capacity": [ + { + "args": "(const ImVector_ImDrawVert* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawVert*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawVert_capacity", + "defaults": [], + "funcname": "capacity", + "ov_cimguiname": "ImVector_ImDrawVert_capacity", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImDrawVert", + "templatedgen": true + } + ], + "ImVector_ImDrawVert_clear": [ + { + "args": "(ImVector_ImDrawVert* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawVert*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawVert_clear", + "defaults": [], + "funcname": "clear", + "ov_cimguiname": "ImVector_ImDrawVert_clear", + "ret": "void", + "signature": "()", + "stname": "ImVector_ImDrawVert", + "templatedgen": true + } + ], + "ImVector_ImDrawVert_contains": [ + { + "args": "(const ImVector_ImDrawVert* self,const ImDrawVert v)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawVert*" + }, + { + "name": "v", + "type": "const ImDrawVert" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImDrawVert_contains", + "defaults": [], + "funcname": "contains", + "ov_cimguiname": "ImVector_ImDrawVert_contains", + "ret": "bool", + "signature": "(const ImDrawVert)const", + "stname": "ImVector_ImDrawVert", + "templatedgen": true + } + ], + "ImVector_ImDrawVert_destroy": [ + { + "args": "(ImVector_ImDrawVert* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawVert*" + } + ], + "call_args": "(self)", + "cimguiname": "ImVector_ImDrawVert_destroy", + "defaults": [], + "destructor": true, + "ov_cimguiname": "ImVector_ImDrawVert_destroy", + "ret": "void", + "signature": "(ImVector_ImDrawVert*)", + "stname": "ImVector_ImDrawVert" + } + ], + "ImVector_ImDrawVert_empty": [ + { + "args": "(const ImVector_ImDrawVert* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawVert*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawVert_empty", + "defaults": [], + "funcname": "empty", + "ov_cimguiname": "ImVector_ImDrawVert_empty", + "ret": "bool", + "signature": "()const", + "stname": "ImVector_ImDrawVert", + "templatedgen": true + } + ], + "ImVector_ImDrawVert_end": [ + { + "args": "(ImVector_ImDrawVert* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawVert*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawVert_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_ImDrawVert_end", + "ret": "ImDrawVert*", + "signature": "()", + "stname": "ImVector_ImDrawVert", + "templatedgen": true + }, + { + "args": "(const ImVector_ImDrawVert* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawVert*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawVert_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_ImDrawVert_end_const", + "ret": "ImDrawVert const *", + "signature": "()const", + "stname": "ImVector_ImDrawVert", + "templatedgen": true + } + ], + "ImVector_ImDrawVert_erase": [ + { + "args": "(ImVector_ImDrawVert* self,ImDrawVert const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawVert*" + }, + { + "name": "it", + "type": "ImDrawVert const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImDrawVert_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_ImDrawVert_erase", + "ret": "ImDrawVert*", + "signature": "(const ImDrawVert*)", + "stname": "ImVector_ImDrawVert", + "templatedgen": true + }, + { + "args": "(ImVector_ImDrawVert* self,ImDrawVert const * it,ImDrawVert const * it_last)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawVert*" + }, + { + "name": "it", + "type": "ImDrawVert const *" + }, + { + "name": "it_last", + "type": "ImDrawVert const *" + } + ], + "call_args": "(it,it_last)", + "cimguiname": "ImVector_ImDrawVert_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_ImDrawVert_eraseTPtr", + "ret": "ImDrawVert*", + "signature": "(const ImDrawVert*,const ImDrawVert*)", + "stname": "ImVector_ImDrawVert", + "templatedgen": true + } + ], + "ImVector_ImDrawVert_erase_unsorted": [ + { + "args": "(ImVector_ImDrawVert* self,ImDrawVert const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawVert*" + }, + { + "name": "it", + "type": "ImDrawVert const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImDrawVert_erase_unsorted", + "defaults": [], + "funcname": "erase_unsorted", + "ov_cimguiname": "ImVector_ImDrawVert_erase_unsorted", + "ret": "ImDrawVert*", + "signature": "(const ImDrawVert*)", + "stname": "ImVector_ImDrawVert", + "templatedgen": true + } + ], + "ImVector_ImDrawVert_front": [ + { + "args": "(ImVector_ImDrawVert* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawVert*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawVert_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_ImDrawVert_front", + "ret": "ImDrawVert*", + "retref": "&", + "signature": "()", + "stname": "ImVector_ImDrawVert", + "templatedgen": true + }, + { + "args": "(const ImVector_ImDrawVert* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawVert*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawVert_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_ImDrawVert_front_const", + "ret": "ImDrawVert const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_ImDrawVert", + "templatedgen": true + } + ], + "ImVector_ImDrawVert_index_from_ptr": [ + { + "args": "(const ImVector_ImDrawVert* self,ImDrawVert const * it)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawVert*" + }, + { + "name": "it", + "type": "ImDrawVert const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImDrawVert_index_from_ptr", + "defaults": [], + "funcname": "index_from_ptr", + "ov_cimguiname": "ImVector_ImDrawVert_index_from_ptr", + "ret": "int", + "signature": "(const ImDrawVert*)const", + "stname": "ImVector_ImDrawVert", + "templatedgen": true + } + ], + "ImVector_ImDrawVert_insert": [ + { + "args": "(ImVector_ImDrawVert* self,ImDrawVert const * it,const ImDrawVert v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawVert*" + }, + { + "name": "it", + "type": "ImDrawVert const *" + }, + { + "name": "v", + "type": "const ImDrawVert" + } + ], + "call_args": "(it,v)", + "cimguiname": "ImVector_ImDrawVert_insert", + "defaults": [], + "funcname": "insert", + "ov_cimguiname": "ImVector_ImDrawVert_insert", + "ret": "ImDrawVert*", + "signature": "(const ImDrawVert*,const ImDrawVert)", + "stname": "ImVector_ImDrawVert", + "templatedgen": true + } + ], + "ImVector_ImDrawVert_pop_back": [ + { + "args": "(ImVector_ImDrawVert* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawVert*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawVert_pop_back", + "defaults": [], + "funcname": "pop_back", + "ov_cimguiname": "ImVector_ImDrawVert_pop_back", + "ret": "void", + "signature": "()", + "stname": "ImVector_ImDrawVert", + "templatedgen": true + } + ], + "ImVector_ImDrawVert_push_back": [ + { + "args": "(ImVector_ImDrawVert* self,const ImDrawVert v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawVert*" + }, + { + "name": "v", + "type": "const ImDrawVert" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImDrawVert_push_back", + "defaults": [], + "funcname": "push_back", + "ov_cimguiname": "ImVector_ImDrawVert_push_back", + "ret": "void", + "signature": "(const ImDrawVert)", + "stname": "ImVector_ImDrawVert", + "templatedgen": true + } + ], + "ImVector_ImDrawVert_push_front": [ + { + "args": "(ImVector_ImDrawVert* self,const ImDrawVert v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawVert*" + }, + { + "name": "v", + "type": "const ImDrawVert" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImDrawVert_push_front", + "defaults": [], + "funcname": "push_front", + "ov_cimguiname": "ImVector_ImDrawVert_push_front", + "ret": "void", + "signature": "(const ImDrawVert)", + "stname": "ImVector_ImDrawVert", + "templatedgen": true + } + ], + "ImVector_ImDrawVert_reserve": [ + { + "args": "(ImVector_ImDrawVert* self,int new_capacity)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawVert*" + }, + { + "name": "new_capacity", + "type": "int" + } + ], + "call_args": "(new_capacity)", + "cimguiname": "ImVector_ImDrawVert_reserve", + "defaults": [], + "funcname": "reserve", + "ov_cimguiname": "ImVector_ImDrawVert_reserve", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_ImDrawVert", + "templatedgen": true + } + ], + "ImVector_ImDrawVert_resize": [ + { + "args": "(ImVector_ImDrawVert* self,int new_size)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawVert*" + }, + { + "name": "new_size", + "type": "int" + } + ], + "call_args": "(new_size)", + "cimguiname": "ImVector_ImDrawVert_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_ImDrawVert_resize", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_ImDrawVert", + "templatedgen": true + }, + { + "args": "(ImVector_ImDrawVert* self,int new_size,const ImDrawVert v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawVert*" + }, + { + "name": "new_size", + "type": "int" + }, + { + "name": "v", + "type": "const ImDrawVert" + } + ], + "call_args": "(new_size,v)", + "cimguiname": "ImVector_ImDrawVert_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_ImDrawVert_resizeT", + "ret": "void", + "signature": "(int,const ImDrawVert)", + "stname": "ImVector_ImDrawVert", + "templatedgen": true + } + ], + "ImVector_ImDrawVert_size": [ + { + "args": "(const ImVector_ImDrawVert* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawVert*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawVert_size", + "defaults": [], + "funcname": "size", + "ov_cimguiname": "ImVector_ImDrawVert_size", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImDrawVert", + "templatedgen": true + } + ], + "ImVector_ImDrawVert_size_in_bytes": [ + { + "args": "(const ImVector_ImDrawVert* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImDrawVert*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImDrawVert_size_in_bytes", + "defaults": [], + "funcname": "size_in_bytes", + "ov_cimguiname": "ImVector_ImDrawVert_size_in_bytes", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImDrawVert", + "templatedgen": true + } + ], + "ImVector_ImDrawVert_swap": [ + { + "args": "(ImVector_ImDrawVert* self,ImVector_ImDrawVert rhs)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImDrawVert*" + }, + { + "name": "rhs", + "type": "ImVector_ImDrawVert&" + } + ], + "call_args": "(rhs)", + "cimguiname": "ImVector_ImDrawVert_swap", + "defaults": [], + "funcname": "swap", + "ov_cimguiname": "ImVector_ImDrawVert_swap", + "ret": "void", + "signature": "(ImVector)", + "stname": "ImVector_ImDrawVert", + "templatedgen": true + } + ], + "ImVector_ImFontConfig_ImVector_ImFontConfig": [ + { + "args": "()", + "argsT": [], + "call_args": "()", + "cimguiname": "ImVector_ImFontConfig_ImVector_ImFontConfig", + "constructor": true, + "defaults": [], + "funcname": "ImVector_ImFontConfig", + "ov_cimguiname": "ImVector_ImFontConfig_ImVector_ImFontConfig", + "signature": "()", + "stname": "ImVector_ImFontConfig", + "templatedgen": true + }, + { + "args": "(const ImVector_ImFontConfig src)", + "argsT": [ + { + "name": "src", + "type": "const ImVector_ImFontConfig" + } + ], + "call_args": "(src)", + "cimguiname": "ImVector_ImFontConfig_ImVector_ImFontConfig", + "constructor": true, + "defaults": [], + "funcname": "ImVector_ImFontConfig", + "ov_cimguiname": "ImVector_ImFontConfig_ImVector_ImFontConfigVector", + "signature": "(const ImVector)", + "stname": "ImVector_ImFontConfig", + "templatedgen": true + } + ], + "ImVector_ImFontConfig__grow_capacity": [ + { + "args": "(const ImVector_ImFontConfig* self,int sz)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontConfig*" + }, + { + "name": "sz", + "type": "int" + } + ], + "call_args": "(sz)", + "cimguiname": "ImVector_ImFontConfig__grow_capacity", + "defaults": [], + "funcname": "_grow_capacity", + "ov_cimguiname": "ImVector_ImFontConfig__grow_capacity", + "ret": "int", + "signature": "(int)const", + "stname": "ImVector_ImFontConfig", + "templatedgen": true + } + ], + "ImVector_ImFontConfig_back": [ + { + "args": "(ImVector_ImFontConfig* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontConfig*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontConfig_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_ImFontConfig_back", + "ret": "ImFontConfig*", + "retref": "&", + "signature": "()", + "stname": "ImVector_ImFontConfig", + "templatedgen": true + }, + { + "args": "(const ImVector_ImFontConfig* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontConfig*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontConfig_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_ImFontConfig_back_const", + "ret": "ImFontConfig const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_ImFontConfig", + "templatedgen": true + } + ], + "ImVector_ImFontConfig_begin": [ + { + "args": "(ImVector_ImFontConfig* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontConfig*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontConfig_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_ImFontConfig_begin", + "ret": "ImFontConfig*", + "signature": "()", + "stname": "ImVector_ImFontConfig", + "templatedgen": true + }, + { + "args": "(const ImVector_ImFontConfig* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontConfig*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontConfig_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_ImFontConfig_begin_const", + "ret": "ImFontConfig const *", + "signature": "()const", + "stname": "ImVector_ImFontConfig", + "templatedgen": true + } + ], + "ImVector_ImFontConfig_capacity": [ + { + "args": "(const ImVector_ImFontConfig* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontConfig*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontConfig_capacity", + "defaults": [], + "funcname": "capacity", + "ov_cimguiname": "ImVector_ImFontConfig_capacity", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImFontConfig", + "templatedgen": true + } + ], + "ImVector_ImFontConfig_clear": [ + { + "args": "(ImVector_ImFontConfig* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontConfig*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontConfig_clear", + "defaults": [], + "funcname": "clear", + "ov_cimguiname": "ImVector_ImFontConfig_clear", + "ret": "void", + "signature": "()", + "stname": "ImVector_ImFontConfig", + "templatedgen": true + } + ], + "ImVector_ImFontConfig_contains": [ + { + "args": "(const ImVector_ImFontConfig* self,const ImFontConfig v)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontConfig*" + }, + { + "name": "v", + "type": "const ImFontConfig" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImFontConfig_contains", + "defaults": [], + "funcname": "contains", + "ov_cimguiname": "ImVector_ImFontConfig_contains", + "ret": "bool", + "signature": "(const ImFontConfig)const", + "stname": "ImVector_ImFontConfig", + "templatedgen": true + } + ], + "ImVector_ImFontConfig_destroy": [ + { + "args": "(ImVector_ImFontConfig* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontConfig*" + } + ], + "call_args": "(self)", + "cimguiname": "ImVector_ImFontConfig_destroy", + "defaults": [], + "destructor": true, + "ov_cimguiname": "ImVector_ImFontConfig_destroy", + "ret": "void", + "signature": "(ImVector_ImFontConfig*)", + "stname": "ImVector_ImFontConfig" + } + ], + "ImVector_ImFontConfig_empty": [ + { + "args": "(const ImVector_ImFontConfig* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontConfig*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontConfig_empty", + "defaults": [], + "funcname": "empty", + "ov_cimguiname": "ImVector_ImFontConfig_empty", + "ret": "bool", + "signature": "()const", + "stname": "ImVector_ImFontConfig", + "templatedgen": true + } + ], + "ImVector_ImFontConfig_end": [ + { + "args": "(ImVector_ImFontConfig* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontConfig*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontConfig_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_ImFontConfig_end", + "ret": "ImFontConfig*", + "signature": "()", + "stname": "ImVector_ImFontConfig", + "templatedgen": true + }, + { + "args": "(const ImVector_ImFontConfig* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontConfig*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontConfig_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_ImFontConfig_end_const", + "ret": "ImFontConfig const *", + "signature": "()const", + "stname": "ImVector_ImFontConfig", + "templatedgen": true + } + ], + "ImVector_ImFontConfig_erase": [ + { + "args": "(ImVector_ImFontConfig* self,ImFontConfig const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontConfig*" + }, + { + "name": "it", + "type": "ImFontConfig const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImFontConfig_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_ImFontConfig_erase", + "ret": "ImFontConfig*", + "signature": "(const ImFontConfig*)", + "stname": "ImVector_ImFontConfig", + "templatedgen": true + }, + { + "args": "(ImVector_ImFontConfig* self,ImFontConfig const * it,ImFontConfig const * it_last)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontConfig*" + }, + { + "name": "it", + "type": "ImFontConfig const *" + }, + { + "name": "it_last", + "type": "ImFontConfig const *" + } + ], + "call_args": "(it,it_last)", + "cimguiname": "ImVector_ImFontConfig_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_ImFontConfig_eraseTPtr", + "ret": "ImFontConfig*", + "signature": "(const ImFontConfig*,const ImFontConfig*)", + "stname": "ImVector_ImFontConfig", + "templatedgen": true + } + ], + "ImVector_ImFontConfig_erase_unsorted": [ + { + "args": "(ImVector_ImFontConfig* self,ImFontConfig const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontConfig*" + }, + { + "name": "it", + "type": "ImFontConfig const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImFontConfig_erase_unsorted", + "defaults": [], + "funcname": "erase_unsorted", + "ov_cimguiname": "ImVector_ImFontConfig_erase_unsorted", + "ret": "ImFontConfig*", + "signature": "(const ImFontConfig*)", + "stname": "ImVector_ImFontConfig", + "templatedgen": true + } + ], + "ImVector_ImFontConfig_front": [ + { + "args": "(ImVector_ImFontConfig* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontConfig*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontConfig_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_ImFontConfig_front", + "ret": "ImFontConfig*", + "retref": "&", + "signature": "()", + "stname": "ImVector_ImFontConfig", + "templatedgen": true + }, + { + "args": "(const ImVector_ImFontConfig* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontConfig*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontConfig_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_ImFontConfig_front_const", + "ret": "ImFontConfig const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_ImFontConfig", + "templatedgen": true + } + ], + "ImVector_ImFontConfig_index_from_ptr": [ + { + "args": "(const ImVector_ImFontConfig* self,ImFontConfig const * it)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontConfig*" + }, + { + "name": "it", + "type": "ImFontConfig const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImFontConfig_index_from_ptr", + "defaults": [], + "funcname": "index_from_ptr", + "ov_cimguiname": "ImVector_ImFontConfig_index_from_ptr", + "ret": "int", + "signature": "(const ImFontConfig*)const", + "stname": "ImVector_ImFontConfig", + "templatedgen": true + } + ], + "ImVector_ImFontConfig_insert": [ + { + "args": "(ImVector_ImFontConfig* self,ImFontConfig const * it,const ImFontConfig v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontConfig*" + }, + { + "name": "it", + "type": "ImFontConfig const *" + }, + { + "name": "v", + "type": "const ImFontConfig" + } + ], + "call_args": "(it,v)", + "cimguiname": "ImVector_ImFontConfig_insert", + "defaults": [], + "funcname": "insert", + "ov_cimguiname": "ImVector_ImFontConfig_insert", + "ret": "ImFontConfig*", + "signature": "(const ImFontConfig*,const ImFontConfig)", + "stname": "ImVector_ImFontConfig", + "templatedgen": true + } + ], + "ImVector_ImFontConfig_pop_back": [ + { + "args": "(ImVector_ImFontConfig* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontConfig*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontConfig_pop_back", + "defaults": [], + "funcname": "pop_back", + "ov_cimguiname": "ImVector_ImFontConfig_pop_back", + "ret": "void", + "signature": "()", + "stname": "ImVector_ImFontConfig", + "templatedgen": true + } + ], + "ImVector_ImFontConfig_push_back": [ + { + "args": "(ImVector_ImFontConfig* self,const ImFontConfig v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontConfig*" + }, + { + "name": "v", + "type": "const ImFontConfig" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImFontConfig_push_back", + "defaults": [], + "funcname": "push_back", + "ov_cimguiname": "ImVector_ImFontConfig_push_back", + "ret": "void", + "signature": "(const ImFontConfig)", + "stname": "ImVector_ImFontConfig", + "templatedgen": true + } + ], + "ImVector_ImFontConfig_push_front": [ + { + "args": "(ImVector_ImFontConfig* self,const ImFontConfig v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontConfig*" + }, + { + "name": "v", + "type": "const ImFontConfig" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImFontConfig_push_front", + "defaults": [], + "funcname": "push_front", + "ov_cimguiname": "ImVector_ImFontConfig_push_front", + "ret": "void", + "signature": "(const ImFontConfig)", + "stname": "ImVector_ImFontConfig", + "templatedgen": true + } + ], + "ImVector_ImFontConfig_reserve": [ + { + "args": "(ImVector_ImFontConfig* self,int new_capacity)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontConfig*" + }, + { + "name": "new_capacity", + "type": "int" + } + ], + "call_args": "(new_capacity)", + "cimguiname": "ImVector_ImFontConfig_reserve", + "defaults": [], + "funcname": "reserve", + "ov_cimguiname": "ImVector_ImFontConfig_reserve", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_ImFontConfig", + "templatedgen": true + } + ], + "ImVector_ImFontConfig_resize": [ + { + "args": "(ImVector_ImFontConfig* self,int new_size)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontConfig*" + }, + { + "name": "new_size", + "type": "int" + } + ], + "call_args": "(new_size)", + "cimguiname": "ImVector_ImFontConfig_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_ImFontConfig_resize", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_ImFontConfig", + "templatedgen": true + }, + { + "args": "(ImVector_ImFontConfig* self,int new_size,const ImFontConfig v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontConfig*" + }, + { + "name": "new_size", + "type": "int" + }, + { + "name": "v", + "type": "const ImFontConfig" + } + ], + "call_args": "(new_size,v)", + "cimguiname": "ImVector_ImFontConfig_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_ImFontConfig_resizeT", + "ret": "void", + "signature": "(int,const ImFontConfig)", + "stname": "ImVector_ImFontConfig", + "templatedgen": true + } + ], + "ImVector_ImFontConfig_size": [ + { + "args": "(const ImVector_ImFontConfig* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontConfig*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontConfig_size", + "defaults": [], + "funcname": "size", + "ov_cimguiname": "ImVector_ImFontConfig_size", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImFontConfig", + "templatedgen": true + } + ], + "ImVector_ImFontConfig_size_in_bytes": [ + { + "args": "(const ImVector_ImFontConfig* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontConfig*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontConfig_size_in_bytes", + "defaults": [], + "funcname": "size_in_bytes", + "ov_cimguiname": "ImVector_ImFontConfig_size_in_bytes", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImFontConfig", + "templatedgen": true + } + ], + "ImVector_ImFontConfig_swap": [ + { + "args": "(ImVector_ImFontConfig* self,ImVector_ImFontConfig rhs)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontConfig*" + }, + { + "name": "rhs", + "type": "ImVector_ImFontConfig&" + } + ], + "call_args": "(rhs)", + "cimguiname": "ImVector_ImFontConfig_swap", + "defaults": [], + "funcname": "swap", + "ov_cimguiname": "ImVector_ImFontConfig_swap", + "ret": "void", + "signature": "(ImVector)", + "stname": "ImVector_ImFontConfig", + "templatedgen": true + } + ], + "ImVector_ImFontGlyph_ImVector_ImFontGlyph": [ + { + "args": "()", + "argsT": [], + "call_args": "()", + "cimguiname": "ImVector_ImFontGlyph_ImVector_ImFontGlyph", + "constructor": true, + "defaults": [], + "funcname": "ImVector_ImFontGlyph", + "ov_cimguiname": "ImVector_ImFontGlyph_ImVector_ImFontGlyph", + "signature": "()", + "stname": "ImVector_ImFontGlyph", + "templatedgen": true + }, + { + "args": "(const ImVector_ImFontGlyph src)", + "argsT": [ + { + "name": "src", + "type": "const ImVector_ImFontGlyph" + } + ], + "call_args": "(src)", + "cimguiname": "ImVector_ImFontGlyph_ImVector_ImFontGlyph", + "constructor": true, + "defaults": [], + "funcname": "ImVector_ImFontGlyph", + "ov_cimguiname": "ImVector_ImFontGlyph_ImVector_ImFontGlyphVector", + "signature": "(const ImVector)", + "stname": "ImVector_ImFontGlyph", + "templatedgen": true + } + ], + "ImVector_ImFontGlyph__grow_capacity": [ + { + "args": "(const ImVector_ImFontGlyph* self,int sz)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontGlyph*" + }, + { + "name": "sz", + "type": "int" + } + ], + "call_args": "(sz)", + "cimguiname": "ImVector_ImFontGlyph__grow_capacity", + "defaults": [], + "funcname": "_grow_capacity", + "ov_cimguiname": "ImVector_ImFontGlyph__grow_capacity", + "ret": "int", + "signature": "(int)const", + "stname": "ImVector_ImFontGlyph", + "templatedgen": true + } + ], + "ImVector_ImFontGlyph_back": [ + { + "args": "(ImVector_ImFontGlyph* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontGlyph*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontGlyph_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_ImFontGlyph_back", + "ret": "ImFontGlyph*", + "retref": "&", + "signature": "()", + "stname": "ImVector_ImFontGlyph", + "templatedgen": true + }, + { + "args": "(const ImVector_ImFontGlyph* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontGlyph*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontGlyph_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_ImFontGlyph_back_const", + "ret": "ImFontGlyph const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_ImFontGlyph", + "templatedgen": true + } + ], + "ImVector_ImFontGlyph_begin": [ + { + "args": "(ImVector_ImFontGlyph* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontGlyph*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontGlyph_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_ImFontGlyph_begin", + "ret": "ImFontGlyph*", + "signature": "()", + "stname": "ImVector_ImFontGlyph", + "templatedgen": true + }, + { + "args": "(const ImVector_ImFontGlyph* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontGlyph*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontGlyph_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_ImFontGlyph_begin_const", + "ret": "ImFontGlyph const *", + "signature": "()const", + "stname": "ImVector_ImFontGlyph", + "templatedgen": true + } + ], + "ImVector_ImFontGlyph_capacity": [ + { + "args": "(const ImVector_ImFontGlyph* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontGlyph*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontGlyph_capacity", + "defaults": [], + "funcname": "capacity", + "ov_cimguiname": "ImVector_ImFontGlyph_capacity", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImFontGlyph", + "templatedgen": true + } + ], + "ImVector_ImFontGlyph_clear": [ + { + "args": "(ImVector_ImFontGlyph* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontGlyph*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontGlyph_clear", + "defaults": [], + "funcname": "clear", + "ov_cimguiname": "ImVector_ImFontGlyph_clear", + "ret": "void", + "signature": "()", + "stname": "ImVector_ImFontGlyph", + "templatedgen": true + } + ], + "ImVector_ImFontGlyph_contains": [ + { + "args": "(const ImVector_ImFontGlyph* self,const ImFontGlyph v)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontGlyph*" + }, + { + "name": "v", + "type": "const ImFontGlyph" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImFontGlyph_contains", + "defaults": [], + "funcname": "contains", + "ov_cimguiname": "ImVector_ImFontGlyph_contains", + "ret": "bool", + "signature": "(const ImFontGlyph)const", + "stname": "ImVector_ImFontGlyph", + "templatedgen": true + } + ], + "ImVector_ImFontGlyph_destroy": [ + { + "args": "(ImVector_ImFontGlyph* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontGlyph*" + } + ], + "call_args": "(self)", + "cimguiname": "ImVector_ImFontGlyph_destroy", + "defaults": [], + "destructor": true, + "ov_cimguiname": "ImVector_ImFontGlyph_destroy", + "ret": "void", + "signature": "(ImVector_ImFontGlyph*)", + "stname": "ImVector_ImFontGlyph" + } + ], + "ImVector_ImFontGlyph_empty": [ + { + "args": "(const ImVector_ImFontGlyph* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontGlyph*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontGlyph_empty", + "defaults": [], + "funcname": "empty", + "ov_cimguiname": "ImVector_ImFontGlyph_empty", + "ret": "bool", + "signature": "()const", + "stname": "ImVector_ImFontGlyph", + "templatedgen": true + } + ], + "ImVector_ImFontGlyph_end": [ + { + "args": "(ImVector_ImFontGlyph* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontGlyph*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontGlyph_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_ImFontGlyph_end", + "ret": "ImFontGlyph*", + "signature": "()", + "stname": "ImVector_ImFontGlyph", + "templatedgen": true + }, + { + "args": "(const ImVector_ImFontGlyph* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontGlyph*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontGlyph_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_ImFontGlyph_end_const", + "ret": "ImFontGlyph const *", + "signature": "()const", + "stname": "ImVector_ImFontGlyph", + "templatedgen": true + } + ], + "ImVector_ImFontGlyph_erase": [ + { + "args": "(ImVector_ImFontGlyph* self,ImFontGlyph const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontGlyph*" + }, + { + "name": "it", + "type": "ImFontGlyph const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImFontGlyph_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_ImFontGlyph_erase", + "ret": "ImFontGlyph*", + "signature": "(const ImFontGlyph*)", + "stname": "ImVector_ImFontGlyph", + "templatedgen": true + }, + { + "args": "(ImVector_ImFontGlyph* self,ImFontGlyph const * it,ImFontGlyph const * it_last)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontGlyph*" + }, + { + "name": "it", + "type": "ImFontGlyph const *" + }, + { + "name": "it_last", + "type": "ImFontGlyph const *" + } + ], + "call_args": "(it,it_last)", + "cimguiname": "ImVector_ImFontGlyph_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_ImFontGlyph_eraseTPtr", + "ret": "ImFontGlyph*", + "signature": "(const ImFontGlyph*,const ImFontGlyph*)", + "stname": "ImVector_ImFontGlyph", + "templatedgen": true + } + ], + "ImVector_ImFontGlyph_erase_unsorted": [ + { + "args": "(ImVector_ImFontGlyph* self,ImFontGlyph const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontGlyph*" + }, + { + "name": "it", + "type": "ImFontGlyph const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImFontGlyph_erase_unsorted", + "defaults": [], + "funcname": "erase_unsorted", + "ov_cimguiname": "ImVector_ImFontGlyph_erase_unsorted", + "ret": "ImFontGlyph*", + "signature": "(const ImFontGlyph*)", + "stname": "ImVector_ImFontGlyph", + "templatedgen": true + } + ], + "ImVector_ImFontGlyph_front": [ + { + "args": "(ImVector_ImFontGlyph* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontGlyph*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontGlyph_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_ImFontGlyph_front", + "ret": "ImFontGlyph*", + "retref": "&", + "signature": "()", + "stname": "ImVector_ImFontGlyph", + "templatedgen": true + }, + { + "args": "(const ImVector_ImFontGlyph* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontGlyph*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontGlyph_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_ImFontGlyph_front_const", + "ret": "ImFontGlyph const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_ImFontGlyph", + "templatedgen": true + } + ], + "ImVector_ImFontGlyph_index_from_ptr": [ + { + "args": "(const ImVector_ImFontGlyph* self,ImFontGlyph const * it)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontGlyph*" + }, + { + "name": "it", + "type": "ImFontGlyph const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImFontGlyph_index_from_ptr", + "defaults": [], + "funcname": "index_from_ptr", + "ov_cimguiname": "ImVector_ImFontGlyph_index_from_ptr", + "ret": "int", + "signature": "(const ImFontGlyph*)const", + "stname": "ImVector_ImFontGlyph", + "templatedgen": true + } + ], + "ImVector_ImFontGlyph_insert": [ + { + "args": "(ImVector_ImFontGlyph* self,ImFontGlyph const * it,const ImFontGlyph v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontGlyph*" + }, + { + "name": "it", + "type": "ImFontGlyph const *" + }, + { + "name": "v", + "type": "const ImFontGlyph" + } + ], + "call_args": "(it,v)", + "cimguiname": "ImVector_ImFontGlyph_insert", + "defaults": [], + "funcname": "insert", + "ov_cimguiname": "ImVector_ImFontGlyph_insert", + "ret": "ImFontGlyph*", + "signature": "(const ImFontGlyph*,const ImFontGlyph)", + "stname": "ImVector_ImFontGlyph", + "templatedgen": true + } + ], + "ImVector_ImFontGlyph_pop_back": [ + { + "args": "(ImVector_ImFontGlyph* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontGlyph*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontGlyph_pop_back", + "defaults": [], + "funcname": "pop_back", + "ov_cimguiname": "ImVector_ImFontGlyph_pop_back", + "ret": "void", + "signature": "()", + "stname": "ImVector_ImFontGlyph", + "templatedgen": true + } + ], + "ImVector_ImFontGlyph_push_back": [ + { + "args": "(ImVector_ImFontGlyph* self,const ImFontGlyph v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontGlyph*" + }, + { + "name": "v", + "type": "const ImFontGlyph" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImFontGlyph_push_back", + "defaults": [], + "funcname": "push_back", + "ov_cimguiname": "ImVector_ImFontGlyph_push_back", + "ret": "void", + "signature": "(const ImFontGlyph)", + "stname": "ImVector_ImFontGlyph", + "templatedgen": true + } + ], + "ImVector_ImFontGlyph_push_front": [ + { + "args": "(ImVector_ImFontGlyph* self,const ImFontGlyph v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontGlyph*" + }, + { + "name": "v", + "type": "const ImFontGlyph" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImFontGlyph_push_front", + "defaults": [], + "funcname": "push_front", + "ov_cimguiname": "ImVector_ImFontGlyph_push_front", + "ret": "void", + "signature": "(const ImFontGlyph)", + "stname": "ImVector_ImFontGlyph", + "templatedgen": true + } + ], + "ImVector_ImFontGlyph_reserve": [ + { + "args": "(ImVector_ImFontGlyph* self,int new_capacity)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontGlyph*" + }, + { + "name": "new_capacity", + "type": "int" + } + ], + "call_args": "(new_capacity)", + "cimguiname": "ImVector_ImFontGlyph_reserve", + "defaults": [], + "funcname": "reserve", + "ov_cimguiname": "ImVector_ImFontGlyph_reserve", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_ImFontGlyph", + "templatedgen": true + } + ], + "ImVector_ImFontGlyph_resize": [ + { + "args": "(ImVector_ImFontGlyph* self,int new_size)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontGlyph*" + }, + { + "name": "new_size", + "type": "int" + } + ], + "call_args": "(new_size)", + "cimguiname": "ImVector_ImFontGlyph_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_ImFontGlyph_resize", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_ImFontGlyph", + "templatedgen": true + }, + { + "args": "(ImVector_ImFontGlyph* self,int new_size,const ImFontGlyph v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontGlyph*" + }, + { + "name": "new_size", + "type": "int" + }, + { + "name": "v", + "type": "const ImFontGlyph" + } + ], + "call_args": "(new_size,v)", + "cimguiname": "ImVector_ImFontGlyph_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_ImFontGlyph_resizeT", + "ret": "void", + "signature": "(int,const ImFontGlyph)", + "stname": "ImVector_ImFontGlyph", + "templatedgen": true + } + ], + "ImVector_ImFontGlyph_size": [ + { + "args": "(const ImVector_ImFontGlyph* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontGlyph*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontGlyph_size", + "defaults": [], + "funcname": "size", + "ov_cimguiname": "ImVector_ImFontGlyph_size", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImFontGlyph", + "templatedgen": true + } + ], + "ImVector_ImFontGlyph_size_in_bytes": [ + { + "args": "(const ImVector_ImFontGlyph* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontGlyph*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontGlyph_size_in_bytes", + "defaults": [], + "funcname": "size_in_bytes", + "ov_cimguiname": "ImVector_ImFontGlyph_size_in_bytes", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImFontGlyph", + "templatedgen": true + } + ], + "ImVector_ImFontGlyph_swap": [ + { + "args": "(ImVector_ImFontGlyph* self,ImVector_ImFontGlyph rhs)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontGlyph*" + }, + { + "name": "rhs", + "type": "ImVector_ImFontGlyph&" + } + ], + "call_args": "(rhs)", + "cimguiname": "ImVector_ImFontGlyph_swap", + "defaults": [], + "funcname": "swap", + "ov_cimguiname": "ImVector_ImFontGlyph_swap", + "ret": "void", + "signature": "(ImVector)", + "stname": "ImVector_ImFontGlyph", + "templatedgen": true + } + ], + "ImVector_ImFontPtr_ImVector_ImFontPtr": [ + { + "args": "()", + "argsT": [], + "call_args": "()", + "cimguiname": "ImVector_ImFontPtr_ImVector_ImFontPtr", + "constructor": true, + "defaults": [], + "funcname": "ImVector_ImFontPtr", + "ov_cimguiname": "ImVector_ImFontPtr_ImVector_ImFontPtr", + "signature": "()", + "stname": "ImVector_ImFontPtr", + "templatedgen": true + }, + { + "args": "(const ImVector_ImFontPtr src)", + "argsT": [ + { + "name": "src", + "type": "const ImVector_ImFontPtr" + } + ], + "call_args": "(src)", + "cimguiname": "ImVector_ImFontPtr_ImVector_ImFontPtr", + "constructor": true, + "defaults": [], + "funcname": "ImVector_ImFontPtr", + "ov_cimguiname": "ImVector_ImFontPtr_ImVector_ImFontPtrVector", + "signature": "(const ImVector)", + "stname": "ImVector_ImFontPtr", + "templatedgen": true + } + ], + "ImVector_ImFontPtr__grow_capacity": [ + { + "args": "(const ImVector_ImFontPtr* self,int sz)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontPtr*" + }, + { + "name": "sz", + "type": "int" + } + ], + "call_args": "(sz)", + "cimguiname": "ImVector_ImFontPtr__grow_capacity", + "defaults": [], + "funcname": "_grow_capacity", + "ov_cimguiname": "ImVector_ImFontPtr__grow_capacity", + "ret": "int", + "signature": "(int)const", + "stname": "ImVector_ImFontPtr", + "templatedgen": true + } + ], + "ImVector_ImFontPtr_back": [ + { + "args": "(ImVector_ImFontPtr* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontPtr*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontPtr_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_ImFontPtr_back", + "ret": "ImFont**", + "retref": "&", + "signature": "()", + "stname": "ImVector_ImFontPtr", + "templatedgen": true + }, + { + "args": "(const ImVector_ImFontPtr* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontPtr*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontPtr_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_ImFontPtr_back_const", + "ret": "ImFont* const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_ImFontPtr", + "templatedgen": true + } + ], + "ImVector_ImFontPtr_begin": [ + { + "args": "(ImVector_ImFontPtr* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontPtr*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontPtr_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_ImFontPtr_begin", + "ret": "ImFont**", + "signature": "()", + "stname": "ImVector_ImFontPtr", + "templatedgen": true + }, + { + "args": "(const ImVector_ImFontPtr* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontPtr*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontPtr_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_ImFontPtr_begin_const", + "ret": "ImFont* const *", + "signature": "()const", + "stname": "ImVector_ImFontPtr", + "templatedgen": true + } + ], + "ImVector_ImFontPtr_capacity": [ + { + "args": "(const ImVector_ImFontPtr* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontPtr*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontPtr_capacity", + "defaults": [], + "funcname": "capacity", + "ov_cimguiname": "ImVector_ImFontPtr_capacity", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImFontPtr", + "templatedgen": true + } + ], + "ImVector_ImFontPtr_clear": [ + { + "args": "(ImVector_ImFontPtr* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontPtr*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontPtr_clear", + "defaults": [], + "funcname": "clear", + "ov_cimguiname": "ImVector_ImFontPtr_clear", + "ret": "void", + "signature": "()", + "stname": "ImVector_ImFontPtr", + "templatedgen": true + } + ], + "ImVector_ImFontPtr_contains": [ + { + "args": "(const ImVector_ImFontPtr* self,ImFont* const v)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontPtr*" + }, + { + "name": "v", + "type": "ImFont* const " + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImFontPtr_contains", + "defaults": [], + "funcname": "contains", + "ov_cimguiname": "ImVector_ImFontPtr_contains", + "ret": "bool", + "signature": "(const ImFont*)const", + "stname": "ImVector_ImFontPtr", + "templatedgen": true + } + ], + "ImVector_ImFontPtr_destroy": [ + { + "args": "(ImVector_ImFontPtr* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontPtr*" + } + ], + "call_args": "(self)", + "cimguiname": "ImVector_ImFontPtr_destroy", + "defaults": [], + "destructor": true, + "ov_cimguiname": "ImVector_ImFontPtr_destroy", + "ret": "void", + "signature": "(ImVector_ImFontPtr*)", + "stname": "ImVector_ImFontPtr" + } + ], + "ImVector_ImFontPtr_empty": [ + { + "args": "(const ImVector_ImFontPtr* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontPtr*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontPtr_empty", + "defaults": [], + "funcname": "empty", + "ov_cimguiname": "ImVector_ImFontPtr_empty", + "ret": "bool", + "signature": "()const", + "stname": "ImVector_ImFontPtr", + "templatedgen": true + } + ], + "ImVector_ImFontPtr_end": [ + { + "args": "(ImVector_ImFontPtr* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontPtr*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontPtr_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_ImFontPtr_end", + "ret": "ImFont**", + "signature": "()", + "stname": "ImVector_ImFontPtr", + "templatedgen": true + }, + { + "args": "(const ImVector_ImFontPtr* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontPtr*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontPtr_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_ImFontPtr_end_const", + "ret": "ImFont* const *", + "signature": "()const", + "stname": "ImVector_ImFontPtr", + "templatedgen": true + } + ], + "ImVector_ImFontPtr_erase": [ + { + "args": "(ImVector_ImFontPtr* self,ImFont* const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontPtr*" + }, + { + "name": "it", + "type": "ImFont* const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImFontPtr_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_ImFontPtr_erase", + "ret": "ImFont**", + "signature": "(const ImFont**)", + "stname": "ImVector_ImFontPtr", + "templatedgen": true + }, + { + "args": "(ImVector_ImFontPtr* self,ImFont* const * it,ImFont* const * it_last)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontPtr*" + }, + { + "name": "it", + "type": "ImFont* const *" + }, + { + "name": "it_last", + "type": "ImFont* const *" + } + ], + "call_args": "(it,it_last)", + "cimguiname": "ImVector_ImFontPtr_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_ImFontPtr_eraseTPtr", + "ret": "ImFont**", + "signature": "(const ImFont**,const ImFont**)", + "stname": "ImVector_ImFontPtr", + "templatedgen": true + } + ], + "ImVector_ImFontPtr_erase_unsorted": [ + { + "args": "(ImVector_ImFontPtr* self,ImFont* const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontPtr*" + }, + { + "name": "it", + "type": "ImFont* const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImFontPtr_erase_unsorted", + "defaults": [], + "funcname": "erase_unsorted", + "ov_cimguiname": "ImVector_ImFontPtr_erase_unsorted", + "ret": "ImFont**", + "signature": "(const ImFont**)", + "stname": "ImVector_ImFontPtr", + "templatedgen": true + } + ], + "ImVector_ImFontPtr_front": [ + { + "args": "(ImVector_ImFontPtr* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontPtr*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontPtr_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_ImFontPtr_front", + "ret": "ImFont**", + "retref": "&", + "signature": "()", + "stname": "ImVector_ImFontPtr", + "templatedgen": true + }, + { + "args": "(const ImVector_ImFontPtr* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontPtr*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontPtr_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_ImFontPtr_front_const", + "ret": "ImFont* const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_ImFontPtr", + "templatedgen": true + } + ], + "ImVector_ImFontPtr_index_from_ptr": [ + { + "args": "(const ImVector_ImFontPtr* self,ImFont* const * it)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontPtr*" + }, + { + "name": "it", + "type": "ImFont* const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImFontPtr_index_from_ptr", + "defaults": [], + "funcname": "index_from_ptr", + "ov_cimguiname": "ImVector_ImFontPtr_index_from_ptr", + "ret": "int", + "signature": "(const ImFont**)const", + "stname": "ImVector_ImFontPtr", + "templatedgen": true + } + ], + "ImVector_ImFontPtr_insert": [ + { + "args": "(ImVector_ImFontPtr* self,ImFont* const * it,ImFont* const v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontPtr*" + }, + { + "name": "it", + "type": "ImFont* const *" + }, + { + "name": "v", + "type": "ImFont* const " + } + ], + "call_args": "(it,v)", + "cimguiname": "ImVector_ImFontPtr_insert", + "defaults": [], + "funcname": "insert", + "ov_cimguiname": "ImVector_ImFontPtr_insert", + "ret": "ImFont**", + "signature": "(const ImFont**,const ImFont*)", + "stname": "ImVector_ImFontPtr", + "templatedgen": true + } + ], + "ImVector_ImFontPtr_pop_back": [ + { + "args": "(ImVector_ImFontPtr* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontPtr*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontPtr_pop_back", + "defaults": [], + "funcname": "pop_back", + "ov_cimguiname": "ImVector_ImFontPtr_pop_back", + "ret": "void", + "signature": "()", + "stname": "ImVector_ImFontPtr", + "templatedgen": true + } + ], + "ImVector_ImFontPtr_push_back": [ + { + "args": "(ImVector_ImFontPtr* self,ImFont* const v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontPtr*" + }, + { + "name": "v", + "type": "ImFont* const " + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImFontPtr_push_back", + "defaults": [], + "funcname": "push_back", + "ov_cimguiname": "ImVector_ImFontPtr_push_back", + "ret": "void", + "signature": "(const ImFont*)", + "stname": "ImVector_ImFontPtr", + "templatedgen": true + } + ], + "ImVector_ImFontPtr_push_front": [ + { + "args": "(ImVector_ImFontPtr* self,ImFont* const v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontPtr*" + }, + { + "name": "v", + "type": "ImFont* const " + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImFontPtr_push_front", + "defaults": [], + "funcname": "push_front", + "ov_cimguiname": "ImVector_ImFontPtr_push_front", + "ret": "void", + "signature": "(const ImFont*)", + "stname": "ImVector_ImFontPtr", + "templatedgen": true + } + ], + "ImVector_ImFontPtr_reserve": [ + { + "args": "(ImVector_ImFontPtr* self,int new_capacity)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontPtr*" + }, + { + "name": "new_capacity", + "type": "int" + } + ], + "call_args": "(new_capacity)", + "cimguiname": "ImVector_ImFontPtr_reserve", + "defaults": [], + "funcname": "reserve", + "ov_cimguiname": "ImVector_ImFontPtr_reserve", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_ImFontPtr", + "templatedgen": true + } + ], + "ImVector_ImFontPtr_resize": [ + { + "args": "(ImVector_ImFontPtr* self,int new_size)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontPtr*" + }, + { + "name": "new_size", + "type": "int" + } + ], + "call_args": "(new_size)", + "cimguiname": "ImVector_ImFontPtr_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_ImFontPtr_resize", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_ImFontPtr", + "templatedgen": true + }, + { + "args": "(ImVector_ImFontPtr* self,int new_size,ImFont* const v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontPtr*" + }, + { + "name": "new_size", + "type": "int" + }, + { + "name": "v", + "type": "ImFont* const " + } + ], + "call_args": "(new_size,v)", + "cimguiname": "ImVector_ImFontPtr_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_ImFontPtr_resizeT", + "ret": "void", + "signature": "(int,const ImFont*)", + "stname": "ImVector_ImFontPtr", + "templatedgen": true + } + ], + "ImVector_ImFontPtr_size": [ + { + "args": "(const ImVector_ImFontPtr* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontPtr*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontPtr_size", + "defaults": [], + "funcname": "size", + "ov_cimguiname": "ImVector_ImFontPtr_size", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImFontPtr", + "templatedgen": true + } + ], + "ImVector_ImFontPtr_size_in_bytes": [ + { + "args": "(const ImVector_ImFontPtr* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImFontPtr*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImFontPtr_size_in_bytes", + "defaults": [], + "funcname": "size_in_bytes", + "ov_cimguiname": "ImVector_ImFontPtr_size_in_bytes", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImFontPtr", + "templatedgen": true + } + ], + "ImVector_ImFontPtr_swap": [ + { + "args": "(ImVector_ImFontPtr* self,ImVector_ImFontPtr rhs)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImFontPtr*" + }, + { + "name": "rhs", + "type": "ImVector_ImFontPtr&" + } + ], + "call_args": "(rhs)", + "cimguiname": "ImVector_ImFontPtr_swap", + "defaults": [], + "funcname": "swap", + "ov_cimguiname": "ImVector_ImFontPtr_swap", + "ret": "void", + "signature": "(ImVector)", + "stname": "ImVector_ImFontPtr", + "templatedgen": true + } + ], + "ImVector_ImTextureID_ImVector_ImTextureID": [ + { + "args": "()", + "argsT": [], + "call_args": "()", + "cimguiname": "ImVector_ImTextureID_ImVector_ImTextureID", + "constructor": true, + "defaults": [], + "funcname": "ImVector_ImTextureID", + "ov_cimguiname": "ImVector_ImTextureID_ImVector_ImTextureID", + "signature": "()", + "stname": "ImVector_ImTextureID", + "templatedgen": true + }, + { + "args": "(const ImVector_ImTextureID src)", + "argsT": [ + { + "name": "src", + "type": "const ImVector_ImTextureID" + } + ], + "call_args": "(src)", + "cimguiname": "ImVector_ImTextureID_ImVector_ImTextureID", + "constructor": true, + "defaults": [], + "funcname": "ImVector_ImTextureID", + "ov_cimguiname": "ImVector_ImTextureID_ImVector_ImTextureIDVector", + "signature": "(const ImVector)", + "stname": "ImVector_ImTextureID", + "templatedgen": true + } + ], + "ImVector_ImTextureID__grow_capacity": [ + { + "args": "(const ImVector_ImTextureID* self,int sz)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImTextureID*" + }, + { + "name": "sz", + "type": "int" + } + ], + "call_args": "(sz)", + "cimguiname": "ImVector_ImTextureID__grow_capacity", + "defaults": [], + "funcname": "_grow_capacity", + "ov_cimguiname": "ImVector_ImTextureID__grow_capacity", + "ret": "int", + "signature": "(int)const", + "stname": "ImVector_ImTextureID", + "templatedgen": true + } + ], + "ImVector_ImTextureID_back": [ + { + "args": "(ImVector_ImTextureID* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImTextureID*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImTextureID_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_ImTextureID_back", + "ret": "ImTextureID*", + "retref": "&", + "signature": "()", + "stname": "ImVector_ImTextureID", + "templatedgen": true + }, + { + "args": "(const ImVector_ImTextureID* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImTextureID*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImTextureID_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_ImTextureID_back_const", + "ret": "ImTextureID const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_ImTextureID", + "templatedgen": true + } + ], + "ImVector_ImTextureID_begin": [ + { + "args": "(ImVector_ImTextureID* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImTextureID*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImTextureID_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_ImTextureID_begin", + "ret": "ImTextureID*", + "signature": "()", + "stname": "ImVector_ImTextureID", + "templatedgen": true + }, + { + "args": "(const ImVector_ImTextureID* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImTextureID*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImTextureID_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_ImTextureID_begin_const", + "ret": "ImTextureID const *", + "signature": "()const", + "stname": "ImVector_ImTextureID", + "templatedgen": true + } + ], + "ImVector_ImTextureID_capacity": [ + { + "args": "(const ImVector_ImTextureID* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImTextureID*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImTextureID_capacity", + "defaults": [], + "funcname": "capacity", + "ov_cimguiname": "ImVector_ImTextureID_capacity", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImTextureID", + "templatedgen": true + } + ], + "ImVector_ImTextureID_clear": [ + { + "args": "(ImVector_ImTextureID* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImTextureID*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImTextureID_clear", + "defaults": [], + "funcname": "clear", + "ov_cimguiname": "ImVector_ImTextureID_clear", + "ret": "void", + "signature": "()", + "stname": "ImVector_ImTextureID", + "templatedgen": true + } + ], + "ImVector_ImTextureID_contains": [ + { + "args": "(const ImVector_ImTextureID* self,const ImTextureID v)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImTextureID*" + }, + { + "name": "v", + "type": "const ImTextureID" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImTextureID_contains", + "defaults": [], + "funcname": "contains", + "ov_cimguiname": "ImVector_ImTextureID_contains", + "ret": "bool", + "signature": "(const ImTextureID)const", + "stname": "ImVector_ImTextureID", + "templatedgen": true + } + ], + "ImVector_ImTextureID_destroy": [ + { + "args": "(ImVector_ImTextureID* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImTextureID*" + } + ], + "call_args": "(self)", + "cimguiname": "ImVector_ImTextureID_destroy", + "defaults": [], + "destructor": true, + "ov_cimguiname": "ImVector_ImTextureID_destroy", + "ret": "void", + "signature": "(ImVector_ImTextureID*)", + "stname": "ImVector_ImTextureID" + } + ], + "ImVector_ImTextureID_empty": [ + { + "args": "(const ImVector_ImTextureID* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImTextureID*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImTextureID_empty", + "defaults": [], + "funcname": "empty", + "ov_cimguiname": "ImVector_ImTextureID_empty", + "ret": "bool", + "signature": "()const", + "stname": "ImVector_ImTextureID", + "templatedgen": true + } + ], + "ImVector_ImTextureID_end": [ + { + "args": "(ImVector_ImTextureID* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImTextureID*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImTextureID_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_ImTextureID_end", + "ret": "ImTextureID*", + "signature": "()", + "stname": "ImVector_ImTextureID", + "templatedgen": true + }, + { + "args": "(const ImVector_ImTextureID* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImTextureID*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImTextureID_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_ImTextureID_end_const", + "ret": "ImTextureID const *", + "signature": "()const", + "stname": "ImVector_ImTextureID", + "templatedgen": true + } + ], + "ImVector_ImTextureID_erase": [ + { + "args": "(ImVector_ImTextureID* self,ImTextureID const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImTextureID*" + }, + { + "name": "it", + "type": "ImTextureID const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImTextureID_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_ImTextureID_erase", + "ret": "ImTextureID*", + "signature": "(const ImTextureID*)", + "stname": "ImVector_ImTextureID", + "templatedgen": true + }, + { + "args": "(ImVector_ImTextureID* self,ImTextureID const * it,ImTextureID const * it_last)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImTextureID*" + }, + { + "name": "it", + "type": "ImTextureID const *" + }, + { + "name": "it_last", + "type": "ImTextureID const *" + } + ], + "call_args": "(it,it_last)", + "cimguiname": "ImVector_ImTextureID_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_ImTextureID_eraseTPtr", + "ret": "ImTextureID*", + "signature": "(const ImTextureID*,const ImTextureID*)", + "stname": "ImVector_ImTextureID", + "templatedgen": true + } + ], + "ImVector_ImTextureID_erase_unsorted": [ + { + "args": "(ImVector_ImTextureID* self,ImTextureID const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImTextureID*" + }, + { + "name": "it", + "type": "ImTextureID const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImTextureID_erase_unsorted", + "defaults": [], + "funcname": "erase_unsorted", + "ov_cimguiname": "ImVector_ImTextureID_erase_unsorted", + "ret": "ImTextureID*", + "signature": "(const ImTextureID*)", + "stname": "ImVector_ImTextureID", + "templatedgen": true + } + ], + "ImVector_ImTextureID_front": [ + { + "args": "(ImVector_ImTextureID* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImTextureID*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImTextureID_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_ImTextureID_front", + "ret": "ImTextureID*", + "retref": "&", + "signature": "()", + "stname": "ImVector_ImTextureID", + "templatedgen": true + }, + { + "args": "(const ImVector_ImTextureID* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImTextureID*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImTextureID_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_ImTextureID_front_const", + "ret": "ImTextureID const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_ImTextureID", + "templatedgen": true + } + ], + "ImVector_ImTextureID_index_from_ptr": [ + { + "args": "(const ImVector_ImTextureID* self,ImTextureID const * it)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImTextureID*" + }, + { + "name": "it", + "type": "ImTextureID const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImTextureID_index_from_ptr", + "defaults": [], + "funcname": "index_from_ptr", + "ov_cimguiname": "ImVector_ImTextureID_index_from_ptr", + "ret": "int", + "signature": "(const ImTextureID*)const", + "stname": "ImVector_ImTextureID", + "templatedgen": true + } + ], + "ImVector_ImTextureID_insert": [ + { + "args": "(ImVector_ImTextureID* self,ImTextureID const * it,const ImTextureID v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImTextureID*" + }, + { + "name": "it", + "type": "ImTextureID const *" + }, + { + "name": "v", + "type": "const ImTextureID" + } + ], + "call_args": "(it,v)", + "cimguiname": "ImVector_ImTextureID_insert", + "defaults": [], + "funcname": "insert", + "ov_cimguiname": "ImVector_ImTextureID_insert", + "ret": "ImTextureID*", + "signature": "(const ImTextureID*,const ImTextureID)", + "stname": "ImVector_ImTextureID", + "templatedgen": true + } + ], + "ImVector_ImTextureID_pop_back": [ + { + "args": "(ImVector_ImTextureID* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImTextureID*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImTextureID_pop_back", + "defaults": [], + "funcname": "pop_back", + "ov_cimguiname": "ImVector_ImTextureID_pop_back", + "ret": "void", + "signature": "()", + "stname": "ImVector_ImTextureID", + "templatedgen": true + } + ], + "ImVector_ImTextureID_push_back": [ + { + "args": "(ImVector_ImTextureID* self,const ImTextureID v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImTextureID*" + }, + { + "name": "v", + "type": "const ImTextureID" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImTextureID_push_back", + "defaults": [], + "funcname": "push_back", + "ov_cimguiname": "ImVector_ImTextureID_push_back", + "ret": "void", + "signature": "(const ImTextureID)", + "stname": "ImVector_ImTextureID", + "templatedgen": true + } + ], + "ImVector_ImTextureID_push_front": [ + { + "args": "(ImVector_ImTextureID* self,const ImTextureID v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImTextureID*" + }, + { + "name": "v", + "type": "const ImTextureID" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImTextureID_push_front", + "defaults": [], + "funcname": "push_front", + "ov_cimguiname": "ImVector_ImTextureID_push_front", + "ret": "void", + "signature": "(const ImTextureID)", + "stname": "ImVector_ImTextureID", + "templatedgen": true + } + ], + "ImVector_ImTextureID_reserve": [ + { + "args": "(ImVector_ImTextureID* self,int new_capacity)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImTextureID*" + }, + { + "name": "new_capacity", + "type": "int" + } + ], + "call_args": "(new_capacity)", + "cimguiname": "ImVector_ImTextureID_reserve", + "defaults": [], + "funcname": "reserve", + "ov_cimguiname": "ImVector_ImTextureID_reserve", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_ImTextureID", + "templatedgen": true + } + ], + "ImVector_ImTextureID_resize": [ + { + "args": "(ImVector_ImTextureID* self,int new_size)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImTextureID*" + }, + { + "name": "new_size", + "type": "int" + } + ], + "call_args": "(new_size)", + "cimguiname": "ImVector_ImTextureID_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_ImTextureID_resize", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_ImTextureID", + "templatedgen": true + }, + { + "args": "(ImVector_ImTextureID* self,int new_size,const ImTextureID v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImTextureID*" + }, + { + "name": "new_size", + "type": "int" + }, + { + "name": "v", + "type": "const ImTextureID" + } + ], + "call_args": "(new_size,v)", + "cimguiname": "ImVector_ImTextureID_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_ImTextureID_resizeT", + "ret": "void", + "signature": "(int,const ImTextureID)", + "stname": "ImVector_ImTextureID", + "templatedgen": true + } + ], + "ImVector_ImTextureID_size": [ + { + "args": "(const ImVector_ImTextureID* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImTextureID*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImTextureID_size", + "defaults": [], + "funcname": "size", + "ov_cimguiname": "ImVector_ImTextureID_size", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImTextureID", + "templatedgen": true + } + ], + "ImVector_ImTextureID_size_in_bytes": [ + { + "args": "(const ImVector_ImTextureID* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImTextureID*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImTextureID_size_in_bytes", + "defaults": [], + "funcname": "size_in_bytes", + "ov_cimguiname": "ImVector_ImTextureID_size_in_bytes", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImTextureID", + "templatedgen": true + } + ], + "ImVector_ImTextureID_swap": [ + { + "args": "(ImVector_ImTextureID* self,ImVector_ImTextureID rhs)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImTextureID*" + }, + { + "name": "rhs", + "type": "ImVector_ImTextureID&" + } + ], + "call_args": "(rhs)", + "cimguiname": "ImVector_ImTextureID_swap", + "defaults": [], + "funcname": "swap", + "ov_cimguiname": "ImVector_ImTextureID_swap", + "ret": "void", + "signature": "(ImVector)", + "stname": "ImVector_ImTextureID", + "templatedgen": true + } + ], + "ImVector_ImVec2_ImVector_ImVec2": [ + { + "args": "()", + "argsT": [], + "call_args": "()", + "cimguiname": "ImVector_ImVec2_ImVector_ImVec2", + "constructor": true, + "defaults": [], + "funcname": "ImVector_ImVec2", + "ov_cimguiname": "ImVector_ImVec2_ImVector_ImVec2", + "signature": "()", + "stname": "ImVector_ImVec2", + "templatedgen": true + }, + { + "args": "(const ImVector_ImVec2 src)", + "argsT": [ + { + "name": "src", + "type": "const ImVector_ImVec2" + } + ], + "call_args": "(src)", + "cimguiname": "ImVector_ImVec2_ImVector_ImVec2", + "constructor": true, + "defaults": [], + "funcname": "ImVector_ImVec2", + "ov_cimguiname": "ImVector_ImVec2_ImVector_ImVec2Vector", + "signature": "(const ImVector)", + "stname": "ImVector_ImVec2", + "templatedgen": true + } + ], + "ImVector_ImVec2__grow_capacity": [ + { + "args": "(const ImVector_ImVec2* self,int sz)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImVec2*" + }, + { + "name": "sz", + "type": "int" + } + ], + "call_args": "(sz)", + "cimguiname": "ImVector_ImVec2__grow_capacity", + "defaults": [], + "funcname": "_grow_capacity", + "ov_cimguiname": "ImVector_ImVec2__grow_capacity", + "ret": "int", + "signature": "(int)const", + "stname": "ImVector_ImVec2", + "templatedgen": true + } + ], + "ImVector_ImVec2_back": [ + { + "args": "(ImVector_ImVec2* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec2*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImVec2_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_ImVec2_back", + "ret": "ImVec2*", + "retref": "&", + "signature": "()", + "stname": "ImVector_ImVec2", + "templatedgen": true + }, + { + "args": "(const ImVector_ImVec2* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImVec2*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImVec2_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_ImVec2_back_const", + "ret": "ImVec2 const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_ImVec2", + "templatedgen": true + } + ], + "ImVector_ImVec2_begin": [ + { + "args": "(ImVector_ImVec2* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec2*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImVec2_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_ImVec2_begin", + "ret": "ImVec2*", + "signature": "()", + "stname": "ImVector_ImVec2", + "templatedgen": true + }, + { + "args": "(const ImVector_ImVec2* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImVec2*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImVec2_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_ImVec2_begin_const", + "ret": "ImVec2 const *", + "signature": "()const", + "stname": "ImVector_ImVec2", + "templatedgen": true + } + ], + "ImVector_ImVec2_capacity": [ + { + "args": "(const ImVector_ImVec2* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImVec2*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImVec2_capacity", + "defaults": [], + "funcname": "capacity", + "ov_cimguiname": "ImVector_ImVec2_capacity", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImVec2", + "templatedgen": true + } + ], + "ImVector_ImVec2_clear": [ + { + "args": "(ImVector_ImVec2* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec2*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImVec2_clear", + "defaults": [], + "funcname": "clear", + "ov_cimguiname": "ImVector_ImVec2_clear", + "ret": "void", + "signature": "()", + "stname": "ImVector_ImVec2", + "templatedgen": true + } + ], + "ImVector_ImVec2_contains": [ + { + "args": "(const ImVector_ImVec2* self,const ImVec2 v)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImVec2*" + }, + { + "name": "v", + "type": "const ImVec2" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImVec2_contains", + "defaults": [], + "funcname": "contains", + "ov_cimguiname": "ImVector_ImVec2_contains", + "ret": "bool", + "signature": "(const ImVec2)const", + "stname": "ImVector_ImVec2", + "templatedgen": true + } + ], + "ImVector_ImVec2_destroy": [ + { + "args": "(ImVector_ImVec2* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec2*" + } + ], + "call_args": "(self)", + "cimguiname": "ImVector_ImVec2_destroy", + "defaults": [], + "destructor": true, + "ov_cimguiname": "ImVector_ImVec2_destroy", + "ret": "void", + "signature": "(ImVector_ImVec2*)", + "stname": "ImVector_ImVec2" + } + ], + "ImVector_ImVec2_empty": [ + { + "args": "(const ImVector_ImVec2* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImVec2*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImVec2_empty", + "defaults": [], + "funcname": "empty", + "ov_cimguiname": "ImVector_ImVec2_empty", + "ret": "bool", + "signature": "()const", + "stname": "ImVector_ImVec2", + "templatedgen": true + } + ], + "ImVector_ImVec2_end": [ + { + "args": "(ImVector_ImVec2* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec2*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImVec2_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_ImVec2_end", + "ret": "ImVec2*", + "signature": "()", + "stname": "ImVector_ImVec2", + "templatedgen": true + }, + { + "args": "(const ImVector_ImVec2* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImVec2*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImVec2_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_ImVec2_end_const", + "ret": "ImVec2 const *", + "signature": "()const", + "stname": "ImVector_ImVec2", + "templatedgen": true + } + ], + "ImVector_ImVec2_erase": [ + { + "args": "(ImVector_ImVec2* self,ImVec2 const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec2*" + }, + { + "name": "it", + "type": "ImVec2 const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImVec2_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_ImVec2_erase", + "ret": "ImVec2*", + "signature": "(const ImVec2*)", + "stname": "ImVector_ImVec2", + "templatedgen": true + }, + { + "args": "(ImVector_ImVec2* self,ImVec2 const * it,ImVec2 const * it_last)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec2*" + }, + { + "name": "it", + "type": "ImVec2 const *" + }, + { + "name": "it_last", + "type": "ImVec2 const *" + } + ], + "call_args": "(it,it_last)", + "cimguiname": "ImVector_ImVec2_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_ImVec2_eraseTPtr", + "ret": "ImVec2*", + "signature": "(const ImVec2*,const ImVec2*)", + "stname": "ImVector_ImVec2", + "templatedgen": true + } + ], + "ImVector_ImVec2_erase_unsorted": [ + { + "args": "(ImVector_ImVec2* self,ImVec2 const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec2*" + }, + { + "name": "it", + "type": "ImVec2 const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImVec2_erase_unsorted", + "defaults": [], + "funcname": "erase_unsorted", + "ov_cimguiname": "ImVector_ImVec2_erase_unsorted", + "ret": "ImVec2*", + "signature": "(const ImVec2*)", + "stname": "ImVector_ImVec2", + "templatedgen": true + } + ], + "ImVector_ImVec2_front": [ + { + "args": "(ImVector_ImVec2* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec2*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImVec2_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_ImVec2_front", + "ret": "ImVec2*", + "retref": "&", + "signature": "()", + "stname": "ImVector_ImVec2", + "templatedgen": true + }, + { + "args": "(const ImVector_ImVec2* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImVec2*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImVec2_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_ImVec2_front_const", + "ret": "ImVec2 const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_ImVec2", + "templatedgen": true + } + ], + "ImVector_ImVec2_index_from_ptr": [ + { + "args": "(const ImVector_ImVec2* self,ImVec2 const * it)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImVec2*" + }, + { + "name": "it", + "type": "ImVec2 const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImVec2_index_from_ptr", + "defaults": [], + "funcname": "index_from_ptr", + "ov_cimguiname": "ImVector_ImVec2_index_from_ptr", + "ret": "int", + "signature": "(const ImVec2*)const", + "stname": "ImVector_ImVec2", + "templatedgen": true + } + ], + "ImVector_ImVec2_insert": [ + { + "args": "(ImVector_ImVec2* self,ImVec2 const * it,const ImVec2 v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec2*" + }, + { + "name": "it", + "type": "ImVec2 const *" + }, + { + "name": "v", + "type": "const ImVec2" + } + ], + "call_args": "(it,v)", + "cimguiname": "ImVector_ImVec2_insert", + "defaults": [], + "funcname": "insert", + "ov_cimguiname": "ImVector_ImVec2_insert", + "ret": "ImVec2*", + "signature": "(const ImVec2*,const ImVec2)", + "stname": "ImVector_ImVec2", + "templatedgen": true + } + ], + "ImVector_ImVec2_pop_back": [ + { + "args": "(ImVector_ImVec2* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec2*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImVec2_pop_back", + "defaults": [], + "funcname": "pop_back", + "ov_cimguiname": "ImVector_ImVec2_pop_back", + "ret": "void", + "signature": "()", + "stname": "ImVector_ImVec2", + "templatedgen": true + } + ], + "ImVector_ImVec2_push_back": [ + { + "args": "(ImVector_ImVec2* self,const ImVec2 v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec2*" + }, + { + "name": "v", + "type": "const ImVec2" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImVec2_push_back", + "defaults": [], + "funcname": "push_back", + "ov_cimguiname": "ImVector_ImVec2_push_back", + "ret": "void", + "signature": "(const ImVec2)", + "stname": "ImVector_ImVec2", + "templatedgen": true + } + ], + "ImVector_ImVec2_push_front": [ + { + "args": "(ImVector_ImVec2* self,const ImVec2 v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec2*" + }, + { + "name": "v", + "type": "const ImVec2" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImVec2_push_front", + "defaults": [], + "funcname": "push_front", + "ov_cimguiname": "ImVector_ImVec2_push_front", + "ret": "void", + "signature": "(const ImVec2)", + "stname": "ImVector_ImVec2", + "templatedgen": true + } + ], + "ImVector_ImVec2_reserve": [ + { + "args": "(ImVector_ImVec2* self,int new_capacity)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec2*" + }, + { + "name": "new_capacity", + "type": "int" + } + ], + "call_args": "(new_capacity)", + "cimguiname": "ImVector_ImVec2_reserve", + "defaults": [], + "funcname": "reserve", + "ov_cimguiname": "ImVector_ImVec2_reserve", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_ImVec2", + "templatedgen": true + } + ], + "ImVector_ImVec2_resize": [ + { + "args": "(ImVector_ImVec2* self,int new_size)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec2*" + }, + { + "name": "new_size", + "type": "int" + } + ], + "call_args": "(new_size)", + "cimguiname": "ImVector_ImVec2_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_ImVec2_resize", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_ImVec2", + "templatedgen": true + }, + { + "args": "(ImVector_ImVec2* self,int new_size,const ImVec2 v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec2*" + }, + { + "name": "new_size", + "type": "int" + }, + { + "name": "v", + "type": "const ImVec2" + } + ], + "call_args": "(new_size,v)", + "cimguiname": "ImVector_ImVec2_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_ImVec2_resizeT", + "ret": "void", + "signature": "(int,const ImVec2)", + "stname": "ImVector_ImVec2", + "templatedgen": true + } + ], + "ImVector_ImVec2_size": [ + { + "args": "(const ImVector_ImVec2* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImVec2*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImVec2_size", + "defaults": [], + "funcname": "size", + "ov_cimguiname": "ImVector_ImVec2_size", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImVec2", + "templatedgen": true + } + ], + "ImVector_ImVec2_size_in_bytes": [ + { + "args": "(const ImVector_ImVec2* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImVec2*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImVec2_size_in_bytes", + "defaults": [], + "funcname": "size_in_bytes", + "ov_cimguiname": "ImVector_ImVec2_size_in_bytes", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImVec2", + "templatedgen": true + } + ], + "ImVector_ImVec2_swap": [ + { + "args": "(ImVector_ImVec2* self,ImVector_ImVec2 rhs)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec2*" + }, + { + "name": "rhs", + "type": "ImVector_ImVec2&" + } + ], + "call_args": "(rhs)", + "cimguiname": "ImVector_ImVec2_swap", + "defaults": [], + "funcname": "swap", + "ov_cimguiname": "ImVector_ImVec2_swap", + "ret": "void", + "signature": "(ImVector)", + "stname": "ImVector_ImVec2", + "templatedgen": true + } + ], + "ImVector_ImVec4_ImVector_ImVec4": [ + { + "args": "()", + "argsT": [], + "call_args": "()", + "cimguiname": "ImVector_ImVec4_ImVector_ImVec4", + "constructor": true, + "defaults": [], + "funcname": "ImVector_ImVec4", + "ov_cimguiname": "ImVector_ImVec4_ImVector_ImVec4", + "signature": "()", + "stname": "ImVector_ImVec4", + "templatedgen": true + }, + { + "args": "(const ImVector_ImVec4 src)", + "argsT": [ + { + "name": "src", + "type": "const ImVector_ImVec4" + } + ], + "call_args": "(src)", + "cimguiname": "ImVector_ImVec4_ImVector_ImVec4", + "constructor": true, + "defaults": [], + "funcname": "ImVector_ImVec4", + "ov_cimguiname": "ImVector_ImVec4_ImVector_ImVec4Vector", + "signature": "(const ImVector)", + "stname": "ImVector_ImVec4", + "templatedgen": true + } + ], + "ImVector_ImVec4__grow_capacity": [ + { + "args": "(const ImVector_ImVec4* self,int sz)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImVec4*" + }, + { + "name": "sz", + "type": "int" + } + ], + "call_args": "(sz)", + "cimguiname": "ImVector_ImVec4__grow_capacity", + "defaults": [], + "funcname": "_grow_capacity", + "ov_cimguiname": "ImVector_ImVec4__grow_capacity", + "ret": "int", + "signature": "(int)const", + "stname": "ImVector_ImVec4", + "templatedgen": true + } + ], + "ImVector_ImVec4_back": [ + { + "args": "(ImVector_ImVec4* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec4*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImVec4_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_ImVec4_back", + "ret": "ImVec4*", + "retref": "&", + "signature": "()", + "stname": "ImVector_ImVec4", + "templatedgen": true + }, + { + "args": "(const ImVector_ImVec4* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImVec4*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImVec4_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_ImVec4_back_const", + "ret": "ImVec4 const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_ImVec4", + "templatedgen": true + } + ], + "ImVector_ImVec4_begin": [ + { + "args": "(ImVector_ImVec4* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec4*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImVec4_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_ImVec4_begin", + "ret": "ImVec4*", + "signature": "()", + "stname": "ImVector_ImVec4", + "templatedgen": true + }, + { + "args": "(const ImVector_ImVec4* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImVec4*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImVec4_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_ImVec4_begin_const", + "ret": "ImVec4 const *", + "signature": "()const", + "stname": "ImVector_ImVec4", + "templatedgen": true + } + ], + "ImVector_ImVec4_capacity": [ + { + "args": "(const ImVector_ImVec4* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImVec4*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImVec4_capacity", + "defaults": [], + "funcname": "capacity", + "ov_cimguiname": "ImVector_ImVec4_capacity", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImVec4", + "templatedgen": true + } + ], + "ImVector_ImVec4_clear": [ + { + "args": "(ImVector_ImVec4* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec4*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImVec4_clear", + "defaults": [], + "funcname": "clear", + "ov_cimguiname": "ImVector_ImVec4_clear", + "ret": "void", + "signature": "()", + "stname": "ImVector_ImVec4", + "templatedgen": true + } + ], + "ImVector_ImVec4_contains": [ + { + "args": "(const ImVector_ImVec4* self,const ImVec4 v)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImVec4*" + }, + { + "name": "v", + "type": "const ImVec4" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImVec4_contains", + "defaults": [], + "funcname": "contains", + "ov_cimguiname": "ImVector_ImVec4_contains", + "ret": "bool", + "signature": "(const ImVec4)const", + "stname": "ImVector_ImVec4", + "templatedgen": true + } + ], + "ImVector_ImVec4_destroy": [ + { + "args": "(ImVector_ImVec4* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec4*" + } + ], + "call_args": "(self)", + "cimguiname": "ImVector_ImVec4_destroy", + "defaults": [], + "destructor": true, + "ov_cimguiname": "ImVector_ImVec4_destroy", + "ret": "void", + "signature": "(ImVector_ImVec4*)", + "stname": "ImVector_ImVec4" + } + ], + "ImVector_ImVec4_empty": [ + { + "args": "(const ImVector_ImVec4* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImVec4*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImVec4_empty", + "defaults": [], + "funcname": "empty", + "ov_cimguiname": "ImVector_ImVec4_empty", + "ret": "bool", + "signature": "()const", + "stname": "ImVector_ImVec4", + "templatedgen": true + } + ], + "ImVector_ImVec4_end": [ + { + "args": "(ImVector_ImVec4* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec4*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImVec4_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_ImVec4_end", + "ret": "ImVec4*", + "signature": "()", + "stname": "ImVector_ImVec4", + "templatedgen": true + }, + { + "args": "(const ImVector_ImVec4* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImVec4*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImVec4_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_ImVec4_end_const", + "ret": "ImVec4 const *", + "signature": "()const", + "stname": "ImVector_ImVec4", + "templatedgen": true + } + ], + "ImVector_ImVec4_erase": [ + { + "args": "(ImVector_ImVec4* self,ImVec4 const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec4*" + }, + { + "name": "it", + "type": "ImVec4 const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImVec4_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_ImVec4_erase", + "ret": "ImVec4*", + "signature": "(const ImVec4*)", + "stname": "ImVector_ImVec4", + "templatedgen": true + }, + { + "args": "(ImVector_ImVec4* self,ImVec4 const * it,ImVec4 const * it_last)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec4*" + }, + { + "name": "it", + "type": "ImVec4 const *" + }, + { + "name": "it_last", + "type": "ImVec4 const *" + } + ], + "call_args": "(it,it_last)", + "cimguiname": "ImVector_ImVec4_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_ImVec4_eraseTPtr", + "ret": "ImVec4*", + "signature": "(const ImVec4*,const ImVec4*)", + "stname": "ImVector_ImVec4", + "templatedgen": true + } + ], + "ImVector_ImVec4_erase_unsorted": [ + { + "args": "(ImVector_ImVec4* self,ImVec4 const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec4*" + }, + { + "name": "it", + "type": "ImVec4 const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImVec4_erase_unsorted", + "defaults": [], + "funcname": "erase_unsorted", + "ov_cimguiname": "ImVector_ImVec4_erase_unsorted", + "ret": "ImVec4*", + "signature": "(const ImVec4*)", + "stname": "ImVector_ImVec4", + "templatedgen": true + } + ], + "ImVector_ImVec4_front": [ + { + "args": "(ImVector_ImVec4* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec4*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImVec4_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_ImVec4_front", + "ret": "ImVec4*", + "retref": "&", + "signature": "()", + "stname": "ImVector_ImVec4", + "templatedgen": true + }, + { + "args": "(const ImVector_ImVec4* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImVec4*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImVec4_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_ImVec4_front_const", + "ret": "ImVec4 const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_ImVec4", + "templatedgen": true + } + ], + "ImVector_ImVec4_index_from_ptr": [ + { + "args": "(const ImVector_ImVec4* self,ImVec4 const * it)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImVec4*" + }, + { + "name": "it", + "type": "ImVec4 const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImVec4_index_from_ptr", + "defaults": [], + "funcname": "index_from_ptr", + "ov_cimguiname": "ImVector_ImVec4_index_from_ptr", + "ret": "int", + "signature": "(const ImVec4*)const", + "stname": "ImVector_ImVec4", + "templatedgen": true + } + ], + "ImVector_ImVec4_insert": [ + { + "args": "(ImVector_ImVec4* self,ImVec4 const * it,const ImVec4 v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec4*" + }, + { + "name": "it", + "type": "ImVec4 const *" + }, + { + "name": "v", + "type": "const ImVec4" + } + ], + "call_args": "(it,v)", + "cimguiname": "ImVector_ImVec4_insert", + "defaults": [], + "funcname": "insert", + "ov_cimguiname": "ImVector_ImVec4_insert", + "ret": "ImVec4*", + "signature": "(const ImVec4*,const ImVec4)", + "stname": "ImVector_ImVec4", + "templatedgen": true + } + ], + "ImVector_ImVec4_pop_back": [ + { + "args": "(ImVector_ImVec4* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec4*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImVec4_pop_back", + "defaults": [], + "funcname": "pop_back", + "ov_cimguiname": "ImVector_ImVec4_pop_back", + "ret": "void", + "signature": "()", + "stname": "ImVector_ImVec4", + "templatedgen": true + } + ], + "ImVector_ImVec4_push_back": [ + { + "args": "(ImVector_ImVec4* self,const ImVec4 v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec4*" + }, + { + "name": "v", + "type": "const ImVec4" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImVec4_push_back", + "defaults": [], + "funcname": "push_back", + "ov_cimguiname": "ImVector_ImVec4_push_back", + "ret": "void", + "signature": "(const ImVec4)", + "stname": "ImVector_ImVec4", + "templatedgen": true + } + ], + "ImVector_ImVec4_push_front": [ + { + "args": "(ImVector_ImVec4* self,const ImVec4 v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec4*" + }, + { + "name": "v", + "type": "const ImVec4" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImVec4_push_front", + "defaults": [], + "funcname": "push_front", + "ov_cimguiname": "ImVector_ImVec4_push_front", + "ret": "void", + "signature": "(const ImVec4)", + "stname": "ImVector_ImVec4", + "templatedgen": true + } + ], + "ImVector_ImVec4_reserve": [ + { + "args": "(ImVector_ImVec4* self,int new_capacity)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec4*" + }, + { + "name": "new_capacity", + "type": "int" + } + ], + "call_args": "(new_capacity)", + "cimguiname": "ImVector_ImVec4_reserve", + "defaults": [], + "funcname": "reserve", + "ov_cimguiname": "ImVector_ImVec4_reserve", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_ImVec4", + "templatedgen": true + } + ], + "ImVector_ImVec4_resize": [ + { + "args": "(ImVector_ImVec4* self,int new_size)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec4*" + }, + { + "name": "new_size", + "type": "int" + } + ], + "call_args": "(new_size)", + "cimguiname": "ImVector_ImVec4_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_ImVec4_resize", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_ImVec4", + "templatedgen": true + }, + { + "args": "(ImVector_ImVec4* self,int new_size,const ImVec4 v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec4*" + }, + { + "name": "new_size", + "type": "int" + }, + { + "name": "v", + "type": "const ImVec4" + } + ], + "call_args": "(new_size,v)", + "cimguiname": "ImVector_ImVec4_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_ImVec4_resizeT", + "ret": "void", + "signature": "(int,const ImVec4)", + "stname": "ImVector_ImVec4", + "templatedgen": true + } + ], + "ImVector_ImVec4_size": [ + { + "args": "(const ImVector_ImVec4* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImVec4*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImVec4_size", + "defaults": [], + "funcname": "size", + "ov_cimguiname": "ImVector_ImVec4_size", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImVec4", + "templatedgen": true + } + ], + "ImVector_ImVec4_size_in_bytes": [ + { + "args": "(const ImVector_ImVec4* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImVec4*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImVec4_size_in_bytes", + "defaults": [], + "funcname": "size_in_bytes", + "ov_cimguiname": "ImVector_ImVec4_size_in_bytes", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImVec4", + "templatedgen": true + } + ], + "ImVector_ImVec4_swap": [ + { + "args": "(ImVector_ImVec4* self,ImVector_ImVec4 rhs)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImVec4*" + }, + { + "name": "rhs", + "type": "ImVector_ImVec4&" + } + ], + "call_args": "(rhs)", + "cimguiname": "ImVector_ImVec4_swap", + "defaults": [], + "funcname": "swap", + "ov_cimguiname": "ImVector_ImVec4_swap", + "ret": "void", + "signature": "(ImVector)", + "stname": "ImVector_ImVec4", + "templatedgen": true + } + ], "ImVector_ImVector": [ { "args": "()", @@ -5575,11 +12703,11 @@ "templated": true }, { - "args": "(const ImVector_ src)", + "args": "(const ImVector src)", "argsT": [ { "name": "src", - "type": "const ImVector_" + "type": "const ImVector" } ], "argsoriginal": "(const ImVector& src)", @@ -5589,12 +12717,1956 @@ "constructor": true, "defaults": [], "funcname": "ImVector", - "ov_cimguiname": "ImVector_ImVectorVector_", - "signature": "(const ImVector_)", + "ov_cimguiname": "ImVector_ImVectorVector", + "signature": "(const ImVector)", "stname": "ImVector", "templated": true } ], + "ImVector_ImWchar_ImVector_ImWchar": [ + { + "args": "()", + "argsT": [], + "call_args": "()", + "cimguiname": "ImVector_ImWchar_ImVector_ImWchar", + "constructor": true, + "defaults": [], + "funcname": "ImVector_ImWchar", + "ov_cimguiname": "ImVector_ImWchar_ImVector_ImWchar", + "signature": "()", + "stname": "ImVector_ImWchar", + "templatedgen": true + }, + { + "args": "(const ImVector_ImWchar src)", + "argsT": [ + { + "name": "src", + "type": "const ImVector_ImWchar" + } + ], + "call_args": "(src)", + "cimguiname": "ImVector_ImWchar_ImVector_ImWchar", + "constructor": true, + "defaults": [], + "funcname": "ImVector_ImWchar", + "ov_cimguiname": "ImVector_ImWchar_ImVector_ImWcharVector", + "signature": "(const ImVector)", + "stname": "ImVector_ImWchar", + "templatedgen": true + } + ], + "ImVector_ImWchar__grow_capacity": [ + { + "args": "(const ImVector_ImWchar* self,int sz)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImWchar*" + }, + { + "name": "sz", + "type": "int" + } + ], + "call_args": "(sz)", + "cimguiname": "ImVector_ImWchar__grow_capacity", + "defaults": [], + "funcname": "_grow_capacity", + "ov_cimguiname": "ImVector_ImWchar__grow_capacity", + "ret": "int", + "signature": "(int)const", + "stname": "ImVector_ImWchar", + "templatedgen": true + } + ], + "ImVector_ImWchar_back": [ + { + "args": "(ImVector_ImWchar* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImWchar*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImWchar_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_ImWchar_back", + "ret": "ImWchar*", + "retref": "&", + "signature": "()", + "stname": "ImVector_ImWchar", + "templatedgen": true + }, + { + "args": "(const ImVector_ImWchar* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImWchar*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImWchar_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_ImWchar_back_const", + "ret": "ImWchar const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_ImWchar", + "templatedgen": true + } + ], + "ImVector_ImWchar_begin": [ + { + "args": "(ImVector_ImWchar* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImWchar*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImWchar_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_ImWchar_begin", + "ret": "ImWchar*", + "signature": "()", + "stname": "ImVector_ImWchar", + "templatedgen": true + }, + { + "args": "(const ImVector_ImWchar* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImWchar*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImWchar_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_ImWchar_begin_const", + "ret": "ImWchar const *", + "signature": "()const", + "stname": "ImVector_ImWchar", + "templatedgen": true + } + ], + "ImVector_ImWchar_capacity": [ + { + "args": "(const ImVector_ImWchar* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImWchar*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImWchar_capacity", + "defaults": [], + "funcname": "capacity", + "ov_cimguiname": "ImVector_ImWchar_capacity", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImWchar", + "templatedgen": true + } + ], + "ImVector_ImWchar_clear": [ + { + "args": "(ImVector_ImWchar* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImWchar*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImWchar_clear", + "defaults": [], + "funcname": "clear", + "ov_cimguiname": "ImVector_ImWchar_clear", + "ret": "void", + "signature": "()", + "stname": "ImVector_ImWchar", + "templatedgen": true + } + ], + "ImVector_ImWchar_contains": [ + { + "args": "(const ImVector_ImWchar* self,const ImWchar v)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImWchar*" + }, + { + "name": "v", + "type": "const ImWchar" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImWchar_contains", + "defaults": [], + "funcname": "contains", + "ov_cimguiname": "ImVector_ImWchar_contains", + "ret": "bool", + "signature": "(const ImWchar)const", + "stname": "ImVector_ImWchar", + "templatedgen": true + } + ], + "ImVector_ImWchar_destroy": [ + { + "args": "(ImVector_ImWchar* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImWchar*" + } + ], + "call_args": "(self)", + "cimguiname": "ImVector_ImWchar_destroy", + "defaults": [], + "destructor": true, + "ov_cimguiname": "ImVector_ImWchar_destroy", + "ret": "void", + "signature": "(ImVector_ImWchar*)", + "stname": "ImVector_ImWchar" + } + ], + "ImVector_ImWchar_empty": [ + { + "args": "(const ImVector_ImWchar* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImWchar*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImWchar_empty", + "defaults": [], + "funcname": "empty", + "ov_cimguiname": "ImVector_ImWchar_empty", + "ret": "bool", + "signature": "()const", + "stname": "ImVector_ImWchar", + "templatedgen": true + } + ], + "ImVector_ImWchar_end": [ + { + "args": "(ImVector_ImWchar* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImWchar*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImWchar_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_ImWchar_end", + "ret": "ImWchar*", + "signature": "()", + "stname": "ImVector_ImWchar", + "templatedgen": true + }, + { + "args": "(const ImVector_ImWchar* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImWchar*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImWchar_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_ImWchar_end_const", + "ret": "ImWchar const *", + "signature": "()const", + "stname": "ImVector_ImWchar", + "templatedgen": true + } + ], + "ImVector_ImWchar_erase": [ + { + "args": "(ImVector_ImWchar* self,ImWchar const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImWchar*" + }, + { + "name": "it", + "type": "ImWchar const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImWchar_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_ImWchar_erase", + "ret": "ImWchar*", + "signature": "(const ImWchar*)", + "stname": "ImVector_ImWchar", + "templatedgen": true + }, + { + "args": "(ImVector_ImWchar* self,ImWchar const * it,ImWchar const * it_last)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImWchar*" + }, + { + "name": "it", + "type": "ImWchar const *" + }, + { + "name": "it_last", + "type": "ImWchar const *" + } + ], + "call_args": "(it,it_last)", + "cimguiname": "ImVector_ImWchar_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_ImWchar_eraseTPtr", + "ret": "ImWchar*", + "signature": "(const ImWchar*,const ImWchar*)", + "stname": "ImVector_ImWchar", + "templatedgen": true + } + ], + "ImVector_ImWchar_erase_unsorted": [ + { + "args": "(ImVector_ImWchar* self,ImWchar const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImWchar*" + }, + { + "name": "it", + "type": "ImWchar const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImWchar_erase_unsorted", + "defaults": [], + "funcname": "erase_unsorted", + "ov_cimguiname": "ImVector_ImWchar_erase_unsorted", + "ret": "ImWchar*", + "signature": "(const ImWchar*)", + "stname": "ImVector_ImWchar", + "templatedgen": true + } + ], + "ImVector_ImWchar_front": [ + { + "args": "(ImVector_ImWchar* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImWchar*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImWchar_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_ImWchar_front", + "ret": "ImWchar*", + "retref": "&", + "signature": "()", + "stname": "ImVector_ImWchar", + "templatedgen": true + }, + { + "args": "(const ImVector_ImWchar* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImWchar*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImWchar_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_ImWchar_front_const", + "ret": "ImWchar const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_ImWchar", + "templatedgen": true + } + ], + "ImVector_ImWchar_index_from_ptr": [ + { + "args": "(const ImVector_ImWchar* self,ImWchar const * it)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImWchar*" + }, + { + "name": "it", + "type": "ImWchar const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_ImWchar_index_from_ptr", + "defaults": [], + "funcname": "index_from_ptr", + "ov_cimguiname": "ImVector_ImWchar_index_from_ptr", + "ret": "int", + "signature": "(const ImWchar*)const", + "stname": "ImVector_ImWchar", + "templatedgen": true + } + ], + "ImVector_ImWchar_insert": [ + { + "args": "(ImVector_ImWchar* self,ImWchar const * it,const ImWchar v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImWchar*" + }, + { + "name": "it", + "type": "ImWchar const *" + }, + { + "name": "v", + "type": "const ImWchar" + } + ], + "call_args": "(it,v)", + "cimguiname": "ImVector_ImWchar_insert", + "defaults": [], + "funcname": "insert", + "ov_cimguiname": "ImVector_ImWchar_insert", + "ret": "ImWchar*", + "signature": "(const ImWchar*,const ImWchar)", + "stname": "ImVector_ImWchar", + "templatedgen": true + } + ], + "ImVector_ImWchar_pop_back": [ + { + "args": "(ImVector_ImWchar* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImWchar*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImWchar_pop_back", + "defaults": [], + "funcname": "pop_back", + "ov_cimguiname": "ImVector_ImWchar_pop_back", + "ret": "void", + "signature": "()", + "stname": "ImVector_ImWchar", + "templatedgen": true + } + ], + "ImVector_ImWchar_push_back": [ + { + "args": "(ImVector_ImWchar* self,const ImWchar v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImWchar*" + }, + { + "name": "v", + "type": "const ImWchar" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImWchar_push_back", + "defaults": [], + "funcname": "push_back", + "ov_cimguiname": "ImVector_ImWchar_push_back", + "ret": "void", + "signature": "(const ImWchar)", + "stname": "ImVector_ImWchar", + "templatedgen": true + } + ], + "ImVector_ImWchar_push_front": [ + { + "args": "(ImVector_ImWchar* self,const ImWchar v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImWchar*" + }, + { + "name": "v", + "type": "const ImWchar" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_ImWchar_push_front", + "defaults": [], + "funcname": "push_front", + "ov_cimguiname": "ImVector_ImWchar_push_front", + "ret": "void", + "signature": "(const ImWchar)", + "stname": "ImVector_ImWchar", + "templatedgen": true + } + ], + "ImVector_ImWchar_reserve": [ + { + "args": "(ImVector_ImWchar* self,int new_capacity)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImWchar*" + }, + { + "name": "new_capacity", + "type": "int" + } + ], + "call_args": "(new_capacity)", + "cimguiname": "ImVector_ImWchar_reserve", + "defaults": [], + "funcname": "reserve", + "ov_cimguiname": "ImVector_ImWchar_reserve", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_ImWchar", + "templatedgen": true + } + ], + "ImVector_ImWchar_resize": [ + { + "args": "(ImVector_ImWchar* self,int new_size)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImWchar*" + }, + { + "name": "new_size", + "type": "int" + } + ], + "call_args": "(new_size)", + "cimguiname": "ImVector_ImWchar_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_ImWchar_resize", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_ImWchar", + "templatedgen": true + }, + { + "args": "(ImVector_ImWchar* self,int new_size,const ImWchar v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImWchar*" + }, + { + "name": "new_size", + "type": "int" + }, + { + "name": "v", + "type": "const ImWchar" + } + ], + "call_args": "(new_size,v)", + "cimguiname": "ImVector_ImWchar_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_ImWchar_resizeT", + "ret": "void", + "signature": "(int,const ImWchar)", + "stname": "ImVector_ImWchar", + "templatedgen": true + } + ], + "ImVector_ImWchar_size": [ + { + "args": "(const ImVector_ImWchar* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImWchar*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImWchar_size", + "defaults": [], + "funcname": "size", + "ov_cimguiname": "ImVector_ImWchar_size", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImWchar", + "templatedgen": true + } + ], + "ImVector_ImWchar_size_in_bytes": [ + { + "args": "(const ImVector_ImWchar* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_ImWchar*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_ImWchar_size_in_bytes", + "defaults": [], + "funcname": "size_in_bytes", + "ov_cimguiname": "ImVector_ImWchar_size_in_bytes", + "ret": "int", + "signature": "()const", + "stname": "ImVector_ImWchar", + "templatedgen": true + } + ], + "ImVector_ImWchar_swap": [ + { + "args": "(ImVector_ImWchar* self,ImVector_ImWchar rhs)", + "argsT": [ + { + "name": "self", + "type": "ImVector_ImWchar*" + }, + { + "name": "rhs", + "type": "ImVector_ImWchar&" + } + ], + "call_args": "(rhs)", + "cimguiname": "ImVector_ImWchar_swap", + "defaults": [], + "funcname": "swap", + "ov_cimguiname": "ImVector_ImWchar_swap", + "ret": "void", + "signature": "(ImVector)", + "stname": "ImVector_ImWchar", + "templatedgen": true + } + ], + "ImVector_Pair_ImVector_Pair": [ + { + "args": "()", + "argsT": [], + "call_args": "()", + "cimguiname": "ImVector_Pair_ImVector_Pair", + "constructor": true, + "defaults": [], + "funcname": "ImVector_Pair", + "ov_cimguiname": "ImVector_Pair_ImVector_Pair", + "signature": "()", + "stname": "ImVector_Pair", + "templatedgen": true + }, + { + "args": "(const ImVector_Pair src)", + "argsT": [ + { + "name": "src", + "type": "const ImVector_Pair" + } + ], + "call_args": "(src)", + "cimguiname": "ImVector_Pair_ImVector_Pair", + "constructor": true, + "defaults": [], + "funcname": "ImVector_Pair", + "ov_cimguiname": "ImVector_Pair_ImVector_PairVector", + "signature": "(const ImVector)", + "stname": "ImVector_Pair", + "templatedgen": true + } + ], + "ImVector_Pair__grow_capacity": [ + { + "args": "(const ImVector_Pair* self,int sz)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_Pair*" + }, + { + "name": "sz", + "type": "int" + } + ], + "call_args": "(sz)", + "cimguiname": "ImVector_Pair__grow_capacity", + "defaults": [], + "funcname": "_grow_capacity", + "ov_cimguiname": "ImVector_Pair__grow_capacity", + "ret": "int", + "signature": "(int)const", + "stname": "ImVector_Pair", + "templatedgen": true + } + ], + "ImVector_Pair_back": [ + { + "args": "(ImVector_Pair* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_Pair*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_Pair_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_Pair_back", + "ret": "Pair*", + "retref": "&", + "signature": "()", + "stname": "ImVector_Pair", + "templatedgen": true + }, + { + "args": "(const ImVector_Pair* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_Pair*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_Pair_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_Pair_back_const", + "ret": "Pair const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_Pair", + "templatedgen": true + } + ], + "ImVector_Pair_begin": [ + { + "args": "(ImVector_Pair* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_Pair*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_Pair_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_Pair_begin", + "ret": "Pair*", + "signature": "()", + "stname": "ImVector_Pair", + "templatedgen": true + }, + { + "args": "(const ImVector_Pair* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_Pair*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_Pair_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_Pair_begin_const", + "ret": "Pair const *", + "signature": "()const", + "stname": "ImVector_Pair", + "templatedgen": true + } + ], + "ImVector_Pair_capacity": [ + { + "args": "(const ImVector_Pair* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_Pair*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_Pair_capacity", + "defaults": [], + "funcname": "capacity", + "ov_cimguiname": "ImVector_Pair_capacity", + "ret": "int", + "signature": "()const", + "stname": "ImVector_Pair", + "templatedgen": true + } + ], + "ImVector_Pair_clear": [ + { + "args": "(ImVector_Pair* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_Pair*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_Pair_clear", + "defaults": [], + "funcname": "clear", + "ov_cimguiname": "ImVector_Pair_clear", + "ret": "void", + "signature": "()", + "stname": "ImVector_Pair", + "templatedgen": true + } + ], + "ImVector_Pair_contains": [ + { + "args": "(const ImVector_Pair* self,const Pair v)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_Pair*" + }, + { + "name": "v", + "type": "const Pair" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_Pair_contains", + "defaults": [], + "funcname": "contains", + "ov_cimguiname": "ImVector_Pair_contains", + "ret": "bool", + "signature": "(const Pair)const", + "stname": "ImVector_Pair", + "templatedgen": true + } + ], + "ImVector_Pair_destroy": [ + { + "args": "(ImVector_Pair* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_Pair*" + } + ], + "call_args": "(self)", + "cimguiname": "ImVector_Pair_destroy", + "defaults": [], + "destructor": true, + "ov_cimguiname": "ImVector_Pair_destroy", + "ret": "void", + "signature": "(ImVector_Pair*)", + "stname": "ImVector_Pair" + } + ], + "ImVector_Pair_empty": [ + { + "args": "(const ImVector_Pair* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_Pair*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_Pair_empty", + "defaults": [], + "funcname": "empty", + "ov_cimguiname": "ImVector_Pair_empty", + "ret": "bool", + "signature": "()const", + "stname": "ImVector_Pair", + "templatedgen": true + } + ], + "ImVector_Pair_end": [ + { + "args": "(ImVector_Pair* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_Pair*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_Pair_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_Pair_end", + "ret": "Pair*", + "signature": "()", + "stname": "ImVector_Pair", + "templatedgen": true + }, + { + "args": "(const ImVector_Pair* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_Pair*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_Pair_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_Pair_end_const", + "ret": "Pair const *", + "signature": "()const", + "stname": "ImVector_Pair", + "templatedgen": true + } + ], + "ImVector_Pair_erase": [ + { + "args": "(ImVector_Pair* self,Pair const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_Pair*" + }, + { + "name": "it", + "type": "Pair const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_Pair_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_Pair_erase", + "ret": "Pair*", + "signature": "(const Pair*)", + "stname": "ImVector_Pair", + "templatedgen": true + }, + { + "args": "(ImVector_Pair* self,Pair const * it,Pair const * it_last)", + "argsT": [ + { + "name": "self", + "type": "ImVector_Pair*" + }, + { + "name": "it", + "type": "Pair const *" + }, + { + "name": "it_last", + "type": "Pair const *" + } + ], + "call_args": "(it,it_last)", + "cimguiname": "ImVector_Pair_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_Pair_eraseTPtr", + "ret": "Pair*", + "signature": "(const Pair*,const Pair*)", + "stname": "ImVector_Pair", + "templatedgen": true + } + ], + "ImVector_Pair_erase_unsorted": [ + { + "args": "(ImVector_Pair* self,Pair const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_Pair*" + }, + { + "name": "it", + "type": "Pair const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_Pair_erase_unsorted", + "defaults": [], + "funcname": "erase_unsorted", + "ov_cimguiname": "ImVector_Pair_erase_unsorted", + "ret": "Pair*", + "signature": "(const Pair*)", + "stname": "ImVector_Pair", + "templatedgen": true + } + ], + "ImVector_Pair_front": [ + { + "args": "(ImVector_Pair* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_Pair*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_Pair_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_Pair_front", + "ret": "Pair*", + "retref": "&", + "signature": "()", + "stname": "ImVector_Pair", + "templatedgen": true + }, + { + "args": "(const ImVector_Pair* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_Pair*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_Pair_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_Pair_front_const", + "ret": "Pair const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_Pair", + "templatedgen": true + } + ], + "ImVector_Pair_index_from_ptr": [ + { + "args": "(const ImVector_Pair* self,Pair const * it)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_Pair*" + }, + { + "name": "it", + "type": "Pair const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_Pair_index_from_ptr", + "defaults": [], + "funcname": "index_from_ptr", + "ov_cimguiname": "ImVector_Pair_index_from_ptr", + "ret": "int", + "signature": "(const Pair*)const", + "stname": "ImVector_Pair", + "templatedgen": true + } + ], + "ImVector_Pair_insert": [ + { + "args": "(ImVector_Pair* self,Pair const * it,const Pair v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_Pair*" + }, + { + "name": "it", + "type": "Pair const *" + }, + { + "name": "v", + "type": "const Pair" + } + ], + "call_args": "(it,v)", + "cimguiname": "ImVector_Pair_insert", + "defaults": [], + "funcname": "insert", + "ov_cimguiname": "ImVector_Pair_insert", + "ret": "Pair*", + "signature": "(const Pair*,const Pair)", + "stname": "ImVector_Pair", + "templatedgen": true + } + ], + "ImVector_Pair_pop_back": [ + { + "args": "(ImVector_Pair* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_Pair*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_Pair_pop_back", + "defaults": [], + "funcname": "pop_back", + "ov_cimguiname": "ImVector_Pair_pop_back", + "ret": "void", + "signature": "()", + "stname": "ImVector_Pair", + "templatedgen": true + } + ], + "ImVector_Pair_push_back": [ + { + "args": "(ImVector_Pair* self,const Pair v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_Pair*" + }, + { + "name": "v", + "type": "const Pair" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_Pair_push_back", + "defaults": [], + "funcname": "push_back", + "ov_cimguiname": "ImVector_Pair_push_back", + "ret": "void", + "signature": "(const Pair)", + "stname": "ImVector_Pair", + "templatedgen": true + } + ], + "ImVector_Pair_push_front": [ + { + "args": "(ImVector_Pair* self,const Pair v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_Pair*" + }, + { + "name": "v", + "type": "const Pair" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_Pair_push_front", + "defaults": [], + "funcname": "push_front", + "ov_cimguiname": "ImVector_Pair_push_front", + "ret": "void", + "signature": "(const Pair)", + "stname": "ImVector_Pair", + "templatedgen": true + } + ], + "ImVector_Pair_reserve": [ + { + "args": "(ImVector_Pair* self,int new_capacity)", + "argsT": [ + { + "name": "self", + "type": "ImVector_Pair*" + }, + { + "name": "new_capacity", + "type": "int" + } + ], + "call_args": "(new_capacity)", + "cimguiname": "ImVector_Pair_reserve", + "defaults": [], + "funcname": "reserve", + "ov_cimguiname": "ImVector_Pair_reserve", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_Pair", + "templatedgen": true + } + ], + "ImVector_Pair_resize": [ + { + "args": "(ImVector_Pair* self,int new_size)", + "argsT": [ + { + "name": "self", + "type": "ImVector_Pair*" + }, + { + "name": "new_size", + "type": "int" + } + ], + "call_args": "(new_size)", + "cimguiname": "ImVector_Pair_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_Pair_resize", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_Pair", + "templatedgen": true + }, + { + "args": "(ImVector_Pair* self,int new_size,const Pair v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_Pair*" + }, + { + "name": "new_size", + "type": "int" + }, + { + "name": "v", + "type": "const Pair" + } + ], + "call_args": "(new_size,v)", + "cimguiname": "ImVector_Pair_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_Pair_resizeT", + "ret": "void", + "signature": "(int,const Pair)", + "stname": "ImVector_Pair", + "templatedgen": true + } + ], + "ImVector_Pair_size": [ + { + "args": "(const ImVector_Pair* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_Pair*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_Pair_size", + "defaults": [], + "funcname": "size", + "ov_cimguiname": "ImVector_Pair_size", + "ret": "int", + "signature": "()const", + "stname": "ImVector_Pair", + "templatedgen": true + } + ], + "ImVector_Pair_size_in_bytes": [ + { + "args": "(const ImVector_Pair* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_Pair*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_Pair_size_in_bytes", + "defaults": [], + "funcname": "size_in_bytes", + "ov_cimguiname": "ImVector_Pair_size_in_bytes", + "ret": "int", + "signature": "()const", + "stname": "ImVector_Pair", + "templatedgen": true + } + ], + "ImVector_Pair_swap": [ + { + "args": "(ImVector_Pair* self,ImVector_Pair rhs)", + "argsT": [ + { + "name": "self", + "type": "ImVector_Pair*" + }, + { + "name": "rhs", + "type": "ImVector_Pair&" + } + ], + "call_args": "(rhs)", + "cimguiname": "ImVector_Pair_swap", + "defaults": [], + "funcname": "swap", + "ov_cimguiname": "ImVector_Pair_swap", + "ret": "void", + "signature": "(ImVector)", + "stname": "ImVector_Pair", + "templatedgen": true + } + ], + "ImVector_TextRange_ImVector_TextRange": [ + { + "args": "()", + "argsT": [], + "call_args": "()", + "cimguiname": "ImVector_TextRange_ImVector_TextRange", + "constructor": true, + "defaults": [], + "funcname": "ImVector_TextRange", + "ov_cimguiname": "ImVector_TextRange_ImVector_TextRange", + "signature": "()", + "stname": "ImVector_TextRange", + "templatedgen": true + }, + { + "args": "(const ImVector_TextRange src)", + "argsT": [ + { + "name": "src", + "type": "const ImVector_TextRange" + } + ], + "call_args": "(src)", + "cimguiname": "ImVector_TextRange_ImVector_TextRange", + "constructor": true, + "defaults": [], + "funcname": "ImVector_TextRange", + "ov_cimguiname": "ImVector_TextRange_ImVector_TextRangeVector", + "signature": "(const ImVector)", + "stname": "ImVector_TextRange", + "templatedgen": true + } + ], + "ImVector_TextRange__grow_capacity": [ + { + "args": "(const ImVector_TextRange* self,int sz)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_TextRange*" + }, + { + "name": "sz", + "type": "int" + } + ], + "call_args": "(sz)", + "cimguiname": "ImVector_TextRange__grow_capacity", + "defaults": [], + "funcname": "_grow_capacity", + "ov_cimguiname": "ImVector_TextRange__grow_capacity", + "ret": "int", + "signature": "(int)const", + "stname": "ImVector_TextRange", + "templatedgen": true + } + ], + "ImVector_TextRange_back": [ + { + "args": "(ImVector_TextRange* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_TextRange*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_TextRange_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_TextRange_back", + "ret": "TextRange*", + "retref": "&", + "signature": "()", + "stname": "ImVector_TextRange", + "templatedgen": true + }, + { + "args": "(const ImVector_TextRange* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_TextRange*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_TextRange_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_TextRange_back_const", + "ret": "TextRange const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_TextRange", + "templatedgen": true + } + ], + "ImVector_TextRange_begin": [ + { + "args": "(ImVector_TextRange* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_TextRange*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_TextRange_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_TextRange_begin", + "ret": "TextRange*", + "signature": "()", + "stname": "ImVector_TextRange", + "templatedgen": true + }, + { + "args": "(const ImVector_TextRange* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_TextRange*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_TextRange_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_TextRange_begin_const", + "ret": "TextRange const *", + "signature": "()const", + "stname": "ImVector_TextRange", + "templatedgen": true + } + ], + "ImVector_TextRange_capacity": [ + { + "args": "(const ImVector_TextRange* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_TextRange*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_TextRange_capacity", + "defaults": [], + "funcname": "capacity", + "ov_cimguiname": "ImVector_TextRange_capacity", + "ret": "int", + "signature": "()const", + "stname": "ImVector_TextRange", + "templatedgen": true + } + ], + "ImVector_TextRange_clear": [ + { + "args": "(ImVector_TextRange* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_TextRange*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_TextRange_clear", + "defaults": [], + "funcname": "clear", + "ov_cimguiname": "ImVector_TextRange_clear", + "ret": "void", + "signature": "()", + "stname": "ImVector_TextRange", + "templatedgen": true + } + ], + "ImVector_TextRange_contains": [ + { + "args": "(const ImVector_TextRange* self,const TextRange v)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_TextRange*" + }, + { + "name": "v", + "type": "const TextRange" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_TextRange_contains", + "defaults": [], + "funcname": "contains", + "ov_cimguiname": "ImVector_TextRange_contains", + "ret": "bool", + "signature": "(const TextRange)const", + "stname": "ImVector_TextRange", + "templatedgen": true + } + ], + "ImVector_TextRange_destroy": [ + { + "args": "(ImVector_TextRange* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_TextRange*" + } + ], + "call_args": "(self)", + "cimguiname": "ImVector_TextRange_destroy", + "defaults": [], + "destructor": true, + "ov_cimguiname": "ImVector_TextRange_destroy", + "ret": "void", + "signature": "(ImVector_TextRange*)", + "stname": "ImVector_TextRange" + } + ], + "ImVector_TextRange_empty": [ + { + "args": "(const ImVector_TextRange* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_TextRange*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_TextRange_empty", + "defaults": [], + "funcname": "empty", + "ov_cimguiname": "ImVector_TextRange_empty", + "ret": "bool", + "signature": "()const", + "stname": "ImVector_TextRange", + "templatedgen": true + } + ], + "ImVector_TextRange_end": [ + { + "args": "(ImVector_TextRange* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_TextRange*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_TextRange_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_TextRange_end", + "ret": "TextRange*", + "signature": "()", + "stname": "ImVector_TextRange", + "templatedgen": true + }, + { + "args": "(const ImVector_TextRange* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_TextRange*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_TextRange_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_TextRange_end_const", + "ret": "TextRange const *", + "signature": "()const", + "stname": "ImVector_TextRange", + "templatedgen": true + } + ], + "ImVector_TextRange_erase": [ + { + "args": "(ImVector_TextRange* self,TextRange const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_TextRange*" + }, + { + "name": "it", + "type": "TextRange const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_TextRange_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_TextRange_erase", + "ret": "TextRange*", + "signature": "(const TextRange*)", + "stname": "ImVector_TextRange", + "templatedgen": true + }, + { + "args": "(ImVector_TextRange* self,TextRange const * it,TextRange const * it_last)", + "argsT": [ + { + "name": "self", + "type": "ImVector_TextRange*" + }, + { + "name": "it", + "type": "TextRange const *" + }, + { + "name": "it_last", + "type": "TextRange const *" + } + ], + "call_args": "(it,it_last)", + "cimguiname": "ImVector_TextRange_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_TextRange_eraseTPtr", + "ret": "TextRange*", + "signature": "(const TextRange*,const TextRange*)", + "stname": "ImVector_TextRange", + "templatedgen": true + } + ], + "ImVector_TextRange_erase_unsorted": [ + { + "args": "(ImVector_TextRange* self,TextRange const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_TextRange*" + }, + { + "name": "it", + "type": "TextRange const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_TextRange_erase_unsorted", + "defaults": [], + "funcname": "erase_unsorted", + "ov_cimguiname": "ImVector_TextRange_erase_unsorted", + "ret": "TextRange*", + "signature": "(const TextRange*)", + "stname": "ImVector_TextRange", + "templatedgen": true + } + ], + "ImVector_TextRange_front": [ + { + "args": "(ImVector_TextRange* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_TextRange*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_TextRange_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_TextRange_front", + "ret": "TextRange*", + "retref": "&", + "signature": "()", + "stname": "ImVector_TextRange", + "templatedgen": true + }, + { + "args": "(const ImVector_TextRange* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_TextRange*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_TextRange_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_TextRange_front_const", + "ret": "TextRange const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_TextRange", + "templatedgen": true + } + ], + "ImVector_TextRange_index_from_ptr": [ + { + "args": "(const ImVector_TextRange* self,TextRange const * it)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_TextRange*" + }, + { + "name": "it", + "type": "TextRange const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_TextRange_index_from_ptr", + "defaults": [], + "funcname": "index_from_ptr", + "ov_cimguiname": "ImVector_TextRange_index_from_ptr", + "ret": "int", + "signature": "(const TextRange*)const", + "stname": "ImVector_TextRange", + "templatedgen": true + } + ], + "ImVector_TextRange_insert": [ + { + "args": "(ImVector_TextRange* self,TextRange const * it,const TextRange v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_TextRange*" + }, + { + "name": "it", + "type": "TextRange const *" + }, + { + "name": "v", + "type": "const TextRange" + } + ], + "call_args": "(it,v)", + "cimguiname": "ImVector_TextRange_insert", + "defaults": [], + "funcname": "insert", + "ov_cimguiname": "ImVector_TextRange_insert", + "ret": "TextRange*", + "signature": "(const TextRange*,const TextRange)", + "stname": "ImVector_TextRange", + "templatedgen": true + } + ], + "ImVector_TextRange_pop_back": [ + { + "args": "(ImVector_TextRange* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_TextRange*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_TextRange_pop_back", + "defaults": [], + "funcname": "pop_back", + "ov_cimguiname": "ImVector_TextRange_pop_back", + "ret": "void", + "signature": "()", + "stname": "ImVector_TextRange", + "templatedgen": true + } + ], + "ImVector_TextRange_push_back": [ + { + "args": "(ImVector_TextRange* self,const TextRange v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_TextRange*" + }, + { + "name": "v", + "type": "const TextRange" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_TextRange_push_back", + "defaults": [], + "funcname": "push_back", + "ov_cimguiname": "ImVector_TextRange_push_back", + "ret": "void", + "signature": "(const TextRange)", + "stname": "ImVector_TextRange", + "templatedgen": true + } + ], + "ImVector_TextRange_push_front": [ + { + "args": "(ImVector_TextRange* self,const TextRange v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_TextRange*" + }, + { + "name": "v", + "type": "const TextRange" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_TextRange_push_front", + "defaults": [], + "funcname": "push_front", + "ov_cimguiname": "ImVector_TextRange_push_front", + "ret": "void", + "signature": "(const TextRange)", + "stname": "ImVector_TextRange", + "templatedgen": true + } + ], + "ImVector_TextRange_reserve": [ + { + "args": "(ImVector_TextRange* self,int new_capacity)", + "argsT": [ + { + "name": "self", + "type": "ImVector_TextRange*" + }, + { + "name": "new_capacity", + "type": "int" + } + ], + "call_args": "(new_capacity)", + "cimguiname": "ImVector_TextRange_reserve", + "defaults": [], + "funcname": "reserve", + "ov_cimguiname": "ImVector_TextRange_reserve", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_TextRange", + "templatedgen": true + } + ], + "ImVector_TextRange_resize": [ + { + "args": "(ImVector_TextRange* self,int new_size)", + "argsT": [ + { + "name": "self", + "type": "ImVector_TextRange*" + }, + { + "name": "new_size", + "type": "int" + } + ], + "call_args": "(new_size)", + "cimguiname": "ImVector_TextRange_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_TextRange_resize", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_TextRange", + "templatedgen": true + }, + { + "args": "(ImVector_TextRange* self,int new_size,const TextRange v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_TextRange*" + }, + { + "name": "new_size", + "type": "int" + }, + { + "name": "v", + "type": "const TextRange" + } + ], + "call_args": "(new_size,v)", + "cimguiname": "ImVector_TextRange_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_TextRange_resizeT", + "ret": "void", + "signature": "(int,const TextRange)", + "stname": "ImVector_TextRange", + "templatedgen": true + } + ], + "ImVector_TextRange_size": [ + { + "args": "(const ImVector_TextRange* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_TextRange*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_TextRange_size", + "defaults": [], + "funcname": "size", + "ov_cimguiname": "ImVector_TextRange_size", + "ret": "int", + "signature": "()const", + "stname": "ImVector_TextRange", + "templatedgen": true + } + ], + "ImVector_TextRange_size_in_bytes": [ + { + "args": "(const ImVector_TextRange* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_TextRange*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_TextRange_size_in_bytes", + "defaults": [], + "funcname": "size_in_bytes", + "ov_cimguiname": "ImVector_TextRange_size_in_bytes", + "ret": "int", + "signature": "()const", + "stname": "ImVector_TextRange", + "templatedgen": true + } + ], + "ImVector_TextRange_swap": [ + { + "args": "(ImVector_TextRange* self,ImVector_TextRange rhs)", + "argsT": [ + { + "name": "self", + "type": "ImVector_TextRange*" + }, + { + "name": "rhs", + "type": "ImVector_TextRange&" + } + ], + "call_args": "(rhs)", + "cimguiname": "ImVector_TextRange_swap", + "defaults": [], + "funcname": "swap", + "ov_cimguiname": "ImVector_TextRange_swap", + "ret": "void", + "signature": "(ImVector)", + "stname": "ImVector_TextRange", + "templatedgen": true + } + ], "ImVector__grow_capacity": [ { "args": "(ImVector* self,int sz)", @@ -5616,7 +14688,7 @@ "funcname": "_grow_capacity", "ov_cimguiname": "ImVector__grow_capacity", "ret": "int", - "signature": "(int)", + "signature": "(int)const", "stname": "ImVector", "templated": true } @@ -5657,10 +14729,10 @@ "comment": "", "defaults": [], "funcname": "back", - "ov_cimguiname": "ImVector_back", + "ov_cimguiname": "ImVector_back_const", "ret": "const T*", "retref": "&", - "signature": "()", + "signature": "()const", "stname": "ImVector", "templated": true } @@ -5700,9 +14772,9 @@ "comment": "", "defaults": [], "funcname": "begin", - "ov_cimguiname": "ImVector_begin", + "ov_cimguiname": "ImVector_begin_const", "ret": "const T*", - "signature": "()", + "signature": "()const", "stname": "ImVector", "templated": true } @@ -5724,11 +14796,659 @@ "funcname": "capacity", "ov_cimguiname": "ImVector_capacity", "ret": "int", - "signature": "()", + "signature": "()const", "stname": "ImVector", "templated": true } ], + "ImVector_char_ImVector_char": [ + { + "args": "()", + "argsT": [], + "call_args": "()", + "cimguiname": "ImVector_char_ImVector_char", + "constructor": true, + "defaults": [], + "funcname": "ImVector_char", + "ov_cimguiname": "ImVector_char_ImVector_char", + "signature": "()", + "stname": "ImVector_char", + "templatedgen": true + }, + { + "args": "(const ImVector_char src)", + "argsT": [ + { + "name": "src", + "type": "const ImVector_char" + } + ], + "call_args": "(src)", + "cimguiname": "ImVector_char_ImVector_char", + "constructor": true, + "defaults": [], + "funcname": "ImVector_char", + "ov_cimguiname": "ImVector_char_ImVector_charVector", + "signature": "(const ImVector)", + "stname": "ImVector_char", + "templatedgen": true + } + ], + "ImVector_char__grow_capacity": [ + { + "args": "(const ImVector_char* self,int sz)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_char*" + }, + { + "name": "sz", + "type": "int" + } + ], + "call_args": "(sz)", + "cimguiname": "ImVector_char__grow_capacity", + "defaults": [], + "funcname": "_grow_capacity", + "ov_cimguiname": "ImVector_char__grow_capacity", + "ret": "int", + "signature": "(int)const", + "stname": "ImVector_char", + "templatedgen": true + } + ], + "ImVector_char_back": [ + { + "args": "(ImVector_char* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_char*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_char_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_char_back", + "ret": "char*", + "retref": "&", + "signature": "()", + "stname": "ImVector_char", + "templatedgen": true + }, + { + "args": "(const ImVector_char* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_char*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_char_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_char_back_const", + "ret": "char const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_char", + "templatedgen": true + } + ], + "ImVector_char_begin": [ + { + "args": "(ImVector_char* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_char*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_char_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_char_begin", + "ret": "char*", + "signature": "()", + "stname": "ImVector_char", + "templatedgen": true + }, + { + "args": "(const ImVector_char* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_char*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_char_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_char_begin_const", + "ret": "char const *", + "signature": "()const", + "stname": "ImVector_char", + "templatedgen": true + } + ], + "ImVector_char_capacity": [ + { + "args": "(const ImVector_char* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_char*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_char_capacity", + "defaults": [], + "funcname": "capacity", + "ov_cimguiname": "ImVector_char_capacity", + "ret": "int", + "signature": "()const", + "stname": "ImVector_char", + "templatedgen": true + } + ], + "ImVector_char_clear": [ + { + "args": "(ImVector_char* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_char*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_char_clear", + "defaults": [], + "funcname": "clear", + "ov_cimguiname": "ImVector_char_clear", + "ret": "void", + "signature": "()", + "stname": "ImVector_char", + "templatedgen": true + } + ], + "ImVector_char_contains": [ + { + "args": "(const ImVector_char* self,const char v)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_char*" + }, + { + "name": "v", + "type": "const char" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_char_contains", + "defaults": [], + "funcname": "contains", + "ov_cimguiname": "ImVector_char_contains", + "ret": "bool", + "signature": "(const char)const", + "stname": "ImVector_char", + "templatedgen": true + } + ], + "ImVector_char_destroy": [ + { + "args": "(ImVector_char* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_char*" + } + ], + "call_args": "(self)", + "cimguiname": "ImVector_char_destroy", + "defaults": [], + "destructor": true, + "ov_cimguiname": "ImVector_char_destroy", + "ret": "void", + "signature": "(ImVector_char*)", + "stname": "ImVector_char" + } + ], + "ImVector_char_empty": [ + { + "args": "(const ImVector_char* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_char*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_char_empty", + "defaults": [], + "funcname": "empty", + "ov_cimguiname": "ImVector_char_empty", + "ret": "bool", + "signature": "()const", + "stname": "ImVector_char", + "templatedgen": true + } + ], + "ImVector_char_end": [ + { + "args": "(ImVector_char* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_char*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_char_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_char_end", + "ret": "char*", + "signature": "()", + "stname": "ImVector_char", + "templatedgen": true + }, + { + "args": "(const ImVector_char* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_char*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_char_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_char_end_const", + "ret": "char const *", + "signature": "()const", + "stname": "ImVector_char", + "templatedgen": true + } + ], + "ImVector_char_erase": [ + { + "args": "(ImVector_char* self,char const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_char*" + }, + { + "name": "it", + "type": "char const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_char_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_char_erase", + "ret": "char*", + "signature": "(const char*)", + "stname": "ImVector_char", + "templatedgen": true + }, + { + "args": "(ImVector_char* self,char const * it,char const * it_last)", + "argsT": [ + { + "name": "self", + "type": "ImVector_char*" + }, + { + "name": "it", + "type": "char const *" + }, + { + "name": "it_last", + "type": "char const *" + } + ], + "call_args": "(it,it_last)", + "cimguiname": "ImVector_char_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_char_eraseTPtr", + "ret": "char*", + "signature": "(const char*,const char*)", + "stname": "ImVector_char", + "templatedgen": true + } + ], + "ImVector_char_erase_unsorted": [ + { + "args": "(ImVector_char* self,char const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_char*" + }, + { + "name": "it", + "type": "char const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_char_erase_unsorted", + "defaults": [], + "funcname": "erase_unsorted", + "ov_cimguiname": "ImVector_char_erase_unsorted", + "ret": "char*", + "signature": "(const char*)", + "stname": "ImVector_char", + "templatedgen": true + } + ], + "ImVector_char_front": [ + { + "args": "(ImVector_char* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_char*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_char_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_char_front", + "ret": "char*", + "retref": "&", + "signature": "()", + "stname": "ImVector_char", + "templatedgen": true + }, + { + "args": "(const ImVector_char* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_char*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_char_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_char_front_const", + "ret": "char const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_char", + "templatedgen": true + } + ], + "ImVector_char_index_from_ptr": [ + { + "args": "(const ImVector_char* self,char const * it)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_char*" + }, + { + "name": "it", + "type": "char const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_char_index_from_ptr", + "defaults": [], + "funcname": "index_from_ptr", + "ov_cimguiname": "ImVector_char_index_from_ptr", + "ret": "int", + "signature": "(const char*)const", + "stname": "ImVector_char", + "templatedgen": true + } + ], + "ImVector_char_insert": [ + { + "args": "(ImVector_char* self,char const * it,const char v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_char*" + }, + { + "name": "it", + "type": "char const *" + }, + { + "name": "v", + "type": "const char" + } + ], + "call_args": "(it,v)", + "cimguiname": "ImVector_char_insert", + "defaults": [], + "funcname": "insert", + "ov_cimguiname": "ImVector_char_insert", + "ret": "char*", + "signature": "(const char*,const char)", + "stname": "ImVector_char", + "templatedgen": true + } + ], + "ImVector_char_pop_back": [ + { + "args": "(ImVector_char* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_char*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_char_pop_back", + "defaults": [], + "funcname": "pop_back", + "ov_cimguiname": "ImVector_char_pop_back", + "ret": "void", + "signature": "()", + "stname": "ImVector_char", + "templatedgen": true + } + ], + "ImVector_char_push_back": [ + { + "args": "(ImVector_char* self,const char v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_char*" + }, + { + "name": "v", + "type": "const char" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_char_push_back", + "defaults": [], + "funcname": "push_back", + "ov_cimguiname": "ImVector_char_push_back", + "ret": "void", + "signature": "(const char)", + "stname": "ImVector_char", + "templatedgen": true + } + ], + "ImVector_char_push_front": [ + { + "args": "(ImVector_char* self,const char v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_char*" + }, + { + "name": "v", + "type": "const char" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_char_push_front", + "defaults": [], + "funcname": "push_front", + "ov_cimguiname": "ImVector_char_push_front", + "ret": "void", + "signature": "(const char)", + "stname": "ImVector_char", + "templatedgen": true + } + ], + "ImVector_char_reserve": [ + { + "args": "(ImVector_char* self,int new_capacity)", + "argsT": [ + { + "name": "self", + "type": "ImVector_char*" + }, + { + "name": "new_capacity", + "type": "int" + } + ], + "call_args": "(new_capacity)", + "cimguiname": "ImVector_char_reserve", + "defaults": [], + "funcname": "reserve", + "ov_cimguiname": "ImVector_char_reserve", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_char", + "templatedgen": true + } + ], + "ImVector_char_resize": [ + { + "args": "(ImVector_char* self,int new_size)", + "argsT": [ + { + "name": "self", + "type": "ImVector_char*" + }, + { + "name": "new_size", + "type": "int" + } + ], + "call_args": "(new_size)", + "cimguiname": "ImVector_char_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_char_resize", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_char", + "templatedgen": true + }, + { + "args": "(ImVector_char* self,int new_size,const char v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_char*" + }, + { + "name": "new_size", + "type": "int" + }, + { + "name": "v", + "type": "const char" + } + ], + "call_args": "(new_size,v)", + "cimguiname": "ImVector_char_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_char_resizeT", + "ret": "void", + "signature": "(int,const char)", + "stname": "ImVector_char", + "templatedgen": true + } + ], + "ImVector_char_size": [ + { + "args": "(const ImVector_char* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_char*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_char_size", + "defaults": [], + "funcname": "size", + "ov_cimguiname": "ImVector_char_size", + "ret": "int", + "signature": "()const", + "stname": "ImVector_char", + "templatedgen": true + } + ], + "ImVector_char_size_in_bytes": [ + { + "args": "(const ImVector_char* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_char*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_char_size_in_bytes", + "defaults": [], + "funcname": "size_in_bytes", + "ov_cimguiname": "ImVector_char_size_in_bytes", + "ret": "int", + "signature": "()const", + "stname": "ImVector_char", + "templatedgen": true + } + ], + "ImVector_char_swap": [ + { + "args": "(ImVector_char* self,ImVector_char rhs)", + "argsT": [ + { + "name": "self", + "type": "ImVector_char*" + }, + { + "name": "rhs", + "type": "ImVector_char&" + } + ], + "call_args": "(rhs)", + "cimguiname": "ImVector_char_swap", + "defaults": [], + "funcname": "swap", + "ov_cimguiname": "ImVector_char_swap", + "ret": "void", + "signature": "(ImVector)", + "stname": "ImVector_char", + "templatedgen": true + } + ], "ImVector_clear": [ { "args": "(ImVector* self)", @@ -5772,7 +15492,7 @@ "funcname": "contains", "ov_cimguiname": "ImVector_contains", "ret": "bool", - "signature": "(const T)", + "signature": "(const T)const", "stname": "ImVector", "templated": true } @@ -5793,7 +15513,8 @@ "ov_cimguiname": "ImVector_destroy", "ret": "void", "signature": "(ImVector*)", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_empty": [ @@ -5813,7 +15534,7 @@ "funcname": "empty", "ov_cimguiname": "ImVector_empty", "ret": "bool", - "signature": "()", + "signature": "()const", "stname": "ImVector", "templated": true } @@ -5853,9 +15574,9 @@ "comment": "", "defaults": [], "funcname": "end", - "ov_cimguiname": "ImVector_end", + "ov_cimguiname": "ImVector_end_const", "ret": "const T*", - "signature": "()", + "signature": "()const", "stname": "ImVector", "templated": true } @@ -5940,6 +15661,654 @@ "templated": true } ], + "ImVector_float_ImVector_float": [ + { + "args": "()", + "argsT": [], + "call_args": "()", + "cimguiname": "ImVector_float_ImVector_float", + "constructor": true, + "defaults": [], + "funcname": "ImVector_float", + "ov_cimguiname": "ImVector_float_ImVector_float", + "signature": "()", + "stname": "ImVector_float", + "templatedgen": true + }, + { + "args": "(const ImVector_float src)", + "argsT": [ + { + "name": "src", + "type": "const ImVector_float" + } + ], + "call_args": "(src)", + "cimguiname": "ImVector_float_ImVector_float", + "constructor": true, + "defaults": [], + "funcname": "ImVector_float", + "ov_cimguiname": "ImVector_float_ImVector_floatVector", + "signature": "(const ImVector)", + "stname": "ImVector_float", + "templatedgen": true + } + ], + "ImVector_float__grow_capacity": [ + { + "args": "(const ImVector_float* self,int sz)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_float*" + }, + { + "name": "sz", + "type": "int" + } + ], + "call_args": "(sz)", + "cimguiname": "ImVector_float__grow_capacity", + "defaults": [], + "funcname": "_grow_capacity", + "ov_cimguiname": "ImVector_float__grow_capacity", + "ret": "int", + "signature": "(int)const", + "stname": "ImVector_float", + "templatedgen": true + } + ], + "ImVector_float_back": [ + { + "args": "(ImVector_float* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_float*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_float_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_float_back", + "ret": "float*", + "retref": "&", + "signature": "()", + "stname": "ImVector_float", + "templatedgen": true + }, + { + "args": "(const ImVector_float* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_float*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_float_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_float_back_const", + "ret": "float const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_float", + "templatedgen": true + } + ], + "ImVector_float_begin": [ + { + "args": "(ImVector_float* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_float*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_float_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_float_begin", + "ret": "float*", + "signature": "()", + "stname": "ImVector_float", + "templatedgen": true + }, + { + "args": "(const ImVector_float* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_float*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_float_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_float_begin_const", + "ret": "float const *", + "signature": "()const", + "stname": "ImVector_float", + "templatedgen": true + } + ], + "ImVector_float_capacity": [ + { + "args": "(const ImVector_float* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_float*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_float_capacity", + "defaults": [], + "funcname": "capacity", + "ov_cimguiname": "ImVector_float_capacity", + "ret": "int", + "signature": "()const", + "stname": "ImVector_float", + "templatedgen": true + } + ], + "ImVector_float_clear": [ + { + "args": "(ImVector_float* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_float*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_float_clear", + "defaults": [], + "funcname": "clear", + "ov_cimguiname": "ImVector_float_clear", + "ret": "void", + "signature": "()", + "stname": "ImVector_float", + "templatedgen": true + } + ], + "ImVector_float_contains": [ + { + "args": "(const ImVector_float* self,const float v)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_float*" + }, + { + "name": "v", + "type": "const float" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_float_contains", + "defaults": [], + "funcname": "contains", + "ov_cimguiname": "ImVector_float_contains", + "ret": "bool", + "signature": "(const float)const", + "stname": "ImVector_float", + "templatedgen": true + } + ], + "ImVector_float_destroy": [ + { + "args": "(ImVector_float* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_float*" + } + ], + "call_args": "(self)", + "cimguiname": "ImVector_float_destroy", + "defaults": [], + "destructor": true, + "ov_cimguiname": "ImVector_float_destroy", + "ret": "void", + "signature": "(ImVector_float*)", + "stname": "ImVector_float" + } + ], + "ImVector_float_empty": [ + { + "args": "(const ImVector_float* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_float*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_float_empty", + "defaults": [], + "funcname": "empty", + "ov_cimguiname": "ImVector_float_empty", + "ret": "bool", + "signature": "()const", + "stname": "ImVector_float", + "templatedgen": true + } + ], + "ImVector_float_end": [ + { + "args": "(ImVector_float* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_float*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_float_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_float_end", + "ret": "float*", + "signature": "()", + "stname": "ImVector_float", + "templatedgen": true + }, + { + "args": "(const ImVector_float* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_float*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_float_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_float_end_const", + "ret": "float const *", + "signature": "()const", + "stname": "ImVector_float", + "templatedgen": true + } + ], + "ImVector_float_erase": [ + { + "args": "(ImVector_float* self,float const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_float*" + }, + { + "name": "it", + "type": "float const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_float_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_float_erase", + "ret": "float*", + "signature": "(const float*)", + "stname": "ImVector_float", + "templatedgen": true + }, + { + "args": "(ImVector_float* self,float const * it,float const * it_last)", + "argsT": [ + { + "name": "self", + "type": "ImVector_float*" + }, + { + "name": "it", + "type": "float const *" + }, + { + "name": "it_last", + "type": "float const *" + } + ], + "call_args": "(it,it_last)", + "cimguiname": "ImVector_float_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_float_eraseTPtr", + "ret": "float*", + "signature": "(const float*,const float*)", + "stname": "ImVector_float", + "templatedgen": true + } + ], + "ImVector_float_erase_unsorted": [ + { + "args": "(ImVector_float* self,float const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_float*" + }, + { + "name": "it", + "type": "float const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_float_erase_unsorted", + "defaults": [], + "funcname": "erase_unsorted", + "ov_cimguiname": "ImVector_float_erase_unsorted", + "ret": "float*", + "signature": "(const float*)", + "stname": "ImVector_float", + "templatedgen": true + } + ], + "ImVector_float_front": [ + { + "args": "(ImVector_float* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_float*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_float_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_float_front", + "ret": "float*", + "retref": "&", + "signature": "()", + "stname": "ImVector_float", + "templatedgen": true + }, + { + "args": "(const ImVector_float* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_float*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_float_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_float_front_const", + "ret": "float const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_float", + "templatedgen": true + } + ], + "ImVector_float_index_from_ptr": [ + { + "args": "(const ImVector_float* self,float const * it)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_float*" + }, + { + "name": "it", + "type": "float const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_float_index_from_ptr", + "defaults": [], + "funcname": "index_from_ptr", + "ov_cimguiname": "ImVector_float_index_from_ptr", + "ret": "int", + "signature": "(const float*)const", + "stname": "ImVector_float", + "templatedgen": true + } + ], + "ImVector_float_insert": [ + { + "args": "(ImVector_float* self,float const * it,const float v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_float*" + }, + { + "name": "it", + "type": "float const *" + }, + { + "name": "v", + "type": "const float" + } + ], + "call_args": "(it,v)", + "cimguiname": "ImVector_float_insert", + "defaults": [], + "funcname": "insert", + "ov_cimguiname": "ImVector_float_insert", + "ret": "float*", + "signature": "(const float*,const float)", + "stname": "ImVector_float", + "templatedgen": true + } + ], + "ImVector_float_pop_back": [ + { + "args": "(ImVector_float* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_float*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_float_pop_back", + "defaults": [], + "funcname": "pop_back", + "ov_cimguiname": "ImVector_float_pop_back", + "ret": "void", + "signature": "()", + "stname": "ImVector_float", + "templatedgen": true + } + ], + "ImVector_float_push_back": [ + { + "args": "(ImVector_float* self,const float v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_float*" + }, + { + "name": "v", + "type": "const float" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_float_push_back", + "defaults": [], + "funcname": "push_back", + "ov_cimguiname": "ImVector_float_push_back", + "ret": "void", + "signature": "(const float)", + "stname": "ImVector_float", + "templatedgen": true + } + ], + "ImVector_float_push_front": [ + { + "args": "(ImVector_float* self,const float v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_float*" + }, + { + "name": "v", + "type": "const float" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_float_push_front", + "defaults": [], + "funcname": "push_front", + "ov_cimguiname": "ImVector_float_push_front", + "ret": "void", + "signature": "(const float)", + "stname": "ImVector_float", + "templatedgen": true + } + ], + "ImVector_float_reserve": [ + { + "args": "(ImVector_float* self,int new_capacity)", + "argsT": [ + { + "name": "self", + "type": "ImVector_float*" + }, + { + "name": "new_capacity", + "type": "int" + } + ], + "call_args": "(new_capacity)", + "cimguiname": "ImVector_float_reserve", + "defaults": [], + "funcname": "reserve", + "ov_cimguiname": "ImVector_float_reserve", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_float", + "templatedgen": true + } + ], + "ImVector_float_resize": [ + { + "args": "(ImVector_float* self,int new_size)", + "argsT": [ + { + "name": "self", + "type": "ImVector_float*" + }, + { + "name": "new_size", + "type": "int" + } + ], + "call_args": "(new_size)", + "cimguiname": "ImVector_float_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_float_resize", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_float", + "templatedgen": true + }, + { + "args": "(ImVector_float* self,int new_size,const float v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_float*" + }, + { + "name": "new_size", + "type": "int" + }, + { + "name": "v", + "type": "const float" + } + ], + "call_args": "(new_size,v)", + "cimguiname": "ImVector_float_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_float_resizeT", + "ret": "void", + "signature": "(int,const float)", + "stname": "ImVector_float", + "templatedgen": true + } + ], + "ImVector_float_size": [ + { + "args": "(const ImVector_float* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_float*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_float_size", + "defaults": [], + "funcname": "size", + "ov_cimguiname": "ImVector_float_size", + "ret": "int", + "signature": "()const", + "stname": "ImVector_float", + "templatedgen": true + } + ], + "ImVector_float_size_in_bytes": [ + { + "args": "(const ImVector_float* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_float*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_float_size_in_bytes", + "defaults": [], + "funcname": "size_in_bytes", + "ov_cimguiname": "ImVector_float_size_in_bytes", + "ret": "int", + "signature": "()const", + "stname": "ImVector_float", + "templatedgen": true + } + ], + "ImVector_float_swap": [ + { + "args": "(ImVector_float* self,ImVector_float rhs)", + "argsT": [ + { + "name": "self", + "type": "ImVector_float*" + }, + { + "name": "rhs", + "type": "ImVector_float&" + } + ], + "call_args": "(rhs)", + "cimguiname": "ImVector_float_swap", + "defaults": [], + "funcname": "swap", + "ov_cimguiname": "ImVector_float_swap", + "ret": "void", + "signature": "(ImVector)", + "stname": "ImVector_float", + "templatedgen": true + } + ], "ImVector_front": [ { "args": "(ImVector* self)", @@ -5976,10 +16345,10 @@ "comment": "", "defaults": [], "funcname": "front", - "ov_cimguiname": "ImVector_front", + "ov_cimguiname": "ImVector_front_const", "ret": "const T*", "retref": "&", - "signature": "()", + "signature": "()const", "stname": "ImVector", "templated": true } @@ -6005,7 +16374,7 @@ "funcname": "index_from_ptr", "ov_cimguiname": "ImVector_index_from_ptr", "ret": "int", - "signature": "(const T*)", + "signature": "(const T*)const", "stname": "ImVector", "templated": true } @@ -6040,6 +16409,654 @@ "templated": true } ], + "ImVector_int_ImVector_int": [ + { + "args": "()", + "argsT": [], + "call_args": "()", + "cimguiname": "ImVector_int_ImVector_int", + "constructor": true, + "defaults": [], + "funcname": "ImVector_int", + "ov_cimguiname": "ImVector_int_ImVector_int", + "signature": "()", + "stname": "ImVector_int", + "templatedgen": true + }, + { + "args": "(const ImVector_int src)", + "argsT": [ + { + "name": "src", + "type": "const ImVector_int" + } + ], + "call_args": "(src)", + "cimguiname": "ImVector_int_ImVector_int", + "constructor": true, + "defaults": [], + "funcname": "ImVector_int", + "ov_cimguiname": "ImVector_int_ImVector_intVector", + "signature": "(const ImVector)", + "stname": "ImVector_int", + "templatedgen": true + } + ], + "ImVector_int__grow_capacity": [ + { + "args": "(const ImVector_int* self,int sz)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_int*" + }, + { + "name": "sz", + "type": "int" + } + ], + "call_args": "(sz)", + "cimguiname": "ImVector_int__grow_capacity", + "defaults": [], + "funcname": "_grow_capacity", + "ov_cimguiname": "ImVector_int__grow_capacity", + "ret": "int", + "signature": "(int)const", + "stname": "ImVector_int", + "templatedgen": true + } + ], + "ImVector_int_back": [ + { + "args": "(ImVector_int* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_int*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_int_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_int_back", + "ret": "int*", + "retref": "&", + "signature": "()", + "stname": "ImVector_int", + "templatedgen": true + }, + { + "args": "(const ImVector_int* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_int*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_int_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_int_back_const", + "ret": "int const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_int", + "templatedgen": true + } + ], + "ImVector_int_begin": [ + { + "args": "(ImVector_int* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_int*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_int_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_int_begin", + "ret": "int*", + "signature": "()", + "stname": "ImVector_int", + "templatedgen": true + }, + { + "args": "(const ImVector_int* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_int*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_int_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_int_begin_const", + "ret": "int const *", + "signature": "()const", + "stname": "ImVector_int", + "templatedgen": true + } + ], + "ImVector_int_capacity": [ + { + "args": "(const ImVector_int* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_int*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_int_capacity", + "defaults": [], + "funcname": "capacity", + "ov_cimguiname": "ImVector_int_capacity", + "ret": "int", + "signature": "()const", + "stname": "ImVector_int", + "templatedgen": true + } + ], + "ImVector_int_clear": [ + { + "args": "(ImVector_int* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_int*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_int_clear", + "defaults": [], + "funcname": "clear", + "ov_cimguiname": "ImVector_int_clear", + "ret": "void", + "signature": "()", + "stname": "ImVector_int", + "templatedgen": true + } + ], + "ImVector_int_contains": [ + { + "args": "(const ImVector_int* self,const int v)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_int*" + }, + { + "name": "v", + "type": "const int" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_int_contains", + "defaults": [], + "funcname": "contains", + "ov_cimguiname": "ImVector_int_contains", + "ret": "bool", + "signature": "(const int)const", + "stname": "ImVector_int", + "templatedgen": true + } + ], + "ImVector_int_destroy": [ + { + "args": "(ImVector_int* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_int*" + } + ], + "call_args": "(self)", + "cimguiname": "ImVector_int_destroy", + "defaults": [], + "destructor": true, + "ov_cimguiname": "ImVector_int_destroy", + "ret": "void", + "signature": "(ImVector_int*)", + "stname": "ImVector_int" + } + ], + "ImVector_int_empty": [ + { + "args": "(const ImVector_int* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_int*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_int_empty", + "defaults": [], + "funcname": "empty", + "ov_cimguiname": "ImVector_int_empty", + "ret": "bool", + "signature": "()const", + "stname": "ImVector_int", + "templatedgen": true + } + ], + "ImVector_int_end": [ + { + "args": "(ImVector_int* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_int*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_int_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_int_end", + "ret": "int*", + "signature": "()", + "stname": "ImVector_int", + "templatedgen": true + }, + { + "args": "(const ImVector_int* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_int*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_int_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_int_end_const", + "ret": "int const *", + "signature": "()const", + "stname": "ImVector_int", + "templatedgen": true + } + ], + "ImVector_int_erase": [ + { + "args": "(ImVector_int* self,int const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_int*" + }, + { + "name": "it", + "type": "int const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_int_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_int_erase", + "ret": "int*", + "signature": "(const int*)", + "stname": "ImVector_int", + "templatedgen": true + }, + { + "args": "(ImVector_int* self,int const * it,int const * it_last)", + "argsT": [ + { + "name": "self", + "type": "ImVector_int*" + }, + { + "name": "it", + "type": "int const *" + }, + { + "name": "it_last", + "type": "int const *" + } + ], + "call_args": "(it,it_last)", + "cimguiname": "ImVector_int_erase", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_int_eraseTPtr", + "ret": "int*", + "signature": "(const int*,const int*)", + "stname": "ImVector_int", + "templatedgen": true + } + ], + "ImVector_int_erase_unsorted": [ + { + "args": "(ImVector_int* self,int const * it)", + "argsT": [ + { + "name": "self", + "type": "ImVector_int*" + }, + { + "name": "it", + "type": "int const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_int_erase_unsorted", + "defaults": [], + "funcname": "erase_unsorted", + "ov_cimguiname": "ImVector_int_erase_unsorted", + "ret": "int*", + "signature": "(const int*)", + "stname": "ImVector_int", + "templatedgen": true + } + ], + "ImVector_int_front": [ + { + "args": "(ImVector_int* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_int*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_int_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_int_front", + "ret": "int*", + "retref": "&", + "signature": "()", + "stname": "ImVector_int", + "templatedgen": true + }, + { + "args": "(const ImVector_int* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_int*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_int_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_int_front_const", + "ret": "int const *", + "retref": "&", + "signature": "()const", + "stname": "ImVector_int", + "templatedgen": true + } + ], + "ImVector_int_index_from_ptr": [ + { + "args": "(const ImVector_int* self,int const * it)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_int*" + }, + { + "name": "it", + "type": "int const *" + } + ], + "call_args": "(it)", + "cimguiname": "ImVector_int_index_from_ptr", + "defaults": [], + "funcname": "index_from_ptr", + "ov_cimguiname": "ImVector_int_index_from_ptr", + "ret": "int", + "signature": "(const int*)const", + "stname": "ImVector_int", + "templatedgen": true + } + ], + "ImVector_int_insert": [ + { + "args": "(ImVector_int* self,int const * it,const int v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_int*" + }, + { + "name": "it", + "type": "int const *" + }, + { + "name": "v", + "type": "const int" + } + ], + "call_args": "(it,v)", + "cimguiname": "ImVector_int_insert", + "defaults": [], + "funcname": "insert", + "ov_cimguiname": "ImVector_int_insert", + "ret": "int*", + "signature": "(const int*,const int)", + "stname": "ImVector_int", + "templatedgen": true + } + ], + "ImVector_int_pop_back": [ + { + "args": "(ImVector_int* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector_int*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_int_pop_back", + "defaults": [], + "funcname": "pop_back", + "ov_cimguiname": "ImVector_int_pop_back", + "ret": "void", + "signature": "()", + "stname": "ImVector_int", + "templatedgen": true + } + ], + "ImVector_int_push_back": [ + { + "args": "(ImVector_int* self,const int v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_int*" + }, + { + "name": "v", + "type": "const int" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_int_push_back", + "defaults": [], + "funcname": "push_back", + "ov_cimguiname": "ImVector_int_push_back", + "ret": "void", + "signature": "(const int)", + "stname": "ImVector_int", + "templatedgen": true + } + ], + "ImVector_int_push_front": [ + { + "args": "(ImVector_int* self,const int v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_int*" + }, + { + "name": "v", + "type": "const int" + } + ], + "call_args": "(v)", + "cimguiname": "ImVector_int_push_front", + "defaults": [], + "funcname": "push_front", + "ov_cimguiname": "ImVector_int_push_front", + "ret": "void", + "signature": "(const int)", + "stname": "ImVector_int", + "templatedgen": true + } + ], + "ImVector_int_reserve": [ + { + "args": "(ImVector_int* self,int new_capacity)", + "argsT": [ + { + "name": "self", + "type": "ImVector_int*" + }, + { + "name": "new_capacity", + "type": "int" + } + ], + "call_args": "(new_capacity)", + "cimguiname": "ImVector_int_reserve", + "defaults": [], + "funcname": "reserve", + "ov_cimguiname": "ImVector_int_reserve", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_int", + "templatedgen": true + } + ], + "ImVector_int_resize": [ + { + "args": "(ImVector_int* self,int new_size)", + "argsT": [ + { + "name": "self", + "type": "ImVector_int*" + }, + { + "name": "new_size", + "type": "int" + } + ], + "call_args": "(new_size)", + "cimguiname": "ImVector_int_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_int_resize", + "ret": "void", + "signature": "(int)", + "stname": "ImVector_int", + "templatedgen": true + }, + { + "args": "(ImVector_int* self,int new_size,const int v)", + "argsT": [ + { + "name": "self", + "type": "ImVector_int*" + }, + { + "name": "new_size", + "type": "int" + }, + { + "name": "v", + "type": "const int" + } + ], + "call_args": "(new_size,v)", + "cimguiname": "ImVector_int_resize", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_int_resizeT", + "ret": "void", + "signature": "(int,const int)", + "stname": "ImVector_int", + "templatedgen": true + } + ], + "ImVector_int_size": [ + { + "args": "(const ImVector_int* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_int*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_int_size", + "defaults": [], + "funcname": "size", + "ov_cimguiname": "ImVector_int_size", + "ret": "int", + "signature": "()const", + "stname": "ImVector_int", + "templatedgen": true + } + ], + "ImVector_int_size_in_bytes": [ + { + "args": "(const ImVector_int* self)", + "argsT": [ + { + "name": "self", + "type": "const ImVector_int*" + } + ], + "call_args": "()", + "cimguiname": "ImVector_int_size_in_bytes", + "defaults": [], + "funcname": "size_in_bytes", + "ov_cimguiname": "ImVector_int_size_in_bytes", + "ret": "int", + "signature": "()const", + "stname": "ImVector_int", + "templatedgen": true + } + ], + "ImVector_int_swap": [ + { + "args": "(ImVector_int* self,ImVector_int rhs)", + "argsT": [ + { + "name": "self", + "type": "ImVector_int*" + }, + { + "name": "rhs", + "type": "ImVector_int&" + } + ], + "call_args": "(rhs)", + "cimguiname": "ImVector_int_swap", + "defaults": [], + "funcname": "swap", + "ov_cimguiname": "ImVector_int_swap", + "ret": "void", + "signature": "(ImVector)", + "stname": "ImVector_int", + "templatedgen": true + } + ], "ImVector_pop_back": [ { "args": "(ImVector* self)", @@ -6211,7 +17228,7 @@ "funcname": "size", "ov_cimguiname": "ImVector_size", "ret": "int", - "signature": "()", + "signature": "()const", "stname": "ImVector", "templated": true } @@ -6233,14 +17250,14 @@ "funcname": "size_in_bytes", "ov_cimguiname": "ImVector_size_in_bytes", "ret": "int", - "signature": "()", + "signature": "()const", "stname": "ImVector", "templated": true } ], "ImVector_swap": [ { - "args": "(ImVector* self,ImVector_ rhs)", + "args": "(ImVector* self,ImVector rhs)", "argsT": [ { "name": "self", @@ -6248,7 +17265,7 @@ }, { "name": "rhs", - "type": "ImVector_&" + "type": "ImVector&" } ], "argsoriginal": "(ImVector& rhs)", @@ -6259,7 +17276,7 @@ "funcname": "swap", "ov_cimguiname": "ImVector_swap", "ret": "void", - "signature": "(ImVector_)", + "signature": "(ImVector)", "stname": "ImVector", "templated": true } @@ -6410,7 +17427,7 @@ "funcname": "begin", "ov_cimguiname": "TextRange_begin", "ret": "const char*", - "signature": "()", + "signature": "()const", "stname": "TextRange" } ], @@ -6450,7 +17467,7 @@ "funcname": "empty", "ov_cimguiname": "TextRange_empty", "ret": "bool", - "signature": "()", + "signature": "()const", "stname": "TextRange" } ], @@ -6471,7 +17488,7 @@ "funcname": "end", "ov_cimguiname": "TextRange_end", "ret": "const char*", - "signature": "()", + "signature": "()const", "stname": "TextRange" } ], @@ -6500,7 +17517,7 @@ "funcname": "split", "ov_cimguiname": "TextRange_split", "ret": "void", - "signature": "(char,ImVector_TextRange*)", + "signature": "(char,ImVector_TextRange*)const", "stname": "TextRange" } ], diff --git a/generator/output/definitions.lua b/generator/output/definitions.lua index 14c0df7..fb8063d 100644 --- a/generator/output/definitions.lua +++ b/generator/output/definitions.lua @@ -29,9 +29,9 @@ defs["CustomRect_IsPacked"][1]["defaults"] = {} defs["CustomRect_IsPacked"][1]["funcname"] = "IsPacked" defs["CustomRect_IsPacked"][1]["ov_cimguiname"] = "CustomRect_IsPacked" defs["CustomRect_IsPacked"][1]["ret"] = "bool" -defs["CustomRect_IsPacked"][1]["signature"] = "()" +defs["CustomRect_IsPacked"][1]["signature"] = "()const" defs["CustomRect_IsPacked"][1]["stname"] = "CustomRect" -defs["CustomRect_IsPacked"]["()"] = defs["CustomRect_IsPacked"][1] +defs["CustomRect_IsPacked"]["()const"] = defs["CustomRect_IsPacked"][1] defs["CustomRect_destroy"] = {} defs["CustomRect_destroy"][1] = {} defs["CustomRect_destroy"][1]["args"] = "(CustomRect* self)" @@ -1216,9 +1216,9 @@ defs["ImDrawList_CloneOutput"][1]["defaults"] = {} defs["ImDrawList_CloneOutput"][1]["funcname"] = "CloneOutput" defs["ImDrawList_CloneOutput"][1]["ov_cimguiname"] = "ImDrawList_CloneOutput" defs["ImDrawList_CloneOutput"][1]["ret"] = "ImDrawList*" -defs["ImDrawList_CloneOutput"][1]["signature"] = "()" +defs["ImDrawList_CloneOutput"][1]["signature"] = "()const" defs["ImDrawList_CloneOutput"][1]["stname"] = "ImDrawList" -defs["ImDrawList_CloneOutput"]["()"] = defs["ImDrawList_CloneOutput"][1] +defs["ImDrawList_CloneOutput"]["()const"] = defs["ImDrawList_CloneOutput"][1] defs["ImDrawList_GetClipRectMax"] = {} defs["ImDrawList_GetClipRectMax"][1] = {} defs["ImDrawList_GetClipRectMax"][1]["args"] = "(ImDrawList* self)" @@ -1234,7 +1234,7 @@ defs["ImDrawList_GetClipRectMax"][1]["defaults"] = {} defs["ImDrawList_GetClipRectMax"][1]["funcname"] = "GetClipRectMax" defs["ImDrawList_GetClipRectMax"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMax" defs["ImDrawList_GetClipRectMax"][1]["ret"] = "ImVec2" -defs["ImDrawList_GetClipRectMax"][1]["signature"] = "()" +defs["ImDrawList_GetClipRectMax"][1]["signature"] = "()const" defs["ImDrawList_GetClipRectMax"][1]["stname"] = "ImDrawList" defs["ImDrawList_GetClipRectMax"][2] = {} defs["ImDrawList_GetClipRectMax"][2]["args"] = "(ImVec2 *pOut,ImDrawList* self)" @@ -1254,7 +1254,7 @@ defs["ImDrawList_GetClipRectMax"][2]["funcname"] = "GetClipRectMax" defs["ImDrawList_GetClipRectMax"][2]["nonUDT"] = 1 defs["ImDrawList_GetClipRectMax"][2]["ov_cimguiname"] = "ImDrawList_GetClipRectMax_nonUDT" defs["ImDrawList_GetClipRectMax"][2]["ret"] = "void" -defs["ImDrawList_GetClipRectMax"][2]["signature"] = "()" +defs["ImDrawList_GetClipRectMax"][2]["signature"] = "()const" defs["ImDrawList_GetClipRectMax"][2]["stname"] = "ImDrawList" defs["ImDrawList_GetClipRectMax"][3] = {} defs["ImDrawList_GetClipRectMax"][3]["args"] = "(ImDrawList* self)" @@ -1272,11 +1272,11 @@ defs["ImDrawList_GetClipRectMax"][3]["nonUDT"] = 2 defs["ImDrawList_GetClipRectMax"][3]["ov_cimguiname"] = "ImDrawList_GetClipRectMax_nonUDT2" defs["ImDrawList_GetClipRectMax"][3]["ret"] = "ImVec2_Simple" defs["ImDrawList_GetClipRectMax"][3]["retorig"] = "ImVec2" -defs["ImDrawList_GetClipRectMax"][3]["signature"] = "()" +defs["ImDrawList_GetClipRectMax"][3]["signature"] = "()const" defs["ImDrawList_GetClipRectMax"][3]["stname"] = "ImDrawList" -defs["ImDrawList_GetClipRectMax"]["()"] = defs["ImDrawList_GetClipRectMax"][1] -defs["ImDrawList_GetClipRectMax"]["()nonUDT"] = defs["ImDrawList_GetClipRectMax"][2] -defs["ImDrawList_GetClipRectMax"]["()nonUDT2"] = defs["ImDrawList_GetClipRectMax"][3] +defs["ImDrawList_GetClipRectMax"]["()const"] = defs["ImDrawList_GetClipRectMax"][1] +defs["ImDrawList_GetClipRectMax"]["()constnonUDT"] = defs["ImDrawList_GetClipRectMax"][2] +defs["ImDrawList_GetClipRectMax"]["()constnonUDT2"] = defs["ImDrawList_GetClipRectMax"][3] defs["ImDrawList_GetClipRectMin"] = {} defs["ImDrawList_GetClipRectMin"][1] = {} defs["ImDrawList_GetClipRectMin"][1]["args"] = "(ImDrawList* self)" @@ -1292,7 +1292,7 @@ defs["ImDrawList_GetClipRectMin"][1]["defaults"] = {} defs["ImDrawList_GetClipRectMin"][1]["funcname"] = "GetClipRectMin" defs["ImDrawList_GetClipRectMin"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMin" defs["ImDrawList_GetClipRectMin"][1]["ret"] = "ImVec2" -defs["ImDrawList_GetClipRectMin"][1]["signature"] = "()" +defs["ImDrawList_GetClipRectMin"][1]["signature"] = "()const" defs["ImDrawList_GetClipRectMin"][1]["stname"] = "ImDrawList" defs["ImDrawList_GetClipRectMin"][2] = {} defs["ImDrawList_GetClipRectMin"][2]["args"] = "(ImVec2 *pOut,ImDrawList* self)" @@ -1312,7 +1312,7 @@ defs["ImDrawList_GetClipRectMin"][2]["funcname"] = "GetClipRectMin" defs["ImDrawList_GetClipRectMin"][2]["nonUDT"] = 1 defs["ImDrawList_GetClipRectMin"][2]["ov_cimguiname"] = "ImDrawList_GetClipRectMin_nonUDT" defs["ImDrawList_GetClipRectMin"][2]["ret"] = "void" -defs["ImDrawList_GetClipRectMin"][2]["signature"] = "()" +defs["ImDrawList_GetClipRectMin"][2]["signature"] = "()const" defs["ImDrawList_GetClipRectMin"][2]["stname"] = "ImDrawList" defs["ImDrawList_GetClipRectMin"][3] = {} defs["ImDrawList_GetClipRectMin"][3]["args"] = "(ImDrawList* self)" @@ -1330,11 +1330,11 @@ defs["ImDrawList_GetClipRectMin"][3]["nonUDT"] = 2 defs["ImDrawList_GetClipRectMin"][3]["ov_cimguiname"] = "ImDrawList_GetClipRectMin_nonUDT2" defs["ImDrawList_GetClipRectMin"][3]["ret"] = "ImVec2_Simple" defs["ImDrawList_GetClipRectMin"][3]["retorig"] = "ImVec2" -defs["ImDrawList_GetClipRectMin"][3]["signature"] = "()" +defs["ImDrawList_GetClipRectMin"][3]["signature"] = "()const" defs["ImDrawList_GetClipRectMin"][3]["stname"] = "ImDrawList" -defs["ImDrawList_GetClipRectMin"]["()"] = defs["ImDrawList_GetClipRectMin"][1] -defs["ImDrawList_GetClipRectMin"]["()nonUDT"] = defs["ImDrawList_GetClipRectMin"][2] -defs["ImDrawList_GetClipRectMin"]["()nonUDT2"] = defs["ImDrawList_GetClipRectMin"][3] +defs["ImDrawList_GetClipRectMin"]["()const"] = defs["ImDrawList_GetClipRectMin"][1] +defs["ImDrawList_GetClipRectMin"]["()constnonUDT"] = defs["ImDrawList_GetClipRectMin"][2] +defs["ImDrawList_GetClipRectMin"]["()constnonUDT2"] = defs["ImDrawList_GetClipRectMin"][3] defs["ImDrawList_ImDrawList"] = {} defs["ImDrawList_ImDrawList"][1] = {} defs["ImDrawList_ImDrawList"][1]["args"] = "(const ImDrawListSharedData* shared_data)" @@ -2324,9 +2324,9 @@ defs["ImFontAtlas_GetCustomRectByIndex"][1]["defaults"] = {} defs["ImFontAtlas_GetCustomRectByIndex"][1]["funcname"] = "GetCustomRectByIndex" defs["ImFontAtlas_GetCustomRectByIndex"][1]["ov_cimguiname"] = "ImFontAtlas_GetCustomRectByIndex" defs["ImFontAtlas_GetCustomRectByIndex"][1]["ret"] = "const CustomRect*" -defs["ImFontAtlas_GetCustomRectByIndex"][1]["signature"] = "(int)" +defs["ImFontAtlas_GetCustomRectByIndex"][1]["signature"] = "(int)const" defs["ImFontAtlas_GetCustomRectByIndex"][1]["stname"] = "ImFontAtlas" -defs["ImFontAtlas_GetCustomRectByIndex"]["(int)"] = defs["ImFontAtlas_GetCustomRectByIndex"][1] +defs["ImFontAtlas_GetCustomRectByIndex"]["(int)const"] = defs["ImFontAtlas_GetCustomRectByIndex"][1] defs["ImFontAtlas_GetGlyphRangesChineseFull"] = {} defs["ImFontAtlas_GetGlyphRangesChineseFull"][1] = {} defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["args"] = "(ImFontAtlas* self)" @@ -2755,9 +2755,9 @@ defs["ImFontGlyphRangesBuilder_GetBit"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_GetBit"][1]["funcname"] = "GetBit" defs["ImFontGlyphRangesBuilder_GetBit"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_GetBit" defs["ImFontGlyphRangesBuilder_GetBit"][1]["ret"] = "bool" -defs["ImFontGlyphRangesBuilder_GetBit"][1]["signature"] = "(int)" +defs["ImFontGlyphRangesBuilder_GetBit"][1]["signature"] = "(int)const" defs["ImFontGlyphRangesBuilder_GetBit"][1]["stname"] = "ImFontGlyphRangesBuilder" -defs["ImFontGlyphRangesBuilder_GetBit"]["(int)"] = defs["ImFontGlyphRangesBuilder_GetBit"][1] +defs["ImFontGlyphRangesBuilder_GetBit"]["(int)const"] = defs["ImFontGlyphRangesBuilder_GetBit"][1] defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"] = {} defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1] = {} defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["args"] = "()" @@ -2939,7 +2939,7 @@ defs["ImFont_CalcTextSizeA"][1]["defaults"]["text_end"] = "((void*)0)" defs["ImFont_CalcTextSizeA"][1]["funcname"] = "CalcTextSizeA" defs["ImFont_CalcTextSizeA"][1]["ov_cimguiname"] = "ImFont_CalcTextSizeA" defs["ImFont_CalcTextSizeA"][1]["ret"] = "ImVec2" -defs["ImFont_CalcTextSizeA"][1]["signature"] = "(float,float,float,const char*,const char*,const char**)" +defs["ImFont_CalcTextSizeA"][1]["signature"] = "(float,float,float,const char*,const char*,const char**)const" defs["ImFont_CalcTextSizeA"][1]["stname"] = "ImFont" defs["ImFont_CalcTextSizeA"][2] = {} defs["ImFont_CalcTextSizeA"][2]["args"] = "(ImVec2 *pOut,ImFont* self,float size,float max_width,float wrap_width,const char* text_begin,const char* text_end,const char** remaining)" @@ -2977,7 +2977,7 @@ defs["ImFont_CalcTextSizeA"][2]["funcname"] = "CalcTextSizeA" defs["ImFont_CalcTextSizeA"][2]["nonUDT"] = 1 defs["ImFont_CalcTextSizeA"][2]["ov_cimguiname"] = "ImFont_CalcTextSizeA_nonUDT" defs["ImFont_CalcTextSizeA"][2]["ret"] = "void" -defs["ImFont_CalcTextSizeA"][2]["signature"] = "(float,float,float,const char*,const char*,const char**)" +defs["ImFont_CalcTextSizeA"][2]["signature"] = "(float,float,float,const char*,const char*,const char**)const" defs["ImFont_CalcTextSizeA"][2]["stname"] = "ImFont" defs["ImFont_CalcTextSizeA"][3] = {} defs["ImFont_CalcTextSizeA"][3]["args"] = "(ImFont* self,float size,float max_width,float wrap_width,const char* text_begin,const char* text_end,const char** remaining)" @@ -3013,11 +3013,11 @@ defs["ImFont_CalcTextSizeA"][3]["nonUDT"] = 2 defs["ImFont_CalcTextSizeA"][3]["ov_cimguiname"] = "ImFont_CalcTextSizeA_nonUDT2" defs["ImFont_CalcTextSizeA"][3]["ret"] = "ImVec2_Simple" defs["ImFont_CalcTextSizeA"][3]["retorig"] = "ImVec2" -defs["ImFont_CalcTextSizeA"][3]["signature"] = "(float,float,float,const char*,const char*,const char**)" +defs["ImFont_CalcTextSizeA"][3]["signature"] = "(float,float,float,const char*,const char*,const char**)const" defs["ImFont_CalcTextSizeA"][3]["stname"] = "ImFont" -defs["ImFont_CalcTextSizeA"]["(float,float,float,const char*,const char*,const char**)"] = defs["ImFont_CalcTextSizeA"][1] -defs["ImFont_CalcTextSizeA"]["(float,float,float,const char*,const char*,const char**)nonUDT"] = defs["ImFont_CalcTextSizeA"][2] -defs["ImFont_CalcTextSizeA"]["(float,float,float,const char*,const char*,const char**)nonUDT2"] = defs["ImFont_CalcTextSizeA"][3] +defs["ImFont_CalcTextSizeA"]["(float,float,float,const char*,const char*,const char**)const"] = defs["ImFont_CalcTextSizeA"][1] +defs["ImFont_CalcTextSizeA"]["(float,float,float,const char*,const char*,const char**)constnonUDT"] = defs["ImFont_CalcTextSizeA"][2] +defs["ImFont_CalcTextSizeA"]["(float,float,float,const char*,const char*,const char**)constnonUDT2"] = defs["ImFont_CalcTextSizeA"][3] defs["ImFont_CalcWordWrapPositionA"] = {} defs["ImFont_CalcWordWrapPositionA"][1] = {} defs["ImFont_CalcWordWrapPositionA"][1]["args"] = "(ImFont* self,float scale,const char* text,const char* text_end,float wrap_width)" @@ -3045,9 +3045,9 @@ defs["ImFont_CalcWordWrapPositionA"][1]["defaults"] = {} defs["ImFont_CalcWordWrapPositionA"][1]["funcname"] = "CalcWordWrapPositionA" defs["ImFont_CalcWordWrapPositionA"][1]["ov_cimguiname"] = "ImFont_CalcWordWrapPositionA" defs["ImFont_CalcWordWrapPositionA"][1]["ret"] = "const char*" -defs["ImFont_CalcWordWrapPositionA"][1]["signature"] = "(float,const char*,const char*,float)" +defs["ImFont_CalcWordWrapPositionA"][1]["signature"] = "(float,const char*,const char*,float)const" defs["ImFont_CalcWordWrapPositionA"][1]["stname"] = "ImFont" -defs["ImFont_CalcWordWrapPositionA"]["(float,const char*,const char*,float)"] = defs["ImFont_CalcWordWrapPositionA"][1] +defs["ImFont_CalcWordWrapPositionA"]["(float,const char*,const char*,float)const"] = defs["ImFont_CalcWordWrapPositionA"][1] defs["ImFont_ClearOutputData"] = {} defs["ImFont_ClearOutputData"][1] = {} defs["ImFont_ClearOutputData"][1]["args"] = "(ImFont* self)" @@ -3084,9 +3084,9 @@ defs["ImFont_FindGlyph"][1]["defaults"] = {} defs["ImFont_FindGlyph"][1]["funcname"] = "FindGlyph" defs["ImFont_FindGlyph"][1]["ov_cimguiname"] = "ImFont_FindGlyph" defs["ImFont_FindGlyph"][1]["ret"] = "const ImFontGlyph*" -defs["ImFont_FindGlyph"][1]["signature"] = "(ImWchar)" +defs["ImFont_FindGlyph"][1]["signature"] = "(ImWchar)const" defs["ImFont_FindGlyph"][1]["stname"] = "ImFont" -defs["ImFont_FindGlyph"]["(ImWchar)"] = defs["ImFont_FindGlyph"][1] +defs["ImFont_FindGlyph"]["(ImWchar)const"] = defs["ImFont_FindGlyph"][1] defs["ImFont_FindGlyphNoFallback"] = {} defs["ImFont_FindGlyphNoFallback"][1] = {} defs["ImFont_FindGlyphNoFallback"][1]["args"] = "(ImFont* self,ImWchar c)" @@ -3105,9 +3105,9 @@ defs["ImFont_FindGlyphNoFallback"][1]["defaults"] = {} defs["ImFont_FindGlyphNoFallback"][1]["funcname"] = "FindGlyphNoFallback" defs["ImFont_FindGlyphNoFallback"][1]["ov_cimguiname"] = "ImFont_FindGlyphNoFallback" defs["ImFont_FindGlyphNoFallback"][1]["ret"] = "const ImFontGlyph*" -defs["ImFont_FindGlyphNoFallback"][1]["signature"] = "(ImWchar)" +defs["ImFont_FindGlyphNoFallback"][1]["signature"] = "(ImWchar)const" defs["ImFont_FindGlyphNoFallback"][1]["stname"] = "ImFont" -defs["ImFont_FindGlyphNoFallback"]["(ImWchar)"] = defs["ImFont_FindGlyphNoFallback"][1] +defs["ImFont_FindGlyphNoFallback"]["(ImWchar)const"] = defs["ImFont_FindGlyphNoFallback"][1] defs["ImFont_GetCharAdvance"] = {} defs["ImFont_GetCharAdvance"][1] = {} defs["ImFont_GetCharAdvance"][1]["args"] = "(ImFont* self,ImWchar c)" @@ -3126,9 +3126,9 @@ defs["ImFont_GetCharAdvance"][1]["defaults"] = {} defs["ImFont_GetCharAdvance"][1]["funcname"] = "GetCharAdvance" defs["ImFont_GetCharAdvance"][1]["ov_cimguiname"] = "ImFont_GetCharAdvance" defs["ImFont_GetCharAdvance"][1]["ret"] = "float" -defs["ImFont_GetCharAdvance"][1]["signature"] = "(ImWchar)" +defs["ImFont_GetCharAdvance"][1]["signature"] = "(ImWchar)const" defs["ImFont_GetCharAdvance"][1]["stname"] = "ImFont" -defs["ImFont_GetCharAdvance"]["(ImWchar)"] = defs["ImFont_GetCharAdvance"][1] +defs["ImFont_GetCharAdvance"]["(ImWchar)const"] = defs["ImFont_GetCharAdvance"][1] defs["ImFont_GetDebugName"] = {} defs["ImFont_GetDebugName"][1] = {} defs["ImFont_GetDebugName"][1]["args"] = "(ImFont* self)" @@ -3144,9 +3144,9 @@ defs["ImFont_GetDebugName"][1]["defaults"] = {} defs["ImFont_GetDebugName"][1]["funcname"] = "GetDebugName" defs["ImFont_GetDebugName"][1]["ov_cimguiname"] = "ImFont_GetDebugName" defs["ImFont_GetDebugName"][1]["ret"] = "const char*" -defs["ImFont_GetDebugName"][1]["signature"] = "()" +defs["ImFont_GetDebugName"][1]["signature"] = "()const" defs["ImFont_GetDebugName"][1]["stname"] = "ImFont" -defs["ImFont_GetDebugName"]["()"] = defs["ImFont_GetDebugName"][1] +defs["ImFont_GetDebugName"]["()const"] = defs["ImFont_GetDebugName"][1] defs["ImFont_GrowIndex"] = {} defs["ImFont_GrowIndex"][1] = {} defs["ImFont_GrowIndex"][1]["args"] = "(ImFont* self,int new_size)" @@ -3198,9 +3198,9 @@ defs["ImFont_IsLoaded"][1]["defaults"] = {} defs["ImFont_IsLoaded"][1]["funcname"] = "IsLoaded" defs["ImFont_IsLoaded"][1]["ov_cimguiname"] = "ImFont_IsLoaded" defs["ImFont_IsLoaded"][1]["ret"] = "bool" -defs["ImFont_IsLoaded"][1]["signature"] = "()" +defs["ImFont_IsLoaded"][1]["signature"] = "()const" defs["ImFont_IsLoaded"][1]["stname"] = "ImFont" -defs["ImFont_IsLoaded"]["()"] = defs["ImFont_IsLoaded"][1] +defs["ImFont_IsLoaded"]["()const"] = defs["ImFont_IsLoaded"][1] defs["ImFont_RenderChar"] = {} defs["ImFont_RenderChar"][1] = {} defs["ImFont_RenderChar"][1]["args"] = "(ImFont* self,ImDrawList* draw_list,float size,ImVec2 pos,ImU32 col,ImWchar c)" @@ -3231,9 +3231,9 @@ defs["ImFont_RenderChar"][1]["defaults"] = {} defs["ImFont_RenderChar"][1]["funcname"] = "RenderChar" defs["ImFont_RenderChar"][1]["ov_cimguiname"] = "ImFont_RenderChar" defs["ImFont_RenderChar"][1]["ret"] = "void" -defs["ImFont_RenderChar"][1]["signature"] = "(ImDrawList*,float,ImVec2,ImU32,ImWchar)" +defs["ImFont_RenderChar"][1]["signature"] = "(ImDrawList*,float,ImVec2,ImU32,ImWchar)const" defs["ImFont_RenderChar"][1]["stname"] = "ImFont" -defs["ImFont_RenderChar"]["(ImDrawList*,float,ImVec2,ImU32,ImWchar)"] = defs["ImFont_RenderChar"][1] +defs["ImFont_RenderChar"]["(ImDrawList*,float,ImVec2,ImU32,ImWchar)const"] = defs["ImFont_RenderChar"][1] defs["ImFont_RenderText"] = {} defs["ImFont_RenderText"][1] = {} defs["ImFont_RenderText"][1]["args"] = "(ImFont* self,ImDrawList* draw_list,float size,ImVec2 pos,ImU32 col,const ImVec4 clip_rect,const char* text_begin,const char* text_end,float wrap_width,bool cpu_fine_clip)" @@ -3278,9 +3278,9 @@ defs["ImFont_RenderText"][1]["defaults"]["wrap_width"] = "0.0f" defs["ImFont_RenderText"][1]["funcname"] = "RenderText" defs["ImFont_RenderText"][1]["ov_cimguiname"] = "ImFont_RenderText" defs["ImFont_RenderText"][1]["ret"] = "void" -defs["ImFont_RenderText"][1]["signature"] = "(ImDrawList*,float,ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)" +defs["ImFont_RenderText"][1]["signature"] = "(ImDrawList*,float,ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)const" defs["ImFont_RenderText"][1]["stname"] = "ImFont" -defs["ImFont_RenderText"]["(ImDrawList*,float,ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)"] = defs["ImFont_RenderText"][1] +defs["ImFont_RenderText"]["(ImDrawList*,float,ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)const"] = defs["ImFont_RenderText"][1] defs["ImFont_SetFallbackChar"] = {} defs["ImFont_SetFallbackChar"][1] = {} defs["ImFont_SetFallbackChar"][1]["args"] = "(ImFont* self,ImWchar c)" @@ -3448,9 +3448,9 @@ defs["ImGuiInputTextCallbackData_HasSelection"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_HasSelection"][1]["funcname"] = "HasSelection" defs["ImGuiInputTextCallbackData_HasSelection"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_HasSelection" defs["ImGuiInputTextCallbackData_HasSelection"][1]["ret"] = "bool" -defs["ImGuiInputTextCallbackData_HasSelection"][1]["signature"] = "()" +defs["ImGuiInputTextCallbackData_HasSelection"][1]["signature"] = "()const" defs["ImGuiInputTextCallbackData_HasSelection"][1]["stname"] = "ImGuiInputTextCallbackData" -defs["ImGuiInputTextCallbackData_HasSelection"]["()"] = defs["ImGuiInputTextCallbackData_HasSelection"][1] +defs["ImGuiInputTextCallbackData_HasSelection"]["()const"] = defs["ImGuiInputTextCallbackData_HasSelection"][1] defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"] = {} defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1] = {} defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["args"] = "()" @@ -3692,9 +3692,9 @@ defs["ImGuiPayload_IsDataType"][1]["defaults"] = {} defs["ImGuiPayload_IsDataType"][1]["funcname"] = "IsDataType" defs["ImGuiPayload_IsDataType"][1]["ov_cimguiname"] = "ImGuiPayload_IsDataType" defs["ImGuiPayload_IsDataType"][1]["ret"] = "bool" -defs["ImGuiPayload_IsDataType"][1]["signature"] = "(const char*)" +defs["ImGuiPayload_IsDataType"][1]["signature"] = "(const char*)const" defs["ImGuiPayload_IsDataType"][1]["stname"] = "ImGuiPayload" -defs["ImGuiPayload_IsDataType"]["(const char*)"] = defs["ImGuiPayload_IsDataType"][1] +defs["ImGuiPayload_IsDataType"]["(const char*)const"] = defs["ImGuiPayload_IsDataType"][1] defs["ImGuiPayload_IsDelivery"] = {} defs["ImGuiPayload_IsDelivery"][1] = {} defs["ImGuiPayload_IsDelivery"][1]["args"] = "(ImGuiPayload* self)" @@ -3710,9 +3710,9 @@ defs["ImGuiPayload_IsDelivery"][1]["defaults"] = {} defs["ImGuiPayload_IsDelivery"][1]["funcname"] = "IsDelivery" defs["ImGuiPayload_IsDelivery"][1]["ov_cimguiname"] = "ImGuiPayload_IsDelivery" defs["ImGuiPayload_IsDelivery"][1]["ret"] = "bool" -defs["ImGuiPayload_IsDelivery"][1]["signature"] = "()" +defs["ImGuiPayload_IsDelivery"][1]["signature"] = "()const" defs["ImGuiPayload_IsDelivery"][1]["stname"] = "ImGuiPayload" -defs["ImGuiPayload_IsDelivery"]["()"] = defs["ImGuiPayload_IsDelivery"][1] +defs["ImGuiPayload_IsDelivery"]["()const"] = defs["ImGuiPayload_IsDelivery"][1] defs["ImGuiPayload_IsPreview"] = {} defs["ImGuiPayload_IsPreview"][1] = {} defs["ImGuiPayload_IsPreview"][1]["args"] = "(ImGuiPayload* self)" @@ -3728,9 +3728,9 @@ defs["ImGuiPayload_IsPreview"][1]["defaults"] = {} defs["ImGuiPayload_IsPreview"][1]["funcname"] = "IsPreview" defs["ImGuiPayload_IsPreview"][1]["ov_cimguiname"] = "ImGuiPayload_IsPreview" defs["ImGuiPayload_IsPreview"][1]["ret"] = "bool" -defs["ImGuiPayload_IsPreview"][1]["signature"] = "()" +defs["ImGuiPayload_IsPreview"][1]["signature"] = "()const" defs["ImGuiPayload_IsPreview"][1]["stname"] = "ImGuiPayload" -defs["ImGuiPayload_IsPreview"]["()"] = defs["ImGuiPayload_IsPreview"][1] +defs["ImGuiPayload_IsPreview"]["()const"] = defs["ImGuiPayload_IsPreview"][1] defs["ImGuiPayload_destroy"] = {} defs["ImGuiPayload_destroy"][1] = {} defs["ImGuiPayload_destroy"][1]["args"] = "(ImGuiPayload* self)" @@ -3805,9 +3805,9 @@ defs["ImGuiStorage_GetBool"][1]["defaults"]["default_val"] = "false" defs["ImGuiStorage_GetBool"][1]["funcname"] = "GetBool" defs["ImGuiStorage_GetBool"][1]["ov_cimguiname"] = "ImGuiStorage_GetBool" defs["ImGuiStorage_GetBool"][1]["ret"] = "bool" -defs["ImGuiStorage_GetBool"][1]["signature"] = "(ImGuiID,bool)" +defs["ImGuiStorage_GetBool"][1]["signature"] = "(ImGuiID,bool)const" defs["ImGuiStorage_GetBool"][1]["stname"] = "ImGuiStorage" -defs["ImGuiStorage_GetBool"]["(ImGuiID,bool)"] = defs["ImGuiStorage_GetBool"][1] +defs["ImGuiStorage_GetBool"]["(ImGuiID,bool)const"] = defs["ImGuiStorage_GetBool"][1] defs["ImGuiStorage_GetBoolRef"] = {} defs["ImGuiStorage_GetBoolRef"][1] = {} defs["ImGuiStorage_GetBoolRef"][1]["args"] = "(ImGuiStorage* self,ImGuiID key,bool default_val)" @@ -3855,9 +3855,9 @@ defs["ImGuiStorage_GetFloat"][1]["defaults"]["default_val"] = "0.0f" defs["ImGuiStorage_GetFloat"][1]["funcname"] = "GetFloat" defs["ImGuiStorage_GetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_GetFloat" defs["ImGuiStorage_GetFloat"][1]["ret"] = "float" -defs["ImGuiStorage_GetFloat"][1]["signature"] = "(ImGuiID,float)" +defs["ImGuiStorage_GetFloat"][1]["signature"] = "(ImGuiID,float)const" defs["ImGuiStorage_GetFloat"][1]["stname"] = "ImGuiStorage" -defs["ImGuiStorage_GetFloat"]["(ImGuiID,float)"] = defs["ImGuiStorage_GetFloat"][1] +defs["ImGuiStorage_GetFloat"]["(ImGuiID,float)const"] = defs["ImGuiStorage_GetFloat"][1] defs["ImGuiStorage_GetFloatRef"] = {} defs["ImGuiStorage_GetFloatRef"][1] = {} defs["ImGuiStorage_GetFloatRef"][1]["args"] = "(ImGuiStorage* self,ImGuiID key,float default_val)" @@ -3905,9 +3905,9 @@ defs["ImGuiStorage_GetInt"][1]["defaults"]["default_val"] = "0" defs["ImGuiStorage_GetInt"][1]["funcname"] = "GetInt" defs["ImGuiStorage_GetInt"][1]["ov_cimguiname"] = "ImGuiStorage_GetInt" defs["ImGuiStorage_GetInt"][1]["ret"] = "int" -defs["ImGuiStorage_GetInt"][1]["signature"] = "(ImGuiID,int)" +defs["ImGuiStorage_GetInt"][1]["signature"] = "(ImGuiID,int)const" defs["ImGuiStorage_GetInt"][1]["stname"] = "ImGuiStorage" -defs["ImGuiStorage_GetInt"]["(ImGuiID,int)"] = defs["ImGuiStorage_GetInt"][1] +defs["ImGuiStorage_GetInt"]["(ImGuiID,int)const"] = defs["ImGuiStorage_GetInt"][1] defs["ImGuiStorage_GetIntRef"] = {} defs["ImGuiStorage_GetIntRef"][1] = {} defs["ImGuiStorage_GetIntRef"][1]["args"] = "(ImGuiStorage* self,ImGuiID key,int default_val)" @@ -3951,9 +3951,9 @@ defs["ImGuiStorage_GetVoidPtr"][1]["defaults"] = {} defs["ImGuiStorage_GetVoidPtr"][1]["funcname"] = "GetVoidPtr" defs["ImGuiStorage_GetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtr" defs["ImGuiStorage_GetVoidPtr"][1]["ret"] = "void*" -defs["ImGuiStorage_GetVoidPtr"][1]["signature"] = "(ImGuiID)" +defs["ImGuiStorage_GetVoidPtr"][1]["signature"] = "(ImGuiID)const" defs["ImGuiStorage_GetVoidPtr"][1]["stname"] = "ImGuiStorage" -defs["ImGuiStorage_GetVoidPtr"]["(ImGuiID)"] = defs["ImGuiStorage_GetVoidPtr"][1] +defs["ImGuiStorage_GetVoidPtr"]["(ImGuiID)const"] = defs["ImGuiStorage_GetVoidPtr"][1] defs["ImGuiStorage_GetVoidPtrRef"] = {} defs["ImGuiStorage_GetVoidPtrRef"][1] = {} defs["ImGuiStorage_GetVoidPtrRef"][1]["args"] = "(ImGuiStorage* self,ImGuiID key,void* default_val)" @@ -4228,9 +4228,9 @@ defs["ImGuiTextBuffer_begin"][1]["defaults"] = {} defs["ImGuiTextBuffer_begin"][1]["funcname"] = "begin" defs["ImGuiTextBuffer_begin"][1]["ov_cimguiname"] = "ImGuiTextBuffer_begin" defs["ImGuiTextBuffer_begin"][1]["ret"] = "const char*" -defs["ImGuiTextBuffer_begin"][1]["signature"] = "()" +defs["ImGuiTextBuffer_begin"][1]["signature"] = "()const" defs["ImGuiTextBuffer_begin"][1]["stname"] = "ImGuiTextBuffer" -defs["ImGuiTextBuffer_begin"]["()"] = defs["ImGuiTextBuffer_begin"][1] +defs["ImGuiTextBuffer_begin"]["()const"] = defs["ImGuiTextBuffer_begin"][1] defs["ImGuiTextBuffer_c_str"] = {} defs["ImGuiTextBuffer_c_str"][1] = {} defs["ImGuiTextBuffer_c_str"][1]["args"] = "(ImGuiTextBuffer* self)" @@ -4246,9 +4246,9 @@ defs["ImGuiTextBuffer_c_str"][1]["defaults"] = {} defs["ImGuiTextBuffer_c_str"][1]["funcname"] = "c_str" defs["ImGuiTextBuffer_c_str"][1]["ov_cimguiname"] = "ImGuiTextBuffer_c_str" defs["ImGuiTextBuffer_c_str"][1]["ret"] = "const char*" -defs["ImGuiTextBuffer_c_str"][1]["signature"] = "()" +defs["ImGuiTextBuffer_c_str"][1]["signature"] = "()const" defs["ImGuiTextBuffer_c_str"][1]["stname"] = "ImGuiTextBuffer" -defs["ImGuiTextBuffer_c_str"]["()"] = defs["ImGuiTextBuffer_c_str"][1] +defs["ImGuiTextBuffer_c_str"]["()const"] = defs["ImGuiTextBuffer_c_str"][1] defs["ImGuiTextBuffer_clear"] = {} defs["ImGuiTextBuffer_clear"][1] = {} defs["ImGuiTextBuffer_clear"][1]["args"] = "(ImGuiTextBuffer* self)" @@ -4316,9 +4316,9 @@ defs["ImGuiTextBuffer_end"][1]["defaults"] = {} defs["ImGuiTextBuffer_end"][1]["funcname"] = "end" defs["ImGuiTextBuffer_end"][1]["ov_cimguiname"] = "ImGuiTextBuffer_end" defs["ImGuiTextBuffer_end"][1]["ret"] = "const char*" -defs["ImGuiTextBuffer_end"][1]["signature"] = "()" +defs["ImGuiTextBuffer_end"][1]["signature"] = "()const" defs["ImGuiTextBuffer_end"][1]["stname"] = "ImGuiTextBuffer" -defs["ImGuiTextBuffer_end"]["()"] = defs["ImGuiTextBuffer_end"][1] +defs["ImGuiTextBuffer_end"]["()const"] = defs["ImGuiTextBuffer_end"][1] defs["ImGuiTextBuffer_reserve"] = {} defs["ImGuiTextBuffer_reserve"][1] = {} defs["ImGuiTextBuffer_reserve"][1]["args"] = "(ImGuiTextBuffer* self,int capacity)" @@ -4355,9 +4355,9 @@ defs["ImGuiTextBuffer_size"][1]["defaults"] = {} defs["ImGuiTextBuffer_size"][1]["funcname"] = "size" defs["ImGuiTextBuffer_size"][1]["ov_cimguiname"] = "ImGuiTextBuffer_size" defs["ImGuiTextBuffer_size"][1]["ret"] = "int" -defs["ImGuiTextBuffer_size"][1]["signature"] = "()" +defs["ImGuiTextBuffer_size"][1]["signature"] = "()const" defs["ImGuiTextBuffer_size"][1]["stname"] = "ImGuiTextBuffer" -defs["ImGuiTextBuffer_size"]["()"] = defs["ImGuiTextBuffer_size"][1] +defs["ImGuiTextBuffer_size"]["()const"] = defs["ImGuiTextBuffer_size"][1] defs["ImGuiTextFilter_Build"] = {} defs["ImGuiTextFilter_Build"][1] = {} defs["ImGuiTextFilter_Build"][1]["args"] = "(ImGuiTextFilter* self)" @@ -4454,9 +4454,9 @@ defs["ImGuiTextFilter_IsActive"][1]["defaults"] = {} defs["ImGuiTextFilter_IsActive"][1]["funcname"] = "IsActive" defs["ImGuiTextFilter_IsActive"][1]["ov_cimguiname"] = "ImGuiTextFilter_IsActive" defs["ImGuiTextFilter_IsActive"][1]["ret"] = "bool" -defs["ImGuiTextFilter_IsActive"][1]["signature"] = "()" +defs["ImGuiTextFilter_IsActive"][1]["signature"] = "()const" defs["ImGuiTextFilter_IsActive"][1]["stname"] = "ImGuiTextFilter" -defs["ImGuiTextFilter_IsActive"]["()"] = defs["ImGuiTextFilter_IsActive"][1] +defs["ImGuiTextFilter_IsActive"]["()const"] = defs["ImGuiTextFilter_IsActive"][1] defs["ImGuiTextFilter_PassFilter"] = {} defs["ImGuiTextFilter_PassFilter"][1] = {} defs["ImGuiTextFilter_PassFilter"][1]["args"] = "(ImGuiTextFilter* self,const char* text,const char* text_end)" @@ -4479,9 +4479,9 @@ defs["ImGuiTextFilter_PassFilter"][1]["defaults"]["text_end"] = "((void*)0)" defs["ImGuiTextFilter_PassFilter"][1]["funcname"] = "PassFilter" defs["ImGuiTextFilter_PassFilter"][1]["ov_cimguiname"] = "ImGuiTextFilter_PassFilter" defs["ImGuiTextFilter_PassFilter"][1]["ret"] = "bool" -defs["ImGuiTextFilter_PassFilter"][1]["signature"] = "(const char*,const char*)" +defs["ImGuiTextFilter_PassFilter"][1]["signature"] = "(const char*,const char*)const" defs["ImGuiTextFilter_PassFilter"][1]["stname"] = "ImGuiTextFilter" -defs["ImGuiTextFilter_PassFilter"]["(const char*,const char*)"] = defs["ImGuiTextFilter_PassFilter"][1] +defs["ImGuiTextFilter_PassFilter"]["(const char*,const char*)const"] = defs["ImGuiTextFilter_PassFilter"][1] defs["ImGuiTextFilter_destroy"] = {} defs["ImGuiTextFilter_destroy"][1] = {} defs["ImGuiTextFilter_destroy"][1]["args"] = "(ImGuiTextFilter* self)" @@ -4606,6 +4606,6067 @@ defs["ImVec4_destroy"][1]["ret"] = "void" defs["ImVec4_destroy"][1]["signature"] = "(ImVec4*)" defs["ImVec4_destroy"][1]["stname"] = "ImVec4" defs["ImVec4_destroy"]["(ImVec4*)"] = defs["ImVec4_destroy"][1] +defs["ImVector_CustomRect_ImVector_CustomRect"] = {} +defs["ImVector_CustomRect_ImVector_CustomRect"][1] = {} +defs["ImVector_CustomRect_ImVector_CustomRect"][1]["args"] = "()" +defs["ImVector_CustomRect_ImVector_CustomRect"][1]["argsT"] = {} +defs["ImVector_CustomRect_ImVector_CustomRect"][1]["call_args"] = "()" +defs["ImVector_CustomRect_ImVector_CustomRect"][1]["cimguiname"] = "ImVector_CustomRect_ImVector_CustomRect" +defs["ImVector_CustomRect_ImVector_CustomRect"][1]["constructor"] = true +defs["ImVector_CustomRect_ImVector_CustomRect"][1]["defaults"] = {} +defs["ImVector_CustomRect_ImVector_CustomRect"][1]["funcname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_ImVector_CustomRect"][1]["ov_cimguiname"] = "ImVector_CustomRect_ImVector_CustomRect" +defs["ImVector_CustomRect_ImVector_CustomRect"][1]["signature"] = "()" +defs["ImVector_CustomRect_ImVector_CustomRect"][1]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_ImVector_CustomRect"][1]["templatedgen"] = true +defs["ImVector_CustomRect_ImVector_CustomRect"][2] = {} +defs["ImVector_CustomRect_ImVector_CustomRect"][2]["args"] = "(const ImVector_CustomRect src)" +defs["ImVector_CustomRect_ImVector_CustomRect"][2]["argsT"] = {} +defs["ImVector_CustomRect_ImVector_CustomRect"][2]["argsT"][1] = {} +defs["ImVector_CustomRect_ImVector_CustomRect"][2]["argsT"][1]["name"] = "src" +defs["ImVector_CustomRect_ImVector_CustomRect"][2]["argsT"][1]["type"] = "const ImVector_CustomRect" +defs["ImVector_CustomRect_ImVector_CustomRect"][2]["call_args"] = "(src)" +defs["ImVector_CustomRect_ImVector_CustomRect"][2]["cimguiname"] = "ImVector_CustomRect_ImVector_CustomRect" +defs["ImVector_CustomRect_ImVector_CustomRect"][2]["constructor"] = true +defs["ImVector_CustomRect_ImVector_CustomRect"][2]["defaults"] = {} +defs["ImVector_CustomRect_ImVector_CustomRect"][2]["funcname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_ImVector_CustomRect"][2]["ov_cimguiname"] = "ImVector_CustomRect_ImVector_CustomRectVector" +defs["ImVector_CustomRect_ImVector_CustomRect"][2]["signature"] = "(const ImVector)" +defs["ImVector_CustomRect_ImVector_CustomRect"][2]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_ImVector_CustomRect"][2]["templatedgen"] = true +defs["ImVector_CustomRect_ImVector_CustomRect"]["()"] = defs["ImVector_CustomRect_ImVector_CustomRect"][1] +defs["ImVector_CustomRect_ImVector_CustomRect"]["(const ImVector)"] = defs["ImVector_CustomRect_ImVector_CustomRect"][2] +defs["ImVector_CustomRect__grow_capacity"] = {} +defs["ImVector_CustomRect__grow_capacity"][1] = {} +defs["ImVector_CustomRect__grow_capacity"][1]["args"] = "(const ImVector_CustomRect* self,int sz)" +defs["ImVector_CustomRect__grow_capacity"][1]["argsT"] = {} +defs["ImVector_CustomRect__grow_capacity"][1]["argsT"][1] = {} +defs["ImVector_CustomRect__grow_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_CustomRect__grow_capacity"][1]["argsT"][1]["type"] = "const ImVector_CustomRect*" +defs["ImVector_CustomRect__grow_capacity"][1]["argsT"][2] = {} +defs["ImVector_CustomRect__grow_capacity"][1]["argsT"][2]["name"] = "sz" +defs["ImVector_CustomRect__grow_capacity"][1]["argsT"][2]["type"] = "int" +defs["ImVector_CustomRect__grow_capacity"][1]["call_args"] = "(sz)" +defs["ImVector_CustomRect__grow_capacity"][1]["cimguiname"] = "ImVector_CustomRect__grow_capacity" +defs["ImVector_CustomRect__grow_capacity"][1]["defaults"] = {} +defs["ImVector_CustomRect__grow_capacity"][1]["funcname"] = "_grow_capacity" +defs["ImVector_CustomRect__grow_capacity"][1]["ov_cimguiname"] = "ImVector_CustomRect__grow_capacity" +defs["ImVector_CustomRect__grow_capacity"][1]["ret"] = "int" +defs["ImVector_CustomRect__grow_capacity"][1]["signature"] = "(int)const" +defs["ImVector_CustomRect__grow_capacity"][1]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect__grow_capacity"][1]["templatedgen"] = true +defs["ImVector_CustomRect__grow_capacity"]["(int)const"] = defs["ImVector_CustomRect__grow_capacity"][1] +defs["ImVector_CustomRect_back"] = {} +defs["ImVector_CustomRect_back"][1] = {} +defs["ImVector_CustomRect_back"][1]["args"] = "(ImVector_CustomRect* self)" +defs["ImVector_CustomRect_back"][1]["argsT"] = {} +defs["ImVector_CustomRect_back"][1]["argsT"][1] = {} +defs["ImVector_CustomRect_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_CustomRect_back"][1]["argsT"][1]["type"] = "ImVector_CustomRect*" +defs["ImVector_CustomRect_back"][1]["call_args"] = "()" +defs["ImVector_CustomRect_back"][1]["cimguiname"] = "ImVector_CustomRect_back" +defs["ImVector_CustomRect_back"][1]["defaults"] = {} +defs["ImVector_CustomRect_back"][1]["funcname"] = "back" +defs["ImVector_CustomRect_back"][1]["ov_cimguiname"] = "ImVector_CustomRect_back" +defs["ImVector_CustomRect_back"][1]["ret"] = "CustomRect*" +defs["ImVector_CustomRect_back"][1]["retref"] = "&" +defs["ImVector_CustomRect_back"][1]["signature"] = "()" +defs["ImVector_CustomRect_back"][1]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_back"][1]["templatedgen"] = true +defs["ImVector_CustomRect_back"][2] = {} +defs["ImVector_CustomRect_back"][2]["args"] = "(const ImVector_CustomRect* self)" +defs["ImVector_CustomRect_back"][2]["argsT"] = {} +defs["ImVector_CustomRect_back"][2]["argsT"][1] = {} +defs["ImVector_CustomRect_back"][2]["argsT"][1]["name"] = "self" +defs["ImVector_CustomRect_back"][2]["argsT"][1]["type"] = "const ImVector_CustomRect*" +defs["ImVector_CustomRect_back"][2]["call_args"] = "()" +defs["ImVector_CustomRect_back"][2]["cimguiname"] = "ImVector_CustomRect_back" +defs["ImVector_CustomRect_back"][2]["defaults"] = {} +defs["ImVector_CustomRect_back"][2]["funcname"] = "back" +defs["ImVector_CustomRect_back"][2]["ov_cimguiname"] = "ImVector_CustomRect_back_const" +defs["ImVector_CustomRect_back"][2]["ret"] = "CustomRect const *" +defs["ImVector_CustomRect_back"][2]["retref"] = "&" +defs["ImVector_CustomRect_back"][2]["signature"] = "()const" +defs["ImVector_CustomRect_back"][2]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_back"][2]["templatedgen"] = true +defs["ImVector_CustomRect_back"]["()"] = defs["ImVector_CustomRect_back"][1] +defs["ImVector_CustomRect_back"]["()const"] = defs["ImVector_CustomRect_back"][2] +defs["ImVector_CustomRect_begin"] = {} +defs["ImVector_CustomRect_begin"][1] = {} +defs["ImVector_CustomRect_begin"][1]["args"] = "(ImVector_CustomRect* self)" +defs["ImVector_CustomRect_begin"][1]["argsT"] = {} +defs["ImVector_CustomRect_begin"][1]["argsT"][1] = {} +defs["ImVector_CustomRect_begin"][1]["argsT"][1]["name"] = "self" +defs["ImVector_CustomRect_begin"][1]["argsT"][1]["type"] = "ImVector_CustomRect*" +defs["ImVector_CustomRect_begin"][1]["call_args"] = "()" +defs["ImVector_CustomRect_begin"][1]["cimguiname"] = "ImVector_CustomRect_begin" +defs["ImVector_CustomRect_begin"][1]["defaults"] = {} +defs["ImVector_CustomRect_begin"][1]["funcname"] = "begin" +defs["ImVector_CustomRect_begin"][1]["ov_cimguiname"] = "ImVector_CustomRect_begin" +defs["ImVector_CustomRect_begin"][1]["ret"] = "CustomRect*" +defs["ImVector_CustomRect_begin"][1]["signature"] = "()" +defs["ImVector_CustomRect_begin"][1]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_begin"][1]["templatedgen"] = true +defs["ImVector_CustomRect_begin"][2] = {} +defs["ImVector_CustomRect_begin"][2]["args"] = "(const ImVector_CustomRect* self)" +defs["ImVector_CustomRect_begin"][2]["argsT"] = {} +defs["ImVector_CustomRect_begin"][2]["argsT"][1] = {} +defs["ImVector_CustomRect_begin"][2]["argsT"][1]["name"] = "self" +defs["ImVector_CustomRect_begin"][2]["argsT"][1]["type"] = "const ImVector_CustomRect*" +defs["ImVector_CustomRect_begin"][2]["call_args"] = "()" +defs["ImVector_CustomRect_begin"][2]["cimguiname"] = "ImVector_CustomRect_begin" +defs["ImVector_CustomRect_begin"][2]["defaults"] = {} +defs["ImVector_CustomRect_begin"][2]["funcname"] = "begin" +defs["ImVector_CustomRect_begin"][2]["ov_cimguiname"] = "ImVector_CustomRect_begin_const" +defs["ImVector_CustomRect_begin"][2]["ret"] = "CustomRect const *" +defs["ImVector_CustomRect_begin"][2]["signature"] = "()const" +defs["ImVector_CustomRect_begin"][2]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_begin"][2]["templatedgen"] = true +defs["ImVector_CustomRect_begin"]["()"] = defs["ImVector_CustomRect_begin"][1] +defs["ImVector_CustomRect_begin"]["()const"] = defs["ImVector_CustomRect_begin"][2] +defs["ImVector_CustomRect_capacity"] = {} +defs["ImVector_CustomRect_capacity"][1] = {} +defs["ImVector_CustomRect_capacity"][1]["args"] = "(const ImVector_CustomRect* self)" +defs["ImVector_CustomRect_capacity"][1]["argsT"] = {} +defs["ImVector_CustomRect_capacity"][1]["argsT"][1] = {} +defs["ImVector_CustomRect_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_CustomRect_capacity"][1]["argsT"][1]["type"] = "const ImVector_CustomRect*" +defs["ImVector_CustomRect_capacity"][1]["call_args"] = "()" +defs["ImVector_CustomRect_capacity"][1]["cimguiname"] = "ImVector_CustomRect_capacity" +defs["ImVector_CustomRect_capacity"][1]["defaults"] = {} +defs["ImVector_CustomRect_capacity"][1]["funcname"] = "capacity" +defs["ImVector_CustomRect_capacity"][1]["ov_cimguiname"] = "ImVector_CustomRect_capacity" +defs["ImVector_CustomRect_capacity"][1]["ret"] = "int" +defs["ImVector_CustomRect_capacity"][1]["signature"] = "()const" +defs["ImVector_CustomRect_capacity"][1]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_capacity"][1]["templatedgen"] = true +defs["ImVector_CustomRect_capacity"]["()const"] = defs["ImVector_CustomRect_capacity"][1] +defs["ImVector_CustomRect_clear"] = {} +defs["ImVector_CustomRect_clear"][1] = {} +defs["ImVector_CustomRect_clear"][1]["args"] = "(ImVector_CustomRect* self)" +defs["ImVector_CustomRect_clear"][1]["argsT"] = {} +defs["ImVector_CustomRect_clear"][1]["argsT"][1] = {} +defs["ImVector_CustomRect_clear"][1]["argsT"][1]["name"] = "self" +defs["ImVector_CustomRect_clear"][1]["argsT"][1]["type"] = "ImVector_CustomRect*" +defs["ImVector_CustomRect_clear"][1]["call_args"] = "()" +defs["ImVector_CustomRect_clear"][1]["cimguiname"] = "ImVector_CustomRect_clear" +defs["ImVector_CustomRect_clear"][1]["defaults"] = {} +defs["ImVector_CustomRect_clear"][1]["funcname"] = "clear" +defs["ImVector_CustomRect_clear"][1]["ov_cimguiname"] = "ImVector_CustomRect_clear" +defs["ImVector_CustomRect_clear"][1]["ret"] = "void" +defs["ImVector_CustomRect_clear"][1]["signature"] = "()" +defs["ImVector_CustomRect_clear"][1]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_clear"][1]["templatedgen"] = true +defs["ImVector_CustomRect_clear"]["()"] = defs["ImVector_CustomRect_clear"][1] +defs["ImVector_CustomRect_contains"] = {} +defs["ImVector_CustomRect_contains"][1] = {} +defs["ImVector_CustomRect_contains"][1]["args"] = "(const ImVector_CustomRect* self,const CustomRect v)" +defs["ImVector_CustomRect_contains"][1]["argsT"] = {} +defs["ImVector_CustomRect_contains"][1]["argsT"][1] = {} +defs["ImVector_CustomRect_contains"][1]["argsT"][1]["name"] = "self" +defs["ImVector_CustomRect_contains"][1]["argsT"][1]["type"] = "const ImVector_CustomRect*" +defs["ImVector_CustomRect_contains"][1]["argsT"][2] = {} +defs["ImVector_CustomRect_contains"][1]["argsT"][2]["name"] = "v" +defs["ImVector_CustomRect_contains"][1]["argsT"][2]["type"] = "const CustomRect" +defs["ImVector_CustomRect_contains"][1]["call_args"] = "(v)" +defs["ImVector_CustomRect_contains"][1]["cimguiname"] = "ImVector_CustomRect_contains" +defs["ImVector_CustomRect_contains"][1]["defaults"] = {} +defs["ImVector_CustomRect_contains"][1]["funcname"] = "contains" +defs["ImVector_CustomRect_contains"][1]["ov_cimguiname"] = "ImVector_CustomRect_contains" +defs["ImVector_CustomRect_contains"][1]["ret"] = "bool" +defs["ImVector_CustomRect_contains"][1]["signature"] = "(const CustomRect)const" +defs["ImVector_CustomRect_contains"][1]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_contains"][1]["templatedgen"] = true +defs["ImVector_CustomRect_contains"]["(const CustomRect)const"] = defs["ImVector_CustomRect_contains"][1] +defs["ImVector_CustomRect_destroy"] = {} +defs["ImVector_CustomRect_destroy"][1] = {} +defs["ImVector_CustomRect_destroy"][1]["args"] = "(ImVector_CustomRect* self)" +defs["ImVector_CustomRect_destroy"][1]["argsT"] = {} +defs["ImVector_CustomRect_destroy"][1]["argsT"][1] = {} +defs["ImVector_CustomRect_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImVector_CustomRect_destroy"][1]["argsT"][1]["type"] = "ImVector_CustomRect*" +defs["ImVector_CustomRect_destroy"][1]["call_args"] = "(self)" +defs["ImVector_CustomRect_destroy"][1]["cimguiname"] = "ImVector_CustomRect_destroy" +defs["ImVector_CustomRect_destroy"][1]["defaults"] = {} +defs["ImVector_CustomRect_destroy"][1]["destructor"] = true +defs["ImVector_CustomRect_destroy"][1]["ov_cimguiname"] = "ImVector_CustomRect_destroy" +defs["ImVector_CustomRect_destroy"][1]["ret"] = "void" +defs["ImVector_CustomRect_destroy"][1]["signature"] = "(ImVector_CustomRect*)" +defs["ImVector_CustomRect_destroy"][1]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_destroy"]["(ImVector_CustomRect*)"] = defs["ImVector_CustomRect_destroy"][1] +defs["ImVector_CustomRect_empty"] = {} +defs["ImVector_CustomRect_empty"][1] = {} +defs["ImVector_CustomRect_empty"][1]["args"] = "(const ImVector_CustomRect* self)" +defs["ImVector_CustomRect_empty"][1]["argsT"] = {} +defs["ImVector_CustomRect_empty"][1]["argsT"][1] = {} +defs["ImVector_CustomRect_empty"][1]["argsT"][1]["name"] = "self" +defs["ImVector_CustomRect_empty"][1]["argsT"][1]["type"] = "const ImVector_CustomRect*" +defs["ImVector_CustomRect_empty"][1]["call_args"] = "()" +defs["ImVector_CustomRect_empty"][1]["cimguiname"] = "ImVector_CustomRect_empty" +defs["ImVector_CustomRect_empty"][1]["defaults"] = {} +defs["ImVector_CustomRect_empty"][1]["funcname"] = "empty" +defs["ImVector_CustomRect_empty"][1]["ov_cimguiname"] = "ImVector_CustomRect_empty" +defs["ImVector_CustomRect_empty"][1]["ret"] = "bool" +defs["ImVector_CustomRect_empty"][1]["signature"] = "()const" +defs["ImVector_CustomRect_empty"][1]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_empty"][1]["templatedgen"] = true +defs["ImVector_CustomRect_empty"]["()const"] = defs["ImVector_CustomRect_empty"][1] +defs["ImVector_CustomRect_end"] = {} +defs["ImVector_CustomRect_end"][1] = {} +defs["ImVector_CustomRect_end"][1]["args"] = "(ImVector_CustomRect* self)" +defs["ImVector_CustomRect_end"][1]["argsT"] = {} +defs["ImVector_CustomRect_end"][1]["argsT"][1] = {} +defs["ImVector_CustomRect_end"][1]["argsT"][1]["name"] = "self" +defs["ImVector_CustomRect_end"][1]["argsT"][1]["type"] = "ImVector_CustomRect*" +defs["ImVector_CustomRect_end"][1]["call_args"] = "()" +defs["ImVector_CustomRect_end"][1]["cimguiname"] = "ImVector_CustomRect_end" +defs["ImVector_CustomRect_end"][1]["defaults"] = {} +defs["ImVector_CustomRect_end"][1]["funcname"] = "end" +defs["ImVector_CustomRect_end"][1]["ov_cimguiname"] = "ImVector_CustomRect_end" +defs["ImVector_CustomRect_end"][1]["ret"] = "CustomRect*" +defs["ImVector_CustomRect_end"][1]["signature"] = "()" +defs["ImVector_CustomRect_end"][1]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_end"][1]["templatedgen"] = true +defs["ImVector_CustomRect_end"][2] = {} +defs["ImVector_CustomRect_end"][2]["args"] = "(const ImVector_CustomRect* self)" +defs["ImVector_CustomRect_end"][2]["argsT"] = {} +defs["ImVector_CustomRect_end"][2]["argsT"][1] = {} +defs["ImVector_CustomRect_end"][2]["argsT"][1]["name"] = "self" +defs["ImVector_CustomRect_end"][2]["argsT"][1]["type"] = "const ImVector_CustomRect*" +defs["ImVector_CustomRect_end"][2]["call_args"] = "()" +defs["ImVector_CustomRect_end"][2]["cimguiname"] = "ImVector_CustomRect_end" +defs["ImVector_CustomRect_end"][2]["defaults"] = {} +defs["ImVector_CustomRect_end"][2]["funcname"] = "end" +defs["ImVector_CustomRect_end"][2]["ov_cimguiname"] = "ImVector_CustomRect_end_const" +defs["ImVector_CustomRect_end"][2]["ret"] = "CustomRect const *" +defs["ImVector_CustomRect_end"][2]["signature"] = "()const" +defs["ImVector_CustomRect_end"][2]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_end"][2]["templatedgen"] = true +defs["ImVector_CustomRect_end"]["()"] = defs["ImVector_CustomRect_end"][1] +defs["ImVector_CustomRect_end"]["()const"] = defs["ImVector_CustomRect_end"][2] +defs["ImVector_CustomRect_erase"] = {} +defs["ImVector_CustomRect_erase"][1] = {} +defs["ImVector_CustomRect_erase"][1]["args"] = "(ImVector_CustomRect* self,CustomRect const * it)" +defs["ImVector_CustomRect_erase"][1]["argsT"] = {} +defs["ImVector_CustomRect_erase"][1]["argsT"][1] = {} +defs["ImVector_CustomRect_erase"][1]["argsT"][1]["name"] = "self" +defs["ImVector_CustomRect_erase"][1]["argsT"][1]["type"] = "ImVector_CustomRect*" +defs["ImVector_CustomRect_erase"][1]["argsT"][2] = {} +defs["ImVector_CustomRect_erase"][1]["argsT"][2]["name"] = "it" +defs["ImVector_CustomRect_erase"][1]["argsT"][2]["type"] = "CustomRect const *" +defs["ImVector_CustomRect_erase"][1]["call_args"] = "(it)" +defs["ImVector_CustomRect_erase"][1]["cimguiname"] = "ImVector_CustomRect_erase" +defs["ImVector_CustomRect_erase"][1]["defaults"] = {} +defs["ImVector_CustomRect_erase"][1]["funcname"] = "erase" +defs["ImVector_CustomRect_erase"][1]["ov_cimguiname"] = "ImVector_CustomRect_erase" +defs["ImVector_CustomRect_erase"][1]["ret"] = "CustomRect*" +defs["ImVector_CustomRect_erase"][1]["signature"] = "(const CustomRect*)" +defs["ImVector_CustomRect_erase"][1]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_erase"][1]["templatedgen"] = true +defs["ImVector_CustomRect_erase"][2] = {} +defs["ImVector_CustomRect_erase"][2]["args"] = "(ImVector_CustomRect* self,CustomRect const * it,CustomRect const * it_last)" +defs["ImVector_CustomRect_erase"][2]["argsT"] = {} +defs["ImVector_CustomRect_erase"][2]["argsT"][1] = {} +defs["ImVector_CustomRect_erase"][2]["argsT"][1]["name"] = "self" +defs["ImVector_CustomRect_erase"][2]["argsT"][1]["type"] = "ImVector_CustomRect*" +defs["ImVector_CustomRect_erase"][2]["argsT"][2] = {} +defs["ImVector_CustomRect_erase"][2]["argsT"][2]["name"] = "it" +defs["ImVector_CustomRect_erase"][2]["argsT"][2]["type"] = "CustomRect const *" +defs["ImVector_CustomRect_erase"][2]["argsT"][3] = {} +defs["ImVector_CustomRect_erase"][2]["argsT"][3]["name"] = "it_last" +defs["ImVector_CustomRect_erase"][2]["argsT"][3]["type"] = "CustomRect const *" +defs["ImVector_CustomRect_erase"][2]["call_args"] = "(it,it_last)" +defs["ImVector_CustomRect_erase"][2]["cimguiname"] = "ImVector_CustomRect_erase" +defs["ImVector_CustomRect_erase"][2]["defaults"] = {} +defs["ImVector_CustomRect_erase"][2]["funcname"] = "erase" +defs["ImVector_CustomRect_erase"][2]["ov_cimguiname"] = "ImVector_CustomRect_eraseTPtr" +defs["ImVector_CustomRect_erase"][2]["ret"] = "CustomRect*" +defs["ImVector_CustomRect_erase"][2]["signature"] = "(const CustomRect*,const CustomRect*)" +defs["ImVector_CustomRect_erase"][2]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_erase"][2]["templatedgen"] = true +defs["ImVector_CustomRect_erase"]["(const CustomRect*)"] = defs["ImVector_CustomRect_erase"][1] +defs["ImVector_CustomRect_erase"]["(const CustomRect*,const CustomRect*)"] = defs["ImVector_CustomRect_erase"][2] +defs["ImVector_CustomRect_erase_unsorted"] = {} +defs["ImVector_CustomRect_erase_unsorted"][1] = {} +defs["ImVector_CustomRect_erase_unsorted"][1]["args"] = "(ImVector_CustomRect* self,CustomRect const * it)" +defs["ImVector_CustomRect_erase_unsorted"][1]["argsT"] = {} +defs["ImVector_CustomRect_erase_unsorted"][1]["argsT"][1] = {} +defs["ImVector_CustomRect_erase_unsorted"][1]["argsT"][1]["name"] = "self" +defs["ImVector_CustomRect_erase_unsorted"][1]["argsT"][1]["type"] = "ImVector_CustomRect*" +defs["ImVector_CustomRect_erase_unsorted"][1]["argsT"][2] = {} +defs["ImVector_CustomRect_erase_unsorted"][1]["argsT"][2]["name"] = "it" +defs["ImVector_CustomRect_erase_unsorted"][1]["argsT"][2]["type"] = "CustomRect const *" +defs["ImVector_CustomRect_erase_unsorted"][1]["call_args"] = "(it)" +defs["ImVector_CustomRect_erase_unsorted"][1]["cimguiname"] = "ImVector_CustomRect_erase_unsorted" +defs["ImVector_CustomRect_erase_unsorted"][1]["defaults"] = {} +defs["ImVector_CustomRect_erase_unsorted"][1]["funcname"] = "erase_unsorted" +defs["ImVector_CustomRect_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_CustomRect_erase_unsorted" +defs["ImVector_CustomRect_erase_unsorted"][1]["ret"] = "CustomRect*" +defs["ImVector_CustomRect_erase_unsorted"][1]["signature"] = "(const CustomRect*)" +defs["ImVector_CustomRect_erase_unsorted"][1]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_erase_unsorted"][1]["templatedgen"] = true +defs["ImVector_CustomRect_erase_unsorted"]["(const CustomRect*)"] = defs["ImVector_CustomRect_erase_unsorted"][1] +defs["ImVector_CustomRect_front"] = {} +defs["ImVector_CustomRect_front"][1] = {} +defs["ImVector_CustomRect_front"][1]["args"] = "(ImVector_CustomRect* self)" +defs["ImVector_CustomRect_front"][1]["argsT"] = {} +defs["ImVector_CustomRect_front"][1]["argsT"][1] = {} +defs["ImVector_CustomRect_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_CustomRect_front"][1]["argsT"][1]["type"] = "ImVector_CustomRect*" +defs["ImVector_CustomRect_front"][1]["call_args"] = "()" +defs["ImVector_CustomRect_front"][1]["cimguiname"] = "ImVector_CustomRect_front" +defs["ImVector_CustomRect_front"][1]["defaults"] = {} +defs["ImVector_CustomRect_front"][1]["funcname"] = "front" +defs["ImVector_CustomRect_front"][1]["ov_cimguiname"] = "ImVector_CustomRect_front" +defs["ImVector_CustomRect_front"][1]["ret"] = "CustomRect*" +defs["ImVector_CustomRect_front"][1]["retref"] = "&" +defs["ImVector_CustomRect_front"][1]["signature"] = "()" +defs["ImVector_CustomRect_front"][1]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_front"][1]["templatedgen"] = true +defs["ImVector_CustomRect_front"][2] = {} +defs["ImVector_CustomRect_front"][2]["args"] = "(const ImVector_CustomRect* self)" +defs["ImVector_CustomRect_front"][2]["argsT"] = {} +defs["ImVector_CustomRect_front"][2]["argsT"][1] = {} +defs["ImVector_CustomRect_front"][2]["argsT"][1]["name"] = "self" +defs["ImVector_CustomRect_front"][2]["argsT"][1]["type"] = "const ImVector_CustomRect*" +defs["ImVector_CustomRect_front"][2]["call_args"] = "()" +defs["ImVector_CustomRect_front"][2]["cimguiname"] = "ImVector_CustomRect_front" +defs["ImVector_CustomRect_front"][2]["defaults"] = {} +defs["ImVector_CustomRect_front"][2]["funcname"] = "front" +defs["ImVector_CustomRect_front"][2]["ov_cimguiname"] = "ImVector_CustomRect_front_const" +defs["ImVector_CustomRect_front"][2]["ret"] = "CustomRect const *" +defs["ImVector_CustomRect_front"][2]["retref"] = "&" +defs["ImVector_CustomRect_front"][2]["signature"] = "()const" +defs["ImVector_CustomRect_front"][2]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_front"][2]["templatedgen"] = true +defs["ImVector_CustomRect_front"]["()"] = defs["ImVector_CustomRect_front"][1] +defs["ImVector_CustomRect_front"]["()const"] = defs["ImVector_CustomRect_front"][2] +defs["ImVector_CustomRect_index_from_ptr"] = {} +defs["ImVector_CustomRect_index_from_ptr"][1] = {} +defs["ImVector_CustomRect_index_from_ptr"][1]["args"] = "(const ImVector_CustomRect* self,CustomRect const * it)" +defs["ImVector_CustomRect_index_from_ptr"][1]["argsT"] = {} +defs["ImVector_CustomRect_index_from_ptr"][1]["argsT"][1] = {} +defs["ImVector_CustomRect_index_from_ptr"][1]["argsT"][1]["name"] = "self" +defs["ImVector_CustomRect_index_from_ptr"][1]["argsT"][1]["type"] = "const ImVector_CustomRect*" +defs["ImVector_CustomRect_index_from_ptr"][1]["argsT"][2] = {} +defs["ImVector_CustomRect_index_from_ptr"][1]["argsT"][2]["name"] = "it" +defs["ImVector_CustomRect_index_from_ptr"][1]["argsT"][2]["type"] = "CustomRect const *" +defs["ImVector_CustomRect_index_from_ptr"][1]["call_args"] = "(it)" +defs["ImVector_CustomRect_index_from_ptr"][1]["cimguiname"] = "ImVector_CustomRect_index_from_ptr" +defs["ImVector_CustomRect_index_from_ptr"][1]["defaults"] = {} +defs["ImVector_CustomRect_index_from_ptr"][1]["funcname"] = "index_from_ptr" +defs["ImVector_CustomRect_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_CustomRect_index_from_ptr" +defs["ImVector_CustomRect_index_from_ptr"][1]["ret"] = "int" +defs["ImVector_CustomRect_index_from_ptr"][1]["signature"] = "(const CustomRect*)const" +defs["ImVector_CustomRect_index_from_ptr"][1]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_index_from_ptr"][1]["templatedgen"] = true +defs["ImVector_CustomRect_index_from_ptr"]["(const CustomRect*)const"] = defs["ImVector_CustomRect_index_from_ptr"][1] +defs["ImVector_CustomRect_insert"] = {} +defs["ImVector_CustomRect_insert"][1] = {} +defs["ImVector_CustomRect_insert"][1]["args"] = "(ImVector_CustomRect* self,CustomRect const * it,const CustomRect v)" +defs["ImVector_CustomRect_insert"][1]["argsT"] = {} +defs["ImVector_CustomRect_insert"][1]["argsT"][1] = {} +defs["ImVector_CustomRect_insert"][1]["argsT"][1]["name"] = "self" +defs["ImVector_CustomRect_insert"][1]["argsT"][1]["type"] = "ImVector_CustomRect*" +defs["ImVector_CustomRect_insert"][1]["argsT"][2] = {} +defs["ImVector_CustomRect_insert"][1]["argsT"][2]["name"] = "it" +defs["ImVector_CustomRect_insert"][1]["argsT"][2]["type"] = "CustomRect const *" +defs["ImVector_CustomRect_insert"][1]["argsT"][3] = {} +defs["ImVector_CustomRect_insert"][1]["argsT"][3]["name"] = "v" +defs["ImVector_CustomRect_insert"][1]["argsT"][3]["type"] = "const CustomRect" +defs["ImVector_CustomRect_insert"][1]["call_args"] = "(it,v)" +defs["ImVector_CustomRect_insert"][1]["cimguiname"] = "ImVector_CustomRect_insert" +defs["ImVector_CustomRect_insert"][1]["defaults"] = {} +defs["ImVector_CustomRect_insert"][1]["funcname"] = "insert" +defs["ImVector_CustomRect_insert"][1]["ov_cimguiname"] = "ImVector_CustomRect_insert" +defs["ImVector_CustomRect_insert"][1]["ret"] = "CustomRect*" +defs["ImVector_CustomRect_insert"][1]["signature"] = "(const CustomRect*,const CustomRect)" +defs["ImVector_CustomRect_insert"][1]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_insert"][1]["templatedgen"] = true +defs["ImVector_CustomRect_insert"]["(const CustomRect*,const CustomRect)"] = defs["ImVector_CustomRect_insert"][1] +defs["ImVector_CustomRect_pop_back"] = {} +defs["ImVector_CustomRect_pop_back"][1] = {} +defs["ImVector_CustomRect_pop_back"][1]["args"] = "(ImVector_CustomRect* self)" +defs["ImVector_CustomRect_pop_back"][1]["argsT"] = {} +defs["ImVector_CustomRect_pop_back"][1]["argsT"][1] = {} +defs["ImVector_CustomRect_pop_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_CustomRect_pop_back"][1]["argsT"][1]["type"] = "ImVector_CustomRect*" +defs["ImVector_CustomRect_pop_back"][1]["call_args"] = "()" +defs["ImVector_CustomRect_pop_back"][1]["cimguiname"] = "ImVector_CustomRect_pop_back" +defs["ImVector_CustomRect_pop_back"][1]["defaults"] = {} +defs["ImVector_CustomRect_pop_back"][1]["funcname"] = "pop_back" +defs["ImVector_CustomRect_pop_back"][1]["ov_cimguiname"] = "ImVector_CustomRect_pop_back" +defs["ImVector_CustomRect_pop_back"][1]["ret"] = "void" +defs["ImVector_CustomRect_pop_back"][1]["signature"] = "()" +defs["ImVector_CustomRect_pop_back"][1]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_pop_back"][1]["templatedgen"] = true +defs["ImVector_CustomRect_pop_back"]["()"] = defs["ImVector_CustomRect_pop_back"][1] +defs["ImVector_CustomRect_push_back"] = {} +defs["ImVector_CustomRect_push_back"][1] = {} +defs["ImVector_CustomRect_push_back"][1]["args"] = "(ImVector_CustomRect* self,const CustomRect v)" +defs["ImVector_CustomRect_push_back"][1]["argsT"] = {} +defs["ImVector_CustomRect_push_back"][1]["argsT"][1] = {} +defs["ImVector_CustomRect_push_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_CustomRect_push_back"][1]["argsT"][1]["type"] = "ImVector_CustomRect*" +defs["ImVector_CustomRect_push_back"][1]["argsT"][2] = {} +defs["ImVector_CustomRect_push_back"][1]["argsT"][2]["name"] = "v" +defs["ImVector_CustomRect_push_back"][1]["argsT"][2]["type"] = "const CustomRect" +defs["ImVector_CustomRect_push_back"][1]["call_args"] = "(v)" +defs["ImVector_CustomRect_push_back"][1]["cimguiname"] = "ImVector_CustomRect_push_back" +defs["ImVector_CustomRect_push_back"][1]["defaults"] = {} +defs["ImVector_CustomRect_push_back"][1]["funcname"] = "push_back" +defs["ImVector_CustomRect_push_back"][1]["ov_cimguiname"] = "ImVector_CustomRect_push_back" +defs["ImVector_CustomRect_push_back"][1]["ret"] = "void" +defs["ImVector_CustomRect_push_back"][1]["signature"] = "(const CustomRect)" +defs["ImVector_CustomRect_push_back"][1]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_push_back"][1]["templatedgen"] = true +defs["ImVector_CustomRect_push_back"]["(const CustomRect)"] = defs["ImVector_CustomRect_push_back"][1] +defs["ImVector_CustomRect_push_front"] = {} +defs["ImVector_CustomRect_push_front"][1] = {} +defs["ImVector_CustomRect_push_front"][1]["args"] = "(ImVector_CustomRect* self,const CustomRect v)" +defs["ImVector_CustomRect_push_front"][1]["argsT"] = {} +defs["ImVector_CustomRect_push_front"][1]["argsT"][1] = {} +defs["ImVector_CustomRect_push_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_CustomRect_push_front"][1]["argsT"][1]["type"] = "ImVector_CustomRect*" +defs["ImVector_CustomRect_push_front"][1]["argsT"][2] = {} +defs["ImVector_CustomRect_push_front"][1]["argsT"][2]["name"] = "v" +defs["ImVector_CustomRect_push_front"][1]["argsT"][2]["type"] = "const CustomRect" +defs["ImVector_CustomRect_push_front"][1]["call_args"] = "(v)" +defs["ImVector_CustomRect_push_front"][1]["cimguiname"] = "ImVector_CustomRect_push_front" +defs["ImVector_CustomRect_push_front"][1]["defaults"] = {} +defs["ImVector_CustomRect_push_front"][1]["funcname"] = "push_front" +defs["ImVector_CustomRect_push_front"][1]["ov_cimguiname"] = "ImVector_CustomRect_push_front" +defs["ImVector_CustomRect_push_front"][1]["ret"] = "void" +defs["ImVector_CustomRect_push_front"][1]["signature"] = "(const CustomRect)" +defs["ImVector_CustomRect_push_front"][1]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_push_front"][1]["templatedgen"] = true +defs["ImVector_CustomRect_push_front"]["(const CustomRect)"] = defs["ImVector_CustomRect_push_front"][1] +defs["ImVector_CustomRect_reserve"] = {} +defs["ImVector_CustomRect_reserve"][1] = {} +defs["ImVector_CustomRect_reserve"][1]["args"] = "(ImVector_CustomRect* self,int new_capacity)" +defs["ImVector_CustomRect_reserve"][1]["argsT"] = {} +defs["ImVector_CustomRect_reserve"][1]["argsT"][1] = {} +defs["ImVector_CustomRect_reserve"][1]["argsT"][1]["name"] = "self" +defs["ImVector_CustomRect_reserve"][1]["argsT"][1]["type"] = "ImVector_CustomRect*" +defs["ImVector_CustomRect_reserve"][1]["argsT"][2] = {} +defs["ImVector_CustomRect_reserve"][1]["argsT"][2]["name"] = "new_capacity" +defs["ImVector_CustomRect_reserve"][1]["argsT"][2]["type"] = "int" +defs["ImVector_CustomRect_reserve"][1]["call_args"] = "(new_capacity)" +defs["ImVector_CustomRect_reserve"][1]["cimguiname"] = "ImVector_CustomRect_reserve" +defs["ImVector_CustomRect_reserve"][1]["defaults"] = {} +defs["ImVector_CustomRect_reserve"][1]["funcname"] = "reserve" +defs["ImVector_CustomRect_reserve"][1]["ov_cimguiname"] = "ImVector_CustomRect_reserve" +defs["ImVector_CustomRect_reserve"][1]["ret"] = "void" +defs["ImVector_CustomRect_reserve"][1]["signature"] = "(int)" +defs["ImVector_CustomRect_reserve"][1]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_reserve"][1]["templatedgen"] = true +defs["ImVector_CustomRect_reserve"]["(int)"] = defs["ImVector_CustomRect_reserve"][1] +defs["ImVector_CustomRect_resize"] = {} +defs["ImVector_CustomRect_resize"][1] = {} +defs["ImVector_CustomRect_resize"][1]["args"] = "(ImVector_CustomRect* self,int new_size)" +defs["ImVector_CustomRect_resize"][1]["argsT"] = {} +defs["ImVector_CustomRect_resize"][1]["argsT"][1] = {} +defs["ImVector_CustomRect_resize"][1]["argsT"][1]["name"] = "self" +defs["ImVector_CustomRect_resize"][1]["argsT"][1]["type"] = "ImVector_CustomRect*" +defs["ImVector_CustomRect_resize"][1]["argsT"][2] = {} +defs["ImVector_CustomRect_resize"][1]["argsT"][2]["name"] = "new_size" +defs["ImVector_CustomRect_resize"][1]["argsT"][2]["type"] = "int" +defs["ImVector_CustomRect_resize"][1]["call_args"] = "(new_size)" +defs["ImVector_CustomRect_resize"][1]["cimguiname"] = "ImVector_CustomRect_resize" +defs["ImVector_CustomRect_resize"][1]["defaults"] = {} +defs["ImVector_CustomRect_resize"][1]["funcname"] = "resize" +defs["ImVector_CustomRect_resize"][1]["ov_cimguiname"] = "ImVector_CustomRect_resize" +defs["ImVector_CustomRect_resize"][1]["ret"] = "void" +defs["ImVector_CustomRect_resize"][1]["signature"] = "(int)" +defs["ImVector_CustomRect_resize"][1]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_resize"][1]["templatedgen"] = true +defs["ImVector_CustomRect_resize"][2] = {} +defs["ImVector_CustomRect_resize"][2]["args"] = "(ImVector_CustomRect* self,int new_size,const CustomRect v)" +defs["ImVector_CustomRect_resize"][2]["argsT"] = {} +defs["ImVector_CustomRect_resize"][2]["argsT"][1] = {} +defs["ImVector_CustomRect_resize"][2]["argsT"][1]["name"] = "self" +defs["ImVector_CustomRect_resize"][2]["argsT"][1]["type"] = "ImVector_CustomRect*" +defs["ImVector_CustomRect_resize"][2]["argsT"][2] = {} +defs["ImVector_CustomRect_resize"][2]["argsT"][2]["name"] = "new_size" +defs["ImVector_CustomRect_resize"][2]["argsT"][2]["type"] = "int" +defs["ImVector_CustomRect_resize"][2]["argsT"][3] = {} +defs["ImVector_CustomRect_resize"][2]["argsT"][3]["name"] = "v" +defs["ImVector_CustomRect_resize"][2]["argsT"][3]["type"] = "const CustomRect" +defs["ImVector_CustomRect_resize"][2]["call_args"] = "(new_size,v)" +defs["ImVector_CustomRect_resize"][2]["cimguiname"] = "ImVector_CustomRect_resize" +defs["ImVector_CustomRect_resize"][2]["defaults"] = {} +defs["ImVector_CustomRect_resize"][2]["funcname"] = "resize" +defs["ImVector_CustomRect_resize"][2]["ov_cimguiname"] = "ImVector_CustomRect_resizeT" +defs["ImVector_CustomRect_resize"][2]["ret"] = "void" +defs["ImVector_CustomRect_resize"][2]["signature"] = "(int,const CustomRect)" +defs["ImVector_CustomRect_resize"][2]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_resize"][2]["templatedgen"] = true +defs["ImVector_CustomRect_resize"]["(int)"] = defs["ImVector_CustomRect_resize"][1] +defs["ImVector_CustomRect_resize"]["(int,const CustomRect)"] = defs["ImVector_CustomRect_resize"][2] +defs["ImVector_CustomRect_size"] = {} +defs["ImVector_CustomRect_size"][1] = {} +defs["ImVector_CustomRect_size"][1]["args"] = "(const ImVector_CustomRect* self)" +defs["ImVector_CustomRect_size"][1]["argsT"] = {} +defs["ImVector_CustomRect_size"][1]["argsT"][1] = {} +defs["ImVector_CustomRect_size"][1]["argsT"][1]["name"] = "self" +defs["ImVector_CustomRect_size"][1]["argsT"][1]["type"] = "const ImVector_CustomRect*" +defs["ImVector_CustomRect_size"][1]["call_args"] = "()" +defs["ImVector_CustomRect_size"][1]["cimguiname"] = "ImVector_CustomRect_size" +defs["ImVector_CustomRect_size"][1]["defaults"] = {} +defs["ImVector_CustomRect_size"][1]["funcname"] = "size" +defs["ImVector_CustomRect_size"][1]["ov_cimguiname"] = "ImVector_CustomRect_size" +defs["ImVector_CustomRect_size"][1]["ret"] = "int" +defs["ImVector_CustomRect_size"][1]["signature"] = "()const" +defs["ImVector_CustomRect_size"][1]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_size"][1]["templatedgen"] = true +defs["ImVector_CustomRect_size"]["()const"] = defs["ImVector_CustomRect_size"][1] +defs["ImVector_CustomRect_size_in_bytes"] = {} +defs["ImVector_CustomRect_size_in_bytes"][1] = {} +defs["ImVector_CustomRect_size_in_bytes"][1]["args"] = "(const ImVector_CustomRect* self)" +defs["ImVector_CustomRect_size_in_bytes"][1]["argsT"] = {} +defs["ImVector_CustomRect_size_in_bytes"][1]["argsT"][1] = {} +defs["ImVector_CustomRect_size_in_bytes"][1]["argsT"][1]["name"] = "self" +defs["ImVector_CustomRect_size_in_bytes"][1]["argsT"][1]["type"] = "const ImVector_CustomRect*" +defs["ImVector_CustomRect_size_in_bytes"][1]["call_args"] = "()" +defs["ImVector_CustomRect_size_in_bytes"][1]["cimguiname"] = "ImVector_CustomRect_size_in_bytes" +defs["ImVector_CustomRect_size_in_bytes"][1]["defaults"] = {} +defs["ImVector_CustomRect_size_in_bytes"][1]["funcname"] = "size_in_bytes" +defs["ImVector_CustomRect_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_CustomRect_size_in_bytes" +defs["ImVector_CustomRect_size_in_bytes"][1]["ret"] = "int" +defs["ImVector_CustomRect_size_in_bytes"][1]["signature"] = "()const" +defs["ImVector_CustomRect_size_in_bytes"][1]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_size_in_bytes"][1]["templatedgen"] = true +defs["ImVector_CustomRect_size_in_bytes"]["()const"] = defs["ImVector_CustomRect_size_in_bytes"][1] +defs["ImVector_CustomRect_swap"] = {} +defs["ImVector_CustomRect_swap"][1] = {} +defs["ImVector_CustomRect_swap"][1]["args"] = "(ImVector_CustomRect* self,ImVector_CustomRect rhs)" +defs["ImVector_CustomRect_swap"][1]["argsT"] = {} +defs["ImVector_CustomRect_swap"][1]["argsT"][1] = {} +defs["ImVector_CustomRect_swap"][1]["argsT"][1]["name"] = "self" +defs["ImVector_CustomRect_swap"][1]["argsT"][1]["type"] = "ImVector_CustomRect*" +defs["ImVector_CustomRect_swap"][1]["argsT"][2] = {} +defs["ImVector_CustomRect_swap"][1]["argsT"][2]["name"] = "rhs" +defs["ImVector_CustomRect_swap"][1]["argsT"][2]["type"] = "ImVector_CustomRect&" +defs["ImVector_CustomRect_swap"][1]["call_args"] = "(rhs)" +defs["ImVector_CustomRect_swap"][1]["cimguiname"] = "ImVector_CustomRect_swap" +defs["ImVector_CustomRect_swap"][1]["defaults"] = {} +defs["ImVector_CustomRect_swap"][1]["funcname"] = "swap" +defs["ImVector_CustomRect_swap"][1]["ov_cimguiname"] = "ImVector_CustomRect_swap" +defs["ImVector_CustomRect_swap"][1]["ret"] = "void" +defs["ImVector_CustomRect_swap"][1]["signature"] = "(ImVector)" +defs["ImVector_CustomRect_swap"][1]["stname"] = "ImVector_CustomRect" +defs["ImVector_CustomRect_swap"][1]["templatedgen"] = true +defs["ImVector_CustomRect_swap"]["(ImVector)"] = defs["ImVector_CustomRect_swap"][1] +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"] = {} +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"][1] = {} +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"][1]["args"] = "()" +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"][1]["argsT"] = {} +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"][1]["call_args"] = "()" +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"][1]["cimguiname"] = "ImVector_ImDrawChannel_ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"][1]["constructor"] = true +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"][1]["defaults"] = {} +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"][1]["funcname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"][1]["ov_cimguiname"] = "ImVector_ImDrawChannel_ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"][1]["signature"] = "()" +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"][1]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"][1]["templatedgen"] = true +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"][2] = {} +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"][2]["args"] = "(const ImVector_ImDrawChannel src)" +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"][2]["argsT"] = {} +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"][2]["argsT"][1] = {} +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"][2]["argsT"][1]["name"] = "src" +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"][2]["argsT"][1]["type"] = "const ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"][2]["call_args"] = "(src)" +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"][2]["cimguiname"] = "ImVector_ImDrawChannel_ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"][2]["constructor"] = true +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"][2]["defaults"] = {} +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"][2]["funcname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"][2]["ov_cimguiname"] = "ImVector_ImDrawChannel_ImVector_ImDrawChannelVector" +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"][2]["signature"] = "(const ImVector)" +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"][2]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"][2]["templatedgen"] = true +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"]["()"] = defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"][1] +defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"]["(const ImVector)"] = defs["ImVector_ImDrawChannel_ImVector_ImDrawChannel"][2] +defs["ImVector_ImDrawChannel__grow_capacity"] = {} +defs["ImVector_ImDrawChannel__grow_capacity"][1] = {} +defs["ImVector_ImDrawChannel__grow_capacity"][1]["args"] = "(const ImVector_ImDrawChannel* self,int sz)" +defs["ImVector_ImDrawChannel__grow_capacity"][1]["argsT"] = {} +defs["ImVector_ImDrawChannel__grow_capacity"][1]["argsT"][1] = {} +defs["ImVector_ImDrawChannel__grow_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawChannel__grow_capacity"][1]["argsT"][1]["type"] = "const ImVector_ImDrawChannel*" +defs["ImVector_ImDrawChannel__grow_capacity"][1]["argsT"][2] = {} +defs["ImVector_ImDrawChannel__grow_capacity"][1]["argsT"][2]["name"] = "sz" +defs["ImVector_ImDrawChannel__grow_capacity"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImDrawChannel__grow_capacity"][1]["call_args"] = "(sz)" +defs["ImVector_ImDrawChannel__grow_capacity"][1]["cimguiname"] = "ImVector_ImDrawChannel__grow_capacity" +defs["ImVector_ImDrawChannel__grow_capacity"][1]["defaults"] = {} +defs["ImVector_ImDrawChannel__grow_capacity"][1]["funcname"] = "_grow_capacity" +defs["ImVector_ImDrawChannel__grow_capacity"][1]["ov_cimguiname"] = "ImVector_ImDrawChannel__grow_capacity" +defs["ImVector_ImDrawChannel__grow_capacity"][1]["ret"] = "int" +defs["ImVector_ImDrawChannel__grow_capacity"][1]["signature"] = "(int)const" +defs["ImVector_ImDrawChannel__grow_capacity"][1]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel__grow_capacity"][1]["templatedgen"] = true +defs["ImVector_ImDrawChannel__grow_capacity"]["(int)const"] = defs["ImVector_ImDrawChannel__grow_capacity"][1] +defs["ImVector_ImDrawChannel_back"] = {} +defs["ImVector_ImDrawChannel_back"][1] = {} +defs["ImVector_ImDrawChannel_back"][1]["args"] = "(ImVector_ImDrawChannel* self)" +defs["ImVector_ImDrawChannel_back"][1]["argsT"] = {} +defs["ImVector_ImDrawChannel_back"][1]["argsT"][1] = {} +defs["ImVector_ImDrawChannel_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawChannel_back"][1]["argsT"][1]["type"] = "ImVector_ImDrawChannel*" +defs["ImVector_ImDrawChannel_back"][1]["call_args"] = "()" +defs["ImVector_ImDrawChannel_back"][1]["cimguiname"] = "ImVector_ImDrawChannel_back" +defs["ImVector_ImDrawChannel_back"][1]["defaults"] = {} +defs["ImVector_ImDrawChannel_back"][1]["funcname"] = "back" +defs["ImVector_ImDrawChannel_back"][1]["ov_cimguiname"] = "ImVector_ImDrawChannel_back" +defs["ImVector_ImDrawChannel_back"][1]["ret"] = "ImDrawChannel*" +defs["ImVector_ImDrawChannel_back"][1]["retref"] = "&" +defs["ImVector_ImDrawChannel_back"][1]["signature"] = "()" +defs["ImVector_ImDrawChannel_back"][1]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_back"][1]["templatedgen"] = true +defs["ImVector_ImDrawChannel_back"][2] = {} +defs["ImVector_ImDrawChannel_back"][2]["args"] = "(const ImVector_ImDrawChannel* self)" +defs["ImVector_ImDrawChannel_back"][2]["argsT"] = {} +defs["ImVector_ImDrawChannel_back"][2]["argsT"][1] = {} +defs["ImVector_ImDrawChannel_back"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawChannel_back"][2]["argsT"][1]["type"] = "const ImVector_ImDrawChannel*" +defs["ImVector_ImDrawChannel_back"][2]["call_args"] = "()" +defs["ImVector_ImDrawChannel_back"][2]["cimguiname"] = "ImVector_ImDrawChannel_back" +defs["ImVector_ImDrawChannel_back"][2]["defaults"] = {} +defs["ImVector_ImDrawChannel_back"][2]["funcname"] = "back" +defs["ImVector_ImDrawChannel_back"][2]["ov_cimguiname"] = "ImVector_ImDrawChannel_back_const" +defs["ImVector_ImDrawChannel_back"][2]["ret"] = "ImDrawChannel const *" +defs["ImVector_ImDrawChannel_back"][2]["retref"] = "&" +defs["ImVector_ImDrawChannel_back"][2]["signature"] = "()const" +defs["ImVector_ImDrawChannel_back"][2]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_back"][2]["templatedgen"] = true +defs["ImVector_ImDrawChannel_back"]["()"] = defs["ImVector_ImDrawChannel_back"][1] +defs["ImVector_ImDrawChannel_back"]["()const"] = defs["ImVector_ImDrawChannel_back"][2] +defs["ImVector_ImDrawChannel_begin"] = {} +defs["ImVector_ImDrawChannel_begin"][1] = {} +defs["ImVector_ImDrawChannel_begin"][1]["args"] = "(ImVector_ImDrawChannel* self)" +defs["ImVector_ImDrawChannel_begin"][1]["argsT"] = {} +defs["ImVector_ImDrawChannel_begin"][1]["argsT"][1] = {} +defs["ImVector_ImDrawChannel_begin"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawChannel_begin"][1]["argsT"][1]["type"] = "ImVector_ImDrawChannel*" +defs["ImVector_ImDrawChannel_begin"][1]["call_args"] = "()" +defs["ImVector_ImDrawChannel_begin"][1]["cimguiname"] = "ImVector_ImDrawChannel_begin" +defs["ImVector_ImDrawChannel_begin"][1]["defaults"] = {} +defs["ImVector_ImDrawChannel_begin"][1]["funcname"] = "begin" +defs["ImVector_ImDrawChannel_begin"][1]["ov_cimguiname"] = "ImVector_ImDrawChannel_begin" +defs["ImVector_ImDrawChannel_begin"][1]["ret"] = "ImDrawChannel*" +defs["ImVector_ImDrawChannel_begin"][1]["signature"] = "()" +defs["ImVector_ImDrawChannel_begin"][1]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_begin"][1]["templatedgen"] = true +defs["ImVector_ImDrawChannel_begin"][2] = {} +defs["ImVector_ImDrawChannel_begin"][2]["args"] = "(const ImVector_ImDrawChannel* self)" +defs["ImVector_ImDrawChannel_begin"][2]["argsT"] = {} +defs["ImVector_ImDrawChannel_begin"][2]["argsT"][1] = {} +defs["ImVector_ImDrawChannel_begin"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawChannel_begin"][2]["argsT"][1]["type"] = "const ImVector_ImDrawChannel*" +defs["ImVector_ImDrawChannel_begin"][2]["call_args"] = "()" +defs["ImVector_ImDrawChannel_begin"][2]["cimguiname"] = "ImVector_ImDrawChannel_begin" +defs["ImVector_ImDrawChannel_begin"][2]["defaults"] = {} +defs["ImVector_ImDrawChannel_begin"][2]["funcname"] = "begin" +defs["ImVector_ImDrawChannel_begin"][2]["ov_cimguiname"] = "ImVector_ImDrawChannel_begin_const" +defs["ImVector_ImDrawChannel_begin"][2]["ret"] = "ImDrawChannel const *" +defs["ImVector_ImDrawChannel_begin"][2]["signature"] = "()const" +defs["ImVector_ImDrawChannel_begin"][2]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_begin"][2]["templatedgen"] = true +defs["ImVector_ImDrawChannel_begin"]["()"] = defs["ImVector_ImDrawChannel_begin"][1] +defs["ImVector_ImDrawChannel_begin"]["()const"] = defs["ImVector_ImDrawChannel_begin"][2] +defs["ImVector_ImDrawChannel_capacity"] = {} +defs["ImVector_ImDrawChannel_capacity"][1] = {} +defs["ImVector_ImDrawChannel_capacity"][1]["args"] = "(const ImVector_ImDrawChannel* self)" +defs["ImVector_ImDrawChannel_capacity"][1]["argsT"] = {} +defs["ImVector_ImDrawChannel_capacity"][1]["argsT"][1] = {} +defs["ImVector_ImDrawChannel_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawChannel_capacity"][1]["argsT"][1]["type"] = "const ImVector_ImDrawChannel*" +defs["ImVector_ImDrawChannel_capacity"][1]["call_args"] = "()" +defs["ImVector_ImDrawChannel_capacity"][1]["cimguiname"] = "ImVector_ImDrawChannel_capacity" +defs["ImVector_ImDrawChannel_capacity"][1]["defaults"] = {} +defs["ImVector_ImDrawChannel_capacity"][1]["funcname"] = "capacity" +defs["ImVector_ImDrawChannel_capacity"][1]["ov_cimguiname"] = "ImVector_ImDrawChannel_capacity" +defs["ImVector_ImDrawChannel_capacity"][1]["ret"] = "int" +defs["ImVector_ImDrawChannel_capacity"][1]["signature"] = "()const" +defs["ImVector_ImDrawChannel_capacity"][1]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_capacity"][1]["templatedgen"] = true +defs["ImVector_ImDrawChannel_capacity"]["()const"] = defs["ImVector_ImDrawChannel_capacity"][1] +defs["ImVector_ImDrawChannel_clear"] = {} +defs["ImVector_ImDrawChannel_clear"][1] = {} +defs["ImVector_ImDrawChannel_clear"][1]["args"] = "(ImVector_ImDrawChannel* self)" +defs["ImVector_ImDrawChannel_clear"][1]["argsT"] = {} +defs["ImVector_ImDrawChannel_clear"][1]["argsT"][1] = {} +defs["ImVector_ImDrawChannel_clear"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawChannel_clear"][1]["argsT"][1]["type"] = "ImVector_ImDrawChannel*" +defs["ImVector_ImDrawChannel_clear"][1]["call_args"] = "()" +defs["ImVector_ImDrawChannel_clear"][1]["cimguiname"] = "ImVector_ImDrawChannel_clear" +defs["ImVector_ImDrawChannel_clear"][1]["defaults"] = {} +defs["ImVector_ImDrawChannel_clear"][1]["funcname"] = "clear" +defs["ImVector_ImDrawChannel_clear"][1]["ov_cimguiname"] = "ImVector_ImDrawChannel_clear" +defs["ImVector_ImDrawChannel_clear"][1]["ret"] = "void" +defs["ImVector_ImDrawChannel_clear"][1]["signature"] = "()" +defs["ImVector_ImDrawChannel_clear"][1]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_clear"][1]["templatedgen"] = true +defs["ImVector_ImDrawChannel_clear"]["()"] = defs["ImVector_ImDrawChannel_clear"][1] +defs["ImVector_ImDrawChannel_contains"] = {} +defs["ImVector_ImDrawChannel_contains"][1] = {} +defs["ImVector_ImDrawChannel_contains"][1]["args"] = "(const ImVector_ImDrawChannel* self,const ImDrawChannel v)" +defs["ImVector_ImDrawChannel_contains"][1]["argsT"] = {} +defs["ImVector_ImDrawChannel_contains"][1]["argsT"][1] = {} +defs["ImVector_ImDrawChannel_contains"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawChannel_contains"][1]["argsT"][1]["type"] = "const ImVector_ImDrawChannel*" +defs["ImVector_ImDrawChannel_contains"][1]["argsT"][2] = {} +defs["ImVector_ImDrawChannel_contains"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImDrawChannel_contains"][1]["argsT"][2]["type"] = "const ImDrawChannel" +defs["ImVector_ImDrawChannel_contains"][1]["call_args"] = "(v)" +defs["ImVector_ImDrawChannel_contains"][1]["cimguiname"] = "ImVector_ImDrawChannel_contains" +defs["ImVector_ImDrawChannel_contains"][1]["defaults"] = {} +defs["ImVector_ImDrawChannel_contains"][1]["funcname"] = "contains" +defs["ImVector_ImDrawChannel_contains"][1]["ov_cimguiname"] = "ImVector_ImDrawChannel_contains" +defs["ImVector_ImDrawChannel_contains"][1]["ret"] = "bool" +defs["ImVector_ImDrawChannel_contains"][1]["signature"] = "(const ImDrawChannel)const" +defs["ImVector_ImDrawChannel_contains"][1]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_contains"][1]["templatedgen"] = true +defs["ImVector_ImDrawChannel_contains"]["(const ImDrawChannel)const"] = defs["ImVector_ImDrawChannel_contains"][1] +defs["ImVector_ImDrawChannel_destroy"] = {} +defs["ImVector_ImDrawChannel_destroy"][1] = {} +defs["ImVector_ImDrawChannel_destroy"][1]["args"] = "(ImVector_ImDrawChannel* self)" +defs["ImVector_ImDrawChannel_destroy"][1]["argsT"] = {} +defs["ImVector_ImDrawChannel_destroy"][1]["argsT"][1] = {} +defs["ImVector_ImDrawChannel_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawChannel_destroy"][1]["argsT"][1]["type"] = "ImVector_ImDrawChannel*" +defs["ImVector_ImDrawChannel_destroy"][1]["call_args"] = "(self)" +defs["ImVector_ImDrawChannel_destroy"][1]["cimguiname"] = "ImVector_ImDrawChannel_destroy" +defs["ImVector_ImDrawChannel_destroy"][1]["defaults"] = {} +defs["ImVector_ImDrawChannel_destroy"][1]["destructor"] = true +defs["ImVector_ImDrawChannel_destroy"][1]["ov_cimguiname"] = "ImVector_ImDrawChannel_destroy" +defs["ImVector_ImDrawChannel_destroy"][1]["ret"] = "void" +defs["ImVector_ImDrawChannel_destroy"][1]["signature"] = "(ImVector_ImDrawChannel*)" +defs["ImVector_ImDrawChannel_destroy"][1]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_destroy"]["(ImVector_ImDrawChannel*)"] = defs["ImVector_ImDrawChannel_destroy"][1] +defs["ImVector_ImDrawChannel_empty"] = {} +defs["ImVector_ImDrawChannel_empty"][1] = {} +defs["ImVector_ImDrawChannel_empty"][1]["args"] = "(const ImVector_ImDrawChannel* self)" +defs["ImVector_ImDrawChannel_empty"][1]["argsT"] = {} +defs["ImVector_ImDrawChannel_empty"][1]["argsT"][1] = {} +defs["ImVector_ImDrawChannel_empty"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawChannel_empty"][1]["argsT"][1]["type"] = "const ImVector_ImDrawChannel*" +defs["ImVector_ImDrawChannel_empty"][1]["call_args"] = "()" +defs["ImVector_ImDrawChannel_empty"][1]["cimguiname"] = "ImVector_ImDrawChannel_empty" +defs["ImVector_ImDrawChannel_empty"][1]["defaults"] = {} +defs["ImVector_ImDrawChannel_empty"][1]["funcname"] = "empty" +defs["ImVector_ImDrawChannel_empty"][1]["ov_cimguiname"] = "ImVector_ImDrawChannel_empty" +defs["ImVector_ImDrawChannel_empty"][1]["ret"] = "bool" +defs["ImVector_ImDrawChannel_empty"][1]["signature"] = "()const" +defs["ImVector_ImDrawChannel_empty"][1]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_empty"][1]["templatedgen"] = true +defs["ImVector_ImDrawChannel_empty"]["()const"] = defs["ImVector_ImDrawChannel_empty"][1] +defs["ImVector_ImDrawChannel_end"] = {} +defs["ImVector_ImDrawChannel_end"][1] = {} +defs["ImVector_ImDrawChannel_end"][1]["args"] = "(ImVector_ImDrawChannel* self)" +defs["ImVector_ImDrawChannel_end"][1]["argsT"] = {} +defs["ImVector_ImDrawChannel_end"][1]["argsT"][1] = {} +defs["ImVector_ImDrawChannel_end"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawChannel_end"][1]["argsT"][1]["type"] = "ImVector_ImDrawChannel*" +defs["ImVector_ImDrawChannel_end"][1]["call_args"] = "()" +defs["ImVector_ImDrawChannel_end"][1]["cimguiname"] = "ImVector_ImDrawChannel_end" +defs["ImVector_ImDrawChannel_end"][1]["defaults"] = {} +defs["ImVector_ImDrawChannel_end"][1]["funcname"] = "end" +defs["ImVector_ImDrawChannel_end"][1]["ov_cimguiname"] = "ImVector_ImDrawChannel_end" +defs["ImVector_ImDrawChannel_end"][1]["ret"] = "ImDrawChannel*" +defs["ImVector_ImDrawChannel_end"][1]["signature"] = "()" +defs["ImVector_ImDrawChannel_end"][1]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_end"][1]["templatedgen"] = true +defs["ImVector_ImDrawChannel_end"][2] = {} +defs["ImVector_ImDrawChannel_end"][2]["args"] = "(const ImVector_ImDrawChannel* self)" +defs["ImVector_ImDrawChannel_end"][2]["argsT"] = {} +defs["ImVector_ImDrawChannel_end"][2]["argsT"][1] = {} +defs["ImVector_ImDrawChannel_end"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawChannel_end"][2]["argsT"][1]["type"] = "const ImVector_ImDrawChannel*" +defs["ImVector_ImDrawChannel_end"][2]["call_args"] = "()" +defs["ImVector_ImDrawChannel_end"][2]["cimguiname"] = "ImVector_ImDrawChannel_end" +defs["ImVector_ImDrawChannel_end"][2]["defaults"] = {} +defs["ImVector_ImDrawChannel_end"][2]["funcname"] = "end" +defs["ImVector_ImDrawChannel_end"][2]["ov_cimguiname"] = "ImVector_ImDrawChannel_end_const" +defs["ImVector_ImDrawChannel_end"][2]["ret"] = "ImDrawChannel const *" +defs["ImVector_ImDrawChannel_end"][2]["signature"] = "()const" +defs["ImVector_ImDrawChannel_end"][2]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_end"][2]["templatedgen"] = true +defs["ImVector_ImDrawChannel_end"]["()"] = defs["ImVector_ImDrawChannel_end"][1] +defs["ImVector_ImDrawChannel_end"]["()const"] = defs["ImVector_ImDrawChannel_end"][2] +defs["ImVector_ImDrawChannel_erase"] = {} +defs["ImVector_ImDrawChannel_erase"][1] = {} +defs["ImVector_ImDrawChannel_erase"][1]["args"] = "(ImVector_ImDrawChannel* self,ImDrawChannel const * it)" +defs["ImVector_ImDrawChannel_erase"][1]["argsT"] = {} +defs["ImVector_ImDrawChannel_erase"][1]["argsT"][1] = {} +defs["ImVector_ImDrawChannel_erase"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawChannel_erase"][1]["argsT"][1]["type"] = "ImVector_ImDrawChannel*" +defs["ImVector_ImDrawChannel_erase"][1]["argsT"][2] = {} +defs["ImVector_ImDrawChannel_erase"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImDrawChannel_erase"][1]["argsT"][2]["type"] = "ImDrawChannel const *" +defs["ImVector_ImDrawChannel_erase"][1]["call_args"] = "(it)" +defs["ImVector_ImDrawChannel_erase"][1]["cimguiname"] = "ImVector_ImDrawChannel_erase" +defs["ImVector_ImDrawChannel_erase"][1]["defaults"] = {} +defs["ImVector_ImDrawChannel_erase"][1]["funcname"] = "erase" +defs["ImVector_ImDrawChannel_erase"][1]["ov_cimguiname"] = "ImVector_ImDrawChannel_erase" +defs["ImVector_ImDrawChannel_erase"][1]["ret"] = "ImDrawChannel*" +defs["ImVector_ImDrawChannel_erase"][1]["signature"] = "(const ImDrawChannel*)" +defs["ImVector_ImDrawChannel_erase"][1]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_erase"][1]["templatedgen"] = true +defs["ImVector_ImDrawChannel_erase"][2] = {} +defs["ImVector_ImDrawChannel_erase"][2]["args"] = "(ImVector_ImDrawChannel* self,ImDrawChannel const * it,ImDrawChannel const * it_last)" +defs["ImVector_ImDrawChannel_erase"][2]["argsT"] = {} +defs["ImVector_ImDrawChannel_erase"][2]["argsT"][1] = {} +defs["ImVector_ImDrawChannel_erase"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawChannel_erase"][2]["argsT"][1]["type"] = "ImVector_ImDrawChannel*" +defs["ImVector_ImDrawChannel_erase"][2]["argsT"][2] = {} +defs["ImVector_ImDrawChannel_erase"][2]["argsT"][2]["name"] = "it" +defs["ImVector_ImDrawChannel_erase"][2]["argsT"][2]["type"] = "ImDrawChannel const *" +defs["ImVector_ImDrawChannel_erase"][2]["argsT"][3] = {} +defs["ImVector_ImDrawChannel_erase"][2]["argsT"][3]["name"] = "it_last" +defs["ImVector_ImDrawChannel_erase"][2]["argsT"][3]["type"] = "ImDrawChannel const *" +defs["ImVector_ImDrawChannel_erase"][2]["call_args"] = "(it,it_last)" +defs["ImVector_ImDrawChannel_erase"][2]["cimguiname"] = "ImVector_ImDrawChannel_erase" +defs["ImVector_ImDrawChannel_erase"][2]["defaults"] = {} +defs["ImVector_ImDrawChannel_erase"][2]["funcname"] = "erase" +defs["ImVector_ImDrawChannel_erase"][2]["ov_cimguiname"] = "ImVector_ImDrawChannel_eraseTPtr" +defs["ImVector_ImDrawChannel_erase"][2]["ret"] = "ImDrawChannel*" +defs["ImVector_ImDrawChannel_erase"][2]["signature"] = "(const ImDrawChannel*,const ImDrawChannel*)" +defs["ImVector_ImDrawChannel_erase"][2]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_erase"][2]["templatedgen"] = true +defs["ImVector_ImDrawChannel_erase"]["(const ImDrawChannel*)"] = defs["ImVector_ImDrawChannel_erase"][1] +defs["ImVector_ImDrawChannel_erase"]["(const ImDrawChannel*,const ImDrawChannel*)"] = defs["ImVector_ImDrawChannel_erase"][2] +defs["ImVector_ImDrawChannel_erase_unsorted"] = {} +defs["ImVector_ImDrawChannel_erase_unsorted"][1] = {} +defs["ImVector_ImDrawChannel_erase_unsorted"][1]["args"] = "(ImVector_ImDrawChannel* self,ImDrawChannel const * it)" +defs["ImVector_ImDrawChannel_erase_unsorted"][1]["argsT"] = {} +defs["ImVector_ImDrawChannel_erase_unsorted"][1]["argsT"][1] = {} +defs["ImVector_ImDrawChannel_erase_unsorted"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawChannel_erase_unsorted"][1]["argsT"][1]["type"] = "ImVector_ImDrawChannel*" +defs["ImVector_ImDrawChannel_erase_unsorted"][1]["argsT"][2] = {} +defs["ImVector_ImDrawChannel_erase_unsorted"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImDrawChannel_erase_unsorted"][1]["argsT"][2]["type"] = "ImDrawChannel const *" +defs["ImVector_ImDrawChannel_erase_unsorted"][1]["call_args"] = "(it)" +defs["ImVector_ImDrawChannel_erase_unsorted"][1]["cimguiname"] = "ImVector_ImDrawChannel_erase_unsorted" +defs["ImVector_ImDrawChannel_erase_unsorted"][1]["defaults"] = {} +defs["ImVector_ImDrawChannel_erase_unsorted"][1]["funcname"] = "erase_unsorted" +defs["ImVector_ImDrawChannel_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_ImDrawChannel_erase_unsorted" +defs["ImVector_ImDrawChannel_erase_unsorted"][1]["ret"] = "ImDrawChannel*" +defs["ImVector_ImDrawChannel_erase_unsorted"][1]["signature"] = "(const ImDrawChannel*)" +defs["ImVector_ImDrawChannel_erase_unsorted"][1]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_erase_unsorted"][1]["templatedgen"] = true +defs["ImVector_ImDrawChannel_erase_unsorted"]["(const ImDrawChannel*)"] = defs["ImVector_ImDrawChannel_erase_unsorted"][1] +defs["ImVector_ImDrawChannel_front"] = {} +defs["ImVector_ImDrawChannel_front"][1] = {} +defs["ImVector_ImDrawChannel_front"][1]["args"] = "(ImVector_ImDrawChannel* self)" +defs["ImVector_ImDrawChannel_front"][1]["argsT"] = {} +defs["ImVector_ImDrawChannel_front"][1]["argsT"][1] = {} +defs["ImVector_ImDrawChannel_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawChannel_front"][1]["argsT"][1]["type"] = "ImVector_ImDrawChannel*" +defs["ImVector_ImDrawChannel_front"][1]["call_args"] = "()" +defs["ImVector_ImDrawChannel_front"][1]["cimguiname"] = "ImVector_ImDrawChannel_front" +defs["ImVector_ImDrawChannel_front"][1]["defaults"] = {} +defs["ImVector_ImDrawChannel_front"][1]["funcname"] = "front" +defs["ImVector_ImDrawChannel_front"][1]["ov_cimguiname"] = "ImVector_ImDrawChannel_front" +defs["ImVector_ImDrawChannel_front"][1]["ret"] = "ImDrawChannel*" +defs["ImVector_ImDrawChannel_front"][1]["retref"] = "&" +defs["ImVector_ImDrawChannel_front"][1]["signature"] = "()" +defs["ImVector_ImDrawChannel_front"][1]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_front"][1]["templatedgen"] = true +defs["ImVector_ImDrawChannel_front"][2] = {} +defs["ImVector_ImDrawChannel_front"][2]["args"] = "(const ImVector_ImDrawChannel* self)" +defs["ImVector_ImDrawChannel_front"][2]["argsT"] = {} +defs["ImVector_ImDrawChannel_front"][2]["argsT"][1] = {} +defs["ImVector_ImDrawChannel_front"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawChannel_front"][2]["argsT"][1]["type"] = "const ImVector_ImDrawChannel*" +defs["ImVector_ImDrawChannel_front"][2]["call_args"] = "()" +defs["ImVector_ImDrawChannel_front"][2]["cimguiname"] = "ImVector_ImDrawChannel_front" +defs["ImVector_ImDrawChannel_front"][2]["defaults"] = {} +defs["ImVector_ImDrawChannel_front"][2]["funcname"] = "front" +defs["ImVector_ImDrawChannel_front"][2]["ov_cimguiname"] = "ImVector_ImDrawChannel_front_const" +defs["ImVector_ImDrawChannel_front"][2]["ret"] = "ImDrawChannel const *" +defs["ImVector_ImDrawChannel_front"][2]["retref"] = "&" +defs["ImVector_ImDrawChannel_front"][2]["signature"] = "()const" +defs["ImVector_ImDrawChannel_front"][2]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_front"][2]["templatedgen"] = true +defs["ImVector_ImDrawChannel_front"]["()"] = defs["ImVector_ImDrawChannel_front"][1] +defs["ImVector_ImDrawChannel_front"]["()const"] = defs["ImVector_ImDrawChannel_front"][2] +defs["ImVector_ImDrawChannel_index_from_ptr"] = {} +defs["ImVector_ImDrawChannel_index_from_ptr"][1] = {} +defs["ImVector_ImDrawChannel_index_from_ptr"][1]["args"] = "(const ImVector_ImDrawChannel* self,ImDrawChannel const * it)" +defs["ImVector_ImDrawChannel_index_from_ptr"][1]["argsT"] = {} +defs["ImVector_ImDrawChannel_index_from_ptr"][1]["argsT"][1] = {} +defs["ImVector_ImDrawChannel_index_from_ptr"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawChannel_index_from_ptr"][1]["argsT"][1]["type"] = "const ImVector_ImDrawChannel*" +defs["ImVector_ImDrawChannel_index_from_ptr"][1]["argsT"][2] = {} +defs["ImVector_ImDrawChannel_index_from_ptr"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImDrawChannel_index_from_ptr"][1]["argsT"][2]["type"] = "ImDrawChannel const *" +defs["ImVector_ImDrawChannel_index_from_ptr"][1]["call_args"] = "(it)" +defs["ImVector_ImDrawChannel_index_from_ptr"][1]["cimguiname"] = "ImVector_ImDrawChannel_index_from_ptr" +defs["ImVector_ImDrawChannel_index_from_ptr"][1]["defaults"] = {} +defs["ImVector_ImDrawChannel_index_from_ptr"][1]["funcname"] = "index_from_ptr" +defs["ImVector_ImDrawChannel_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_ImDrawChannel_index_from_ptr" +defs["ImVector_ImDrawChannel_index_from_ptr"][1]["ret"] = "int" +defs["ImVector_ImDrawChannel_index_from_ptr"][1]["signature"] = "(const ImDrawChannel*)const" +defs["ImVector_ImDrawChannel_index_from_ptr"][1]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_index_from_ptr"][1]["templatedgen"] = true +defs["ImVector_ImDrawChannel_index_from_ptr"]["(const ImDrawChannel*)const"] = defs["ImVector_ImDrawChannel_index_from_ptr"][1] +defs["ImVector_ImDrawChannel_insert"] = {} +defs["ImVector_ImDrawChannel_insert"][1] = {} +defs["ImVector_ImDrawChannel_insert"][1]["args"] = "(ImVector_ImDrawChannel* self,ImDrawChannel const * it,const ImDrawChannel v)" +defs["ImVector_ImDrawChannel_insert"][1]["argsT"] = {} +defs["ImVector_ImDrawChannel_insert"][1]["argsT"][1] = {} +defs["ImVector_ImDrawChannel_insert"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawChannel_insert"][1]["argsT"][1]["type"] = "ImVector_ImDrawChannel*" +defs["ImVector_ImDrawChannel_insert"][1]["argsT"][2] = {} +defs["ImVector_ImDrawChannel_insert"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImDrawChannel_insert"][1]["argsT"][2]["type"] = "ImDrawChannel const *" +defs["ImVector_ImDrawChannel_insert"][1]["argsT"][3] = {} +defs["ImVector_ImDrawChannel_insert"][1]["argsT"][3]["name"] = "v" +defs["ImVector_ImDrawChannel_insert"][1]["argsT"][3]["type"] = "const ImDrawChannel" +defs["ImVector_ImDrawChannel_insert"][1]["call_args"] = "(it,v)" +defs["ImVector_ImDrawChannel_insert"][1]["cimguiname"] = "ImVector_ImDrawChannel_insert" +defs["ImVector_ImDrawChannel_insert"][1]["defaults"] = {} +defs["ImVector_ImDrawChannel_insert"][1]["funcname"] = "insert" +defs["ImVector_ImDrawChannel_insert"][1]["ov_cimguiname"] = "ImVector_ImDrawChannel_insert" +defs["ImVector_ImDrawChannel_insert"][1]["ret"] = "ImDrawChannel*" +defs["ImVector_ImDrawChannel_insert"][1]["signature"] = "(const ImDrawChannel*,const ImDrawChannel)" +defs["ImVector_ImDrawChannel_insert"][1]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_insert"][1]["templatedgen"] = true +defs["ImVector_ImDrawChannel_insert"]["(const ImDrawChannel*,const ImDrawChannel)"] = defs["ImVector_ImDrawChannel_insert"][1] +defs["ImVector_ImDrawChannel_pop_back"] = {} +defs["ImVector_ImDrawChannel_pop_back"][1] = {} +defs["ImVector_ImDrawChannel_pop_back"][1]["args"] = "(ImVector_ImDrawChannel* self)" +defs["ImVector_ImDrawChannel_pop_back"][1]["argsT"] = {} +defs["ImVector_ImDrawChannel_pop_back"][1]["argsT"][1] = {} +defs["ImVector_ImDrawChannel_pop_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawChannel_pop_back"][1]["argsT"][1]["type"] = "ImVector_ImDrawChannel*" +defs["ImVector_ImDrawChannel_pop_back"][1]["call_args"] = "()" +defs["ImVector_ImDrawChannel_pop_back"][1]["cimguiname"] = "ImVector_ImDrawChannel_pop_back" +defs["ImVector_ImDrawChannel_pop_back"][1]["defaults"] = {} +defs["ImVector_ImDrawChannel_pop_back"][1]["funcname"] = "pop_back" +defs["ImVector_ImDrawChannel_pop_back"][1]["ov_cimguiname"] = "ImVector_ImDrawChannel_pop_back" +defs["ImVector_ImDrawChannel_pop_back"][1]["ret"] = "void" +defs["ImVector_ImDrawChannel_pop_back"][1]["signature"] = "()" +defs["ImVector_ImDrawChannel_pop_back"][1]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_pop_back"][1]["templatedgen"] = true +defs["ImVector_ImDrawChannel_pop_back"]["()"] = defs["ImVector_ImDrawChannel_pop_back"][1] +defs["ImVector_ImDrawChannel_push_back"] = {} +defs["ImVector_ImDrawChannel_push_back"][1] = {} +defs["ImVector_ImDrawChannel_push_back"][1]["args"] = "(ImVector_ImDrawChannel* self,const ImDrawChannel v)" +defs["ImVector_ImDrawChannel_push_back"][1]["argsT"] = {} +defs["ImVector_ImDrawChannel_push_back"][1]["argsT"][1] = {} +defs["ImVector_ImDrawChannel_push_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawChannel_push_back"][1]["argsT"][1]["type"] = "ImVector_ImDrawChannel*" +defs["ImVector_ImDrawChannel_push_back"][1]["argsT"][2] = {} +defs["ImVector_ImDrawChannel_push_back"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImDrawChannel_push_back"][1]["argsT"][2]["type"] = "const ImDrawChannel" +defs["ImVector_ImDrawChannel_push_back"][1]["call_args"] = "(v)" +defs["ImVector_ImDrawChannel_push_back"][1]["cimguiname"] = "ImVector_ImDrawChannel_push_back" +defs["ImVector_ImDrawChannel_push_back"][1]["defaults"] = {} +defs["ImVector_ImDrawChannel_push_back"][1]["funcname"] = "push_back" +defs["ImVector_ImDrawChannel_push_back"][1]["ov_cimguiname"] = "ImVector_ImDrawChannel_push_back" +defs["ImVector_ImDrawChannel_push_back"][1]["ret"] = "void" +defs["ImVector_ImDrawChannel_push_back"][1]["signature"] = "(const ImDrawChannel)" +defs["ImVector_ImDrawChannel_push_back"][1]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_push_back"][1]["templatedgen"] = true +defs["ImVector_ImDrawChannel_push_back"]["(const ImDrawChannel)"] = defs["ImVector_ImDrawChannel_push_back"][1] +defs["ImVector_ImDrawChannel_push_front"] = {} +defs["ImVector_ImDrawChannel_push_front"][1] = {} +defs["ImVector_ImDrawChannel_push_front"][1]["args"] = "(ImVector_ImDrawChannel* self,const ImDrawChannel v)" +defs["ImVector_ImDrawChannel_push_front"][1]["argsT"] = {} +defs["ImVector_ImDrawChannel_push_front"][1]["argsT"][1] = {} +defs["ImVector_ImDrawChannel_push_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawChannel_push_front"][1]["argsT"][1]["type"] = "ImVector_ImDrawChannel*" +defs["ImVector_ImDrawChannel_push_front"][1]["argsT"][2] = {} +defs["ImVector_ImDrawChannel_push_front"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImDrawChannel_push_front"][1]["argsT"][2]["type"] = "const ImDrawChannel" +defs["ImVector_ImDrawChannel_push_front"][1]["call_args"] = "(v)" +defs["ImVector_ImDrawChannel_push_front"][1]["cimguiname"] = "ImVector_ImDrawChannel_push_front" +defs["ImVector_ImDrawChannel_push_front"][1]["defaults"] = {} +defs["ImVector_ImDrawChannel_push_front"][1]["funcname"] = "push_front" +defs["ImVector_ImDrawChannel_push_front"][1]["ov_cimguiname"] = "ImVector_ImDrawChannel_push_front" +defs["ImVector_ImDrawChannel_push_front"][1]["ret"] = "void" +defs["ImVector_ImDrawChannel_push_front"][1]["signature"] = "(const ImDrawChannel)" +defs["ImVector_ImDrawChannel_push_front"][1]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_push_front"][1]["templatedgen"] = true +defs["ImVector_ImDrawChannel_push_front"]["(const ImDrawChannel)"] = defs["ImVector_ImDrawChannel_push_front"][1] +defs["ImVector_ImDrawChannel_reserve"] = {} +defs["ImVector_ImDrawChannel_reserve"][1] = {} +defs["ImVector_ImDrawChannel_reserve"][1]["args"] = "(ImVector_ImDrawChannel* self,int new_capacity)" +defs["ImVector_ImDrawChannel_reserve"][1]["argsT"] = {} +defs["ImVector_ImDrawChannel_reserve"][1]["argsT"][1] = {} +defs["ImVector_ImDrawChannel_reserve"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawChannel_reserve"][1]["argsT"][1]["type"] = "ImVector_ImDrawChannel*" +defs["ImVector_ImDrawChannel_reserve"][1]["argsT"][2] = {} +defs["ImVector_ImDrawChannel_reserve"][1]["argsT"][2]["name"] = "new_capacity" +defs["ImVector_ImDrawChannel_reserve"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImDrawChannel_reserve"][1]["call_args"] = "(new_capacity)" +defs["ImVector_ImDrawChannel_reserve"][1]["cimguiname"] = "ImVector_ImDrawChannel_reserve" +defs["ImVector_ImDrawChannel_reserve"][1]["defaults"] = {} +defs["ImVector_ImDrawChannel_reserve"][1]["funcname"] = "reserve" +defs["ImVector_ImDrawChannel_reserve"][1]["ov_cimguiname"] = "ImVector_ImDrawChannel_reserve" +defs["ImVector_ImDrawChannel_reserve"][1]["ret"] = "void" +defs["ImVector_ImDrawChannel_reserve"][1]["signature"] = "(int)" +defs["ImVector_ImDrawChannel_reserve"][1]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_reserve"][1]["templatedgen"] = true +defs["ImVector_ImDrawChannel_reserve"]["(int)"] = defs["ImVector_ImDrawChannel_reserve"][1] +defs["ImVector_ImDrawChannel_resize"] = {} +defs["ImVector_ImDrawChannel_resize"][1] = {} +defs["ImVector_ImDrawChannel_resize"][1]["args"] = "(ImVector_ImDrawChannel* self,int new_size)" +defs["ImVector_ImDrawChannel_resize"][1]["argsT"] = {} +defs["ImVector_ImDrawChannel_resize"][1]["argsT"][1] = {} +defs["ImVector_ImDrawChannel_resize"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawChannel_resize"][1]["argsT"][1]["type"] = "ImVector_ImDrawChannel*" +defs["ImVector_ImDrawChannel_resize"][1]["argsT"][2] = {} +defs["ImVector_ImDrawChannel_resize"][1]["argsT"][2]["name"] = "new_size" +defs["ImVector_ImDrawChannel_resize"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImDrawChannel_resize"][1]["call_args"] = "(new_size)" +defs["ImVector_ImDrawChannel_resize"][1]["cimguiname"] = "ImVector_ImDrawChannel_resize" +defs["ImVector_ImDrawChannel_resize"][1]["defaults"] = {} +defs["ImVector_ImDrawChannel_resize"][1]["funcname"] = "resize" +defs["ImVector_ImDrawChannel_resize"][1]["ov_cimguiname"] = "ImVector_ImDrawChannel_resize" +defs["ImVector_ImDrawChannel_resize"][1]["ret"] = "void" +defs["ImVector_ImDrawChannel_resize"][1]["signature"] = "(int)" +defs["ImVector_ImDrawChannel_resize"][1]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_resize"][1]["templatedgen"] = true +defs["ImVector_ImDrawChannel_resize"][2] = {} +defs["ImVector_ImDrawChannel_resize"][2]["args"] = "(ImVector_ImDrawChannel* self,int new_size,const ImDrawChannel v)" +defs["ImVector_ImDrawChannel_resize"][2]["argsT"] = {} +defs["ImVector_ImDrawChannel_resize"][2]["argsT"][1] = {} +defs["ImVector_ImDrawChannel_resize"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawChannel_resize"][2]["argsT"][1]["type"] = "ImVector_ImDrawChannel*" +defs["ImVector_ImDrawChannel_resize"][2]["argsT"][2] = {} +defs["ImVector_ImDrawChannel_resize"][2]["argsT"][2]["name"] = "new_size" +defs["ImVector_ImDrawChannel_resize"][2]["argsT"][2]["type"] = "int" +defs["ImVector_ImDrawChannel_resize"][2]["argsT"][3] = {} +defs["ImVector_ImDrawChannel_resize"][2]["argsT"][3]["name"] = "v" +defs["ImVector_ImDrawChannel_resize"][2]["argsT"][3]["type"] = "const ImDrawChannel" +defs["ImVector_ImDrawChannel_resize"][2]["call_args"] = "(new_size,v)" +defs["ImVector_ImDrawChannel_resize"][2]["cimguiname"] = "ImVector_ImDrawChannel_resize" +defs["ImVector_ImDrawChannel_resize"][2]["defaults"] = {} +defs["ImVector_ImDrawChannel_resize"][2]["funcname"] = "resize" +defs["ImVector_ImDrawChannel_resize"][2]["ov_cimguiname"] = "ImVector_ImDrawChannel_resizeT" +defs["ImVector_ImDrawChannel_resize"][2]["ret"] = "void" +defs["ImVector_ImDrawChannel_resize"][2]["signature"] = "(int,const ImDrawChannel)" +defs["ImVector_ImDrawChannel_resize"][2]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_resize"][2]["templatedgen"] = true +defs["ImVector_ImDrawChannel_resize"]["(int)"] = defs["ImVector_ImDrawChannel_resize"][1] +defs["ImVector_ImDrawChannel_resize"]["(int,const ImDrawChannel)"] = defs["ImVector_ImDrawChannel_resize"][2] +defs["ImVector_ImDrawChannel_size"] = {} +defs["ImVector_ImDrawChannel_size"][1] = {} +defs["ImVector_ImDrawChannel_size"][1]["args"] = "(const ImVector_ImDrawChannel* self)" +defs["ImVector_ImDrawChannel_size"][1]["argsT"] = {} +defs["ImVector_ImDrawChannel_size"][1]["argsT"][1] = {} +defs["ImVector_ImDrawChannel_size"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawChannel_size"][1]["argsT"][1]["type"] = "const ImVector_ImDrawChannel*" +defs["ImVector_ImDrawChannel_size"][1]["call_args"] = "()" +defs["ImVector_ImDrawChannel_size"][1]["cimguiname"] = "ImVector_ImDrawChannel_size" +defs["ImVector_ImDrawChannel_size"][1]["defaults"] = {} +defs["ImVector_ImDrawChannel_size"][1]["funcname"] = "size" +defs["ImVector_ImDrawChannel_size"][1]["ov_cimguiname"] = "ImVector_ImDrawChannel_size" +defs["ImVector_ImDrawChannel_size"][1]["ret"] = "int" +defs["ImVector_ImDrawChannel_size"][1]["signature"] = "()const" +defs["ImVector_ImDrawChannel_size"][1]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_size"][1]["templatedgen"] = true +defs["ImVector_ImDrawChannel_size"]["()const"] = defs["ImVector_ImDrawChannel_size"][1] +defs["ImVector_ImDrawChannel_size_in_bytes"] = {} +defs["ImVector_ImDrawChannel_size_in_bytes"][1] = {} +defs["ImVector_ImDrawChannel_size_in_bytes"][1]["args"] = "(const ImVector_ImDrawChannel* self)" +defs["ImVector_ImDrawChannel_size_in_bytes"][1]["argsT"] = {} +defs["ImVector_ImDrawChannel_size_in_bytes"][1]["argsT"][1] = {} +defs["ImVector_ImDrawChannel_size_in_bytes"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawChannel_size_in_bytes"][1]["argsT"][1]["type"] = "const ImVector_ImDrawChannel*" +defs["ImVector_ImDrawChannel_size_in_bytes"][1]["call_args"] = "()" +defs["ImVector_ImDrawChannel_size_in_bytes"][1]["cimguiname"] = "ImVector_ImDrawChannel_size_in_bytes" +defs["ImVector_ImDrawChannel_size_in_bytes"][1]["defaults"] = {} +defs["ImVector_ImDrawChannel_size_in_bytes"][1]["funcname"] = "size_in_bytes" +defs["ImVector_ImDrawChannel_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_ImDrawChannel_size_in_bytes" +defs["ImVector_ImDrawChannel_size_in_bytes"][1]["ret"] = "int" +defs["ImVector_ImDrawChannel_size_in_bytes"][1]["signature"] = "()const" +defs["ImVector_ImDrawChannel_size_in_bytes"][1]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_size_in_bytes"][1]["templatedgen"] = true +defs["ImVector_ImDrawChannel_size_in_bytes"]["()const"] = defs["ImVector_ImDrawChannel_size_in_bytes"][1] +defs["ImVector_ImDrawChannel_swap"] = {} +defs["ImVector_ImDrawChannel_swap"][1] = {} +defs["ImVector_ImDrawChannel_swap"][1]["args"] = "(ImVector_ImDrawChannel* self,ImVector_ImDrawChannel rhs)" +defs["ImVector_ImDrawChannel_swap"][1]["argsT"] = {} +defs["ImVector_ImDrawChannel_swap"][1]["argsT"][1] = {} +defs["ImVector_ImDrawChannel_swap"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawChannel_swap"][1]["argsT"][1]["type"] = "ImVector_ImDrawChannel*" +defs["ImVector_ImDrawChannel_swap"][1]["argsT"][2] = {} +defs["ImVector_ImDrawChannel_swap"][1]["argsT"][2]["name"] = "rhs" +defs["ImVector_ImDrawChannel_swap"][1]["argsT"][2]["type"] = "ImVector_ImDrawChannel&" +defs["ImVector_ImDrawChannel_swap"][1]["call_args"] = "(rhs)" +defs["ImVector_ImDrawChannel_swap"][1]["cimguiname"] = "ImVector_ImDrawChannel_swap" +defs["ImVector_ImDrawChannel_swap"][1]["defaults"] = {} +defs["ImVector_ImDrawChannel_swap"][1]["funcname"] = "swap" +defs["ImVector_ImDrawChannel_swap"][1]["ov_cimguiname"] = "ImVector_ImDrawChannel_swap" +defs["ImVector_ImDrawChannel_swap"][1]["ret"] = "void" +defs["ImVector_ImDrawChannel_swap"][1]["signature"] = "(ImVector)" +defs["ImVector_ImDrawChannel_swap"][1]["stname"] = "ImVector_ImDrawChannel" +defs["ImVector_ImDrawChannel_swap"][1]["templatedgen"] = true +defs["ImVector_ImDrawChannel_swap"]["(ImVector)"] = defs["ImVector_ImDrawChannel_swap"][1] +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"] = {} +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"][1] = {} +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"][1]["args"] = "()" +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"][1]["argsT"] = {} +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"][1]["call_args"] = "()" +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"][1]["cimguiname"] = "ImVector_ImDrawCmd_ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"][1]["constructor"] = true +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"][1]["defaults"] = {} +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"][1]["funcname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"][1]["ov_cimguiname"] = "ImVector_ImDrawCmd_ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"][1]["signature"] = "()" +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"][1]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"][1]["templatedgen"] = true +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"][2] = {} +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"][2]["args"] = "(const ImVector_ImDrawCmd src)" +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"][2]["argsT"] = {} +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"][2]["argsT"][1] = {} +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"][2]["argsT"][1]["name"] = "src" +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"][2]["argsT"][1]["type"] = "const ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"][2]["call_args"] = "(src)" +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"][2]["cimguiname"] = "ImVector_ImDrawCmd_ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"][2]["constructor"] = true +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"][2]["defaults"] = {} +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"][2]["funcname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"][2]["ov_cimguiname"] = "ImVector_ImDrawCmd_ImVector_ImDrawCmdVector" +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"][2]["signature"] = "(const ImVector)" +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"][2]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"][2]["templatedgen"] = true +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"]["()"] = defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"][1] +defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"]["(const ImVector)"] = defs["ImVector_ImDrawCmd_ImVector_ImDrawCmd"][2] +defs["ImVector_ImDrawCmd__grow_capacity"] = {} +defs["ImVector_ImDrawCmd__grow_capacity"][1] = {} +defs["ImVector_ImDrawCmd__grow_capacity"][1]["args"] = "(const ImVector_ImDrawCmd* self,int sz)" +defs["ImVector_ImDrawCmd__grow_capacity"][1]["argsT"] = {} +defs["ImVector_ImDrawCmd__grow_capacity"][1]["argsT"][1] = {} +defs["ImVector_ImDrawCmd__grow_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawCmd__grow_capacity"][1]["argsT"][1]["type"] = "const ImVector_ImDrawCmd*" +defs["ImVector_ImDrawCmd__grow_capacity"][1]["argsT"][2] = {} +defs["ImVector_ImDrawCmd__grow_capacity"][1]["argsT"][2]["name"] = "sz" +defs["ImVector_ImDrawCmd__grow_capacity"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImDrawCmd__grow_capacity"][1]["call_args"] = "(sz)" +defs["ImVector_ImDrawCmd__grow_capacity"][1]["cimguiname"] = "ImVector_ImDrawCmd__grow_capacity" +defs["ImVector_ImDrawCmd__grow_capacity"][1]["defaults"] = {} +defs["ImVector_ImDrawCmd__grow_capacity"][1]["funcname"] = "_grow_capacity" +defs["ImVector_ImDrawCmd__grow_capacity"][1]["ov_cimguiname"] = "ImVector_ImDrawCmd__grow_capacity" +defs["ImVector_ImDrawCmd__grow_capacity"][1]["ret"] = "int" +defs["ImVector_ImDrawCmd__grow_capacity"][1]["signature"] = "(int)const" +defs["ImVector_ImDrawCmd__grow_capacity"][1]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd__grow_capacity"][1]["templatedgen"] = true +defs["ImVector_ImDrawCmd__grow_capacity"]["(int)const"] = defs["ImVector_ImDrawCmd__grow_capacity"][1] +defs["ImVector_ImDrawCmd_back"] = {} +defs["ImVector_ImDrawCmd_back"][1] = {} +defs["ImVector_ImDrawCmd_back"][1]["args"] = "(ImVector_ImDrawCmd* self)" +defs["ImVector_ImDrawCmd_back"][1]["argsT"] = {} +defs["ImVector_ImDrawCmd_back"][1]["argsT"][1] = {} +defs["ImVector_ImDrawCmd_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawCmd_back"][1]["argsT"][1]["type"] = "ImVector_ImDrawCmd*" +defs["ImVector_ImDrawCmd_back"][1]["call_args"] = "()" +defs["ImVector_ImDrawCmd_back"][1]["cimguiname"] = "ImVector_ImDrawCmd_back" +defs["ImVector_ImDrawCmd_back"][1]["defaults"] = {} +defs["ImVector_ImDrawCmd_back"][1]["funcname"] = "back" +defs["ImVector_ImDrawCmd_back"][1]["ov_cimguiname"] = "ImVector_ImDrawCmd_back" +defs["ImVector_ImDrawCmd_back"][1]["ret"] = "ImDrawCmd*" +defs["ImVector_ImDrawCmd_back"][1]["retref"] = "&" +defs["ImVector_ImDrawCmd_back"][1]["signature"] = "()" +defs["ImVector_ImDrawCmd_back"][1]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_back"][1]["templatedgen"] = true +defs["ImVector_ImDrawCmd_back"][2] = {} +defs["ImVector_ImDrawCmd_back"][2]["args"] = "(const ImVector_ImDrawCmd* self)" +defs["ImVector_ImDrawCmd_back"][2]["argsT"] = {} +defs["ImVector_ImDrawCmd_back"][2]["argsT"][1] = {} +defs["ImVector_ImDrawCmd_back"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawCmd_back"][2]["argsT"][1]["type"] = "const ImVector_ImDrawCmd*" +defs["ImVector_ImDrawCmd_back"][2]["call_args"] = "()" +defs["ImVector_ImDrawCmd_back"][2]["cimguiname"] = "ImVector_ImDrawCmd_back" +defs["ImVector_ImDrawCmd_back"][2]["defaults"] = {} +defs["ImVector_ImDrawCmd_back"][2]["funcname"] = "back" +defs["ImVector_ImDrawCmd_back"][2]["ov_cimguiname"] = "ImVector_ImDrawCmd_back_const" +defs["ImVector_ImDrawCmd_back"][2]["ret"] = "ImDrawCmd const *" +defs["ImVector_ImDrawCmd_back"][2]["retref"] = "&" +defs["ImVector_ImDrawCmd_back"][2]["signature"] = "()const" +defs["ImVector_ImDrawCmd_back"][2]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_back"][2]["templatedgen"] = true +defs["ImVector_ImDrawCmd_back"]["()"] = defs["ImVector_ImDrawCmd_back"][1] +defs["ImVector_ImDrawCmd_back"]["()const"] = defs["ImVector_ImDrawCmd_back"][2] +defs["ImVector_ImDrawCmd_begin"] = {} +defs["ImVector_ImDrawCmd_begin"][1] = {} +defs["ImVector_ImDrawCmd_begin"][1]["args"] = "(ImVector_ImDrawCmd* self)" +defs["ImVector_ImDrawCmd_begin"][1]["argsT"] = {} +defs["ImVector_ImDrawCmd_begin"][1]["argsT"][1] = {} +defs["ImVector_ImDrawCmd_begin"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawCmd_begin"][1]["argsT"][1]["type"] = "ImVector_ImDrawCmd*" +defs["ImVector_ImDrawCmd_begin"][1]["call_args"] = "()" +defs["ImVector_ImDrawCmd_begin"][1]["cimguiname"] = "ImVector_ImDrawCmd_begin" +defs["ImVector_ImDrawCmd_begin"][1]["defaults"] = {} +defs["ImVector_ImDrawCmd_begin"][1]["funcname"] = "begin" +defs["ImVector_ImDrawCmd_begin"][1]["ov_cimguiname"] = "ImVector_ImDrawCmd_begin" +defs["ImVector_ImDrawCmd_begin"][1]["ret"] = "ImDrawCmd*" +defs["ImVector_ImDrawCmd_begin"][1]["signature"] = "()" +defs["ImVector_ImDrawCmd_begin"][1]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_begin"][1]["templatedgen"] = true +defs["ImVector_ImDrawCmd_begin"][2] = {} +defs["ImVector_ImDrawCmd_begin"][2]["args"] = "(const ImVector_ImDrawCmd* self)" +defs["ImVector_ImDrawCmd_begin"][2]["argsT"] = {} +defs["ImVector_ImDrawCmd_begin"][2]["argsT"][1] = {} +defs["ImVector_ImDrawCmd_begin"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawCmd_begin"][2]["argsT"][1]["type"] = "const ImVector_ImDrawCmd*" +defs["ImVector_ImDrawCmd_begin"][2]["call_args"] = "()" +defs["ImVector_ImDrawCmd_begin"][2]["cimguiname"] = "ImVector_ImDrawCmd_begin" +defs["ImVector_ImDrawCmd_begin"][2]["defaults"] = {} +defs["ImVector_ImDrawCmd_begin"][2]["funcname"] = "begin" +defs["ImVector_ImDrawCmd_begin"][2]["ov_cimguiname"] = "ImVector_ImDrawCmd_begin_const" +defs["ImVector_ImDrawCmd_begin"][2]["ret"] = "ImDrawCmd const *" +defs["ImVector_ImDrawCmd_begin"][2]["signature"] = "()const" +defs["ImVector_ImDrawCmd_begin"][2]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_begin"][2]["templatedgen"] = true +defs["ImVector_ImDrawCmd_begin"]["()"] = defs["ImVector_ImDrawCmd_begin"][1] +defs["ImVector_ImDrawCmd_begin"]["()const"] = defs["ImVector_ImDrawCmd_begin"][2] +defs["ImVector_ImDrawCmd_capacity"] = {} +defs["ImVector_ImDrawCmd_capacity"][1] = {} +defs["ImVector_ImDrawCmd_capacity"][1]["args"] = "(const ImVector_ImDrawCmd* self)" +defs["ImVector_ImDrawCmd_capacity"][1]["argsT"] = {} +defs["ImVector_ImDrawCmd_capacity"][1]["argsT"][1] = {} +defs["ImVector_ImDrawCmd_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawCmd_capacity"][1]["argsT"][1]["type"] = "const ImVector_ImDrawCmd*" +defs["ImVector_ImDrawCmd_capacity"][1]["call_args"] = "()" +defs["ImVector_ImDrawCmd_capacity"][1]["cimguiname"] = "ImVector_ImDrawCmd_capacity" +defs["ImVector_ImDrawCmd_capacity"][1]["defaults"] = {} +defs["ImVector_ImDrawCmd_capacity"][1]["funcname"] = "capacity" +defs["ImVector_ImDrawCmd_capacity"][1]["ov_cimguiname"] = "ImVector_ImDrawCmd_capacity" +defs["ImVector_ImDrawCmd_capacity"][1]["ret"] = "int" +defs["ImVector_ImDrawCmd_capacity"][1]["signature"] = "()const" +defs["ImVector_ImDrawCmd_capacity"][1]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_capacity"][1]["templatedgen"] = true +defs["ImVector_ImDrawCmd_capacity"]["()const"] = defs["ImVector_ImDrawCmd_capacity"][1] +defs["ImVector_ImDrawCmd_clear"] = {} +defs["ImVector_ImDrawCmd_clear"][1] = {} +defs["ImVector_ImDrawCmd_clear"][1]["args"] = "(ImVector_ImDrawCmd* self)" +defs["ImVector_ImDrawCmd_clear"][1]["argsT"] = {} +defs["ImVector_ImDrawCmd_clear"][1]["argsT"][1] = {} +defs["ImVector_ImDrawCmd_clear"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawCmd_clear"][1]["argsT"][1]["type"] = "ImVector_ImDrawCmd*" +defs["ImVector_ImDrawCmd_clear"][1]["call_args"] = "()" +defs["ImVector_ImDrawCmd_clear"][1]["cimguiname"] = "ImVector_ImDrawCmd_clear" +defs["ImVector_ImDrawCmd_clear"][1]["defaults"] = {} +defs["ImVector_ImDrawCmd_clear"][1]["funcname"] = "clear" +defs["ImVector_ImDrawCmd_clear"][1]["ov_cimguiname"] = "ImVector_ImDrawCmd_clear" +defs["ImVector_ImDrawCmd_clear"][1]["ret"] = "void" +defs["ImVector_ImDrawCmd_clear"][1]["signature"] = "()" +defs["ImVector_ImDrawCmd_clear"][1]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_clear"][1]["templatedgen"] = true +defs["ImVector_ImDrawCmd_clear"]["()"] = defs["ImVector_ImDrawCmd_clear"][1] +defs["ImVector_ImDrawCmd_contains"] = {} +defs["ImVector_ImDrawCmd_contains"][1] = {} +defs["ImVector_ImDrawCmd_contains"][1]["args"] = "(const ImVector_ImDrawCmd* self,const ImDrawCmd v)" +defs["ImVector_ImDrawCmd_contains"][1]["argsT"] = {} +defs["ImVector_ImDrawCmd_contains"][1]["argsT"][1] = {} +defs["ImVector_ImDrawCmd_contains"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawCmd_contains"][1]["argsT"][1]["type"] = "const ImVector_ImDrawCmd*" +defs["ImVector_ImDrawCmd_contains"][1]["argsT"][2] = {} +defs["ImVector_ImDrawCmd_contains"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImDrawCmd_contains"][1]["argsT"][2]["type"] = "const ImDrawCmd" +defs["ImVector_ImDrawCmd_contains"][1]["call_args"] = "(v)" +defs["ImVector_ImDrawCmd_contains"][1]["cimguiname"] = "ImVector_ImDrawCmd_contains" +defs["ImVector_ImDrawCmd_contains"][1]["defaults"] = {} +defs["ImVector_ImDrawCmd_contains"][1]["funcname"] = "contains" +defs["ImVector_ImDrawCmd_contains"][1]["ov_cimguiname"] = "ImVector_ImDrawCmd_contains" +defs["ImVector_ImDrawCmd_contains"][1]["ret"] = "bool" +defs["ImVector_ImDrawCmd_contains"][1]["signature"] = "(const ImDrawCmd)const" +defs["ImVector_ImDrawCmd_contains"][1]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_contains"][1]["templatedgen"] = true +defs["ImVector_ImDrawCmd_contains"]["(const ImDrawCmd)const"] = defs["ImVector_ImDrawCmd_contains"][1] +defs["ImVector_ImDrawCmd_destroy"] = {} +defs["ImVector_ImDrawCmd_destroy"][1] = {} +defs["ImVector_ImDrawCmd_destroy"][1]["args"] = "(ImVector_ImDrawCmd* self)" +defs["ImVector_ImDrawCmd_destroy"][1]["argsT"] = {} +defs["ImVector_ImDrawCmd_destroy"][1]["argsT"][1] = {} +defs["ImVector_ImDrawCmd_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawCmd_destroy"][1]["argsT"][1]["type"] = "ImVector_ImDrawCmd*" +defs["ImVector_ImDrawCmd_destroy"][1]["call_args"] = "(self)" +defs["ImVector_ImDrawCmd_destroy"][1]["cimguiname"] = "ImVector_ImDrawCmd_destroy" +defs["ImVector_ImDrawCmd_destroy"][1]["defaults"] = {} +defs["ImVector_ImDrawCmd_destroy"][1]["destructor"] = true +defs["ImVector_ImDrawCmd_destroy"][1]["ov_cimguiname"] = "ImVector_ImDrawCmd_destroy" +defs["ImVector_ImDrawCmd_destroy"][1]["ret"] = "void" +defs["ImVector_ImDrawCmd_destroy"][1]["signature"] = "(ImVector_ImDrawCmd*)" +defs["ImVector_ImDrawCmd_destroy"][1]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_destroy"]["(ImVector_ImDrawCmd*)"] = defs["ImVector_ImDrawCmd_destroy"][1] +defs["ImVector_ImDrawCmd_empty"] = {} +defs["ImVector_ImDrawCmd_empty"][1] = {} +defs["ImVector_ImDrawCmd_empty"][1]["args"] = "(const ImVector_ImDrawCmd* self)" +defs["ImVector_ImDrawCmd_empty"][1]["argsT"] = {} +defs["ImVector_ImDrawCmd_empty"][1]["argsT"][1] = {} +defs["ImVector_ImDrawCmd_empty"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawCmd_empty"][1]["argsT"][1]["type"] = "const ImVector_ImDrawCmd*" +defs["ImVector_ImDrawCmd_empty"][1]["call_args"] = "()" +defs["ImVector_ImDrawCmd_empty"][1]["cimguiname"] = "ImVector_ImDrawCmd_empty" +defs["ImVector_ImDrawCmd_empty"][1]["defaults"] = {} +defs["ImVector_ImDrawCmd_empty"][1]["funcname"] = "empty" +defs["ImVector_ImDrawCmd_empty"][1]["ov_cimguiname"] = "ImVector_ImDrawCmd_empty" +defs["ImVector_ImDrawCmd_empty"][1]["ret"] = "bool" +defs["ImVector_ImDrawCmd_empty"][1]["signature"] = "()const" +defs["ImVector_ImDrawCmd_empty"][1]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_empty"][1]["templatedgen"] = true +defs["ImVector_ImDrawCmd_empty"]["()const"] = defs["ImVector_ImDrawCmd_empty"][1] +defs["ImVector_ImDrawCmd_end"] = {} +defs["ImVector_ImDrawCmd_end"][1] = {} +defs["ImVector_ImDrawCmd_end"][1]["args"] = "(ImVector_ImDrawCmd* self)" +defs["ImVector_ImDrawCmd_end"][1]["argsT"] = {} +defs["ImVector_ImDrawCmd_end"][1]["argsT"][1] = {} +defs["ImVector_ImDrawCmd_end"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawCmd_end"][1]["argsT"][1]["type"] = "ImVector_ImDrawCmd*" +defs["ImVector_ImDrawCmd_end"][1]["call_args"] = "()" +defs["ImVector_ImDrawCmd_end"][1]["cimguiname"] = "ImVector_ImDrawCmd_end" +defs["ImVector_ImDrawCmd_end"][1]["defaults"] = {} +defs["ImVector_ImDrawCmd_end"][1]["funcname"] = "end" +defs["ImVector_ImDrawCmd_end"][1]["ov_cimguiname"] = "ImVector_ImDrawCmd_end" +defs["ImVector_ImDrawCmd_end"][1]["ret"] = "ImDrawCmd*" +defs["ImVector_ImDrawCmd_end"][1]["signature"] = "()" +defs["ImVector_ImDrawCmd_end"][1]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_end"][1]["templatedgen"] = true +defs["ImVector_ImDrawCmd_end"][2] = {} +defs["ImVector_ImDrawCmd_end"][2]["args"] = "(const ImVector_ImDrawCmd* self)" +defs["ImVector_ImDrawCmd_end"][2]["argsT"] = {} +defs["ImVector_ImDrawCmd_end"][2]["argsT"][1] = {} +defs["ImVector_ImDrawCmd_end"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawCmd_end"][2]["argsT"][1]["type"] = "const ImVector_ImDrawCmd*" +defs["ImVector_ImDrawCmd_end"][2]["call_args"] = "()" +defs["ImVector_ImDrawCmd_end"][2]["cimguiname"] = "ImVector_ImDrawCmd_end" +defs["ImVector_ImDrawCmd_end"][2]["defaults"] = {} +defs["ImVector_ImDrawCmd_end"][2]["funcname"] = "end" +defs["ImVector_ImDrawCmd_end"][2]["ov_cimguiname"] = "ImVector_ImDrawCmd_end_const" +defs["ImVector_ImDrawCmd_end"][2]["ret"] = "ImDrawCmd const *" +defs["ImVector_ImDrawCmd_end"][2]["signature"] = "()const" +defs["ImVector_ImDrawCmd_end"][2]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_end"][2]["templatedgen"] = true +defs["ImVector_ImDrawCmd_end"]["()"] = defs["ImVector_ImDrawCmd_end"][1] +defs["ImVector_ImDrawCmd_end"]["()const"] = defs["ImVector_ImDrawCmd_end"][2] +defs["ImVector_ImDrawCmd_erase"] = {} +defs["ImVector_ImDrawCmd_erase"][1] = {} +defs["ImVector_ImDrawCmd_erase"][1]["args"] = "(ImVector_ImDrawCmd* self,ImDrawCmd const * it)" +defs["ImVector_ImDrawCmd_erase"][1]["argsT"] = {} +defs["ImVector_ImDrawCmd_erase"][1]["argsT"][1] = {} +defs["ImVector_ImDrawCmd_erase"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawCmd_erase"][1]["argsT"][1]["type"] = "ImVector_ImDrawCmd*" +defs["ImVector_ImDrawCmd_erase"][1]["argsT"][2] = {} +defs["ImVector_ImDrawCmd_erase"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImDrawCmd_erase"][1]["argsT"][2]["type"] = "ImDrawCmd const *" +defs["ImVector_ImDrawCmd_erase"][1]["call_args"] = "(it)" +defs["ImVector_ImDrawCmd_erase"][1]["cimguiname"] = "ImVector_ImDrawCmd_erase" +defs["ImVector_ImDrawCmd_erase"][1]["defaults"] = {} +defs["ImVector_ImDrawCmd_erase"][1]["funcname"] = "erase" +defs["ImVector_ImDrawCmd_erase"][1]["ov_cimguiname"] = "ImVector_ImDrawCmd_erase" +defs["ImVector_ImDrawCmd_erase"][1]["ret"] = "ImDrawCmd*" +defs["ImVector_ImDrawCmd_erase"][1]["signature"] = "(const ImDrawCmd*)" +defs["ImVector_ImDrawCmd_erase"][1]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_erase"][1]["templatedgen"] = true +defs["ImVector_ImDrawCmd_erase"][2] = {} +defs["ImVector_ImDrawCmd_erase"][2]["args"] = "(ImVector_ImDrawCmd* self,ImDrawCmd const * it,ImDrawCmd const * it_last)" +defs["ImVector_ImDrawCmd_erase"][2]["argsT"] = {} +defs["ImVector_ImDrawCmd_erase"][2]["argsT"][1] = {} +defs["ImVector_ImDrawCmd_erase"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawCmd_erase"][2]["argsT"][1]["type"] = "ImVector_ImDrawCmd*" +defs["ImVector_ImDrawCmd_erase"][2]["argsT"][2] = {} +defs["ImVector_ImDrawCmd_erase"][2]["argsT"][2]["name"] = "it" +defs["ImVector_ImDrawCmd_erase"][2]["argsT"][2]["type"] = "ImDrawCmd const *" +defs["ImVector_ImDrawCmd_erase"][2]["argsT"][3] = {} +defs["ImVector_ImDrawCmd_erase"][2]["argsT"][3]["name"] = "it_last" +defs["ImVector_ImDrawCmd_erase"][2]["argsT"][3]["type"] = "ImDrawCmd const *" +defs["ImVector_ImDrawCmd_erase"][2]["call_args"] = "(it,it_last)" +defs["ImVector_ImDrawCmd_erase"][2]["cimguiname"] = "ImVector_ImDrawCmd_erase" +defs["ImVector_ImDrawCmd_erase"][2]["defaults"] = {} +defs["ImVector_ImDrawCmd_erase"][2]["funcname"] = "erase" +defs["ImVector_ImDrawCmd_erase"][2]["ov_cimguiname"] = "ImVector_ImDrawCmd_eraseTPtr" +defs["ImVector_ImDrawCmd_erase"][2]["ret"] = "ImDrawCmd*" +defs["ImVector_ImDrawCmd_erase"][2]["signature"] = "(const ImDrawCmd*,const ImDrawCmd*)" +defs["ImVector_ImDrawCmd_erase"][2]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_erase"][2]["templatedgen"] = true +defs["ImVector_ImDrawCmd_erase"]["(const ImDrawCmd*)"] = defs["ImVector_ImDrawCmd_erase"][1] +defs["ImVector_ImDrawCmd_erase"]["(const ImDrawCmd*,const ImDrawCmd*)"] = defs["ImVector_ImDrawCmd_erase"][2] +defs["ImVector_ImDrawCmd_erase_unsorted"] = {} +defs["ImVector_ImDrawCmd_erase_unsorted"][1] = {} +defs["ImVector_ImDrawCmd_erase_unsorted"][1]["args"] = "(ImVector_ImDrawCmd* self,ImDrawCmd const * it)" +defs["ImVector_ImDrawCmd_erase_unsorted"][1]["argsT"] = {} +defs["ImVector_ImDrawCmd_erase_unsorted"][1]["argsT"][1] = {} +defs["ImVector_ImDrawCmd_erase_unsorted"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawCmd_erase_unsorted"][1]["argsT"][1]["type"] = "ImVector_ImDrawCmd*" +defs["ImVector_ImDrawCmd_erase_unsorted"][1]["argsT"][2] = {} +defs["ImVector_ImDrawCmd_erase_unsorted"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImDrawCmd_erase_unsorted"][1]["argsT"][2]["type"] = "ImDrawCmd const *" +defs["ImVector_ImDrawCmd_erase_unsorted"][1]["call_args"] = "(it)" +defs["ImVector_ImDrawCmd_erase_unsorted"][1]["cimguiname"] = "ImVector_ImDrawCmd_erase_unsorted" +defs["ImVector_ImDrawCmd_erase_unsorted"][1]["defaults"] = {} +defs["ImVector_ImDrawCmd_erase_unsorted"][1]["funcname"] = "erase_unsorted" +defs["ImVector_ImDrawCmd_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_ImDrawCmd_erase_unsorted" +defs["ImVector_ImDrawCmd_erase_unsorted"][1]["ret"] = "ImDrawCmd*" +defs["ImVector_ImDrawCmd_erase_unsorted"][1]["signature"] = "(const ImDrawCmd*)" +defs["ImVector_ImDrawCmd_erase_unsorted"][1]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_erase_unsorted"][1]["templatedgen"] = true +defs["ImVector_ImDrawCmd_erase_unsorted"]["(const ImDrawCmd*)"] = defs["ImVector_ImDrawCmd_erase_unsorted"][1] +defs["ImVector_ImDrawCmd_front"] = {} +defs["ImVector_ImDrawCmd_front"][1] = {} +defs["ImVector_ImDrawCmd_front"][1]["args"] = "(ImVector_ImDrawCmd* self)" +defs["ImVector_ImDrawCmd_front"][1]["argsT"] = {} +defs["ImVector_ImDrawCmd_front"][1]["argsT"][1] = {} +defs["ImVector_ImDrawCmd_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawCmd_front"][1]["argsT"][1]["type"] = "ImVector_ImDrawCmd*" +defs["ImVector_ImDrawCmd_front"][1]["call_args"] = "()" +defs["ImVector_ImDrawCmd_front"][1]["cimguiname"] = "ImVector_ImDrawCmd_front" +defs["ImVector_ImDrawCmd_front"][1]["defaults"] = {} +defs["ImVector_ImDrawCmd_front"][1]["funcname"] = "front" +defs["ImVector_ImDrawCmd_front"][1]["ov_cimguiname"] = "ImVector_ImDrawCmd_front" +defs["ImVector_ImDrawCmd_front"][1]["ret"] = "ImDrawCmd*" +defs["ImVector_ImDrawCmd_front"][1]["retref"] = "&" +defs["ImVector_ImDrawCmd_front"][1]["signature"] = "()" +defs["ImVector_ImDrawCmd_front"][1]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_front"][1]["templatedgen"] = true +defs["ImVector_ImDrawCmd_front"][2] = {} +defs["ImVector_ImDrawCmd_front"][2]["args"] = "(const ImVector_ImDrawCmd* self)" +defs["ImVector_ImDrawCmd_front"][2]["argsT"] = {} +defs["ImVector_ImDrawCmd_front"][2]["argsT"][1] = {} +defs["ImVector_ImDrawCmd_front"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawCmd_front"][2]["argsT"][1]["type"] = "const ImVector_ImDrawCmd*" +defs["ImVector_ImDrawCmd_front"][2]["call_args"] = "()" +defs["ImVector_ImDrawCmd_front"][2]["cimguiname"] = "ImVector_ImDrawCmd_front" +defs["ImVector_ImDrawCmd_front"][2]["defaults"] = {} +defs["ImVector_ImDrawCmd_front"][2]["funcname"] = "front" +defs["ImVector_ImDrawCmd_front"][2]["ov_cimguiname"] = "ImVector_ImDrawCmd_front_const" +defs["ImVector_ImDrawCmd_front"][2]["ret"] = "ImDrawCmd const *" +defs["ImVector_ImDrawCmd_front"][2]["retref"] = "&" +defs["ImVector_ImDrawCmd_front"][2]["signature"] = "()const" +defs["ImVector_ImDrawCmd_front"][2]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_front"][2]["templatedgen"] = true +defs["ImVector_ImDrawCmd_front"]["()"] = defs["ImVector_ImDrawCmd_front"][1] +defs["ImVector_ImDrawCmd_front"]["()const"] = defs["ImVector_ImDrawCmd_front"][2] +defs["ImVector_ImDrawCmd_index_from_ptr"] = {} +defs["ImVector_ImDrawCmd_index_from_ptr"][1] = {} +defs["ImVector_ImDrawCmd_index_from_ptr"][1]["args"] = "(const ImVector_ImDrawCmd* self,ImDrawCmd const * it)" +defs["ImVector_ImDrawCmd_index_from_ptr"][1]["argsT"] = {} +defs["ImVector_ImDrawCmd_index_from_ptr"][1]["argsT"][1] = {} +defs["ImVector_ImDrawCmd_index_from_ptr"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawCmd_index_from_ptr"][1]["argsT"][1]["type"] = "const ImVector_ImDrawCmd*" +defs["ImVector_ImDrawCmd_index_from_ptr"][1]["argsT"][2] = {} +defs["ImVector_ImDrawCmd_index_from_ptr"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImDrawCmd_index_from_ptr"][1]["argsT"][2]["type"] = "ImDrawCmd const *" +defs["ImVector_ImDrawCmd_index_from_ptr"][1]["call_args"] = "(it)" +defs["ImVector_ImDrawCmd_index_from_ptr"][1]["cimguiname"] = "ImVector_ImDrawCmd_index_from_ptr" +defs["ImVector_ImDrawCmd_index_from_ptr"][1]["defaults"] = {} +defs["ImVector_ImDrawCmd_index_from_ptr"][1]["funcname"] = "index_from_ptr" +defs["ImVector_ImDrawCmd_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_ImDrawCmd_index_from_ptr" +defs["ImVector_ImDrawCmd_index_from_ptr"][1]["ret"] = "int" +defs["ImVector_ImDrawCmd_index_from_ptr"][1]["signature"] = "(const ImDrawCmd*)const" +defs["ImVector_ImDrawCmd_index_from_ptr"][1]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_index_from_ptr"][1]["templatedgen"] = true +defs["ImVector_ImDrawCmd_index_from_ptr"]["(const ImDrawCmd*)const"] = defs["ImVector_ImDrawCmd_index_from_ptr"][1] +defs["ImVector_ImDrawCmd_insert"] = {} +defs["ImVector_ImDrawCmd_insert"][1] = {} +defs["ImVector_ImDrawCmd_insert"][1]["args"] = "(ImVector_ImDrawCmd* self,ImDrawCmd const * it,const ImDrawCmd v)" +defs["ImVector_ImDrawCmd_insert"][1]["argsT"] = {} +defs["ImVector_ImDrawCmd_insert"][1]["argsT"][1] = {} +defs["ImVector_ImDrawCmd_insert"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawCmd_insert"][1]["argsT"][1]["type"] = "ImVector_ImDrawCmd*" +defs["ImVector_ImDrawCmd_insert"][1]["argsT"][2] = {} +defs["ImVector_ImDrawCmd_insert"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImDrawCmd_insert"][1]["argsT"][2]["type"] = "ImDrawCmd const *" +defs["ImVector_ImDrawCmd_insert"][1]["argsT"][3] = {} +defs["ImVector_ImDrawCmd_insert"][1]["argsT"][3]["name"] = "v" +defs["ImVector_ImDrawCmd_insert"][1]["argsT"][3]["type"] = "const ImDrawCmd" +defs["ImVector_ImDrawCmd_insert"][1]["call_args"] = "(it,v)" +defs["ImVector_ImDrawCmd_insert"][1]["cimguiname"] = "ImVector_ImDrawCmd_insert" +defs["ImVector_ImDrawCmd_insert"][1]["defaults"] = {} +defs["ImVector_ImDrawCmd_insert"][1]["funcname"] = "insert" +defs["ImVector_ImDrawCmd_insert"][1]["ov_cimguiname"] = "ImVector_ImDrawCmd_insert" +defs["ImVector_ImDrawCmd_insert"][1]["ret"] = "ImDrawCmd*" +defs["ImVector_ImDrawCmd_insert"][1]["signature"] = "(const ImDrawCmd*,const ImDrawCmd)" +defs["ImVector_ImDrawCmd_insert"][1]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_insert"][1]["templatedgen"] = true +defs["ImVector_ImDrawCmd_insert"]["(const ImDrawCmd*,const ImDrawCmd)"] = defs["ImVector_ImDrawCmd_insert"][1] +defs["ImVector_ImDrawCmd_pop_back"] = {} +defs["ImVector_ImDrawCmd_pop_back"][1] = {} +defs["ImVector_ImDrawCmd_pop_back"][1]["args"] = "(ImVector_ImDrawCmd* self)" +defs["ImVector_ImDrawCmd_pop_back"][1]["argsT"] = {} +defs["ImVector_ImDrawCmd_pop_back"][1]["argsT"][1] = {} +defs["ImVector_ImDrawCmd_pop_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawCmd_pop_back"][1]["argsT"][1]["type"] = "ImVector_ImDrawCmd*" +defs["ImVector_ImDrawCmd_pop_back"][1]["call_args"] = "()" +defs["ImVector_ImDrawCmd_pop_back"][1]["cimguiname"] = "ImVector_ImDrawCmd_pop_back" +defs["ImVector_ImDrawCmd_pop_back"][1]["defaults"] = {} +defs["ImVector_ImDrawCmd_pop_back"][1]["funcname"] = "pop_back" +defs["ImVector_ImDrawCmd_pop_back"][1]["ov_cimguiname"] = "ImVector_ImDrawCmd_pop_back" +defs["ImVector_ImDrawCmd_pop_back"][1]["ret"] = "void" +defs["ImVector_ImDrawCmd_pop_back"][1]["signature"] = "()" +defs["ImVector_ImDrawCmd_pop_back"][1]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_pop_back"][1]["templatedgen"] = true +defs["ImVector_ImDrawCmd_pop_back"]["()"] = defs["ImVector_ImDrawCmd_pop_back"][1] +defs["ImVector_ImDrawCmd_push_back"] = {} +defs["ImVector_ImDrawCmd_push_back"][1] = {} +defs["ImVector_ImDrawCmd_push_back"][1]["args"] = "(ImVector_ImDrawCmd* self,const ImDrawCmd v)" +defs["ImVector_ImDrawCmd_push_back"][1]["argsT"] = {} +defs["ImVector_ImDrawCmd_push_back"][1]["argsT"][1] = {} +defs["ImVector_ImDrawCmd_push_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawCmd_push_back"][1]["argsT"][1]["type"] = "ImVector_ImDrawCmd*" +defs["ImVector_ImDrawCmd_push_back"][1]["argsT"][2] = {} +defs["ImVector_ImDrawCmd_push_back"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImDrawCmd_push_back"][1]["argsT"][2]["type"] = "const ImDrawCmd" +defs["ImVector_ImDrawCmd_push_back"][1]["call_args"] = "(v)" +defs["ImVector_ImDrawCmd_push_back"][1]["cimguiname"] = "ImVector_ImDrawCmd_push_back" +defs["ImVector_ImDrawCmd_push_back"][1]["defaults"] = {} +defs["ImVector_ImDrawCmd_push_back"][1]["funcname"] = "push_back" +defs["ImVector_ImDrawCmd_push_back"][1]["ov_cimguiname"] = "ImVector_ImDrawCmd_push_back" +defs["ImVector_ImDrawCmd_push_back"][1]["ret"] = "void" +defs["ImVector_ImDrawCmd_push_back"][1]["signature"] = "(const ImDrawCmd)" +defs["ImVector_ImDrawCmd_push_back"][1]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_push_back"][1]["templatedgen"] = true +defs["ImVector_ImDrawCmd_push_back"]["(const ImDrawCmd)"] = defs["ImVector_ImDrawCmd_push_back"][1] +defs["ImVector_ImDrawCmd_push_front"] = {} +defs["ImVector_ImDrawCmd_push_front"][1] = {} +defs["ImVector_ImDrawCmd_push_front"][1]["args"] = "(ImVector_ImDrawCmd* self,const ImDrawCmd v)" +defs["ImVector_ImDrawCmd_push_front"][1]["argsT"] = {} +defs["ImVector_ImDrawCmd_push_front"][1]["argsT"][1] = {} +defs["ImVector_ImDrawCmd_push_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawCmd_push_front"][1]["argsT"][1]["type"] = "ImVector_ImDrawCmd*" +defs["ImVector_ImDrawCmd_push_front"][1]["argsT"][2] = {} +defs["ImVector_ImDrawCmd_push_front"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImDrawCmd_push_front"][1]["argsT"][2]["type"] = "const ImDrawCmd" +defs["ImVector_ImDrawCmd_push_front"][1]["call_args"] = "(v)" +defs["ImVector_ImDrawCmd_push_front"][1]["cimguiname"] = "ImVector_ImDrawCmd_push_front" +defs["ImVector_ImDrawCmd_push_front"][1]["defaults"] = {} +defs["ImVector_ImDrawCmd_push_front"][1]["funcname"] = "push_front" +defs["ImVector_ImDrawCmd_push_front"][1]["ov_cimguiname"] = "ImVector_ImDrawCmd_push_front" +defs["ImVector_ImDrawCmd_push_front"][1]["ret"] = "void" +defs["ImVector_ImDrawCmd_push_front"][1]["signature"] = "(const ImDrawCmd)" +defs["ImVector_ImDrawCmd_push_front"][1]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_push_front"][1]["templatedgen"] = true +defs["ImVector_ImDrawCmd_push_front"]["(const ImDrawCmd)"] = defs["ImVector_ImDrawCmd_push_front"][1] +defs["ImVector_ImDrawCmd_reserve"] = {} +defs["ImVector_ImDrawCmd_reserve"][1] = {} +defs["ImVector_ImDrawCmd_reserve"][1]["args"] = "(ImVector_ImDrawCmd* self,int new_capacity)" +defs["ImVector_ImDrawCmd_reserve"][1]["argsT"] = {} +defs["ImVector_ImDrawCmd_reserve"][1]["argsT"][1] = {} +defs["ImVector_ImDrawCmd_reserve"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawCmd_reserve"][1]["argsT"][1]["type"] = "ImVector_ImDrawCmd*" +defs["ImVector_ImDrawCmd_reserve"][1]["argsT"][2] = {} +defs["ImVector_ImDrawCmd_reserve"][1]["argsT"][2]["name"] = "new_capacity" +defs["ImVector_ImDrawCmd_reserve"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImDrawCmd_reserve"][1]["call_args"] = "(new_capacity)" +defs["ImVector_ImDrawCmd_reserve"][1]["cimguiname"] = "ImVector_ImDrawCmd_reserve" +defs["ImVector_ImDrawCmd_reserve"][1]["defaults"] = {} +defs["ImVector_ImDrawCmd_reserve"][1]["funcname"] = "reserve" +defs["ImVector_ImDrawCmd_reserve"][1]["ov_cimguiname"] = "ImVector_ImDrawCmd_reserve" +defs["ImVector_ImDrawCmd_reserve"][1]["ret"] = "void" +defs["ImVector_ImDrawCmd_reserve"][1]["signature"] = "(int)" +defs["ImVector_ImDrawCmd_reserve"][1]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_reserve"][1]["templatedgen"] = true +defs["ImVector_ImDrawCmd_reserve"]["(int)"] = defs["ImVector_ImDrawCmd_reserve"][1] +defs["ImVector_ImDrawCmd_resize"] = {} +defs["ImVector_ImDrawCmd_resize"][1] = {} +defs["ImVector_ImDrawCmd_resize"][1]["args"] = "(ImVector_ImDrawCmd* self,int new_size)" +defs["ImVector_ImDrawCmd_resize"][1]["argsT"] = {} +defs["ImVector_ImDrawCmd_resize"][1]["argsT"][1] = {} +defs["ImVector_ImDrawCmd_resize"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawCmd_resize"][1]["argsT"][1]["type"] = "ImVector_ImDrawCmd*" +defs["ImVector_ImDrawCmd_resize"][1]["argsT"][2] = {} +defs["ImVector_ImDrawCmd_resize"][1]["argsT"][2]["name"] = "new_size" +defs["ImVector_ImDrawCmd_resize"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImDrawCmd_resize"][1]["call_args"] = "(new_size)" +defs["ImVector_ImDrawCmd_resize"][1]["cimguiname"] = "ImVector_ImDrawCmd_resize" +defs["ImVector_ImDrawCmd_resize"][1]["defaults"] = {} +defs["ImVector_ImDrawCmd_resize"][1]["funcname"] = "resize" +defs["ImVector_ImDrawCmd_resize"][1]["ov_cimguiname"] = "ImVector_ImDrawCmd_resize" +defs["ImVector_ImDrawCmd_resize"][1]["ret"] = "void" +defs["ImVector_ImDrawCmd_resize"][1]["signature"] = "(int)" +defs["ImVector_ImDrawCmd_resize"][1]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_resize"][1]["templatedgen"] = true +defs["ImVector_ImDrawCmd_resize"][2] = {} +defs["ImVector_ImDrawCmd_resize"][2]["args"] = "(ImVector_ImDrawCmd* self,int new_size,const ImDrawCmd v)" +defs["ImVector_ImDrawCmd_resize"][2]["argsT"] = {} +defs["ImVector_ImDrawCmd_resize"][2]["argsT"][1] = {} +defs["ImVector_ImDrawCmd_resize"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawCmd_resize"][2]["argsT"][1]["type"] = "ImVector_ImDrawCmd*" +defs["ImVector_ImDrawCmd_resize"][2]["argsT"][2] = {} +defs["ImVector_ImDrawCmd_resize"][2]["argsT"][2]["name"] = "new_size" +defs["ImVector_ImDrawCmd_resize"][2]["argsT"][2]["type"] = "int" +defs["ImVector_ImDrawCmd_resize"][2]["argsT"][3] = {} +defs["ImVector_ImDrawCmd_resize"][2]["argsT"][3]["name"] = "v" +defs["ImVector_ImDrawCmd_resize"][2]["argsT"][3]["type"] = "const ImDrawCmd" +defs["ImVector_ImDrawCmd_resize"][2]["call_args"] = "(new_size,v)" +defs["ImVector_ImDrawCmd_resize"][2]["cimguiname"] = "ImVector_ImDrawCmd_resize" +defs["ImVector_ImDrawCmd_resize"][2]["defaults"] = {} +defs["ImVector_ImDrawCmd_resize"][2]["funcname"] = "resize" +defs["ImVector_ImDrawCmd_resize"][2]["ov_cimguiname"] = "ImVector_ImDrawCmd_resizeT" +defs["ImVector_ImDrawCmd_resize"][2]["ret"] = "void" +defs["ImVector_ImDrawCmd_resize"][2]["signature"] = "(int,const ImDrawCmd)" +defs["ImVector_ImDrawCmd_resize"][2]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_resize"][2]["templatedgen"] = true +defs["ImVector_ImDrawCmd_resize"]["(int)"] = defs["ImVector_ImDrawCmd_resize"][1] +defs["ImVector_ImDrawCmd_resize"]["(int,const ImDrawCmd)"] = defs["ImVector_ImDrawCmd_resize"][2] +defs["ImVector_ImDrawCmd_size"] = {} +defs["ImVector_ImDrawCmd_size"][1] = {} +defs["ImVector_ImDrawCmd_size"][1]["args"] = "(const ImVector_ImDrawCmd* self)" +defs["ImVector_ImDrawCmd_size"][1]["argsT"] = {} +defs["ImVector_ImDrawCmd_size"][1]["argsT"][1] = {} +defs["ImVector_ImDrawCmd_size"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawCmd_size"][1]["argsT"][1]["type"] = "const ImVector_ImDrawCmd*" +defs["ImVector_ImDrawCmd_size"][1]["call_args"] = "()" +defs["ImVector_ImDrawCmd_size"][1]["cimguiname"] = "ImVector_ImDrawCmd_size" +defs["ImVector_ImDrawCmd_size"][1]["defaults"] = {} +defs["ImVector_ImDrawCmd_size"][1]["funcname"] = "size" +defs["ImVector_ImDrawCmd_size"][1]["ov_cimguiname"] = "ImVector_ImDrawCmd_size" +defs["ImVector_ImDrawCmd_size"][1]["ret"] = "int" +defs["ImVector_ImDrawCmd_size"][1]["signature"] = "()const" +defs["ImVector_ImDrawCmd_size"][1]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_size"][1]["templatedgen"] = true +defs["ImVector_ImDrawCmd_size"]["()const"] = defs["ImVector_ImDrawCmd_size"][1] +defs["ImVector_ImDrawCmd_size_in_bytes"] = {} +defs["ImVector_ImDrawCmd_size_in_bytes"][1] = {} +defs["ImVector_ImDrawCmd_size_in_bytes"][1]["args"] = "(const ImVector_ImDrawCmd* self)" +defs["ImVector_ImDrawCmd_size_in_bytes"][1]["argsT"] = {} +defs["ImVector_ImDrawCmd_size_in_bytes"][1]["argsT"][1] = {} +defs["ImVector_ImDrawCmd_size_in_bytes"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawCmd_size_in_bytes"][1]["argsT"][1]["type"] = "const ImVector_ImDrawCmd*" +defs["ImVector_ImDrawCmd_size_in_bytes"][1]["call_args"] = "()" +defs["ImVector_ImDrawCmd_size_in_bytes"][1]["cimguiname"] = "ImVector_ImDrawCmd_size_in_bytes" +defs["ImVector_ImDrawCmd_size_in_bytes"][1]["defaults"] = {} +defs["ImVector_ImDrawCmd_size_in_bytes"][1]["funcname"] = "size_in_bytes" +defs["ImVector_ImDrawCmd_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_ImDrawCmd_size_in_bytes" +defs["ImVector_ImDrawCmd_size_in_bytes"][1]["ret"] = "int" +defs["ImVector_ImDrawCmd_size_in_bytes"][1]["signature"] = "()const" +defs["ImVector_ImDrawCmd_size_in_bytes"][1]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_size_in_bytes"][1]["templatedgen"] = true +defs["ImVector_ImDrawCmd_size_in_bytes"]["()const"] = defs["ImVector_ImDrawCmd_size_in_bytes"][1] +defs["ImVector_ImDrawCmd_swap"] = {} +defs["ImVector_ImDrawCmd_swap"][1] = {} +defs["ImVector_ImDrawCmd_swap"][1]["args"] = "(ImVector_ImDrawCmd* self,ImVector_ImDrawCmd rhs)" +defs["ImVector_ImDrawCmd_swap"][1]["argsT"] = {} +defs["ImVector_ImDrawCmd_swap"][1]["argsT"][1] = {} +defs["ImVector_ImDrawCmd_swap"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawCmd_swap"][1]["argsT"][1]["type"] = "ImVector_ImDrawCmd*" +defs["ImVector_ImDrawCmd_swap"][1]["argsT"][2] = {} +defs["ImVector_ImDrawCmd_swap"][1]["argsT"][2]["name"] = "rhs" +defs["ImVector_ImDrawCmd_swap"][1]["argsT"][2]["type"] = "ImVector_ImDrawCmd&" +defs["ImVector_ImDrawCmd_swap"][1]["call_args"] = "(rhs)" +defs["ImVector_ImDrawCmd_swap"][1]["cimguiname"] = "ImVector_ImDrawCmd_swap" +defs["ImVector_ImDrawCmd_swap"][1]["defaults"] = {} +defs["ImVector_ImDrawCmd_swap"][1]["funcname"] = "swap" +defs["ImVector_ImDrawCmd_swap"][1]["ov_cimguiname"] = "ImVector_ImDrawCmd_swap" +defs["ImVector_ImDrawCmd_swap"][1]["ret"] = "void" +defs["ImVector_ImDrawCmd_swap"][1]["signature"] = "(ImVector)" +defs["ImVector_ImDrawCmd_swap"][1]["stname"] = "ImVector_ImDrawCmd" +defs["ImVector_ImDrawCmd_swap"][1]["templatedgen"] = true +defs["ImVector_ImDrawCmd_swap"]["(ImVector)"] = defs["ImVector_ImDrawCmd_swap"][1] +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"] = {} +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"][1] = {} +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"][1]["args"] = "()" +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"][1]["argsT"] = {} +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"][1]["call_args"] = "()" +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"][1]["cimguiname"] = "ImVector_ImDrawIdx_ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"][1]["constructor"] = true +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"][1]["defaults"] = {} +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"][1]["funcname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"][1]["ov_cimguiname"] = "ImVector_ImDrawIdx_ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"][1]["signature"] = "()" +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"][1]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"][1]["templatedgen"] = true +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"][2] = {} +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"][2]["args"] = "(const ImVector_ImDrawIdx src)" +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"][2]["argsT"] = {} +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"][2]["argsT"][1] = {} +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"][2]["argsT"][1]["name"] = "src" +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"][2]["argsT"][1]["type"] = "const ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"][2]["call_args"] = "(src)" +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"][2]["cimguiname"] = "ImVector_ImDrawIdx_ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"][2]["constructor"] = true +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"][2]["defaults"] = {} +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"][2]["funcname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"][2]["ov_cimguiname"] = "ImVector_ImDrawIdx_ImVector_ImDrawIdxVector" +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"][2]["signature"] = "(const ImVector)" +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"][2]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"][2]["templatedgen"] = true +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"]["()"] = defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"][1] +defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"]["(const ImVector)"] = defs["ImVector_ImDrawIdx_ImVector_ImDrawIdx"][2] +defs["ImVector_ImDrawIdx__grow_capacity"] = {} +defs["ImVector_ImDrawIdx__grow_capacity"][1] = {} +defs["ImVector_ImDrawIdx__grow_capacity"][1]["args"] = "(const ImVector_ImDrawIdx* self,int sz)" +defs["ImVector_ImDrawIdx__grow_capacity"][1]["argsT"] = {} +defs["ImVector_ImDrawIdx__grow_capacity"][1]["argsT"][1] = {} +defs["ImVector_ImDrawIdx__grow_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawIdx__grow_capacity"][1]["argsT"][1]["type"] = "const ImVector_ImDrawIdx*" +defs["ImVector_ImDrawIdx__grow_capacity"][1]["argsT"][2] = {} +defs["ImVector_ImDrawIdx__grow_capacity"][1]["argsT"][2]["name"] = "sz" +defs["ImVector_ImDrawIdx__grow_capacity"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImDrawIdx__grow_capacity"][1]["call_args"] = "(sz)" +defs["ImVector_ImDrawIdx__grow_capacity"][1]["cimguiname"] = "ImVector_ImDrawIdx__grow_capacity" +defs["ImVector_ImDrawIdx__grow_capacity"][1]["defaults"] = {} +defs["ImVector_ImDrawIdx__grow_capacity"][1]["funcname"] = "_grow_capacity" +defs["ImVector_ImDrawIdx__grow_capacity"][1]["ov_cimguiname"] = "ImVector_ImDrawIdx__grow_capacity" +defs["ImVector_ImDrawIdx__grow_capacity"][1]["ret"] = "int" +defs["ImVector_ImDrawIdx__grow_capacity"][1]["signature"] = "(int)const" +defs["ImVector_ImDrawIdx__grow_capacity"][1]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx__grow_capacity"][1]["templatedgen"] = true +defs["ImVector_ImDrawIdx__grow_capacity"]["(int)const"] = defs["ImVector_ImDrawIdx__grow_capacity"][1] +defs["ImVector_ImDrawIdx_back"] = {} +defs["ImVector_ImDrawIdx_back"][1] = {} +defs["ImVector_ImDrawIdx_back"][1]["args"] = "(ImVector_ImDrawIdx* self)" +defs["ImVector_ImDrawIdx_back"][1]["argsT"] = {} +defs["ImVector_ImDrawIdx_back"][1]["argsT"][1] = {} +defs["ImVector_ImDrawIdx_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawIdx_back"][1]["argsT"][1]["type"] = "ImVector_ImDrawIdx*" +defs["ImVector_ImDrawIdx_back"][1]["call_args"] = "()" +defs["ImVector_ImDrawIdx_back"][1]["cimguiname"] = "ImVector_ImDrawIdx_back" +defs["ImVector_ImDrawIdx_back"][1]["defaults"] = {} +defs["ImVector_ImDrawIdx_back"][1]["funcname"] = "back" +defs["ImVector_ImDrawIdx_back"][1]["ov_cimguiname"] = "ImVector_ImDrawIdx_back" +defs["ImVector_ImDrawIdx_back"][1]["ret"] = "ImDrawIdx*" +defs["ImVector_ImDrawIdx_back"][1]["retref"] = "&" +defs["ImVector_ImDrawIdx_back"][1]["signature"] = "()" +defs["ImVector_ImDrawIdx_back"][1]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_back"][1]["templatedgen"] = true +defs["ImVector_ImDrawIdx_back"][2] = {} +defs["ImVector_ImDrawIdx_back"][2]["args"] = "(const ImVector_ImDrawIdx* self)" +defs["ImVector_ImDrawIdx_back"][2]["argsT"] = {} +defs["ImVector_ImDrawIdx_back"][2]["argsT"][1] = {} +defs["ImVector_ImDrawIdx_back"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawIdx_back"][2]["argsT"][1]["type"] = "const ImVector_ImDrawIdx*" +defs["ImVector_ImDrawIdx_back"][2]["call_args"] = "()" +defs["ImVector_ImDrawIdx_back"][2]["cimguiname"] = "ImVector_ImDrawIdx_back" +defs["ImVector_ImDrawIdx_back"][2]["defaults"] = {} +defs["ImVector_ImDrawIdx_back"][2]["funcname"] = "back" +defs["ImVector_ImDrawIdx_back"][2]["ov_cimguiname"] = "ImVector_ImDrawIdx_back_const" +defs["ImVector_ImDrawIdx_back"][2]["ret"] = "ImDrawIdx const *" +defs["ImVector_ImDrawIdx_back"][2]["retref"] = "&" +defs["ImVector_ImDrawIdx_back"][2]["signature"] = "()const" +defs["ImVector_ImDrawIdx_back"][2]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_back"][2]["templatedgen"] = true +defs["ImVector_ImDrawIdx_back"]["()"] = defs["ImVector_ImDrawIdx_back"][1] +defs["ImVector_ImDrawIdx_back"]["()const"] = defs["ImVector_ImDrawIdx_back"][2] +defs["ImVector_ImDrawIdx_begin"] = {} +defs["ImVector_ImDrawIdx_begin"][1] = {} +defs["ImVector_ImDrawIdx_begin"][1]["args"] = "(ImVector_ImDrawIdx* self)" +defs["ImVector_ImDrawIdx_begin"][1]["argsT"] = {} +defs["ImVector_ImDrawIdx_begin"][1]["argsT"][1] = {} +defs["ImVector_ImDrawIdx_begin"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawIdx_begin"][1]["argsT"][1]["type"] = "ImVector_ImDrawIdx*" +defs["ImVector_ImDrawIdx_begin"][1]["call_args"] = "()" +defs["ImVector_ImDrawIdx_begin"][1]["cimguiname"] = "ImVector_ImDrawIdx_begin" +defs["ImVector_ImDrawIdx_begin"][1]["defaults"] = {} +defs["ImVector_ImDrawIdx_begin"][1]["funcname"] = "begin" +defs["ImVector_ImDrawIdx_begin"][1]["ov_cimguiname"] = "ImVector_ImDrawIdx_begin" +defs["ImVector_ImDrawIdx_begin"][1]["ret"] = "ImDrawIdx*" +defs["ImVector_ImDrawIdx_begin"][1]["signature"] = "()" +defs["ImVector_ImDrawIdx_begin"][1]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_begin"][1]["templatedgen"] = true +defs["ImVector_ImDrawIdx_begin"][2] = {} +defs["ImVector_ImDrawIdx_begin"][2]["args"] = "(const ImVector_ImDrawIdx* self)" +defs["ImVector_ImDrawIdx_begin"][2]["argsT"] = {} +defs["ImVector_ImDrawIdx_begin"][2]["argsT"][1] = {} +defs["ImVector_ImDrawIdx_begin"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawIdx_begin"][2]["argsT"][1]["type"] = "const ImVector_ImDrawIdx*" +defs["ImVector_ImDrawIdx_begin"][2]["call_args"] = "()" +defs["ImVector_ImDrawIdx_begin"][2]["cimguiname"] = "ImVector_ImDrawIdx_begin" +defs["ImVector_ImDrawIdx_begin"][2]["defaults"] = {} +defs["ImVector_ImDrawIdx_begin"][2]["funcname"] = "begin" +defs["ImVector_ImDrawIdx_begin"][2]["ov_cimguiname"] = "ImVector_ImDrawIdx_begin_const" +defs["ImVector_ImDrawIdx_begin"][2]["ret"] = "ImDrawIdx const *" +defs["ImVector_ImDrawIdx_begin"][2]["signature"] = "()const" +defs["ImVector_ImDrawIdx_begin"][2]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_begin"][2]["templatedgen"] = true +defs["ImVector_ImDrawIdx_begin"]["()"] = defs["ImVector_ImDrawIdx_begin"][1] +defs["ImVector_ImDrawIdx_begin"]["()const"] = defs["ImVector_ImDrawIdx_begin"][2] +defs["ImVector_ImDrawIdx_capacity"] = {} +defs["ImVector_ImDrawIdx_capacity"][1] = {} +defs["ImVector_ImDrawIdx_capacity"][1]["args"] = "(const ImVector_ImDrawIdx* self)" +defs["ImVector_ImDrawIdx_capacity"][1]["argsT"] = {} +defs["ImVector_ImDrawIdx_capacity"][1]["argsT"][1] = {} +defs["ImVector_ImDrawIdx_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawIdx_capacity"][1]["argsT"][1]["type"] = "const ImVector_ImDrawIdx*" +defs["ImVector_ImDrawIdx_capacity"][1]["call_args"] = "()" +defs["ImVector_ImDrawIdx_capacity"][1]["cimguiname"] = "ImVector_ImDrawIdx_capacity" +defs["ImVector_ImDrawIdx_capacity"][1]["defaults"] = {} +defs["ImVector_ImDrawIdx_capacity"][1]["funcname"] = "capacity" +defs["ImVector_ImDrawIdx_capacity"][1]["ov_cimguiname"] = "ImVector_ImDrawIdx_capacity" +defs["ImVector_ImDrawIdx_capacity"][1]["ret"] = "int" +defs["ImVector_ImDrawIdx_capacity"][1]["signature"] = "()const" +defs["ImVector_ImDrawIdx_capacity"][1]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_capacity"][1]["templatedgen"] = true +defs["ImVector_ImDrawIdx_capacity"]["()const"] = defs["ImVector_ImDrawIdx_capacity"][1] +defs["ImVector_ImDrawIdx_clear"] = {} +defs["ImVector_ImDrawIdx_clear"][1] = {} +defs["ImVector_ImDrawIdx_clear"][1]["args"] = "(ImVector_ImDrawIdx* self)" +defs["ImVector_ImDrawIdx_clear"][1]["argsT"] = {} +defs["ImVector_ImDrawIdx_clear"][1]["argsT"][1] = {} +defs["ImVector_ImDrawIdx_clear"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawIdx_clear"][1]["argsT"][1]["type"] = "ImVector_ImDrawIdx*" +defs["ImVector_ImDrawIdx_clear"][1]["call_args"] = "()" +defs["ImVector_ImDrawIdx_clear"][1]["cimguiname"] = "ImVector_ImDrawIdx_clear" +defs["ImVector_ImDrawIdx_clear"][1]["defaults"] = {} +defs["ImVector_ImDrawIdx_clear"][1]["funcname"] = "clear" +defs["ImVector_ImDrawIdx_clear"][1]["ov_cimguiname"] = "ImVector_ImDrawIdx_clear" +defs["ImVector_ImDrawIdx_clear"][1]["ret"] = "void" +defs["ImVector_ImDrawIdx_clear"][1]["signature"] = "()" +defs["ImVector_ImDrawIdx_clear"][1]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_clear"][1]["templatedgen"] = true +defs["ImVector_ImDrawIdx_clear"]["()"] = defs["ImVector_ImDrawIdx_clear"][1] +defs["ImVector_ImDrawIdx_contains"] = {} +defs["ImVector_ImDrawIdx_contains"][1] = {} +defs["ImVector_ImDrawIdx_contains"][1]["args"] = "(const ImVector_ImDrawIdx* self,const ImDrawIdx v)" +defs["ImVector_ImDrawIdx_contains"][1]["argsT"] = {} +defs["ImVector_ImDrawIdx_contains"][1]["argsT"][1] = {} +defs["ImVector_ImDrawIdx_contains"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawIdx_contains"][1]["argsT"][1]["type"] = "const ImVector_ImDrawIdx*" +defs["ImVector_ImDrawIdx_contains"][1]["argsT"][2] = {} +defs["ImVector_ImDrawIdx_contains"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImDrawIdx_contains"][1]["argsT"][2]["type"] = "const ImDrawIdx" +defs["ImVector_ImDrawIdx_contains"][1]["call_args"] = "(v)" +defs["ImVector_ImDrawIdx_contains"][1]["cimguiname"] = "ImVector_ImDrawIdx_contains" +defs["ImVector_ImDrawIdx_contains"][1]["defaults"] = {} +defs["ImVector_ImDrawIdx_contains"][1]["funcname"] = "contains" +defs["ImVector_ImDrawIdx_contains"][1]["ov_cimguiname"] = "ImVector_ImDrawIdx_contains" +defs["ImVector_ImDrawIdx_contains"][1]["ret"] = "bool" +defs["ImVector_ImDrawIdx_contains"][1]["signature"] = "(const ImDrawIdx)const" +defs["ImVector_ImDrawIdx_contains"][1]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_contains"][1]["templatedgen"] = true +defs["ImVector_ImDrawIdx_contains"]["(const ImDrawIdx)const"] = defs["ImVector_ImDrawIdx_contains"][1] +defs["ImVector_ImDrawIdx_destroy"] = {} +defs["ImVector_ImDrawIdx_destroy"][1] = {} +defs["ImVector_ImDrawIdx_destroy"][1]["args"] = "(ImVector_ImDrawIdx* self)" +defs["ImVector_ImDrawIdx_destroy"][1]["argsT"] = {} +defs["ImVector_ImDrawIdx_destroy"][1]["argsT"][1] = {} +defs["ImVector_ImDrawIdx_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawIdx_destroy"][1]["argsT"][1]["type"] = "ImVector_ImDrawIdx*" +defs["ImVector_ImDrawIdx_destroy"][1]["call_args"] = "(self)" +defs["ImVector_ImDrawIdx_destroy"][1]["cimguiname"] = "ImVector_ImDrawIdx_destroy" +defs["ImVector_ImDrawIdx_destroy"][1]["defaults"] = {} +defs["ImVector_ImDrawIdx_destroy"][1]["destructor"] = true +defs["ImVector_ImDrawIdx_destroy"][1]["ov_cimguiname"] = "ImVector_ImDrawIdx_destroy" +defs["ImVector_ImDrawIdx_destroy"][1]["ret"] = "void" +defs["ImVector_ImDrawIdx_destroy"][1]["signature"] = "(ImVector_ImDrawIdx*)" +defs["ImVector_ImDrawIdx_destroy"][1]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_destroy"]["(ImVector_ImDrawIdx*)"] = defs["ImVector_ImDrawIdx_destroy"][1] +defs["ImVector_ImDrawIdx_empty"] = {} +defs["ImVector_ImDrawIdx_empty"][1] = {} +defs["ImVector_ImDrawIdx_empty"][1]["args"] = "(const ImVector_ImDrawIdx* self)" +defs["ImVector_ImDrawIdx_empty"][1]["argsT"] = {} +defs["ImVector_ImDrawIdx_empty"][1]["argsT"][1] = {} +defs["ImVector_ImDrawIdx_empty"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawIdx_empty"][1]["argsT"][1]["type"] = "const ImVector_ImDrawIdx*" +defs["ImVector_ImDrawIdx_empty"][1]["call_args"] = "()" +defs["ImVector_ImDrawIdx_empty"][1]["cimguiname"] = "ImVector_ImDrawIdx_empty" +defs["ImVector_ImDrawIdx_empty"][1]["defaults"] = {} +defs["ImVector_ImDrawIdx_empty"][1]["funcname"] = "empty" +defs["ImVector_ImDrawIdx_empty"][1]["ov_cimguiname"] = "ImVector_ImDrawIdx_empty" +defs["ImVector_ImDrawIdx_empty"][1]["ret"] = "bool" +defs["ImVector_ImDrawIdx_empty"][1]["signature"] = "()const" +defs["ImVector_ImDrawIdx_empty"][1]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_empty"][1]["templatedgen"] = true +defs["ImVector_ImDrawIdx_empty"]["()const"] = defs["ImVector_ImDrawIdx_empty"][1] +defs["ImVector_ImDrawIdx_end"] = {} +defs["ImVector_ImDrawIdx_end"][1] = {} +defs["ImVector_ImDrawIdx_end"][1]["args"] = "(ImVector_ImDrawIdx* self)" +defs["ImVector_ImDrawIdx_end"][1]["argsT"] = {} +defs["ImVector_ImDrawIdx_end"][1]["argsT"][1] = {} +defs["ImVector_ImDrawIdx_end"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawIdx_end"][1]["argsT"][1]["type"] = "ImVector_ImDrawIdx*" +defs["ImVector_ImDrawIdx_end"][1]["call_args"] = "()" +defs["ImVector_ImDrawIdx_end"][1]["cimguiname"] = "ImVector_ImDrawIdx_end" +defs["ImVector_ImDrawIdx_end"][1]["defaults"] = {} +defs["ImVector_ImDrawIdx_end"][1]["funcname"] = "end" +defs["ImVector_ImDrawIdx_end"][1]["ov_cimguiname"] = "ImVector_ImDrawIdx_end" +defs["ImVector_ImDrawIdx_end"][1]["ret"] = "ImDrawIdx*" +defs["ImVector_ImDrawIdx_end"][1]["signature"] = "()" +defs["ImVector_ImDrawIdx_end"][1]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_end"][1]["templatedgen"] = true +defs["ImVector_ImDrawIdx_end"][2] = {} +defs["ImVector_ImDrawIdx_end"][2]["args"] = "(const ImVector_ImDrawIdx* self)" +defs["ImVector_ImDrawIdx_end"][2]["argsT"] = {} +defs["ImVector_ImDrawIdx_end"][2]["argsT"][1] = {} +defs["ImVector_ImDrawIdx_end"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawIdx_end"][2]["argsT"][1]["type"] = "const ImVector_ImDrawIdx*" +defs["ImVector_ImDrawIdx_end"][2]["call_args"] = "()" +defs["ImVector_ImDrawIdx_end"][2]["cimguiname"] = "ImVector_ImDrawIdx_end" +defs["ImVector_ImDrawIdx_end"][2]["defaults"] = {} +defs["ImVector_ImDrawIdx_end"][2]["funcname"] = "end" +defs["ImVector_ImDrawIdx_end"][2]["ov_cimguiname"] = "ImVector_ImDrawIdx_end_const" +defs["ImVector_ImDrawIdx_end"][2]["ret"] = "ImDrawIdx const *" +defs["ImVector_ImDrawIdx_end"][2]["signature"] = "()const" +defs["ImVector_ImDrawIdx_end"][2]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_end"][2]["templatedgen"] = true +defs["ImVector_ImDrawIdx_end"]["()"] = defs["ImVector_ImDrawIdx_end"][1] +defs["ImVector_ImDrawIdx_end"]["()const"] = defs["ImVector_ImDrawIdx_end"][2] +defs["ImVector_ImDrawIdx_erase"] = {} +defs["ImVector_ImDrawIdx_erase"][1] = {} +defs["ImVector_ImDrawIdx_erase"][1]["args"] = "(ImVector_ImDrawIdx* self,ImDrawIdx const * it)" +defs["ImVector_ImDrawIdx_erase"][1]["argsT"] = {} +defs["ImVector_ImDrawIdx_erase"][1]["argsT"][1] = {} +defs["ImVector_ImDrawIdx_erase"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawIdx_erase"][1]["argsT"][1]["type"] = "ImVector_ImDrawIdx*" +defs["ImVector_ImDrawIdx_erase"][1]["argsT"][2] = {} +defs["ImVector_ImDrawIdx_erase"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImDrawIdx_erase"][1]["argsT"][2]["type"] = "ImDrawIdx const *" +defs["ImVector_ImDrawIdx_erase"][1]["call_args"] = "(it)" +defs["ImVector_ImDrawIdx_erase"][1]["cimguiname"] = "ImVector_ImDrawIdx_erase" +defs["ImVector_ImDrawIdx_erase"][1]["defaults"] = {} +defs["ImVector_ImDrawIdx_erase"][1]["funcname"] = "erase" +defs["ImVector_ImDrawIdx_erase"][1]["ov_cimguiname"] = "ImVector_ImDrawIdx_erase" +defs["ImVector_ImDrawIdx_erase"][1]["ret"] = "ImDrawIdx*" +defs["ImVector_ImDrawIdx_erase"][1]["signature"] = "(const ImDrawIdx*)" +defs["ImVector_ImDrawIdx_erase"][1]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_erase"][1]["templatedgen"] = true +defs["ImVector_ImDrawIdx_erase"][2] = {} +defs["ImVector_ImDrawIdx_erase"][2]["args"] = "(ImVector_ImDrawIdx* self,ImDrawIdx const * it,ImDrawIdx const * it_last)" +defs["ImVector_ImDrawIdx_erase"][2]["argsT"] = {} +defs["ImVector_ImDrawIdx_erase"][2]["argsT"][1] = {} +defs["ImVector_ImDrawIdx_erase"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawIdx_erase"][2]["argsT"][1]["type"] = "ImVector_ImDrawIdx*" +defs["ImVector_ImDrawIdx_erase"][2]["argsT"][2] = {} +defs["ImVector_ImDrawIdx_erase"][2]["argsT"][2]["name"] = "it" +defs["ImVector_ImDrawIdx_erase"][2]["argsT"][2]["type"] = "ImDrawIdx const *" +defs["ImVector_ImDrawIdx_erase"][2]["argsT"][3] = {} +defs["ImVector_ImDrawIdx_erase"][2]["argsT"][3]["name"] = "it_last" +defs["ImVector_ImDrawIdx_erase"][2]["argsT"][3]["type"] = "ImDrawIdx const *" +defs["ImVector_ImDrawIdx_erase"][2]["call_args"] = "(it,it_last)" +defs["ImVector_ImDrawIdx_erase"][2]["cimguiname"] = "ImVector_ImDrawIdx_erase" +defs["ImVector_ImDrawIdx_erase"][2]["defaults"] = {} +defs["ImVector_ImDrawIdx_erase"][2]["funcname"] = "erase" +defs["ImVector_ImDrawIdx_erase"][2]["ov_cimguiname"] = "ImVector_ImDrawIdx_eraseTPtr" +defs["ImVector_ImDrawIdx_erase"][2]["ret"] = "ImDrawIdx*" +defs["ImVector_ImDrawIdx_erase"][2]["signature"] = "(const ImDrawIdx*,const ImDrawIdx*)" +defs["ImVector_ImDrawIdx_erase"][2]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_erase"][2]["templatedgen"] = true +defs["ImVector_ImDrawIdx_erase"]["(const ImDrawIdx*)"] = defs["ImVector_ImDrawIdx_erase"][1] +defs["ImVector_ImDrawIdx_erase"]["(const ImDrawIdx*,const ImDrawIdx*)"] = defs["ImVector_ImDrawIdx_erase"][2] +defs["ImVector_ImDrawIdx_erase_unsorted"] = {} +defs["ImVector_ImDrawIdx_erase_unsorted"][1] = {} +defs["ImVector_ImDrawIdx_erase_unsorted"][1]["args"] = "(ImVector_ImDrawIdx* self,ImDrawIdx const * it)" +defs["ImVector_ImDrawIdx_erase_unsorted"][1]["argsT"] = {} +defs["ImVector_ImDrawIdx_erase_unsorted"][1]["argsT"][1] = {} +defs["ImVector_ImDrawIdx_erase_unsorted"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawIdx_erase_unsorted"][1]["argsT"][1]["type"] = "ImVector_ImDrawIdx*" +defs["ImVector_ImDrawIdx_erase_unsorted"][1]["argsT"][2] = {} +defs["ImVector_ImDrawIdx_erase_unsorted"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImDrawIdx_erase_unsorted"][1]["argsT"][2]["type"] = "ImDrawIdx const *" +defs["ImVector_ImDrawIdx_erase_unsorted"][1]["call_args"] = "(it)" +defs["ImVector_ImDrawIdx_erase_unsorted"][1]["cimguiname"] = "ImVector_ImDrawIdx_erase_unsorted" +defs["ImVector_ImDrawIdx_erase_unsorted"][1]["defaults"] = {} +defs["ImVector_ImDrawIdx_erase_unsorted"][1]["funcname"] = "erase_unsorted" +defs["ImVector_ImDrawIdx_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_ImDrawIdx_erase_unsorted" +defs["ImVector_ImDrawIdx_erase_unsorted"][1]["ret"] = "ImDrawIdx*" +defs["ImVector_ImDrawIdx_erase_unsorted"][1]["signature"] = "(const ImDrawIdx*)" +defs["ImVector_ImDrawIdx_erase_unsorted"][1]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_erase_unsorted"][1]["templatedgen"] = true +defs["ImVector_ImDrawIdx_erase_unsorted"]["(const ImDrawIdx*)"] = defs["ImVector_ImDrawIdx_erase_unsorted"][1] +defs["ImVector_ImDrawIdx_front"] = {} +defs["ImVector_ImDrawIdx_front"][1] = {} +defs["ImVector_ImDrawIdx_front"][1]["args"] = "(ImVector_ImDrawIdx* self)" +defs["ImVector_ImDrawIdx_front"][1]["argsT"] = {} +defs["ImVector_ImDrawIdx_front"][1]["argsT"][1] = {} +defs["ImVector_ImDrawIdx_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawIdx_front"][1]["argsT"][1]["type"] = "ImVector_ImDrawIdx*" +defs["ImVector_ImDrawIdx_front"][1]["call_args"] = "()" +defs["ImVector_ImDrawIdx_front"][1]["cimguiname"] = "ImVector_ImDrawIdx_front" +defs["ImVector_ImDrawIdx_front"][1]["defaults"] = {} +defs["ImVector_ImDrawIdx_front"][1]["funcname"] = "front" +defs["ImVector_ImDrawIdx_front"][1]["ov_cimguiname"] = "ImVector_ImDrawIdx_front" +defs["ImVector_ImDrawIdx_front"][1]["ret"] = "ImDrawIdx*" +defs["ImVector_ImDrawIdx_front"][1]["retref"] = "&" +defs["ImVector_ImDrawIdx_front"][1]["signature"] = "()" +defs["ImVector_ImDrawIdx_front"][1]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_front"][1]["templatedgen"] = true +defs["ImVector_ImDrawIdx_front"][2] = {} +defs["ImVector_ImDrawIdx_front"][2]["args"] = "(const ImVector_ImDrawIdx* self)" +defs["ImVector_ImDrawIdx_front"][2]["argsT"] = {} +defs["ImVector_ImDrawIdx_front"][2]["argsT"][1] = {} +defs["ImVector_ImDrawIdx_front"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawIdx_front"][2]["argsT"][1]["type"] = "const ImVector_ImDrawIdx*" +defs["ImVector_ImDrawIdx_front"][2]["call_args"] = "()" +defs["ImVector_ImDrawIdx_front"][2]["cimguiname"] = "ImVector_ImDrawIdx_front" +defs["ImVector_ImDrawIdx_front"][2]["defaults"] = {} +defs["ImVector_ImDrawIdx_front"][2]["funcname"] = "front" +defs["ImVector_ImDrawIdx_front"][2]["ov_cimguiname"] = "ImVector_ImDrawIdx_front_const" +defs["ImVector_ImDrawIdx_front"][2]["ret"] = "ImDrawIdx const *" +defs["ImVector_ImDrawIdx_front"][2]["retref"] = "&" +defs["ImVector_ImDrawIdx_front"][2]["signature"] = "()const" +defs["ImVector_ImDrawIdx_front"][2]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_front"][2]["templatedgen"] = true +defs["ImVector_ImDrawIdx_front"]["()"] = defs["ImVector_ImDrawIdx_front"][1] +defs["ImVector_ImDrawIdx_front"]["()const"] = defs["ImVector_ImDrawIdx_front"][2] +defs["ImVector_ImDrawIdx_index_from_ptr"] = {} +defs["ImVector_ImDrawIdx_index_from_ptr"][1] = {} +defs["ImVector_ImDrawIdx_index_from_ptr"][1]["args"] = "(const ImVector_ImDrawIdx* self,ImDrawIdx const * it)" +defs["ImVector_ImDrawIdx_index_from_ptr"][1]["argsT"] = {} +defs["ImVector_ImDrawIdx_index_from_ptr"][1]["argsT"][1] = {} +defs["ImVector_ImDrawIdx_index_from_ptr"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawIdx_index_from_ptr"][1]["argsT"][1]["type"] = "const ImVector_ImDrawIdx*" +defs["ImVector_ImDrawIdx_index_from_ptr"][1]["argsT"][2] = {} +defs["ImVector_ImDrawIdx_index_from_ptr"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImDrawIdx_index_from_ptr"][1]["argsT"][2]["type"] = "ImDrawIdx const *" +defs["ImVector_ImDrawIdx_index_from_ptr"][1]["call_args"] = "(it)" +defs["ImVector_ImDrawIdx_index_from_ptr"][1]["cimguiname"] = "ImVector_ImDrawIdx_index_from_ptr" +defs["ImVector_ImDrawIdx_index_from_ptr"][1]["defaults"] = {} +defs["ImVector_ImDrawIdx_index_from_ptr"][1]["funcname"] = "index_from_ptr" +defs["ImVector_ImDrawIdx_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_ImDrawIdx_index_from_ptr" +defs["ImVector_ImDrawIdx_index_from_ptr"][1]["ret"] = "int" +defs["ImVector_ImDrawIdx_index_from_ptr"][1]["signature"] = "(const ImDrawIdx*)const" +defs["ImVector_ImDrawIdx_index_from_ptr"][1]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_index_from_ptr"][1]["templatedgen"] = true +defs["ImVector_ImDrawIdx_index_from_ptr"]["(const ImDrawIdx*)const"] = defs["ImVector_ImDrawIdx_index_from_ptr"][1] +defs["ImVector_ImDrawIdx_insert"] = {} +defs["ImVector_ImDrawIdx_insert"][1] = {} +defs["ImVector_ImDrawIdx_insert"][1]["args"] = "(ImVector_ImDrawIdx* self,ImDrawIdx const * it,const ImDrawIdx v)" +defs["ImVector_ImDrawIdx_insert"][1]["argsT"] = {} +defs["ImVector_ImDrawIdx_insert"][1]["argsT"][1] = {} +defs["ImVector_ImDrawIdx_insert"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawIdx_insert"][1]["argsT"][1]["type"] = "ImVector_ImDrawIdx*" +defs["ImVector_ImDrawIdx_insert"][1]["argsT"][2] = {} +defs["ImVector_ImDrawIdx_insert"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImDrawIdx_insert"][1]["argsT"][2]["type"] = "ImDrawIdx const *" +defs["ImVector_ImDrawIdx_insert"][1]["argsT"][3] = {} +defs["ImVector_ImDrawIdx_insert"][1]["argsT"][3]["name"] = "v" +defs["ImVector_ImDrawIdx_insert"][1]["argsT"][3]["type"] = "const ImDrawIdx" +defs["ImVector_ImDrawIdx_insert"][1]["call_args"] = "(it,v)" +defs["ImVector_ImDrawIdx_insert"][1]["cimguiname"] = "ImVector_ImDrawIdx_insert" +defs["ImVector_ImDrawIdx_insert"][1]["defaults"] = {} +defs["ImVector_ImDrawIdx_insert"][1]["funcname"] = "insert" +defs["ImVector_ImDrawIdx_insert"][1]["ov_cimguiname"] = "ImVector_ImDrawIdx_insert" +defs["ImVector_ImDrawIdx_insert"][1]["ret"] = "ImDrawIdx*" +defs["ImVector_ImDrawIdx_insert"][1]["signature"] = "(const ImDrawIdx*,const ImDrawIdx)" +defs["ImVector_ImDrawIdx_insert"][1]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_insert"][1]["templatedgen"] = true +defs["ImVector_ImDrawIdx_insert"]["(const ImDrawIdx*,const ImDrawIdx)"] = defs["ImVector_ImDrawIdx_insert"][1] +defs["ImVector_ImDrawIdx_pop_back"] = {} +defs["ImVector_ImDrawIdx_pop_back"][1] = {} +defs["ImVector_ImDrawIdx_pop_back"][1]["args"] = "(ImVector_ImDrawIdx* self)" +defs["ImVector_ImDrawIdx_pop_back"][1]["argsT"] = {} +defs["ImVector_ImDrawIdx_pop_back"][1]["argsT"][1] = {} +defs["ImVector_ImDrawIdx_pop_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawIdx_pop_back"][1]["argsT"][1]["type"] = "ImVector_ImDrawIdx*" +defs["ImVector_ImDrawIdx_pop_back"][1]["call_args"] = "()" +defs["ImVector_ImDrawIdx_pop_back"][1]["cimguiname"] = "ImVector_ImDrawIdx_pop_back" +defs["ImVector_ImDrawIdx_pop_back"][1]["defaults"] = {} +defs["ImVector_ImDrawIdx_pop_back"][1]["funcname"] = "pop_back" +defs["ImVector_ImDrawIdx_pop_back"][1]["ov_cimguiname"] = "ImVector_ImDrawIdx_pop_back" +defs["ImVector_ImDrawIdx_pop_back"][1]["ret"] = "void" +defs["ImVector_ImDrawIdx_pop_back"][1]["signature"] = "()" +defs["ImVector_ImDrawIdx_pop_back"][1]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_pop_back"][1]["templatedgen"] = true +defs["ImVector_ImDrawIdx_pop_back"]["()"] = defs["ImVector_ImDrawIdx_pop_back"][1] +defs["ImVector_ImDrawIdx_push_back"] = {} +defs["ImVector_ImDrawIdx_push_back"][1] = {} +defs["ImVector_ImDrawIdx_push_back"][1]["args"] = "(ImVector_ImDrawIdx* self,const ImDrawIdx v)" +defs["ImVector_ImDrawIdx_push_back"][1]["argsT"] = {} +defs["ImVector_ImDrawIdx_push_back"][1]["argsT"][1] = {} +defs["ImVector_ImDrawIdx_push_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawIdx_push_back"][1]["argsT"][1]["type"] = "ImVector_ImDrawIdx*" +defs["ImVector_ImDrawIdx_push_back"][1]["argsT"][2] = {} +defs["ImVector_ImDrawIdx_push_back"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImDrawIdx_push_back"][1]["argsT"][2]["type"] = "const ImDrawIdx" +defs["ImVector_ImDrawIdx_push_back"][1]["call_args"] = "(v)" +defs["ImVector_ImDrawIdx_push_back"][1]["cimguiname"] = "ImVector_ImDrawIdx_push_back" +defs["ImVector_ImDrawIdx_push_back"][1]["defaults"] = {} +defs["ImVector_ImDrawIdx_push_back"][1]["funcname"] = "push_back" +defs["ImVector_ImDrawIdx_push_back"][1]["ov_cimguiname"] = "ImVector_ImDrawIdx_push_back" +defs["ImVector_ImDrawIdx_push_back"][1]["ret"] = "void" +defs["ImVector_ImDrawIdx_push_back"][1]["signature"] = "(const ImDrawIdx)" +defs["ImVector_ImDrawIdx_push_back"][1]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_push_back"][1]["templatedgen"] = true +defs["ImVector_ImDrawIdx_push_back"]["(const ImDrawIdx)"] = defs["ImVector_ImDrawIdx_push_back"][1] +defs["ImVector_ImDrawIdx_push_front"] = {} +defs["ImVector_ImDrawIdx_push_front"][1] = {} +defs["ImVector_ImDrawIdx_push_front"][1]["args"] = "(ImVector_ImDrawIdx* self,const ImDrawIdx v)" +defs["ImVector_ImDrawIdx_push_front"][1]["argsT"] = {} +defs["ImVector_ImDrawIdx_push_front"][1]["argsT"][1] = {} +defs["ImVector_ImDrawIdx_push_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawIdx_push_front"][1]["argsT"][1]["type"] = "ImVector_ImDrawIdx*" +defs["ImVector_ImDrawIdx_push_front"][1]["argsT"][2] = {} +defs["ImVector_ImDrawIdx_push_front"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImDrawIdx_push_front"][1]["argsT"][2]["type"] = "const ImDrawIdx" +defs["ImVector_ImDrawIdx_push_front"][1]["call_args"] = "(v)" +defs["ImVector_ImDrawIdx_push_front"][1]["cimguiname"] = "ImVector_ImDrawIdx_push_front" +defs["ImVector_ImDrawIdx_push_front"][1]["defaults"] = {} +defs["ImVector_ImDrawIdx_push_front"][1]["funcname"] = "push_front" +defs["ImVector_ImDrawIdx_push_front"][1]["ov_cimguiname"] = "ImVector_ImDrawIdx_push_front" +defs["ImVector_ImDrawIdx_push_front"][1]["ret"] = "void" +defs["ImVector_ImDrawIdx_push_front"][1]["signature"] = "(const ImDrawIdx)" +defs["ImVector_ImDrawIdx_push_front"][1]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_push_front"][1]["templatedgen"] = true +defs["ImVector_ImDrawIdx_push_front"]["(const ImDrawIdx)"] = defs["ImVector_ImDrawIdx_push_front"][1] +defs["ImVector_ImDrawIdx_reserve"] = {} +defs["ImVector_ImDrawIdx_reserve"][1] = {} +defs["ImVector_ImDrawIdx_reserve"][1]["args"] = "(ImVector_ImDrawIdx* self,int new_capacity)" +defs["ImVector_ImDrawIdx_reserve"][1]["argsT"] = {} +defs["ImVector_ImDrawIdx_reserve"][1]["argsT"][1] = {} +defs["ImVector_ImDrawIdx_reserve"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawIdx_reserve"][1]["argsT"][1]["type"] = "ImVector_ImDrawIdx*" +defs["ImVector_ImDrawIdx_reserve"][1]["argsT"][2] = {} +defs["ImVector_ImDrawIdx_reserve"][1]["argsT"][2]["name"] = "new_capacity" +defs["ImVector_ImDrawIdx_reserve"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImDrawIdx_reserve"][1]["call_args"] = "(new_capacity)" +defs["ImVector_ImDrawIdx_reserve"][1]["cimguiname"] = "ImVector_ImDrawIdx_reserve" +defs["ImVector_ImDrawIdx_reserve"][1]["defaults"] = {} +defs["ImVector_ImDrawIdx_reserve"][1]["funcname"] = "reserve" +defs["ImVector_ImDrawIdx_reserve"][1]["ov_cimguiname"] = "ImVector_ImDrawIdx_reserve" +defs["ImVector_ImDrawIdx_reserve"][1]["ret"] = "void" +defs["ImVector_ImDrawIdx_reserve"][1]["signature"] = "(int)" +defs["ImVector_ImDrawIdx_reserve"][1]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_reserve"][1]["templatedgen"] = true +defs["ImVector_ImDrawIdx_reserve"]["(int)"] = defs["ImVector_ImDrawIdx_reserve"][1] +defs["ImVector_ImDrawIdx_resize"] = {} +defs["ImVector_ImDrawIdx_resize"][1] = {} +defs["ImVector_ImDrawIdx_resize"][1]["args"] = "(ImVector_ImDrawIdx* self,int new_size)" +defs["ImVector_ImDrawIdx_resize"][1]["argsT"] = {} +defs["ImVector_ImDrawIdx_resize"][1]["argsT"][1] = {} +defs["ImVector_ImDrawIdx_resize"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawIdx_resize"][1]["argsT"][1]["type"] = "ImVector_ImDrawIdx*" +defs["ImVector_ImDrawIdx_resize"][1]["argsT"][2] = {} +defs["ImVector_ImDrawIdx_resize"][1]["argsT"][2]["name"] = "new_size" +defs["ImVector_ImDrawIdx_resize"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImDrawIdx_resize"][1]["call_args"] = "(new_size)" +defs["ImVector_ImDrawIdx_resize"][1]["cimguiname"] = "ImVector_ImDrawIdx_resize" +defs["ImVector_ImDrawIdx_resize"][1]["defaults"] = {} +defs["ImVector_ImDrawIdx_resize"][1]["funcname"] = "resize" +defs["ImVector_ImDrawIdx_resize"][1]["ov_cimguiname"] = "ImVector_ImDrawIdx_resize" +defs["ImVector_ImDrawIdx_resize"][1]["ret"] = "void" +defs["ImVector_ImDrawIdx_resize"][1]["signature"] = "(int)" +defs["ImVector_ImDrawIdx_resize"][1]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_resize"][1]["templatedgen"] = true +defs["ImVector_ImDrawIdx_resize"][2] = {} +defs["ImVector_ImDrawIdx_resize"][2]["args"] = "(ImVector_ImDrawIdx* self,int new_size,const ImDrawIdx v)" +defs["ImVector_ImDrawIdx_resize"][2]["argsT"] = {} +defs["ImVector_ImDrawIdx_resize"][2]["argsT"][1] = {} +defs["ImVector_ImDrawIdx_resize"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawIdx_resize"][2]["argsT"][1]["type"] = "ImVector_ImDrawIdx*" +defs["ImVector_ImDrawIdx_resize"][2]["argsT"][2] = {} +defs["ImVector_ImDrawIdx_resize"][2]["argsT"][2]["name"] = "new_size" +defs["ImVector_ImDrawIdx_resize"][2]["argsT"][2]["type"] = "int" +defs["ImVector_ImDrawIdx_resize"][2]["argsT"][3] = {} +defs["ImVector_ImDrawIdx_resize"][2]["argsT"][3]["name"] = "v" +defs["ImVector_ImDrawIdx_resize"][2]["argsT"][3]["type"] = "const ImDrawIdx" +defs["ImVector_ImDrawIdx_resize"][2]["call_args"] = "(new_size,v)" +defs["ImVector_ImDrawIdx_resize"][2]["cimguiname"] = "ImVector_ImDrawIdx_resize" +defs["ImVector_ImDrawIdx_resize"][2]["defaults"] = {} +defs["ImVector_ImDrawIdx_resize"][2]["funcname"] = "resize" +defs["ImVector_ImDrawIdx_resize"][2]["ov_cimguiname"] = "ImVector_ImDrawIdx_resizeT" +defs["ImVector_ImDrawIdx_resize"][2]["ret"] = "void" +defs["ImVector_ImDrawIdx_resize"][2]["signature"] = "(int,const ImDrawIdx)" +defs["ImVector_ImDrawIdx_resize"][2]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_resize"][2]["templatedgen"] = true +defs["ImVector_ImDrawIdx_resize"]["(int)"] = defs["ImVector_ImDrawIdx_resize"][1] +defs["ImVector_ImDrawIdx_resize"]["(int,const ImDrawIdx)"] = defs["ImVector_ImDrawIdx_resize"][2] +defs["ImVector_ImDrawIdx_size"] = {} +defs["ImVector_ImDrawIdx_size"][1] = {} +defs["ImVector_ImDrawIdx_size"][1]["args"] = "(const ImVector_ImDrawIdx* self)" +defs["ImVector_ImDrawIdx_size"][1]["argsT"] = {} +defs["ImVector_ImDrawIdx_size"][1]["argsT"][1] = {} +defs["ImVector_ImDrawIdx_size"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawIdx_size"][1]["argsT"][1]["type"] = "const ImVector_ImDrawIdx*" +defs["ImVector_ImDrawIdx_size"][1]["call_args"] = "()" +defs["ImVector_ImDrawIdx_size"][1]["cimguiname"] = "ImVector_ImDrawIdx_size" +defs["ImVector_ImDrawIdx_size"][1]["defaults"] = {} +defs["ImVector_ImDrawIdx_size"][1]["funcname"] = "size" +defs["ImVector_ImDrawIdx_size"][1]["ov_cimguiname"] = "ImVector_ImDrawIdx_size" +defs["ImVector_ImDrawIdx_size"][1]["ret"] = "int" +defs["ImVector_ImDrawIdx_size"][1]["signature"] = "()const" +defs["ImVector_ImDrawIdx_size"][1]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_size"][1]["templatedgen"] = true +defs["ImVector_ImDrawIdx_size"]["()const"] = defs["ImVector_ImDrawIdx_size"][1] +defs["ImVector_ImDrawIdx_size_in_bytes"] = {} +defs["ImVector_ImDrawIdx_size_in_bytes"][1] = {} +defs["ImVector_ImDrawIdx_size_in_bytes"][1]["args"] = "(const ImVector_ImDrawIdx* self)" +defs["ImVector_ImDrawIdx_size_in_bytes"][1]["argsT"] = {} +defs["ImVector_ImDrawIdx_size_in_bytes"][1]["argsT"][1] = {} +defs["ImVector_ImDrawIdx_size_in_bytes"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawIdx_size_in_bytes"][1]["argsT"][1]["type"] = "const ImVector_ImDrawIdx*" +defs["ImVector_ImDrawIdx_size_in_bytes"][1]["call_args"] = "()" +defs["ImVector_ImDrawIdx_size_in_bytes"][1]["cimguiname"] = "ImVector_ImDrawIdx_size_in_bytes" +defs["ImVector_ImDrawIdx_size_in_bytes"][1]["defaults"] = {} +defs["ImVector_ImDrawIdx_size_in_bytes"][1]["funcname"] = "size_in_bytes" +defs["ImVector_ImDrawIdx_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_ImDrawIdx_size_in_bytes" +defs["ImVector_ImDrawIdx_size_in_bytes"][1]["ret"] = "int" +defs["ImVector_ImDrawIdx_size_in_bytes"][1]["signature"] = "()const" +defs["ImVector_ImDrawIdx_size_in_bytes"][1]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_size_in_bytes"][1]["templatedgen"] = true +defs["ImVector_ImDrawIdx_size_in_bytes"]["()const"] = defs["ImVector_ImDrawIdx_size_in_bytes"][1] +defs["ImVector_ImDrawIdx_swap"] = {} +defs["ImVector_ImDrawIdx_swap"][1] = {} +defs["ImVector_ImDrawIdx_swap"][1]["args"] = "(ImVector_ImDrawIdx* self,ImVector_ImDrawIdx rhs)" +defs["ImVector_ImDrawIdx_swap"][1]["argsT"] = {} +defs["ImVector_ImDrawIdx_swap"][1]["argsT"][1] = {} +defs["ImVector_ImDrawIdx_swap"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawIdx_swap"][1]["argsT"][1]["type"] = "ImVector_ImDrawIdx*" +defs["ImVector_ImDrawIdx_swap"][1]["argsT"][2] = {} +defs["ImVector_ImDrawIdx_swap"][1]["argsT"][2]["name"] = "rhs" +defs["ImVector_ImDrawIdx_swap"][1]["argsT"][2]["type"] = "ImVector_ImDrawIdx&" +defs["ImVector_ImDrawIdx_swap"][1]["call_args"] = "(rhs)" +defs["ImVector_ImDrawIdx_swap"][1]["cimguiname"] = "ImVector_ImDrawIdx_swap" +defs["ImVector_ImDrawIdx_swap"][1]["defaults"] = {} +defs["ImVector_ImDrawIdx_swap"][1]["funcname"] = "swap" +defs["ImVector_ImDrawIdx_swap"][1]["ov_cimguiname"] = "ImVector_ImDrawIdx_swap" +defs["ImVector_ImDrawIdx_swap"][1]["ret"] = "void" +defs["ImVector_ImDrawIdx_swap"][1]["signature"] = "(ImVector)" +defs["ImVector_ImDrawIdx_swap"][1]["stname"] = "ImVector_ImDrawIdx" +defs["ImVector_ImDrawIdx_swap"][1]["templatedgen"] = true +defs["ImVector_ImDrawIdx_swap"]["(ImVector)"] = defs["ImVector_ImDrawIdx_swap"][1] +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"] = {} +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"][1] = {} +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"][1]["args"] = "()" +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"][1]["argsT"] = {} +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"][1]["call_args"] = "()" +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"][1]["cimguiname"] = "ImVector_ImDrawVert_ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"][1]["constructor"] = true +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"][1]["defaults"] = {} +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"][1]["funcname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"][1]["ov_cimguiname"] = "ImVector_ImDrawVert_ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"][1]["signature"] = "()" +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"][1]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"][1]["templatedgen"] = true +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"][2] = {} +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"][2]["args"] = "(const ImVector_ImDrawVert src)" +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"][2]["argsT"] = {} +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"][2]["argsT"][1] = {} +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"][2]["argsT"][1]["name"] = "src" +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"][2]["argsT"][1]["type"] = "const ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"][2]["call_args"] = "(src)" +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"][2]["cimguiname"] = "ImVector_ImDrawVert_ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"][2]["constructor"] = true +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"][2]["defaults"] = {} +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"][2]["funcname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"][2]["ov_cimguiname"] = "ImVector_ImDrawVert_ImVector_ImDrawVertVector" +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"][2]["signature"] = "(const ImVector)" +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"][2]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"][2]["templatedgen"] = true +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"]["()"] = defs["ImVector_ImDrawVert_ImVector_ImDrawVert"][1] +defs["ImVector_ImDrawVert_ImVector_ImDrawVert"]["(const ImVector)"] = defs["ImVector_ImDrawVert_ImVector_ImDrawVert"][2] +defs["ImVector_ImDrawVert__grow_capacity"] = {} +defs["ImVector_ImDrawVert__grow_capacity"][1] = {} +defs["ImVector_ImDrawVert__grow_capacity"][1]["args"] = "(const ImVector_ImDrawVert* self,int sz)" +defs["ImVector_ImDrawVert__grow_capacity"][1]["argsT"] = {} +defs["ImVector_ImDrawVert__grow_capacity"][1]["argsT"][1] = {} +defs["ImVector_ImDrawVert__grow_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawVert__grow_capacity"][1]["argsT"][1]["type"] = "const ImVector_ImDrawVert*" +defs["ImVector_ImDrawVert__grow_capacity"][1]["argsT"][2] = {} +defs["ImVector_ImDrawVert__grow_capacity"][1]["argsT"][2]["name"] = "sz" +defs["ImVector_ImDrawVert__grow_capacity"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImDrawVert__grow_capacity"][1]["call_args"] = "(sz)" +defs["ImVector_ImDrawVert__grow_capacity"][1]["cimguiname"] = "ImVector_ImDrawVert__grow_capacity" +defs["ImVector_ImDrawVert__grow_capacity"][1]["defaults"] = {} +defs["ImVector_ImDrawVert__grow_capacity"][1]["funcname"] = "_grow_capacity" +defs["ImVector_ImDrawVert__grow_capacity"][1]["ov_cimguiname"] = "ImVector_ImDrawVert__grow_capacity" +defs["ImVector_ImDrawVert__grow_capacity"][1]["ret"] = "int" +defs["ImVector_ImDrawVert__grow_capacity"][1]["signature"] = "(int)const" +defs["ImVector_ImDrawVert__grow_capacity"][1]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert__grow_capacity"][1]["templatedgen"] = true +defs["ImVector_ImDrawVert__grow_capacity"]["(int)const"] = defs["ImVector_ImDrawVert__grow_capacity"][1] +defs["ImVector_ImDrawVert_back"] = {} +defs["ImVector_ImDrawVert_back"][1] = {} +defs["ImVector_ImDrawVert_back"][1]["args"] = "(ImVector_ImDrawVert* self)" +defs["ImVector_ImDrawVert_back"][1]["argsT"] = {} +defs["ImVector_ImDrawVert_back"][1]["argsT"][1] = {} +defs["ImVector_ImDrawVert_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawVert_back"][1]["argsT"][1]["type"] = "ImVector_ImDrawVert*" +defs["ImVector_ImDrawVert_back"][1]["call_args"] = "()" +defs["ImVector_ImDrawVert_back"][1]["cimguiname"] = "ImVector_ImDrawVert_back" +defs["ImVector_ImDrawVert_back"][1]["defaults"] = {} +defs["ImVector_ImDrawVert_back"][1]["funcname"] = "back" +defs["ImVector_ImDrawVert_back"][1]["ov_cimguiname"] = "ImVector_ImDrawVert_back" +defs["ImVector_ImDrawVert_back"][1]["ret"] = "ImDrawVert*" +defs["ImVector_ImDrawVert_back"][1]["retref"] = "&" +defs["ImVector_ImDrawVert_back"][1]["signature"] = "()" +defs["ImVector_ImDrawVert_back"][1]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_back"][1]["templatedgen"] = true +defs["ImVector_ImDrawVert_back"][2] = {} +defs["ImVector_ImDrawVert_back"][2]["args"] = "(const ImVector_ImDrawVert* self)" +defs["ImVector_ImDrawVert_back"][2]["argsT"] = {} +defs["ImVector_ImDrawVert_back"][2]["argsT"][1] = {} +defs["ImVector_ImDrawVert_back"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawVert_back"][2]["argsT"][1]["type"] = "const ImVector_ImDrawVert*" +defs["ImVector_ImDrawVert_back"][2]["call_args"] = "()" +defs["ImVector_ImDrawVert_back"][2]["cimguiname"] = "ImVector_ImDrawVert_back" +defs["ImVector_ImDrawVert_back"][2]["defaults"] = {} +defs["ImVector_ImDrawVert_back"][2]["funcname"] = "back" +defs["ImVector_ImDrawVert_back"][2]["ov_cimguiname"] = "ImVector_ImDrawVert_back_const" +defs["ImVector_ImDrawVert_back"][2]["ret"] = "ImDrawVert const *" +defs["ImVector_ImDrawVert_back"][2]["retref"] = "&" +defs["ImVector_ImDrawVert_back"][2]["signature"] = "()const" +defs["ImVector_ImDrawVert_back"][2]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_back"][2]["templatedgen"] = true +defs["ImVector_ImDrawVert_back"]["()"] = defs["ImVector_ImDrawVert_back"][1] +defs["ImVector_ImDrawVert_back"]["()const"] = defs["ImVector_ImDrawVert_back"][2] +defs["ImVector_ImDrawVert_begin"] = {} +defs["ImVector_ImDrawVert_begin"][1] = {} +defs["ImVector_ImDrawVert_begin"][1]["args"] = "(ImVector_ImDrawVert* self)" +defs["ImVector_ImDrawVert_begin"][1]["argsT"] = {} +defs["ImVector_ImDrawVert_begin"][1]["argsT"][1] = {} +defs["ImVector_ImDrawVert_begin"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawVert_begin"][1]["argsT"][1]["type"] = "ImVector_ImDrawVert*" +defs["ImVector_ImDrawVert_begin"][1]["call_args"] = "()" +defs["ImVector_ImDrawVert_begin"][1]["cimguiname"] = "ImVector_ImDrawVert_begin" +defs["ImVector_ImDrawVert_begin"][1]["defaults"] = {} +defs["ImVector_ImDrawVert_begin"][1]["funcname"] = "begin" +defs["ImVector_ImDrawVert_begin"][1]["ov_cimguiname"] = "ImVector_ImDrawVert_begin" +defs["ImVector_ImDrawVert_begin"][1]["ret"] = "ImDrawVert*" +defs["ImVector_ImDrawVert_begin"][1]["signature"] = "()" +defs["ImVector_ImDrawVert_begin"][1]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_begin"][1]["templatedgen"] = true +defs["ImVector_ImDrawVert_begin"][2] = {} +defs["ImVector_ImDrawVert_begin"][2]["args"] = "(const ImVector_ImDrawVert* self)" +defs["ImVector_ImDrawVert_begin"][2]["argsT"] = {} +defs["ImVector_ImDrawVert_begin"][2]["argsT"][1] = {} +defs["ImVector_ImDrawVert_begin"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawVert_begin"][2]["argsT"][1]["type"] = "const ImVector_ImDrawVert*" +defs["ImVector_ImDrawVert_begin"][2]["call_args"] = "()" +defs["ImVector_ImDrawVert_begin"][2]["cimguiname"] = "ImVector_ImDrawVert_begin" +defs["ImVector_ImDrawVert_begin"][2]["defaults"] = {} +defs["ImVector_ImDrawVert_begin"][2]["funcname"] = "begin" +defs["ImVector_ImDrawVert_begin"][2]["ov_cimguiname"] = "ImVector_ImDrawVert_begin_const" +defs["ImVector_ImDrawVert_begin"][2]["ret"] = "ImDrawVert const *" +defs["ImVector_ImDrawVert_begin"][2]["signature"] = "()const" +defs["ImVector_ImDrawVert_begin"][2]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_begin"][2]["templatedgen"] = true +defs["ImVector_ImDrawVert_begin"]["()"] = defs["ImVector_ImDrawVert_begin"][1] +defs["ImVector_ImDrawVert_begin"]["()const"] = defs["ImVector_ImDrawVert_begin"][2] +defs["ImVector_ImDrawVert_capacity"] = {} +defs["ImVector_ImDrawVert_capacity"][1] = {} +defs["ImVector_ImDrawVert_capacity"][1]["args"] = "(const ImVector_ImDrawVert* self)" +defs["ImVector_ImDrawVert_capacity"][1]["argsT"] = {} +defs["ImVector_ImDrawVert_capacity"][1]["argsT"][1] = {} +defs["ImVector_ImDrawVert_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawVert_capacity"][1]["argsT"][1]["type"] = "const ImVector_ImDrawVert*" +defs["ImVector_ImDrawVert_capacity"][1]["call_args"] = "()" +defs["ImVector_ImDrawVert_capacity"][1]["cimguiname"] = "ImVector_ImDrawVert_capacity" +defs["ImVector_ImDrawVert_capacity"][1]["defaults"] = {} +defs["ImVector_ImDrawVert_capacity"][1]["funcname"] = "capacity" +defs["ImVector_ImDrawVert_capacity"][1]["ov_cimguiname"] = "ImVector_ImDrawVert_capacity" +defs["ImVector_ImDrawVert_capacity"][1]["ret"] = "int" +defs["ImVector_ImDrawVert_capacity"][1]["signature"] = "()const" +defs["ImVector_ImDrawVert_capacity"][1]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_capacity"][1]["templatedgen"] = true +defs["ImVector_ImDrawVert_capacity"]["()const"] = defs["ImVector_ImDrawVert_capacity"][1] +defs["ImVector_ImDrawVert_clear"] = {} +defs["ImVector_ImDrawVert_clear"][1] = {} +defs["ImVector_ImDrawVert_clear"][1]["args"] = "(ImVector_ImDrawVert* self)" +defs["ImVector_ImDrawVert_clear"][1]["argsT"] = {} +defs["ImVector_ImDrawVert_clear"][1]["argsT"][1] = {} +defs["ImVector_ImDrawVert_clear"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawVert_clear"][1]["argsT"][1]["type"] = "ImVector_ImDrawVert*" +defs["ImVector_ImDrawVert_clear"][1]["call_args"] = "()" +defs["ImVector_ImDrawVert_clear"][1]["cimguiname"] = "ImVector_ImDrawVert_clear" +defs["ImVector_ImDrawVert_clear"][1]["defaults"] = {} +defs["ImVector_ImDrawVert_clear"][1]["funcname"] = "clear" +defs["ImVector_ImDrawVert_clear"][1]["ov_cimguiname"] = "ImVector_ImDrawVert_clear" +defs["ImVector_ImDrawVert_clear"][1]["ret"] = "void" +defs["ImVector_ImDrawVert_clear"][1]["signature"] = "()" +defs["ImVector_ImDrawVert_clear"][1]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_clear"][1]["templatedgen"] = true +defs["ImVector_ImDrawVert_clear"]["()"] = defs["ImVector_ImDrawVert_clear"][1] +defs["ImVector_ImDrawVert_contains"] = {} +defs["ImVector_ImDrawVert_contains"][1] = {} +defs["ImVector_ImDrawVert_contains"][1]["args"] = "(const ImVector_ImDrawVert* self,const ImDrawVert v)" +defs["ImVector_ImDrawVert_contains"][1]["argsT"] = {} +defs["ImVector_ImDrawVert_contains"][1]["argsT"][1] = {} +defs["ImVector_ImDrawVert_contains"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawVert_contains"][1]["argsT"][1]["type"] = "const ImVector_ImDrawVert*" +defs["ImVector_ImDrawVert_contains"][1]["argsT"][2] = {} +defs["ImVector_ImDrawVert_contains"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImDrawVert_contains"][1]["argsT"][2]["type"] = "const ImDrawVert" +defs["ImVector_ImDrawVert_contains"][1]["call_args"] = "(v)" +defs["ImVector_ImDrawVert_contains"][1]["cimguiname"] = "ImVector_ImDrawVert_contains" +defs["ImVector_ImDrawVert_contains"][1]["defaults"] = {} +defs["ImVector_ImDrawVert_contains"][1]["funcname"] = "contains" +defs["ImVector_ImDrawVert_contains"][1]["ov_cimguiname"] = "ImVector_ImDrawVert_contains" +defs["ImVector_ImDrawVert_contains"][1]["ret"] = "bool" +defs["ImVector_ImDrawVert_contains"][1]["signature"] = "(const ImDrawVert)const" +defs["ImVector_ImDrawVert_contains"][1]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_contains"][1]["templatedgen"] = true +defs["ImVector_ImDrawVert_contains"]["(const ImDrawVert)const"] = defs["ImVector_ImDrawVert_contains"][1] +defs["ImVector_ImDrawVert_destroy"] = {} +defs["ImVector_ImDrawVert_destroy"][1] = {} +defs["ImVector_ImDrawVert_destroy"][1]["args"] = "(ImVector_ImDrawVert* self)" +defs["ImVector_ImDrawVert_destroy"][1]["argsT"] = {} +defs["ImVector_ImDrawVert_destroy"][1]["argsT"][1] = {} +defs["ImVector_ImDrawVert_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawVert_destroy"][1]["argsT"][1]["type"] = "ImVector_ImDrawVert*" +defs["ImVector_ImDrawVert_destroy"][1]["call_args"] = "(self)" +defs["ImVector_ImDrawVert_destroy"][1]["cimguiname"] = "ImVector_ImDrawVert_destroy" +defs["ImVector_ImDrawVert_destroy"][1]["defaults"] = {} +defs["ImVector_ImDrawVert_destroy"][1]["destructor"] = true +defs["ImVector_ImDrawVert_destroy"][1]["ov_cimguiname"] = "ImVector_ImDrawVert_destroy" +defs["ImVector_ImDrawVert_destroy"][1]["ret"] = "void" +defs["ImVector_ImDrawVert_destroy"][1]["signature"] = "(ImVector_ImDrawVert*)" +defs["ImVector_ImDrawVert_destroy"][1]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_destroy"]["(ImVector_ImDrawVert*)"] = defs["ImVector_ImDrawVert_destroy"][1] +defs["ImVector_ImDrawVert_empty"] = {} +defs["ImVector_ImDrawVert_empty"][1] = {} +defs["ImVector_ImDrawVert_empty"][1]["args"] = "(const ImVector_ImDrawVert* self)" +defs["ImVector_ImDrawVert_empty"][1]["argsT"] = {} +defs["ImVector_ImDrawVert_empty"][1]["argsT"][1] = {} +defs["ImVector_ImDrawVert_empty"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawVert_empty"][1]["argsT"][1]["type"] = "const ImVector_ImDrawVert*" +defs["ImVector_ImDrawVert_empty"][1]["call_args"] = "()" +defs["ImVector_ImDrawVert_empty"][1]["cimguiname"] = "ImVector_ImDrawVert_empty" +defs["ImVector_ImDrawVert_empty"][1]["defaults"] = {} +defs["ImVector_ImDrawVert_empty"][1]["funcname"] = "empty" +defs["ImVector_ImDrawVert_empty"][1]["ov_cimguiname"] = "ImVector_ImDrawVert_empty" +defs["ImVector_ImDrawVert_empty"][1]["ret"] = "bool" +defs["ImVector_ImDrawVert_empty"][1]["signature"] = "()const" +defs["ImVector_ImDrawVert_empty"][1]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_empty"][1]["templatedgen"] = true +defs["ImVector_ImDrawVert_empty"]["()const"] = defs["ImVector_ImDrawVert_empty"][1] +defs["ImVector_ImDrawVert_end"] = {} +defs["ImVector_ImDrawVert_end"][1] = {} +defs["ImVector_ImDrawVert_end"][1]["args"] = "(ImVector_ImDrawVert* self)" +defs["ImVector_ImDrawVert_end"][1]["argsT"] = {} +defs["ImVector_ImDrawVert_end"][1]["argsT"][1] = {} +defs["ImVector_ImDrawVert_end"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawVert_end"][1]["argsT"][1]["type"] = "ImVector_ImDrawVert*" +defs["ImVector_ImDrawVert_end"][1]["call_args"] = "()" +defs["ImVector_ImDrawVert_end"][1]["cimguiname"] = "ImVector_ImDrawVert_end" +defs["ImVector_ImDrawVert_end"][1]["defaults"] = {} +defs["ImVector_ImDrawVert_end"][1]["funcname"] = "end" +defs["ImVector_ImDrawVert_end"][1]["ov_cimguiname"] = "ImVector_ImDrawVert_end" +defs["ImVector_ImDrawVert_end"][1]["ret"] = "ImDrawVert*" +defs["ImVector_ImDrawVert_end"][1]["signature"] = "()" +defs["ImVector_ImDrawVert_end"][1]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_end"][1]["templatedgen"] = true +defs["ImVector_ImDrawVert_end"][2] = {} +defs["ImVector_ImDrawVert_end"][2]["args"] = "(const ImVector_ImDrawVert* self)" +defs["ImVector_ImDrawVert_end"][2]["argsT"] = {} +defs["ImVector_ImDrawVert_end"][2]["argsT"][1] = {} +defs["ImVector_ImDrawVert_end"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawVert_end"][2]["argsT"][1]["type"] = "const ImVector_ImDrawVert*" +defs["ImVector_ImDrawVert_end"][2]["call_args"] = "()" +defs["ImVector_ImDrawVert_end"][2]["cimguiname"] = "ImVector_ImDrawVert_end" +defs["ImVector_ImDrawVert_end"][2]["defaults"] = {} +defs["ImVector_ImDrawVert_end"][2]["funcname"] = "end" +defs["ImVector_ImDrawVert_end"][2]["ov_cimguiname"] = "ImVector_ImDrawVert_end_const" +defs["ImVector_ImDrawVert_end"][2]["ret"] = "ImDrawVert const *" +defs["ImVector_ImDrawVert_end"][2]["signature"] = "()const" +defs["ImVector_ImDrawVert_end"][2]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_end"][2]["templatedgen"] = true +defs["ImVector_ImDrawVert_end"]["()"] = defs["ImVector_ImDrawVert_end"][1] +defs["ImVector_ImDrawVert_end"]["()const"] = defs["ImVector_ImDrawVert_end"][2] +defs["ImVector_ImDrawVert_erase"] = {} +defs["ImVector_ImDrawVert_erase"][1] = {} +defs["ImVector_ImDrawVert_erase"][1]["args"] = "(ImVector_ImDrawVert* self,ImDrawVert const * it)" +defs["ImVector_ImDrawVert_erase"][1]["argsT"] = {} +defs["ImVector_ImDrawVert_erase"][1]["argsT"][1] = {} +defs["ImVector_ImDrawVert_erase"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawVert_erase"][1]["argsT"][1]["type"] = "ImVector_ImDrawVert*" +defs["ImVector_ImDrawVert_erase"][1]["argsT"][2] = {} +defs["ImVector_ImDrawVert_erase"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImDrawVert_erase"][1]["argsT"][2]["type"] = "ImDrawVert const *" +defs["ImVector_ImDrawVert_erase"][1]["call_args"] = "(it)" +defs["ImVector_ImDrawVert_erase"][1]["cimguiname"] = "ImVector_ImDrawVert_erase" +defs["ImVector_ImDrawVert_erase"][1]["defaults"] = {} +defs["ImVector_ImDrawVert_erase"][1]["funcname"] = "erase" +defs["ImVector_ImDrawVert_erase"][1]["ov_cimguiname"] = "ImVector_ImDrawVert_erase" +defs["ImVector_ImDrawVert_erase"][1]["ret"] = "ImDrawVert*" +defs["ImVector_ImDrawVert_erase"][1]["signature"] = "(const ImDrawVert*)" +defs["ImVector_ImDrawVert_erase"][1]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_erase"][1]["templatedgen"] = true +defs["ImVector_ImDrawVert_erase"][2] = {} +defs["ImVector_ImDrawVert_erase"][2]["args"] = "(ImVector_ImDrawVert* self,ImDrawVert const * it,ImDrawVert const * it_last)" +defs["ImVector_ImDrawVert_erase"][2]["argsT"] = {} +defs["ImVector_ImDrawVert_erase"][2]["argsT"][1] = {} +defs["ImVector_ImDrawVert_erase"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawVert_erase"][2]["argsT"][1]["type"] = "ImVector_ImDrawVert*" +defs["ImVector_ImDrawVert_erase"][2]["argsT"][2] = {} +defs["ImVector_ImDrawVert_erase"][2]["argsT"][2]["name"] = "it" +defs["ImVector_ImDrawVert_erase"][2]["argsT"][2]["type"] = "ImDrawVert const *" +defs["ImVector_ImDrawVert_erase"][2]["argsT"][3] = {} +defs["ImVector_ImDrawVert_erase"][2]["argsT"][3]["name"] = "it_last" +defs["ImVector_ImDrawVert_erase"][2]["argsT"][3]["type"] = "ImDrawVert const *" +defs["ImVector_ImDrawVert_erase"][2]["call_args"] = "(it,it_last)" +defs["ImVector_ImDrawVert_erase"][2]["cimguiname"] = "ImVector_ImDrawVert_erase" +defs["ImVector_ImDrawVert_erase"][2]["defaults"] = {} +defs["ImVector_ImDrawVert_erase"][2]["funcname"] = "erase" +defs["ImVector_ImDrawVert_erase"][2]["ov_cimguiname"] = "ImVector_ImDrawVert_eraseTPtr" +defs["ImVector_ImDrawVert_erase"][2]["ret"] = "ImDrawVert*" +defs["ImVector_ImDrawVert_erase"][2]["signature"] = "(const ImDrawVert*,const ImDrawVert*)" +defs["ImVector_ImDrawVert_erase"][2]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_erase"][2]["templatedgen"] = true +defs["ImVector_ImDrawVert_erase"]["(const ImDrawVert*)"] = defs["ImVector_ImDrawVert_erase"][1] +defs["ImVector_ImDrawVert_erase"]["(const ImDrawVert*,const ImDrawVert*)"] = defs["ImVector_ImDrawVert_erase"][2] +defs["ImVector_ImDrawVert_erase_unsorted"] = {} +defs["ImVector_ImDrawVert_erase_unsorted"][1] = {} +defs["ImVector_ImDrawVert_erase_unsorted"][1]["args"] = "(ImVector_ImDrawVert* self,ImDrawVert const * it)" +defs["ImVector_ImDrawVert_erase_unsorted"][1]["argsT"] = {} +defs["ImVector_ImDrawVert_erase_unsorted"][1]["argsT"][1] = {} +defs["ImVector_ImDrawVert_erase_unsorted"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawVert_erase_unsorted"][1]["argsT"][1]["type"] = "ImVector_ImDrawVert*" +defs["ImVector_ImDrawVert_erase_unsorted"][1]["argsT"][2] = {} +defs["ImVector_ImDrawVert_erase_unsorted"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImDrawVert_erase_unsorted"][1]["argsT"][2]["type"] = "ImDrawVert const *" +defs["ImVector_ImDrawVert_erase_unsorted"][1]["call_args"] = "(it)" +defs["ImVector_ImDrawVert_erase_unsorted"][1]["cimguiname"] = "ImVector_ImDrawVert_erase_unsorted" +defs["ImVector_ImDrawVert_erase_unsorted"][1]["defaults"] = {} +defs["ImVector_ImDrawVert_erase_unsorted"][1]["funcname"] = "erase_unsorted" +defs["ImVector_ImDrawVert_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_ImDrawVert_erase_unsorted" +defs["ImVector_ImDrawVert_erase_unsorted"][1]["ret"] = "ImDrawVert*" +defs["ImVector_ImDrawVert_erase_unsorted"][1]["signature"] = "(const ImDrawVert*)" +defs["ImVector_ImDrawVert_erase_unsorted"][1]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_erase_unsorted"][1]["templatedgen"] = true +defs["ImVector_ImDrawVert_erase_unsorted"]["(const ImDrawVert*)"] = defs["ImVector_ImDrawVert_erase_unsorted"][1] +defs["ImVector_ImDrawVert_front"] = {} +defs["ImVector_ImDrawVert_front"][1] = {} +defs["ImVector_ImDrawVert_front"][1]["args"] = "(ImVector_ImDrawVert* self)" +defs["ImVector_ImDrawVert_front"][1]["argsT"] = {} +defs["ImVector_ImDrawVert_front"][1]["argsT"][1] = {} +defs["ImVector_ImDrawVert_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawVert_front"][1]["argsT"][1]["type"] = "ImVector_ImDrawVert*" +defs["ImVector_ImDrawVert_front"][1]["call_args"] = "()" +defs["ImVector_ImDrawVert_front"][1]["cimguiname"] = "ImVector_ImDrawVert_front" +defs["ImVector_ImDrawVert_front"][1]["defaults"] = {} +defs["ImVector_ImDrawVert_front"][1]["funcname"] = "front" +defs["ImVector_ImDrawVert_front"][1]["ov_cimguiname"] = "ImVector_ImDrawVert_front" +defs["ImVector_ImDrawVert_front"][1]["ret"] = "ImDrawVert*" +defs["ImVector_ImDrawVert_front"][1]["retref"] = "&" +defs["ImVector_ImDrawVert_front"][1]["signature"] = "()" +defs["ImVector_ImDrawVert_front"][1]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_front"][1]["templatedgen"] = true +defs["ImVector_ImDrawVert_front"][2] = {} +defs["ImVector_ImDrawVert_front"][2]["args"] = "(const ImVector_ImDrawVert* self)" +defs["ImVector_ImDrawVert_front"][2]["argsT"] = {} +defs["ImVector_ImDrawVert_front"][2]["argsT"][1] = {} +defs["ImVector_ImDrawVert_front"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawVert_front"][2]["argsT"][1]["type"] = "const ImVector_ImDrawVert*" +defs["ImVector_ImDrawVert_front"][2]["call_args"] = "()" +defs["ImVector_ImDrawVert_front"][2]["cimguiname"] = "ImVector_ImDrawVert_front" +defs["ImVector_ImDrawVert_front"][2]["defaults"] = {} +defs["ImVector_ImDrawVert_front"][2]["funcname"] = "front" +defs["ImVector_ImDrawVert_front"][2]["ov_cimguiname"] = "ImVector_ImDrawVert_front_const" +defs["ImVector_ImDrawVert_front"][2]["ret"] = "ImDrawVert const *" +defs["ImVector_ImDrawVert_front"][2]["retref"] = "&" +defs["ImVector_ImDrawVert_front"][2]["signature"] = "()const" +defs["ImVector_ImDrawVert_front"][2]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_front"][2]["templatedgen"] = true +defs["ImVector_ImDrawVert_front"]["()"] = defs["ImVector_ImDrawVert_front"][1] +defs["ImVector_ImDrawVert_front"]["()const"] = defs["ImVector_ImDrawVert_front"][2] +defs["ImVector_ImDrawVert_index_from_ptr"] = {} +defs["ImVector_ImDrawVert_index_from_ptr"][1] = {} +defs["ImVector_ImDrawVert_index_from_ptr"][1]["args"] = "(const ImVector_ImDrawVert* self,ImDrawVert const * it)" +defs["ImVector_ImDrawVert_index_from_ptr"][1]["argsT"] = {} +defs["ImVector_ImDrawVert_index_from_ptr"][1]["argsT"][1] = {} +defs["ImVector_ImDrawVert_index_from_ptr"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawVert_index_from_ptr"][1]["argsT"][1]["type"] = "const ImVector_ImDrawVert*" +defs["ImVector_ImDrawVert_index_from_ptr"][1]["argsT"][2] = {} +defs["ImVector_ImDrawVert_index_from_ptr"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImDrawVert_index_from_ptr"][1]["argsT"][2]["type"] = "ImDrawVert const *" +defs["ImVector_ImDrawVert_index_from_ptr"][1]["call_args"] = "(it)" +defs["ImVector_ImDrawVert_index_from_ptr"][1]["cimguiname"] = "ImVector_ImDrawVert_index_from_ptr" +defs["ImVector_ImDrawVert_index_from_ptr"][1]["defaults"] = {} +defs["ImVector_ImDrawVert_index_from_ptr"][1]["funcname"] = "index_from_ptr" +defs["ImVector_ImDrawVert_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_ImDrawVert_index_from_ptr" +defs["ImVector_ImDrawVert_index_from_ptr"][1]["ret"] = "int" +defs["ImVector_ImDrawVert_index_from_ptr"][1]["signature"] = "(const ImDrawVert*)const" +defs["ImVector_ImDrawVert_index_from_ptr"][1]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_index_from_ptr"][1]["templatedgen"] = true +defs["ImVector_ImDrawVert_index_from_ptr"]["(const ImDrawVert*)const"] = defs["ImVector_ImDrawVert_index_from_ptr"][1] +defs["ImVector_ImDrawVert_insert"] = {} +defs["ImVector_ImDrawVert_insert"][1] = {} +defs["ImVector_ImDrawVert_insert"][1]["args"] = "(ImVector_ImDrawVert* self,ImDrawVert const * it,const ImDrawVert v)" +defs["ImVector_ImDrawVert_insert"][1]["argsT"] = {} +defs["ImVector_ImDrawVert_insert"][1]["argsT"][1] = {} +defs["ImVector_ImDrawVert_insert"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawVert_insert"][1]["argsT"][1]["type"] = "ImVector_ImDrawVert*" +defs["ImVector_ImDrawVert_insert"][1]["argsT"][2] = {} +defs["ImVector_ImDrawVert_insert"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImDrawVert_insert"][1]["argsT"][2]["type"] = "ImDrawVert const *" +defs["ImVector_ImDrawVert_insert"][1]["argsT"][3] = {} +defs["ImVector_ImDrawVert_insert"][1]["argsT"][3]["name"] = "v" +defs["ImVector_ImDrawVert_insert"][1]["argsT"][3]["type"] = "const ImDrawVert" +defs["ImVector_ImDrawVert_insert"][1]["call_args"] = "(it,v)" +defs["ImVector_ImDrawVert_insert"][1]["cimguiname"] = "ImVector_ImDrawVert_insert" +defs["ImVector_ImDrawVert_insert"][1]["defaults"] = {} +defs["ImVector_ImDrawVert_insert"][1]["funcname"] = "insert" +defs["ImVector_ImDrawVert_insert"][1]["ov_cimguiname"] = "ImVector_ImDrawVert_insert" +defs["ImVector_ImDrawVert_insert"][1]["ret"] = "ImDrawVert*" +defs["ImVector_ImDrawVert_insert"][1]["signature"] = "(const ImDrawVert*,const ImDrawVert)" +defs["ImVector_ImDrawVert_insert"][1]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_insert"][1]["templatedgen"] = true +defs["ImVector_ImDrawVert_insert"]["(const ImDrawVert*,const ImDrawVert)"] = defs["ImVector_ImDrawVert_insert"][1] +defs["ImVector_ImDrawVert_pop_back"] = {} +defs["ImVector_ImDrawVert_pop_back"][1] = {} +defs["ImVector_ImDrawVert_pop_back"][1]["args"] = "(ImVector_ImDrawVert* self)" +defs["ImVector_ImDrawVert_pop_back"][1]["argsT"] = {} +defs["ImVector_ImDrawVert_pop_back"][1]["argsT"][1] = {} +defs["ImVector_ImDrawVert_pop_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawVert_pop_back"][1]["argsT"][1]["type"] = "ImVector_ImDrawVert*" +defs["ImVector_ImDrawVert_pop_back"][1]["call_args"] = "()" +defs["ImVector_ImDrawVert_pop_back"][1]["cimguiname"] = "ImVector_ImDrawVert_pop_back" +defs["ImVector_ImDrawVert_pop_back"][1]["defaults"] = {} +defs["ImVector_ImDrawVert_pop_back"][1]["funcname"] = "pop_back" +defs["ImVector_ImDrawVert_pop_back"][1]["ov_cimguiname"] = "ImVector_ImDrawVert_pop_back" +defs["ImVector_ImDrawVert_pop_back"][1]["ret"] = "void" +defs["ImVector_ImDrawVert_pop_back"][1]["signature"] = "()" +defs["ImVector_ImDrawVert_pop_back"][1]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_pop_back"][1]["templatedgen"] = true +defs["ImVector_ImDrawVert_pop_back"]["()"] = defs["ImVector_ImDrawVert_pop_back"][1] +defs["ImVector_ImDrawVert_push_back"] = {} +defs["ImVector_ImDrawVert_push_back"][1] = {} +defs["ImVector_ImDrawVert_push_back"][1]["args"] = "(ImVector_ImDrawVert* self,const ImDrawVert v)" +defs["ImVector_ImDrawVert_push_back"][1]["argsT"] = {} +defs["ImVector_ImDrawVert_push_back"][1]["argsT"][1] = {} +defs["ImVector_ImDrawVert_push_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawVert_push_back"][1]["argsT"][1]["type"] = "ImVector_ImDrawVert*" +defs["ImVector_ImDrawVert_push_back"][1]["argsT"][2] = {} +defs["ImVector_ImDrawVert_push_back"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImDrawVert_push_back"][1]["argsT"][2]["type"] = "const ImDrawVert" +defs["ImVector_ImDrawVert_push_back"][1]["call_args"] = "(v)" +defs["ImVector_ImDrawVert_push_back"][1]["cimguiname"] = "ImVector_ImDrawVert_push_back" +defs["ImVector_ImDrawVert_push_back"][1]["defaults"] = {} +defs["ImVector_ImDrawVert_push_back"][1]["funcname"] = "push_back" +defs["ImVector_ImDrawVert_push_back"][1]["ov_cimguiname"] = "ImVector_ImDrawVert_push_back" +defs["ImVector_ImDrawVert_push_back"][1]["ret"] = "void" +defs["ImVector_ImDrawVert_push_back"][1]["signature"] = "(const ImDrawVert)" +defs["ImVector_ImDrawVert_push_back"][1]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_push_back"][1]["templatedgen"] = true +defs["ImVector_ImDrawVert_push_back"]["(const ImDrawVert)"] = defs["ImVector_ImDrawVert_push_back"][1] +defs["ImVector_ImDrawVert_push_front"] = {} +defs["ImVector_ImDrawVert_push_front"][1] = {} +defs["ImVector_ImDrawVert_push_front"][1]["args"] = "(ImVector_ImDrawVert* self,const ImDrawVert v)" +defs["ImVector_ImDrawVert_push_front"][1]["argsT"] = {} +defs["ImVector_ImDrawVert_push_front"][1]["argsT"][1] = {} +defs["ImVector_ImDrawVert_push_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawVert_push_front"][1]["argsT"][1]["type"] = "ImVector_ImDrawVert*" +defs["ImVector_ImDrawVert_push_front"][1]["argsT"][2] = {} +defs["ImVector_ImDrawVert_push_front"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImDrawVert_push_front"][1]["argsT"][2]["type"] = "const ImDrawVert" +defs["ImVector_ImDrawVert_push_front"][1]["call_args"] = "(v)" +defs["ImVector_ImDrawVert_push_front"][1]["cimguiname"] = "ImVector_ImDrawVert_push_front" +defs["ImVector_ImDrawVert_push_front"][1]["defaults"] = {} +defs["ImVector_ImDrawVert_push_front"][1]["funcname"] = "push_front" +defs["ImVector_ImDrawVert_push_front"][1]["ov_cimguiname"] = "ImVector_ImDrawVert_push_front" +defs["ImVector_ImDrawVert_push_front"][1]["ret"] = "void" +defs["ImVector_ImDrawVert_push_front"][1]["signature"] = "(const ImDrawVert)" +defs["ImVector_ImDrawVert_push_front"][1]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_push_front"][1]["templatedgen"] = true +defs["ImVector_ImDrawVert_push_front"]["(const ImDrawVert)"] = defs["ImVector_ImDrawVert_push_front"][1] +defs["ImVector_ImDrawVert_reserve"] = {} +defs["ImVector_ImDrawVert_reserve"][1] = {} +defs["ImVector_ImDrawVert_reserve"][1]["args"] = "(ImVector_ImDrawVert* self,int new_capacity)" +defs["ImVector_ImDrawVert_reserve"][1]["argsT"] = {} +defs["ImVector_ImDrawVert_reserve"][1]["argsT"][1] = {} +defs["ImVector_ImDrawVert_reserve"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawVert_reserve"][1]["argsT"][1]["type"] = "ImVector_ImDrawVert*" +defs["ImVector_ImDrawVert_reserve"][1]["argsT"][2] = {} +defs["ImVector_ImDrawVert_reserve"][1]["argsT"][2]["name"] = "new_capacity" +defs["ImVector_ImDrawVert_reserve"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImDrawVert_reserve"][1]["call_args"] = "(new_capacity)" +defs["ImVector_ImDrawVert_reserve"][1]["cimguiname"] = "ImVector_ImDrawVert_reserve" +defs["ImVector_ImDrawVert_reserve"][1]["defaults"] = {} +defs["ImVector_ImDrawVert_reserve"][1]["funcname"] = "reserve" +defs["ImVector_ImDrawVert_reserve"][1]["ov_cimguiname"] = "ImVector_ImDrawVert_reserve" +defs["ImVector_ImDrawVert_reserve"][1]["ret"] = "void" +defs["ImVector_ImDrawVert_reserve"][1]["signature"] = "(int)" +defs["ImVector_ImDrawVert_reserve"][1]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_reserve"][1]["templatedgen"] = true +defs["ImVector_ImDrawVert_reserve"]["(int)"] = defs["ImVector_ImDrawVert_reserve"][1] +defs["ImVector_ImDrawVert_resize"] = {} +defs["ImVector_ImDrawVert_resize"][1] = {} +defs["ImVector_ImDrawVert_resize"][1]["args"] = "(ImVector_ImDrawVert* self,int new_size)" +defs["ImVector_ImDrawVert_resize"][1]["argsT"] = {} +defs["ImVector_ImDrawVert_resize"][1]["argsT"][1] = {} +defs["ImVector_ImDrawVert_resize"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawVert_resize"][1]["argsT"][1]["type"] = "ImVector_ImDrawVert*" +defs["ImVector_ImDrawVert_resize"][1]["argsT"][2] = {} +defs["ImVector_ImDrawVert_resize"][1]["argsT"][2]["name"] = "new_size" +defs["ImVector_ImDrawVert_resize"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImDrawVert_resize"][1]["call_args"] = "(new_size)" +defs["ImVector_ImDrawVert_resize"][1]["cimguiname"] = "ImVector_ImDrawVert_resize" +defs["ImVector_ImDrawVert_resize"][1]["defaults"] = {} +defs["ImVector_ImDrawVert_resize"][1]["funcname"] = "resize" +defs["ImVector_ImDrawVert_resize"][1]["ov_cimguiname"] = "ImVector_ImDrawVert_resize" +defs["ImVector_ImDrawVert_resize"][1]["ret"] = "void" +defs["ImVector_ImDrawVert_resize"][1]["signature"] = "(int)" +defs["ImVector_ImDrawVert_resize"][1]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_resize"][1]["templatedgen"] = true +defs["ImVector_ImDrawVert_resize"][2] = {} +defs["ImVector_ImDrawVert_resize"][2]["args"] = "(ImVector_ImDrawVert* self,int new_size,const ImDrawVert v)" +defs["ImVector_ImDrawVert_resize"][2]["argsT"] = {} +defs["ImVector_ImDrawVert_resize"][2]["argsT"][1] = {} +defs["ImVector_ImDrawVert_resize"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawVert_resize"][2]["argsT"][1]["type"] = "ImVector_ImDrawVert*" +defs["ImVector_ImDrawVert_resize"][2]["argsT"][2] = {} +defs["ImVector_ImDrawVert_resize"][2]["argsT"][2]["name"] = "new_size" +defs["ImVector_ImDrawVert_resize"][2]["argsT"][2]["type"] = "int" +defs["ImVector_ImDrawVert_resize"][2]["argsT"][3] = {} +defs["ImVector_ImDrawVert_resize"][2]["argsT"][3]["name"] = "v" +defs["ImVector_ImDrawVert_resize"][2]["argsT"][3]["type"] = "const ImDrawVert" +defs["ImVector_ImDrawVert_resize"][2]["call_args"] = "(new_size,v)" +defs["ImVector_ImDrawVert_resize"][2]["cimguiname"] = "ImVector_ImDrawVert_resize" +defs["ImVector_ImDrawVert_resize"][2]["defaults"] = {} +defs["ImVector_ImDrawVert_resize"][2]["funcname"] = "resize" +defs["ImVector_ImDrawVert_resize"][2]["ov_cimguiname"] = "ImVector_ImDrawVert_resizeT" +defs["ImVector_ImDrawVert_resize"][2]["ret"] = "void" +defs["ImVector_ImDrawVert_resize"][2]["signature"] = "(int,const ImDrawVert)" +defs["ImVector_ImDrawVert_resize"][2]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_resize"][2]["templatedgen"] = true +defs["ImVector_ImDrawVert_resize"]["(int)"] = defs["ImVector_ImDrawVert_resize"][1] +defs["ImVector_ImDrawVert_resize"]["(int,const ImDrawVert)"] = defs["ImVector_ImDrawVert_resize"][2] +defs["ImVector_ImDrawVert_size"] = {} +defs["ImVector_ImDrawVert_size"][1] = {} +defs["ImVector_ImDrawVert_size"][1]["args"] = "(const ImVector_ImDrawVert* self)" +defs["ImVector_ImDrawVert_size"][1]["argsT"] = {} +defs["ImVector_ImDrawVert_size"][1]["argsT"][1] = {} +defs["ImVector_ImDrawVert_size"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawVert_size"][1]["argsT"][1]["type"] = "const ImVector_ImDrawVert*" +defs["ImVector_ImDrawVert_size"][1]["call_args"] = "()" +defs["ImVector_ImDrawVert_size"][1]["cimguiname"] = "ImVector_ImDrawVert_size" +defs["ImVector_ImDrawVert_size"][1]["defaults"] = {} +defs["ImVector_ImDrawVert_size"][1]["funcname"] = "size" +defs["ImVector_ImDrawVert_size"][1]["ov_cimguiname"] = "ImVector_ImDrawVert_size" +defs["ImVector_ImDrawVert_size"][1]["ret"] = "int" +defs["ImVector_ImDrawVert_size"][1]["signature"] = "()const" +defs["ImVector_ImDrawVert_size"][1]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_size"][1]["templatedgen"] = true +defs["ImVector_ImDrawVert_size"]["()const"] = defs["ImVector_ImDrawVert_size"][1] +defs["ImVector_ImDrawVert_size_in_bytes"] = {} +defs["ImVector_ImDrawVert_size_in_bytes"][1] = {} +defs["ImVector_ImDrawVert_size_in_bytes"][1]["args"] = "(const ImVector_ImDrawVert* self)" +defs["ImVector_ImDrawVert_size_in_bytes"][1]["argsT"] = {} +defs["ImVector_ImDrawVert_size_in_bytes"][1]["argsT"][1] = {} +defs["ImVector_ImDrawVert_size_in_bytes"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawVert_size_in_bytes"][1]["argsT"][1]["type"] = "const ImVector_ImDrawVert*" +defs["ImVector_ImDrawVert_size_in_bytes"][1]["call_args"] = "()" +defs["ImVector_ImDrawVert_size_in_bytes"][1]["cimguiname"] = "ImVector_ImDrawVert_size_in_bytes" +defs["ImVector_ImDrawVert_size_in_bytes"][1]["defaults"] = {} +defs["ImVector_ImDrawVert_size_in_bytes"][1]["funcname"] = "size_in_bytes" +defs["ImVector_ImDrawVert_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_ImDrawVert_size_in_bytes" +defs["ImVector_ImDrawVert_size_in_bytes"][1]["ret"] = "int" +defs["ImVector_ImDrawVert_size_in_bytes"][1]["signature"] = "()const" +defs["ImVector_ImDrawVert_size_in_bytes"][1]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_size_in_bytes"][1]["templatedgen"] = true +defs["ImVector_ImDrawVert_size_in_bytes"]["()const"] = defs["ImVector_ImDrawVert_size_in_bytes"][1] +defs["ImVector_ImDrawVert_swap"] = {} +defs["ImVector_ImDrawVert_swap"][1] = {} +defs["ImVector_ImDrawVert_swap"][1]["args"] = "(ImVector_ImDrawVert* self,ImVector_ImDrawVert rhs)" +defs["ImVector_ImDrawVert_swap"][1]["argsT"] = {} +defs["ImVector_ImDrawVert_swap"][1]["argsT"][1] = {} +defs["ImVector_ImDrawVert_swap"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImDrawVert_swap"][1]["argsT"][1]["type"] = "ImVector_ImDrawVert*" +defs["ImVector_ImDrawVert_swap"][1]["argsT"][2] = {} +defs["ImVector_ImDrawVert_swap"][1]["argsT"][2]["name"] = "rhs" +defs["ImVector_ImDrawVert_swap"][1]["argsT"][2]["type"] = "ImVector_ImDrawVert&" +defs["ImVector_ImDrawVert_swap"][1]["call_args"] = "(rhs)" +defs["ImVector_ImDrawVert_swap"][1]["cimguiname"] = "ImVector_ImDrawVert_swap" +defs["ImVector_ImDrawVert_swap"][1]["defaults"] = {} +defs["ImVector_ImDrawVert_swap"][1]["funcname"] = "swap" +defs["ImVector_ImDrawVert_swap"][1]["ov_cimguiname"] = "ImVector_ImDrawVert_swap" +defs["ImVector_ImDrawVert_swap"][1]["ret"] = "void" +defs["ImVector_ImDrawVert_swap"][1]["signature"] = "(ImVector)" +defs["ImVector_ImDrawVert_swap"][1]["stname"] = "ImVector_ImDrawVert" +defs["ImVector_ImDrawVert_swap"][1]["templatedgen"] = true +defs["ImVector_ImDrawVert_swap"]["(ImVector)"] = defs["ImVector_ImDrawVert_swap"][1] +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"] = {} +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"][1] = {} +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"][1]["args"] = "()" +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"][1]["argsT"] = {} +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"][1]["call_args"] = "()" +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"][1]["cimguiname"] = "ImVector_ImFontConfig_ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"][1]["constructor"] = true +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"][1]["defaults"] = {} +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"][1]["funcname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"][1]["ov_cimguiname"] = "ImVector_ImFontConfig_ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"][1]["signature"] = "()" +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"][1]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"][1]["templatedgen"] = true +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"][2] = {} +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"][2]["args"] = "(const ImVector_ImFontConfig src)" +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"][2]["argsT"] = {} +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"][2]["argsT"][1] = {} +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"][2]["argsT"][1]["name"] = "src" +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"][2]["argsT"][1]["type"] = "const ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"][2]["call_args"] = "(src)" +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"][2]["cimguiname"] = "ImVector_ImFontConfig_ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"][2]["constructor"] = true +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"][2]["defaults"] = {} +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"][2]["funcname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"][2]["ov_cimguiname"] = "ImVector_ImFontConfig_ImVector_ImFontConfigVector" +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"][2]["signature"] = "(const ImVector)" +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"][2]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"][2]["templatedgen"] = true +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"]["()"] = defs["ImVector_ImFontConfig_ImVector_ImFontConfig"][1] +defs["ImVector_ImFontConfig_ImVector_ImFontConfig"]["(const ImVector)"] = defs["ImVector_ImFontConfig_ImVector_ImFontConfig"][2] +defs["ImVector_ImFontConfig__grow_capacity"] = {} +defs["ImVector_ImFontConfig__grow_capacity"][1] = {} +defs["ImVector_ImFontConfig__grow_capacity"][1]["args"] = "(const ImVector_ImFontConfig* self,int sz)" +defs["ImVector_ImFontConfig__grow_capacity"][1]["argsT"] = {} +defs["ImVector_ImFontConfig__grow_capacity"][1]["argsT"][1] = {} +defs["ImVector_ImFontConfig__grow_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontConfig__grow_capacity"][1]["argsT"][1]["type"] = "const ImVector_ImFontConfig*" +defs["ImVector_ImFontConfig__grow_capacity"][1]["argsT"][2] = {} +defs["ImVector_ImFontConfig__grow_capacity"][1]["argsT"][2]["name"] = "sz" +defs["ImVector_ImFontConfig__grow_capacity"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImFontConfig__grow_capacity"][1]["call_args"] = "(sz)" +defs["ImVector_ImFontConfig__grow_capacity"][1]["cimguiname"] = "ImVector_ImFontConfig__grow_capacity" +defs["ImVector_ImFontConfig__grow_capacity"][1]["defaults"] = {} +defs["ImVector_ImFontConfig__grow_capacity"][1]["funcname"] = "_grow_capacity" +defs["ImVector_ImFontConfig__grow_capacity"][1]["ov_cimguiname"] = "ImVector_ImFontConfig__grow_capacity" +defs["ImVector_ImFontConfig__grow_capacity"][1]["ret"] = "int" +defs["ImVector_ImFontConfig__grow_capacity"][1]["signature"] = "(int)const" +defs["ImVector_ImFontConfig__grow_capacity"][1]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig__grow_capacity"][1]["templatedgen"] = true +defs["ImVector_ImFontConfig__grow_capacity"]["(int)const"] = defs["ImVector_ImFontConfig__grow_capacity"][1] +defs["ImVector_ImFontConfig_back"] = {} +defs["ImVector_ImFontConfig_back"][1] = {} +defs["ImVector_ImFontConfig_back"][1]["args"] = "(ImVector_ImFontConfig* self)" +defs["ImVector_ImFontConfig_back"][1]["argsT"] = {} +defs["ImVector_ImFontConfig_back"][1]["argsT"][1] = {} +defs["ImVector_ImFontConfig_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontConfig_back"][1]["argsT"][1]["type"] = "ImVector_ImFontConfig*" +defs["ImVector_ImFontConfig_back"][1]["call_args"] = "()" +defs["ImVector_ImFontConfig_back"][1]["cimguiname"] = "ImVector_ImFontConfig_back" +defs["ImVector_ImFontConfig_back"][1]["defaults"] = {} +defs["ImVector_ImFontConfig_back"][1]["funcname"] = "back" +defs["ImVector_ImFontConfig_back"][1]["ov_cimguiname"] = "ImVector_ImFontConfig_back" +defs["ImVector_ImFontConfig_back"][1]["ret"] = "ImFontConfig*" +defs["ImVector_ImFontConfig_back"][1]["retref"] = "&" +defs["ImVector_ImFontConfig_back"][1]["signature"] = "()" +defs["ImVector_ImFontConfig_back"][1]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_back"][1]["templatedgen"] = true +defs["ImVector_ImFontConfig_back"][2] = {} +defs["ImVector_ImFontConfig_back"][2]["args"] = "(const ImVector_ImFontConfig* self)" +defs["ImVector_ImFontConfig_back"][2]["argsT"] = {} +defs["ImVector_ImFontConfig_back"][2]["argsT"][1] = {} +defs["ImVector_ImFontConfig_back"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontConfig_back"][2]["argsT"][1]["type"] = "const ImVector_ImFontConfig*" +defs["ImVector_ImFontConfig_back"][2]["call_args"] = "()" +defs["ImVector_ImFontConfig_back"][2]["cimguiname"] = "ImVector_ImFontConfig_back" +defs["ImVector_ImFontConfig_back"][2]["defaults"] = {} +defs["ImVector_ImFontConfig_back"][2]["funcname"] = "back" +defs["ImVector_ImFontConfig_back"][2]["ov_cimguiname"] = "ImVector_ImFontConfig_back_const" +defs["ImVector_ImFontConfig_back"][2]["ret"] = "ImFontConfig const *" +defs["ImVector_ImFontConfig_back"][2]["retref"] = "&" +defs["ImVector_ImFontConfig_back"][2]["signature"] = "()const" +defs["ImVector_ImFontConfig_back"][2]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_back"][2]["templatedgen"] = true +defs["ImVector_ImFontConfig_back"]["()"] = defs["ImVector_ImFontConfig_back"][1] +defs["ImVector_ImFontConfig_back"]["()const"] = defs["ImVector_ImFontConfig_back"][2] +defs["ImVector_ImFontConfig_begin"] = {} +defs["ImVector_ImFontConfig_begin"][1] = {} +defs["ImVector_ImFontConfig_begin"][1]["args"] = "(ImVector_ImFontConfig* self)" +defs["ImVector_ImFontConfig_begin"][1]["argsT"] = {} +defs["ImVector_ImFontConfig_begin"][1]["argsT"][1] = {} +defs["ImVector_ImFontConfig_begin"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontConfig_begin"][1]["argsT"][1]["type"] = "ImVector_ImFontConfig*" +defs["ImVector_ImFontConfig_begin"][1]["call_args"] = "()" +defs["ImVector_ImFontConfig_begin"][1]["cimguiname"] = "ImVector_ImFontConfig_begin" +defs["ImVector_ImFontConfig_begin"][1]["defaults"] = {} +defs["ImVector_ImFontConfig_begin"][1]["funcname"] = "begin" +defs["ImVector_ImFontConfig_begin"][1]["ov_cimguiname"] = "ImVector_ImFontConfig_begin" +defs["ImVector_ImFontConfig_begin"][1]["ret"] = "ImFontConfig*" +defs["ImVector_ImFontConfig_begin"][1]["signature"] = "()" +defs["ImVector_ImFontConfig_begin"][1]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_begin"][1]["templatedgen"] = true +defs["ImVector_ImFontConfig_begin"][2] = {} +defs["ImVector_ImFontConfig_begin"][2]["args"] = "(const ImVector_ImFontConfig* self)" +defs["ImVector_ImFontConfig_begin"][2]["argsT"] = {} +defs["ImVector_ImFontConfig_begin"][2]["argsT"][1] = {} +defs["ImVector_ImFontConfig_begin"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontConfig_begin"][2]["argsT"][1]["type"] = "const ImVector_ImFontConfig*" +defs["ImVector_ImFontConfig_begin"][2]["call_args"] = "()" +defs["ImVector_ImFontConfig_begin"][2]["cimguiname"] = "ImVector_ImFontConfig_begin" +defs["ImVector_ImFontConfig_begin"][2]["defaults"] = {} +defs["ImVector_ImFontConfig_begin"][2]["funcname"] = "begin" +defs["ImVector_ImFontConfig_begin"][2]["ov_cimguiname"] = "ImVector_ImFontConfig_begin_const" +defs["ImVector_ImFontConfig_begin"][2]["ret"] = "ImFontConfig const *" +defs["ImVector_ImFontConfig_begin"][2]["signature"] = "()const" +defs["ImVector_ImFontConfig_begin"][2]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_begin"][2]["templatedgen"] = true +defs["ImVector_ImFontConfig_begin"]["()"] = defs["ImVector_ImFontConfig_begin"][1] +defs["ImVector_ImFontConfig_begin"]["()const"] = defs["ImVector_ImFontConfig_begin"][2] +defs["ImVector_ImFontConfig_capacity"] = {} +defs["ImVector_ImFontConfig_capacity"][1] = {} +defs["ImVector_ImFontConfig_capacity"][1]["args"] = "(const ImVector_ImFontConfig* self)" +defs["ImVector_ImFontConfig_capacity"][1]["argsT"] = {} +defs["ImVector_ImFontConfig_capacity"][1]["argsT"][1] = {} +defs["ImVector_ImFontConfig_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontConfig_capacity"][1]["argsT"][1]["type"] = "const ImVector_ImFontConfig*" +defs["ImVector_ImFontConfig_capacity"][1]["call_args"] = "()" +defs["ImVector_ImFontConfig_capacity"][1]["cimguiname"] = "ImVector_ImFontConfig_capacity" +defs["ImVector_ImFontConfig_capacity"][1]["defaults"] = {} +defs["ImVector_ImFontConfig_capacity"][1]["funcname"] = "capacity" +defs["ImVector_ImFontConfig_capacity"][1]["ov_cimguiname"] = "ImVector_ImFontConfig_capacity" +defs["ImVector_ImFontConfig_capacity"][1]["ret"] = "int" +defs["ImVector_ImFontConfig_capacity"][1]["signature"] = "()const" +defs["ImVector_ImFontConfig_capacity"][1]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_capacity"][1]["templatedgen"] = true +defs["ImVector_ImFontConfig_capacity"]["()const"] = defs["ImVector_ImFontConfig_capacity"][1] +defs["ImVector_ImFontConfig_clear"] = {} +defs["ImVector_ImFontConfig_clear"][1] = {} +defs["ImVector_ImFontConfig_clear"][1]["args"] = "(ImVector_ImFontConfig* self)" +defs["ImVector_ImFontConfig_clear"][1]["argsT"] = {} +defs["ImVector_ImFontConfig_clear"][1]["argsT"][1] = {} +defs["ImVector_ImFontConfig_clear"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontConfig_clear"][1]["argsT"][1]["type"] = "ImVector_ImFontConfig*" +defs["ImVector_ImFontConfig_clear"][1]["call_args"] = "()" +defs["ImVector_ImFontConfig_clear"][1]["cimguiname"] = "ImVector_ImFontConfig_clear" +defs["ImVector_ImFontConfig_clear"][1]["defaults"] = {} +defs["ImVector_ImFontConfig_clear"][1]["funcname"] = "clear" +defs["ImVector_ImFontConfig_clear"][1]["ov_cimguiname"] = "ImVector_ImFontConfig_clear" +defs["ImVector_ImFontConfig_clear"][1]["ret"] = "void" +defs["ImVector_ImFontConfig_clear"][1]["signature"] = "()" +defs["ImVector_ImFontConfig_clear"][1]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_clear"][1]["templatedgen"] = true +defs["ImVector_ImFontConfig_clear"]["()"] = defs["ImVector_ImFontConfig_clear"][1] +defs["ImVector_ImFontConfig_contains"] = {} +defs["ImVector_ImFontConfig_contains"][1] = {} +defs["ImVector_ImFontConfig_contains"][1]["args"] = "(const ImVector_ImFontConfig* self,const ImFontConfig v)" +defs["ImVector_ImFontConfig_contains"][1]["argsT"] = {} +defs["ImVector_ImFontConfig_contains"][1]["argsT"][1] = {} +defs["ImVector_ImFontConfig_contains"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontConfig_contains"][1]["argsT"][1]["type"] = "const ImVector_ImFontConfig*" +defs["ImVector_ImFontConfig_contains"][1]["argsT"][2] = {} +defs["ImVector_ImFontConfig_contains"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImFontConfig_contains"][1]["argsT"][2]["type"] = "const ImFontConfig" +defs["ImVector_ImFontConfig_contains"][1]["call_args"] = "(v)" +defs["ImVector_ImFontConfig_contains"][1]["cimguiname"] = "ImVector_ImFontConfig_contains" +defs["ImVector_ImFontConfig_contains"][1]["defaults"] = {} +defs["ImVector_ImFontConfig_contains"][1]["funcname"] = "contains" +defs["ImVector_ImFontConfig_contains"][1]["ov_cimguiname"] = "ImVector_ImFontConfig_contains" +defs["ImVector_ImFontConfig_contains"][1]["ret"] = "bool" +defs["ImVector_ImFontConfig_contains"][1]["signature"] = "(const ImFontConfig)const" +defs["ImVector_ImFontConfig_contains"][1]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_contains"][1]["templatedgen"] = true +defs["ImVector_ImFontConfig_contains"]["(const ImFontConfig)const"] = defs["ImVector_ImFontConfig_contains"][1] +defs["ImVector_ImFontConfig_destroy"] = {} +defs["ImVector_ImFontConfig_destroy"][1] = {} +defs["ImVector_ImFontConfig_destroy"][1]["args"] = "(ImVector_ImFontConfig* self)" +defs["ImVector_ImFontConfig_destroy"][1]["argsT"] = {} +defs["ImVector_ImFontConfig_destroy"][1]["argsT"][1] = {} +defs["ImVector_ImFontConfig_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontConfig_destroy"][1]["argsT"][1]["type"] = "ImVector_ImFontConfig*" +defs["ImVector_ImFontConfig_destroy"][1]["call_args"] = "(self)" +defs["ImVector_ImFontConfig_destroy"][1]["cimguiname"] = "ImVector_ImFontConfig_destroy" +defs["ImVector_ImFontConfig_destroy"][1]["defaults"] = {} +defs["ImVector_ImFontConfig_destroy"][1]["destructor"] = true +defs["ImVector_ImFontConfig_destroy"][1]["ov_cimguiname"] = "ImVector_ImFontConfig_destroy" +defs["ImVector_ImFontConfig_destroy"][1]["ret"] = "void" +defs["ImVector_ImFontConfig_destroy"][1]["signature"] = "(ImVector_ImFontConfig*)" +defs["ImVector_ImFontConfig_destroy"][1]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_destroy"]["(ImVector_ImFontConfig*)"] = defs["ImVector_ImFontConfig_destroy"][1] +defs["ImVector_ImFontConfig_empty"] = {} +defs["ImVector_ImFontConfig_empty"][1] = {} +defs["ImVector_ImFontConfig_empty"][1]["args"] = "(const ImVector_ImFontConfig* self)" +defs["ImVector_ImFontConfig_empty"][1]["argsT"] = {} +defs["ImVector_ImFontConfig_empty"][1]["argsT"][1] = {} +defs["ImVector_ImFontConfig_empty"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontConfig_empty"][1]["argsT"][1]["type"] = "const ImVector_ImFontConfig*" +defs["ImVector_ImFontConfig_empty"][1]["call_args"] = "()" +defs["ImVector_ImFontConfig_empty"][1]["cimguiname"] = "ImVector_ImFontConfig_empty" +defs["ImVector_ImFontConfig_empty"][1]["defaults"] = {} +defs["ImVector_ImFontConfig_empty"][1]["funcname"] = "empty" +defs["ImVector_ImFontConfig_empty"][1]["ov_cimguiname"] = "ImVector_ImFontConfig_empty" +defs["ImVector_ImFontConfig_empty"][1]["ret"] = "bool" +defs["ImVector_ImFontConfig_empty"][1]["signature"] = "()const" +defs["ImVector_ImFontConfig_empty"][1]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_empty"][1]["templatedgen"] = true +defs["ImVector_ImFontConfig_empty"]["()const"] = defs["ImVector_ImFontConfig_empty"][1] +defs["ImVector_ImFontConfig_end"] = {} +defs["ImVector_ImFontConfig_end"][1] = {} +defs["ImVector_ImFontConfig_end"][1]["args"] = "(ImVector_ImFontConfig* self)" +defs["ImVector_ImFontConfig_end"][1]["argsT"] = {} +defs["ImVector_ImFontConfig_end"][1]["argsT"][1] = {} +defs["ImVector_ImFontConfig_end"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontConfig_end"][1]["argsT"][1]["type"] = "ImVector_ImFontConfig*" +defs["ImVector_ImFontConfig_end"][1]["call_args"] = "()" +defs["ImVector_ImFontConfig_end"][1]["cimguiname"] = "ImVector_ImFontConfig_end" +defs["ImVector_ImFontConfig_end"][1]["defaults"] = {} +defs["ImVector_ImFontConfig_end"][1]["funcname"] = "end" +defs["ImVector_ImFontConfig_end"][1]["ov_cimguiname"] = "ImVector_ImFontConfig_end" +defs["ImVector_ImFontConfig_end"][1]["ret"] = "ImFontConfig*" +defs["ImVector_ImFontConfig_end"][1]["signature"] = "()" +defs["ImVector_ImFontConfig_end"][1]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_end"][1]["templatedgen"] = true +defs["ImVector_ImFontConfig_end"][2] = {} +defs["ImVector_ImFontConfig_end"][2]["args"] = "(const ImVector_ImFontConfig* self)" +defs["ImVector_ImFontConfig_end"][2]["argsT"] = {} +defs["ImVector_ImFontConfig_end"][2]["argsT"][1] = {} +defs["ImVector_ImFontConfig_end"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontConfig_end"][2]["argsT"][1]["type"] = "const ImVector_ImFontConfig*" +defs["ImVector_ImFontConfig_end"][2]["call_args"] = "()" +defs["ImVector_ImFontConfig_end"][2]["cimguiname"] = "ImVector_ImFontConfig_end" +defs["ImVector_ImFontConfig_end"][2]["defaults"] = {} +defs["ImVector_ImFontConfig_end"][2]["funcname"] = "end" +defs["ImVector_ImFontConfig_end"][2]["ov_cimguiname"] = "ImVector_ImFontConfig_end_const" +defs["ImVector_ImFontConfig_end"][2]["ret"] = "ImFontConfig const *" +defs["ImVector_ImFontConfig_end"][2]["signature"] = "()const" +defs["ImVector_ImFontConfig_end"][2]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_end"][2]["templatedgen"] = true +defs["ImVector_ImFontConfig_end"]["()"] = defs["ImVector_ImFontConfig_end"][1] +defs["ImVector_ImFontConfig_end"]["()const"] = defs["ImVector_ImFontConfig_end"][2] +defs["ImVector_ImFontConfig_erase"] = {} +defs["ImVector_ImFontConfig_erase"][1] = {} +defs["ImVector_ImFontConfig_erase"][1]["args"] = "(ImVector_ImFontConfig* self,ImFontConfig const * it)" +defs["ImVector_ImFontConfig_erase"][1]["argsT"] = {} +defs["ImVector_ImFontConfig_erase"][1]["argsT"][1] = {} +defs["ImVector_ImFontConfig_erase"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontConfig_erase"][1]["argsT"][1]["type"] = "ImVector_ImFontConfig*" +defs["ImVector_ImFontConfig_erase"][1]["argsT"][2] = {} +defs["ImVector_ImFontConfig_erase"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImFontConfig_erase"][1]["argsT"][2]["type"] = "ImFontConfig const *" +defs["ImVector_ImFontConfig_erase"][1]["call_args"] = "(it)" +defs["ImVector_ImFontConfig_erase"][1]["cimguiname"] = "ImVector_ImFontConfig_erase" +defs["ImVector_ImFontConfig_erase"][1]["defaults"] = {} +defs["ImVector_ImFontConfig_erase"][1]["funcname"] = "erase" +defs["ImVector_ImFontConfig_erase"][1]["ov_cimguiname"] = "ImVector_ImFontConfig_erase" +defs["ImVector_ImFontConfig_erase"][1]["ret"] = "ImFontConfig*" +defs["ImVector_ImFontConfig_erase"][1]["signature"] = "(const ImFontConfig*)" +defs["ImVector_ImFontConfig_erase"][1]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_erase"][1]["templatedgen"] = true +defs["ImVector_ImFontConfig_erase"][2] = {} +defs["ImVector_ImFontConfig_erase"][2]["args"] = "(ImVector_ImFontConfig* self,ImFontConfig const * it,ImFontConfig const * it_last)" +defs["ImVector_ImFontConfig_erase"][2]["argsT"] = {} +defs["ImVector_ImFontConfig_erase"][2]["argsT"][1] = {} +defs["ImVector_ImFontConfig_erase"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontConfig_erase"][2]["argsT"][1]["type"] = "ImVector_ImFontConfig*" +defs["ImVector_ImFontConfig_erase"][2]["argsT"][2] = {} +defs["ImVector_ImFontConfig_erase"][2]["argsT"][2]["name"] = "it" +defs["ImVector_ImFontConfig_erase"][2]["argsT"][2]["type"] = "ImFontConfig const *" +defs["ImVector_ImFontConfig_erase"][2]["argsT"][3] = {} +defs["ImVector_ImFontConfig_erase"][2]["argsT"][3]["name"] = "it_last" +defs["ImVector_ImFontConfig_erase"][2]["argsT"][3]["type"] = "ImFontConfig const *" +defs["ImVector_ImFontConfig_erase"][2]["call_args"] = "(it,it_last)" +defs["ImVector_ImFontConfig_erase"][2]["cimguiname"] = "ImVector_ImFontConfig_erase" +defs["ImVector_ImFontConfig_erase"][2]["defaults"] = {} +defs["ImVector_ImFontConfig_erase"][2]["funcname"] = "erase" +defs["ImVector_ImFontConfig_erase"][2]["ov_cimguiname"] = "ImVector_ImFontConfig_eraseTPtr" +defs["ImVector_ImFontConfig_erase"][2]["ret"] = "ImFontConfig*" +defs["ImVector_ImFontConfig_erase"][2]["signature"] = "(const ImFontConfig*,const ImFontConfig*)" +defs["ImVector_ImFontConfig_erase"][2]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_erase"][2]["templatedgen"] = true +defs["ImVector_ImFontConfig_erase"]["(const ImFontConfig*)"] = defs["ImVector_ImFontConfig_erase"][1] +defs["ImVector_ImFontConfig_erase"]["(const ImFontConfig*,const ImFontConfig*)"] = defs["ImVector_ImFontConfig_erase"][2] +defs["ImVector_ImFontConfig_erase_unsorted"] = {} +defs["ImVector_ImFontConfig_erase_unsorted"][1] = {} +defs["ImVector_ImFontConfig_erase_unsorted"][1]["args"] = "(ImVector_ImFontConfig* self,ImFontConfig const * it)" +defs["ImVector_ImFontConfig_erase_unsorted"][1]["argsT"] = {} +defs["ImVector_ImFontConfig_erase_unsorted"][1]["argsT"][1] = {} +defs["ImVector_ImFontConfig_erase_unsorted"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontConfig_erase_unsorted"][1]["argsT"][1]["type"] = "ImVector_ImFontConfig*" +defs["ImVector_ImFontConfig_erase_unsorted"][1]["argsT"][2] = {} +defs["ImVector_ImFontConfig_erase_unsorted"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImFontConfig_erase_unsorted"][1]["argsT"][2]["type"] = "ImFontConfig const *" +defs["ImVector_ImFontConfig_erase_unsorted"][1]["call_args"] = "(it)" +defs["ImVector_ImFontConfig_erase_unsorted"][1]["cimguiname"] = "ImVector_ImFontConfig_erase_unsorted" +defs["ImVector_ImFontConfig_erase_unsorted"][1]["defaults"] = {} +defs["ImVector_ImFontConfig_erase_unsorted"][1]["funcname"] = "erase_unsorted" +defs["ImVector_ImFontConfig_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_ImFontConfig_erase_unsorted" +defs["ImVector_ImFontConfig_erase_unsorted"][1]["ret"] = "ImFontConfig*" +defs["ImVector_ImFontConfig_erase_unsorted"][1]["signature"] = "(const ImFontConfig*)" +defs["ImVector_ImFontConfig_erase_unsorted"][1]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_erase_unsorted"][1]["templatedgen"] = true +defs["ImVector_ImFontConfig_erase_unsorted"]["(const ImFontConfig*)"] = defs["ImVector_ImFontConfig_erase_unsorted"][1] +defs["ImVector_ImFontConfig_front"] = {} +defs["ImVector_ImFontConfig_front"][1] = {} +defs["ImVector_ImFontConfig_front"][1]["args"] = "(ImVector_ImFontConfig* self)" +defs["ImVector_ImFontConfig_front"][1]["argsT"] = {} +defs["ImVector_ImFontConfig_front"][1]["argsT"][1] = {} +defs["ImVector_ImFontConfig_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontConfig_front"][1]["argsT"][1]["type"] = "ImVector_ImFontConfig*" +defs["ImVector_ImFontConfig_front"][1]["call_args"] = "()" +defs["ImVector_ImFontConfig_front"][1]["cimguiname"] = "ImVector_ImFontConfig_front" +defs["ImVector_ImFontConfig_front"][1]["defaults"] = {} +defs["ImVector_ImFontConfig_front"][1]["funcname"] = "front" +defs["ImVector_ImFontConfig_front"][1]["ov_cimguiname"] = "ImVector_ImFontConfig_front" +defs["ImVector_ImFontConfig_front"][1]["ret"] = "ImFontConfig*" +defs["ImVector_ImFontConfig_front"][1]["retref"] = "&" +defs["ImVector_ImFontConfig_front"][1]["signature"] = "()" +defs["ImVector_ImFontConfig_front"][1]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_front"][1]["templatedgen"] = true +defs["ImVector_ImFontConfig_front"][2] = {} +defs["ImVector_ImFontConfig_front"][2]["args"] = "(const ImVector_ImFontConfig* self)" +defs["ImVector_ImFontConfig_front"][2]["argsT"] = {} +defs["ImVector_ImFontConfig_front"][2]["argsT"][1] = {} +defs["ImVector_ImFontConfig_front"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontConfig_front"][2]["argsT"][1]["type"] = "const ImVector_ImFontConfig*" +defs["ImVector_ImFontConfig_front"][2]["call_args"] = "()" +defs["ImVector_ImFontConfig_front"][2]["cimguiname"] = "ImVector_ImFontConfig_front" +defs["ImVector_ImFontConfig_front"][2]["defaults"] = {} +defs["ImVector_ImFontConfig_front"][2]["funcname"] = "front" +defs["ImVector_ImFontConfig_front"][2]["ov_cimguiname"] = "ImVector_ImFontConfig_front_const" +defs["ImVector_ImFontConfig_front"][2]["ret"] = "ImFontConfig const *" +defs["ImVector_ImFontConfig_front"][2]["retref"] = "&" +defs["ImVector_ImFontConfig_front"][2]["signature"] = "()const" +defs["ImVector_ImFontConfig_front"][2]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_front"][2]["templatedgen"] = true +defs["ImVector_ImFontConfig_front"]["()"] = defs["ImVector_ImFontConfig_front"][1] +defs["ImVector_ImFontConfig_front"]["()const"] = defs["ImVector_ImFontConfig_front"][2] +defs["ImVector_ImFontConfig_index_from_ptr"] = {} +defs["ImVector_ImFontConfig_index_from_ptr"][1] = {} +defs["ImVector_ImFontConfig_index_from_ptr"][1]["args"] = "(const ImVector_ImFontConfig* self,ImFontConfig const * it)" +defs["ImVector_ImFontConfig_index_from_ptr"][1]["argsT"] = {} +defs["ImVector_ImFontConfig_index_from_ptr"][1]["argsT"][1] = {} +defs["ImVector_ImFontConfig_index_from_ptr"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontConfig_index_from_ptr"][1]["argsT"][1]["type"] = "const ImVector_ImFontConfig*" +defs["ImVector_ImFontConfig_index_from_ptr"][1]["argsT"][2] = {} +defs["ImVector_ImFontConfig_index_from_ptr"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImFontConfig_index_from_ptr"][1]["argsT"][2]["type"] = "ImFontConfig const *" +defs["ImVector_ImFontConfig_index_from_ptr"][1]["call_args"] = "(it)" +defs["ImVector_ImFontConfig_index_from_ptr"][1]["cimguiname"] = "ImVector_ImFontConfig_index_from_ptr" +defs["ImVector_ImFontConfig_index_from_ptr"][1]["defaults"] = {} +defs["ImVector_ImFontConfig_index_from_ptr"][1]["funcname"] = "index_from_ptr" +defs["ImVector_ImFontConfig_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_ImFontConfig_index_from_ptr" +defs["ImVector_ImFontConfig_index_from_ptr"][1]["ret"] = "int" +defs["ImVector_ImFontConfig_index_from_ptr"][1]["signature"] = "(const ImFontConfig*)const" +defs["ImVector_ImFontConfig_index_from_ptr"][1]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_index_from_ptr"][1]["templatedgen"] = true +defs["ImVector_ImFontConfig_index_from_ptr"]["(const ImFontConfig*)const"] = defs["ImVector_ImFontConfig_index_from_ptr"][1] +defs["ImVector_ImFontConfig_insert"] = {} +defs["ImVector_ImFontConfig_insert"][1] = {} +defs["ImVector_ImFontConfig_insert"][1]["args"] = "(ImVector_ImFontConfig* self,ImFontConfig const * it,const ImFontConfig v)" +defs["ImVector_ImFontConfig_insert"][1]["argsT"] = {} +defs["ImVector_ImFontConfig_insert"][1]["argsT"][1] = {} +defs["ImVector_ImFontConfig_insert"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontConfig_insert"][1]["argsT"][1]["type"] = "ImVector_ImFontConfig*" +defs["ImVector_ImFontConfig_insert"][1]["argsT"][2] = {} +defs["ImVector_ImFontConfig_insert"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImFontConfig_insert"][1]["argsT"][2]["type"] = "ImFontConfig const *" +defs["ImVector_ImFontConfig_insert"][1]["argsT"][3] = {} +defs["ImVector_ImFontConfig_insert"][1]["argsT"][3]["name"] = "v" +defs["ImVector_ImFontConfig_insert"][1]["argsT"][3]["type"] = "const ImFontConfig" +defs["ImVector_ImFontConfig_insert"][1]["call_args"] = "(it,v)" +defs["ImVector_ImFontConfig_insert"][1]["cimguiname"] = "ImVector_ImFontConfig_insert" +defs["ImVector_ImFontConfig_insert"][1]["defaults"] = {} +defs["ImVector_ImFontConfig_insert"][1]["funcname"] = "insert" +defs["ImVector_ImFontConfig_insert"][1]["ov_cimguiname"] = "ImVector_ImFontConfig_insert" +defs["ImVector_ImFontConfig_insert"][1]["ret"] = "ImFontConfig*" +defs["ImVector_ImFontConfig_insert"][1]["signature"] = "(const ImFontConfig*,const ImFontConfig)" +defs["ImVector_ImFontConfig_insert"][1]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_insert"][1]["templatedgen"] = true +defs["ImVector_ImFontConfig_insert"]["(const ImFontConfig*,const ImFontConfig)"] = defs["ImVector_ImFontConfig_insert"][1] +defs["ImVector_ImFontConfig_pop_back"] = {} +defs["ImVector_ImFontConfig_pop_back"][1] = {} +defs["ImVector_ImFontConfig_pop_back"][1]["args"] = "(ImVector_ImFontConfig* self)" +defs["ImVector_ImFontConfig_pop_back"][1]["argsT"] = {} +defs["ImVector_ImFontConfig_pop_back"][1]["argsT"][1] = {} +defs["ImVector_ImFontConfig_pop_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontConfig_pop_back"][1]["argsT"][1]["type"] = "ImVector_ImFontConfig*" +defs["ImVector_ImFontConfig_pop_back"][1]["call_args"] = "()" +defs["ImVector_ImFontConfig_pop_back"][1]["cimguiname"] = "ImVector_ImFontConfig_pop_back" +defs["ImVector_ImFontConfig_pop_back"][1]["defaults"] = {} +defs["ImVector_ImFontConfig_pop_back"][1]["funcname"] = "pop_back" +defs["ImVector_ImFontConfig_pop_back"][1]["ov_cimguiname"] = "ImVector_ImFontConfig_pop_back" +defs["ImVector_ImFontConfig_pop_back"][1]["ret"] = "void" +defs["ImVector_ImFontConfig_pop_back"][1]["signature"] = "()" +defs["ImVector_ImFontConfig_pop_back"][1]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_pop_back"][1]["templatedgen"] = true +defs["ImVector_ImFontConfig_pop_back"]["()"] = defs["ImVector_ImFontConfig_pop_back"][1] +defs["ImVector_ImFontConfig_push_back"] = {} +defs["ImVector_ImFontConfig_push_back"][1] = {} +defs["ImVector_ImFontConfig_push_back"][1]["args"] = "(ImVector_ImFontConfig* self,const ImFontConfig v)" +defs["ImVector_ImFontConfig_push_back"][1]["argsT"] = {} +defs["ImVector_ImFontConfig_push_back"][1]["argsT"][1] = {} +defs["ImVector_ImFontConfig_push_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontConfig_push_back"][1]["argsT"][1]["type"] = "ImVector_ImFontConfig*" +defs["ImVector_ImFontConfig_push_back"][1]["argsT"][2] = {} +defs["ImVector_ImFontConfig_push_back"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImFontConfig_push_back"][1]["argsT"][2]["type"] = "const ImFontConfig" +defs["ImVector_ImFontConfig_push_back"][1]["call_args"] = "(v)" +defs["ImVector_ImFontConfig_push_back"][1]["cimguiname"] = "ImVector_ImFontConfig_push_back" +defs["ImVector_ImFontConfig_push_back"][1]["defaults"] = {} +defs["ImVector_ImFontConfig_push_back"][1]["funcname"] = "push_back" +defs["ImVector_ImFontConfig_push_back"][1]["ov_cimguiname"] = "ImVector_ImFontConfig_push_back" +defs["ImVector_ImFontConfig_push_back"][1]["ret"] = "void" +defs["ImVector_ImFontConfig_push_back"][1]["signature"] = "(const ImFontConfig)" +defs["ImVector_ImFontConfig_push_back"][1]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_push_back"][1]["templatedgen"] = true +defs["ImVector_ImFontConfig_push_back"]["(const ImFontConfig)"] = defs["ImVector_ImFontConfig_push_back"][1] +defs["ImVector_ImFontConfig_push_front"] = {} +defs["ImVector_ImFontConfig_push_front"][1] = {} +defs["ImVector_ImFontConfig_push_front"][1]["args"] = "(ImVector_ImFontConfig* self,const ImFontConfig v)" +defs["ImVector_ImFontConfig_push_front"][1]["argsT"] = {} +defs["ImVector_ImFontConfig_push_front"][1]["argsT"][1] = {} +defs["ImVector_ImFontConfig_push_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontConfig_push_front"][1]["argsT"][1]["type"] = "ImVector_ImFontConfig*" +defs["ImVector_ImFontConfig_push_front"][1]["argsT"][2] = {} +defs["ImVector_ImFontConfig_push_front"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImFontConfig_push_front"][1]["argsT"][2]["type"] = "const ImFontConfig" +defs["ImVector_ImFontConfig_push_front"][1]["call_args"] = "(v)" +defs["ImVector_ImFontConfig_push_front"][1]["cimguiname"] = "ImVector_ImFontConfig_push_front" +defs["ImVector_ImFontConfig_push_front"][1]["defaults"] = {} +defs["ImVector_ImFontConfig_push_front"][1]["funcname"] = "push_front" +defs["ImVector_ImFontConfig_push_front"][1]["ov_cimguiname"] = "ImVector_ImFontConfig_push_front" +defs["ImVector_ImFontConfig_push_front"][1]["ret"] = "void" +defs["ImVector_ImFontConfig_push_front"][1]["signature"] = "(const ImFontConfig)" +defs["ImVector_ImFontConfig_push_front"][1]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_push_front"][1]["templatedgen"] = true +defs["ImVector_ImFontConfig_push_front"]["(const ImFontConfig)"] = defs["ImVector_ImFontConfig_push_front"][1] +defs["ImVector_ImFontConfig_reserve"] = {} +defs["ImVector_ImFontConfig_reserve"][1] = {} +defs["ImVector_ImFontConfig_reserve"][1]["args"] = "(ImVector_ImFontConfig* self,int new_capacity)" +defs["ImVector_ImFontConfig_reserve"][1]["argsT"] = {} +defs["ImVector_ImFontConfig_reserve"][1]["argsT"][1] = {} +defs["ImVector_ImFontConfig_reserve"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontConfig_reserve"][1]["argsT"][1]["type"] = "ImVector_ImFontConfig*" +defs["ImVector_ImFontConfig_reserve"][1]["argsT"][2] = {} +defs["ImVector_ImFontConfig_reserve"][1]["argsT"][2]["name"] = "new_capacity" +defs["ImVector_ImFontConfig_reserve"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImFontConfig_reserve"][1]["call_args"] = "(new_capacity)" +defs["ImVector_ImFontConfig_reserve"][1]["cimguiname"] = "ImVector_ImFontConfig_reserve" +defs["ImVector_ImFontConfig_reserve"][1]["defaults"] = {} +defs["ImVector_ImFontConfig_reserve"][1]["funcname"] = "reserve" +defs["ImVector_ImFontConfig_reserve"][1]["ov_cimguiname"] = "ImVector_ImFontConfig_reserve" +defs["ImVector_ImFontConfig_reserve"][1]["ret"] = "void" +defs["ImVector_ImFontConfig_reserve"][1]["signature"] = "(int)" +defs["ImVector_ImFontConfig_reserve"][1]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_reserve"][1]["templatedgen"] = true +defs["ImVector_ImFontConfig_reserve"]["(int)"] = defs["ImVector_ImFontConfig_reserve"][1] +defs["ImVector_ImFontConfig_resize"] = {} +defs["ImVector_ImFontConfig_resize"][1] = {} +defs["ImVector_ImFontConfig_resize"][1]["args"] = "(ImVector_ImFontConfig* self,int new_size)" +defs["ImVector_ImFontConfig_resize"][1]["argsT"] = {} +defs["ImVector_ImFontConfig_resize"][1]["argsT"][1] = {} +defs["ImVector_ImFontConfig_resize"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontConfig_resize"][1]["argsT"][1]["type"] = "ImVector_ImFontConfig*" +defs["ImVector_ImFontConfig_resize"][1]["argsT"][2] = {} +defs["ImVector_ImFontConfig_resize"][1]["argsT"][2]["name"] = "new_size" +defs["ImVector_ImFontConfig_resize"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImFontConfig_resize"][1]["call_args"] = "(new_size)" +defs["ImVector_ImFontConfig_resize"][1]["cimguiname"] = "ImVector_ImFontConfig_resize" +defs["ImVector_ImFontConfig_resize"][1]["defaults"] = {} +defs["ImVector_ImFontConfig_resize"][1]["funcname"] = "resize" +defs["ImVector_ImFontConfig_resize"][1]["ov_cimguiname"] = "ImVector_ImFontConfig_resize" +defs["ImVector_ImFontConfig_resize"][1]["ret"] = "void" +defs["ImVector_ImFontConfig_resize"][1]["signature"] = "(int)" +defs["ImVector_ImFontConfig_resize"][1]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_resize"][1]["templatedgen"] = true +defs["ImVector_ImFontConfig_resize"][2] = {} +defs["ImVector_ImFontConfig_resize"][2]["args"] = "(ImVector_ImFontConfig* self,int new_size,const ImFontConfig v)" +defs["ImVector_ImFontConfig_resize"][2]["argsT"] = {} +defs["ImVector_ImFontConfig_resize"][2]["argsT"][1] = {} +defs["ImVector_ImFontConfig_resize"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontConfig_resize"][2]["argsT"][1]["type"] = "ImVector_ImFontConfig*" +defs["ImVector_ImFontConfig_resize"][2]["argsT"][2] = {} +defs["ImVector_ImFontConfig_resize"][2]["argsT"][2]["name"] = "new_size" +defs["ImVector_ImFontConfig_resize"][2]["argsT"][2]["type"] = "int" +defs["ImVector_ImFontConfig_resize"][2]["argsT"][3] = {} +defs["ImVector_ImFontConfig_resize"][2]["argsT"][3]["name"] = "v" +defs["ImVector_ImFontConfig_resize"][2]["argsT"][3]["type"] = "const ImFontConfig" +defs["ImVector_ImFontConfig_resize"][2]["call_args"] = "(new_size,v)" +defs["ImVector_ImFontConfig_resize"][2]["cimguiname"] = "ImVector_ImFontConfig_resize" +defs["ImVector_ImFontConfig_resize"][2]["defaults"] = {} +defs["ImVector_ImFontConfig_resize"][2]["funcname"] = "resize" +defs["ImVector_ImFontConfig_resize"][2]["ov_cimguiname"] = "ImVector_ImFontConfig_resizeT" +defs["ImVector_ImFontConfig_resize"][2]["ret"] = "void" +defs["ImVector_ImFontConfig_resize"][2]["signature"] = "(int,const ImFontConfig)" +defs["ImVector_ImFontConfig_resize"][2]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_resize"][2]["templatedgen"] = true +defs["ImVector_ImFontConfig_resize"]["(int)"] = defs["ImVector_ImFontConfig_resize"][1] +defs["ImVector_ImFontConfig_resize"]["(int,const ImFontConfig)"] = defs["ImVector_ImFontConfig_resize"][2] +defs["ImVector_ImFontConfig_size"] = {} +defs["ImVector_ImFontConfig_size"][1] = {} +defs["ImVector_ImFontConfig_size"][1]["args"] = "(const ImVector_ImFontConfig* self)" +defs["ImVector_ImFontConfig_size"][1]["argsT"] = {} +defs["ImVector_ImFontConfig_size"][1]["argsT"][1] = {} +defs["ImVector_ImFontConfig_size"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontConfig_size"][1]["argsT"][1]["type"] = "const ImVector_ImFontConfig*" +defs["ImVector_ImFontConfig_size"][1]["call_args"] = "()" +defs["ImVector_ImFontConfig_size"][1]["cimguiname"] = "ImVector_ImFontConfig_size" +defs["ImVector_ImFontConfig_size"][1]["defaults"] = {} +defs["ImVector_ImFontConfig_size"][1]["funcname"] = "size" +defs["ImVector_ImFontConfig_size"][1]["ov_cimguiname"] = "ImVector_ImFontConfig_size" +defs["ImVector_ImFontConfig_size"][1]["ret"] = "int" +defs["ImVector_ImFontConfig_size"][1]["signature"] = "()const" +defs["ImVector_ImFontConfig_size"][1]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_size"][1]["templatedgen"] = true +defs["ImVector_ImFontConfig_size"]["()const"] = defs["ImVector_ImFontConfig_size"][1] +defs["ImVector_ImFontConfig_size_in_bytes"] = {} +defs["ImVector_ImFontConfig_size_in_bytes"][1] = {} +defs["ImVector_ImFontConfig_size_in_bytes"][1]["args"] = "(const ImVector_ImFontConfig* self)" +defs["ImVector_ImFontConfig_size_in_bytes"][1]["argsT"] = {} +defs["ImVector_ImFontConfig_size_in_bytes"][1]["argsT"][1] = {} +defs["ImVector_ImFontConfig_size_in_bytes"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontConfig_size_in_bytes"][1]["argsT"][1]["type"] = "const ImVector_ImFontConfig*" +defs["ImVector_ImFontConfig_size_in_bytes"][1]["call_args"] = "()" +defs["ImVector_ImFontConfig_size_in_bytes"][1]["cimguiname"] = "ImVector_ImFontConfig_size_in_bytes" +defs["ImVector_ImFontConfig_size_in_bytes"][1]["defaults"] = {} +defs["ImVector_ImFontConfig_size_in_bytes"][1]["funcname"] = "size_in_bytes" +defs["ImVector_ImFontConfig_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_ImFontConfig_size_in_bytes" +defs["ImVector_ImFontConfig_size_in_bytes"][1]["ret"] = "int" +defs["ImVector_ImFontConfig_size_in_bytes"][1]["signature"] = "()const" +defs["ImVector_ImFontConfig_size_in_bytes"][1]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_size_in_bytes"][1]["templatedgen"] = true +defs["ImVector_ImFontConfig_size_in_bytes"]["()const"] = defs["ImVector_ImFontConfig_size_in_bytes"][1] +defs["ImVector_ImFontConfig_swap"] = {} +defs["ImVector_ImFontConfig_swap"][1] = {} +defs["ImVector_ImFontConfig_swap"][1]["args"] = "(ImVector_ImFontConfig* self,ImVector_ImFontConfig rhs)" +defs["ImVector_ImFontConfig_swap"][1]["argsT"] = {} +defs["ImVector_ImFontConfig_swap"][1]["argsT"][1] = {} +defs["ImVector_ImFontConfig_swap"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontConfig_swap"][1]["argsT"][1]["type"] = "ImVector_ImFontConfig*" +defs["ImVector_ImFontConfig_swap"][1]["argsT"][2] = {} +defs["ImVector_ImFontConfig_swap"][1]["argsT"][2]["name"] = "rhs" +defs["ImVector_ImFontConfig_swap"][1]["argsT"][2]["type"] = "ImVector_ImFontConfig&" +defs["ImVector_ImFontConfig_swap"][1]["call_args"] = "(rhs)" +defs["ImVector_ImFontConfig_swap"][1]["cimguiname"] = "ImVector_ImFontConfig_swap" +defs["ImVector_ImFontConfig_swap"][1]["defaults"] = {} +defs["ImVector_ImFontConfig_swap"][1]["funcname"] = "swap" +defs["ImVector_ImFontConfig_swap"][1]["ov_cimguiname"] = "ImVector_ImFontConfig_swap" +defs["ImVector_ImFontConfig_swap"][1]["ret"] = "void" +defs["ImVector_ImFontConfig_swap"][1]["signature"] = "(ImVector)" +defs["ImVector_ImFontConfig_swap"][1]["stname"] = "ImVector_ImFontConfig" +defs["ImVector_ImFontConfig_swap"][1]["templatedgen"] = true +defs["ImVector_ImFontConfig_swap"]["(ImVector)"] = defs["ImVector_ImFontConfig_swap"][1] +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"] = {} +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"][1] = {} +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"][1]["args"] = "()" +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"][1]["argsT"] = {} +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"][1]["call_args"] = "()" +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"][1]["cimguiname"] = "ImVector_ImFontGlyph_ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"][1]["constructor"] = true +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"][1]["defaults"] = {} +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"][1]["funcname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"][1]["ov_cimguiname"] = "ImVector_ImFontGlyph_ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"][1]["signature"] = "()" +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"][1]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"][1]["templatedgen"] = true +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"][2] = {} +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"][2]["args"] = "(const ImVector_ImFontGlyph src)" +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"][2]["argsT"] = {} +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"][2]["argsT"][1] = {} +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"][2]["argsT"][1]["name"] = "src" +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"][2]["argsT"][1]["type"] = "const ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"][2]["call_args"] = "(src)" +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"][2]["cimguiname"] = "ImVector_ImFontGlyph_ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"][2]["constructor"] = true +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"][2]["defaults"] = {} +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"][2]["funcname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"][2]["ov_cimguiname"] = "ImVector_ImFontGlyph_ImVector_ImFontGlyphVector" +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"][2]["signature"] = "(const ImVector)" +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"][2]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"][2]["templatedgen"] = true +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"]["()"] = defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"][1] +defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"]["(const ImVector)"] = defs["ImVector_ImFontGlyph_ImVector_ImFontGlyph"][2] +defs["ImVector_ImFontGlyph__grow_capacity"] = {} +defs["ImVector_ImFontGlyph__grow_capacity"][1] = {} +defs["ImVector_ImFontGlyph__grow_capacity"][1]["args"] = "(const ImVector_ImFontGlyph* self,int sz)" +defs["ImVector_ImFontGlyph__grow_capacity"][1]["argsT"] = {} +defs["ImVector_ImFontGlyph__grow_capacity"][1]["argsT"][1] = {} +defs["ImVector_ImFontGlyph__grow_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontGlyph__grow_capacity"][1]["argsT"][1]["type"] = "const ImVector_ImFontGlyph*" +defs["ImVector_ImFontGlyph__grow_capacity"][1]["argsT"][2] = {} +defs["ImVector_ImFontGlyph__grow_capacity"][1]["argsT"][2]["name"] = "sz" +defs["ImVector_ImFontGlyph__grow_capacity"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImFontGlyph__grow_capacity"][1]["call_args"] = "(sz)" +defs["ImVector_ImFontGlyph__grow_capacity"][1]["cimguiname"] = "ImVector_ImFontGlyph__grow_capacity" +defs["ImVector_ImFontGlyph__grow_capacity"][1]["defaults"] = {} +defs["ImVector_ImFontGlyph__grow_capacity"][1]["funcname"] = "_grow_capacity" +defs["ImVector_ImFontGlyph__grow_capacity"][1]["ov_cimguiname"] = "ImVector_ImFontGlyph__grow_capacity" +defs["ImVector_ImFontGlyph__grow_capacity"][1]["ret"] = "int" +defs["ImVector_ImFontGlyph__grow_capacity"][1]["signature"] = "(int)const" +defs["ImVector_ImFontGlyph__grow_capacity"][1]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph__grow_capacity"][1]["templatedgen"] = true +defs["ImVector_ImFontGlyph__grow_capacity"]["(int)const"] = defs["ImVector_ImFontGlyph__grow_capacity"][1] +defs["ImVector_ImFontGlyph_back"] = {} +defs["ImVector_ImFontGlyph_back"][1] = {} +defs["ImVector_ImFontGlyph_back"][1]["args"] = "(ImVector_ImFontGlyph* self)" +defs["ImVector_ImFontGlyph_back"][1]["argsT"] = {} +defs["ImVector_ImFontGlyph_back"][1]["argsT"][1] = {} +defs["ImVector_ImFontGlyph_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontGlyph_back"][1]["argsT"][1]["type"] = "ImVector_ImFontGlyph*" +defs["ImVector_ImFontGlyph_back"][1]["call_args"] = "()" +defs["ImVector_ImFontGlyph_back"][1]["cimguiname"] = "ImVector_ImFontGlyph_back" +defs["ImVector_ImFontGlyph_back"][1]["defaults"] = {} +defs["ImVector_ImFontGlyph_back"][1]["funcname"] = "back" +defs["ImVector_ImFontGlyph_back"][1]["ov_cimguiname"] = "ImVector_ImFontGlyph_back" +defs["ImVector_ImFontGlyph_back"][1]["ret"] = "ImFontGlyph*" +defs["ImVector_ImFontGlyph_back"][1]["retref"] = "&" +defs["ImVector_ImFontGlyph_back"][1]["signature"] = "()" +defs["ImVector_ImFontGlyph_back"][1]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_back"][1]["templatedgen"] = true +defs["ImVector_ImFontGlyph_back"][2] = {} +defs["ImVector_ImFontGlyph_back"][2]["args"] = "(const ImVector_ImFontGlyph* self)" +defs["ImVector_ImFontGlyph_back"][2]["argsT"] = {} +defs["ImVector_ImFontGlyph_back"][2]["argsT"][1] = {} +defs["ImVector_ImFontGlyph_back"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontGlyph_back"][2]["argsT"][1]["type"] = "const ImVector_ImFontGlyph*" +defs["ImVector_ImFontGlyph_back"][2]["call_args"] = "()" +defs["ImVector_ImFontGlyph_back"][2]["cimguiname"] = "ImVector_ImFontGlyph_back" +defs["ImVector_ImFontGlyph_back"][2]["defaults"] = {} +defs["ImVector_ImFontGlyph_back"][2]["funcname"] = "back" +defs["ImVector_ImFontGlyph_back"][2]["ov_cimguiname"] = "ImVector_ImFontGlyph_back_const" +defs["ImVector_ImFontGlyph_back"][2]["ret"] = "ImFontGlyph const *" +defs["ImVector_ImFontGlyph_back"][2]["retref"] = "&" +defs["ImVector_ImFontGlyph_back"][2]["signature"] = "()const" +defs["ImVector_ImFontGlyph_back"][2]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_back"][2]["templatedgen"] = true +defs["ImVector_ImFontGlyph_back"]["()"] = defs["ImVector_ImFontGlyph_back"][1] +defs["ImVector_ImFontGlyph_back"]["()const"] = defs["ImVector_ImFontGlyph_back"][2] +defs["ImVector_ImFontGlyph_begin"] = {} +defs["ImVector_ImFontGlyph_begin"][1] = {} +defs["ImVector_ImFontGlyph_begin"][1]["args"] = "(ImVector_ImFontGlyph* self)" +defs["ImVector_ImFontGlyph_begin"][1]["argsT"] = {} +defs["ImVector_ImFontGlyph_begin"][1]["argsT"][1] = {} +defs["ImVector_ImFontGlyph_begin"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontGlyph_begin"][1]["argsT"][1]["type"] = "ImVector_ImFontGlyph*" +defs["ImVector_ImFontGlyph_begin"][1]["call_args"] = "()" +defs["ImVector_ImFontGlyph_begin"][1]["cimguiname"] = "ImVector_ImFontGlyph_begin" +defs["ImVector_ImFontGlyph_begin"][1]["defaults"] = {} +defs["ImVector_ImFontGlyph_begin"][1]["funcname"] = "begin" +defs["ImVector_ImFontGlyph_begin"][1]["ov_cimguiname"] = "ImVector_ImFontGlyph_begin" +defs["ImVector_ImFontGlyph_begin"][1]["ret"] = "ImFontGlyph*" +defs["ImVector_ImFontGlyph_begin"][1]["signature"] = "()" +defs["ImVector_ImFontGlyph_begin"][1]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_begin"][1]["templatedgen"] = true +defs["ImVector_ImFontGlyph_begin"][2] = {} +defs["ImVector_ImFontGlyph_begin"][2]["args"] = "(const ImVector_ImFontGlyph* self)" +defs["ImVector_ImFontGlyph_begin"][2]["argsT"] = {} +defs["ImVector_ImFontGlyph_begin"][2]["argsT"][1] = {} +defs["ImVector_ImFontGlyph_begin"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontGlyph_begin"][2]["argsT"][1]["type"] = "const ImVector_ImFontGlyph*" +defs["ImVector_ImFontGlyph_begin"][2]["call_args"] = "()" +defs["ImVector_ImFontGlyph_begin"][2]["cimguiname"] = "ImVector_ImFontGlyph_begin" +defs["ImVector_ImFontGlyph_begin"][2]["defaults"] = {} +defs["ImVector_ImFontGlyph_begin"][2]["funcname"] = "begin" +defs["ImVector_ImFontGlyph_begin"][2]["ov_cimguiname"] = "ImVector_ImFontGlyph_begin_const" +defs["ImVector_ImFontGlyph_begin"][2]["ret"] = "ImFontGlyph const *" +defs["ImVector_ImFontGlyph_begin"][2]["signature"] = "()const" +defs["ImVector_ImFontGlyph_begin"][2]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_begin"][2]["templatedgen"] = true +defs["ImVector_ImFontGlyph_begin"]["()"] = defs["ImVector_ImFontGlyph_begin"][1] +defs["ImVector_ImFontGlyph_begin"]["()const"] = defs["ImVector_ImFontGlyph_begin"][2] +defs["ImVector_ImFontGlyph_capacity"] = {} +defs["ImVector_ImFontGlyph_capacity"][1] = {} +defs["ImVector_ImFontGlyph_capacity"][1]["args"] = "(const ImVector_ImFontGlyph* self)" +defs["ImVector_ImFontGlyph_capacity"][1]["argsT"] = {} +defs["ImVector_ImFontGlyph_capacity"][1]["argsT"][1] = {} +defs["ImVector_ImFontGlyph_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontGlyph_capacity"][1]["argsT"][1]["type"] = "const ImVector_ImFontGlyph*" +defs["ImVector_ImFontGlyph_capacity"][1]["call_args"] = "()" +defs["ImVector_ImFontGlyph_capacity"][1]["cimguiname"] = "ImVector_ImFontGlyph_capacity" +defs["ImVector_ImFontGlyph_capacity"][1]["defaults"] = {} +defs["ImVector_ImFontGlyph_capacity"][1]["funcname"] = "capacity" +defs["ImVector_ImFontGlyph_capacity"][1]["ov_cimguiname"] = "ImVector_ImFontGlyph_capacity" +defs["ImVector_ImFontGlyph_capacity"][1]["ret"] = "int" +defs["ImVector_ImFontGlyph_capacity"][1]["signature"] = "()const" +defs["ImVector_ImFontGlyph_capacity"][1]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_capacity"][1]["templatedgen"] = true +defs["ImVector_ImFontGlyph_capacity"]["()const"] = defs["ImVector_ImFontGlyph_capacity"][1] +defs["ImVector_ImFontGlyph_clear"] = {} +defs["ImVector_ImFontGlyph_clear"][1] = {} +defs["ImVector_ImFontGlyph_clear"][1]["args"] = "(ImVector_ImFontGlyph* self)" +defs["ImVector_ImFontGlyph_clear"][1]["argsT"] = {} +defs["ImVector_ImFontGlyph_clear"][1]["argsT"][1] = {} +defs["ImVector_ImFontGlyph_clear"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontGlyph_clear"][1]["argsT"][1]["type"] = "ImVector_ImFontGlyph*" +defs["ImVector_ImFontGlyph_clear"][1]["call_args"] = "()" +defs["ImVector_ImFontGlyph_clear"][1]["cimguiname"] = "ImVector_ImFontGlyph_clear" +defs["ImVector_ImFontGlyph_clear"][1]["defaults"] = {} +defs["ImVector_ImFontGlyph_clear"][1]["funcname"] = "clear" +defs["ImVector_ImFontGlyph_clear"][1]["ov_cimguiname"] = "ImVector_ImFontGlyph_clear" +defs["ImVector_ImFontGlyph_clear"][1]["ret"] = "void" +defs["ImVector_ImFontGlyph_clear"][1]["signature"] = "()" +defs["ImVector_ImFontGlyph_clear"][1]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_clear"][1]["templatedgen"] = true +defs["ImVector_ImFontGlyph_clear"]["()"] = defs["ImVector_ImFontGlyph_clear"][1] +defs["ImVector_ImFontGlyph_contains"] = {} +defs["ImVector_ImFontGlyph_contains"][1] = {} +defs["ImVector_ImFontGlyph_contains"][1]["args"] = "(const ImVector_ImFontGlyph* self,const ImFontGlyph v)" +defs["ImVector_ImFontGlyph_contains"][1]["argsT"] = {} +defs["ImVector_ImFontGlyph_contains"][1]["argsT"][1] = {} +defs["ImVector_ImFontGlyph_contains"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontGlyph_contains"][1]["argsT"][1]["type"] = "const ImVector_ImFontGlyph*" +defs["ImVector_ImFontGlyph_contains"][1]["argsT"][2] = {} +defs["ImVector_ImFontGlyph_contains"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImFontGlyph_contains"][1]["argsT"][2]["type"] = "const ImFontGlyph" +defs["ImVector_ImFontGlyph_contains"][1]["call_args"] = "(v)" +defs["ImVector_ImFontGlyph_contains"][1]["cimguiname"] = "ImVector_ImFontGlyph_contains" +defs["ImVector_ImFontGlyph_contains"][1]["defaults"] = {} +defs["ImVector_ImFontGlyph_contains"][1]["funcname"] = "contains" +defs["ImVector_ImFontGlyph_contains"][1]["ov_cimguiname"] = "ImVector_ImFontGlyph_contains" +defs["ImVector_ImFontGlyph_contains"][1]["ret"] = "bool" +defs["ImVector_ImFontGlyph_contains"][1]["signature"] = "(const ImFontGlyph)const" +defs["ImVector_ImFontGlyph_contains"][1]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_contains"][1]["templatedgen"] = true +defs["ImVector_ImFontGlyph_contains"]["(const ImFontGlyph)const"] = defs["ImVector_ImFontGlyph_contains"][1] +defs["ImVector_ImFontGlyph_destroy"] = {} +defs["ImVector_ImFontGlyph_destroy"][1] = {} +defs["ImVector_ImFontGlyph_destroy"][1]["args"] = "(ImVector_ImFontGlyph* self)" +defs["ImVector_ImFontGlyph_destroy"][1]["argsT"] = {} +defs["ImVector_ImFontGlyph_destroy"][1]["argsT"][1] = {} +defs["ImVector_ImFontGlyph_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontGlyph_destroy"][1]["argsT"][1]["type"] = "ImVector_ImFontGlyph*" +defs["ImVector_ImFontGlyph_destroy"][1]["call_args"] = "(self)" +defs["ImVector_ImFontGlyph_destroy"][1]["cimguiname"] = "ImVector_ImFontGlyph_destroy" +defs["ImVector_ImFontGlyph_destroy"][1]["defaults"] = {} +defs["ImVector_ImFontGlyph_destroy"][1]["destructor"] = true +defs["ImVector_ImFontGlyph_destroy"][1]["ov_cimguiname"] = "ImVector_ImFontGlyph_destroy" +defs["ImVector_ImFontGlyph_destroy"][1]["ret"] = "void" +defs["ImVector_ImFontGlyph_destroy"][1]["signature"] = "(ImVector_ImFontGlyph*)" +defs["ImVector_ImFontGlyph_destroy"][1]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_destroy"]["(ImVector_ImFontGlyph*)"] = defs["ImVector_ImFontGlyph_destroy"][1] +defs["ImVector_ImFontGlyph_empty"] = {} +defs["ImVector_ImFontGlyph_empty"][1] = {} +defs["ImVector_ImFontGlyph_empty"][1]["args"] = "(const ImVector_ImFontGlyph* self)" +defs["ImVector_ImFontGlyph_empty"][1]["argsT"] = {} +defs["ImVector_ImFontGlyph_empty"][1]["argsT"][1] = {} +defs["ImVector_ImFontGlyph_empty"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontGlyph_empty"][1]["argsT"][1]["type"] = "const ImVector_ImFontGlyph*" +defs["ImVector_ImFontGlyph_empty"][1]["call_args"] = "()" +defs["ImVector_ImFontGlyph_empty"][1]["cimguiname"] = "ImVector_ImFontGlyph_empty" +defs["ImVector_ImFontGlyph_empty"][1]["defaults"] = {} +defs["ImVector_ImFontGlyph_empty"][1]["funcname"] = "empty" +defs["ImVector_ImFontGlyph_empty"][1]["ov_cimguiname"] = "ImVector_ImFontGlyph_empty" +defs["ImVector_ImFontGlyph_empty"][1]["ret"] = "bool" +defs["ImVector_ImFontGlyph_empty"][1]["signature"] = "()const" +defs["ImVector_ImFontGlyph_empty"][1]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_empty"][1]["templatedgen"] = true +defs["ImVector_ImFontGlyph_empty"]["()const"] = defs["ImVector_ImFontGlyph_empty"][1] +defs["ImVector_ImFontGlyph_end"] = {} +defs["ImVector_ImFontGlyph_end"][1] = {} +defs["ImVector_ImFontGlyph_end"][1]["args"] = "(ImVector_ImFontGlyph* self)" +defs["ImVector_ImFontGlyph_end"][1]["argsT"] = {} +defs["ImVector_ImFontGlyph_end"][1]["argsT"][1] = {} +defs["ImVector_ImFontGlyph_end"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontGlyph_end"][1]["argsT"][1]["type"] = "ImVector_ImFontGlyph*" +defs["ImVector_ImFontGlyph_end"][1]["call_args"] = "()" +defs["ImVector_ImFontGlyph_end"][1]["cimguiname"] = "ImVector_ImFontGlyph_end" +defs["ImVector_ImFontGlyph_end"][1]["defaults"] = {} +defs["ImVector_ImFontGlyph_end"][1]["funcname"] = "end" +defs["ImVector_ImFontGlyph_end"][1]["ov_cimguiname"] = "ImVector_ImFontGlyph_end" +defs["ImVector_ImFontGlyph_end"][1]["ret"] = "ImFontGlyph*" +defs["ImVector_ImFontGlyph_end"][1]["signature"] = "()" +defs["ImVector_ImFontGlyph_end"][1]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_end"][1]["templatedgen"] = true +defs["ImVector_ImFontGlyph_end"][2] = {} +defs["ImVector_ImFontGlyph_end"][2]["args"] = "(const ImVector_ImFontGlyph* self)" +defs["ImVector_ImFontGlyph_end"][2]["argsT"] = {} +defs["ImVector_ImFontGlyph_end"][2]["argsT"][1] = {} +defs["ImVector_ImFontGlyph_end"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontGlyph_end"][2]["argsT"][1]["type"] = "const ImVector_ImFontGlyph*" +defs["ImVector_ImFontGlyph_end"][2]["call_args"] = "()" +defs["ImVector_ImFontGlyph_end"][2]["cimguiname"] = "ImVector_ImFontGlyph_end" +defs["ImVector_ImFontGlyph_end"][2]["defaults"] = {} +defs["ImVector_ImFontGlyph_end"][2]["funcname"] = "end" +defs["ImVector_ImFontGlyph_end"][2]["ov_cimguiname"] = "ImVector_ImFontGlyph_end_const" +defs["ImVector_ImFontGlyph_end"][2]["ret"] = "ImFontGlyph const *" +defs["ImVector_ImFontGlyph_end"][2]["signature"] = "()const" +defs["ImVector_ImFontGlyph_end"][2]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_end"][2]["templatedgen"] = true +defs["ImVector_ImFontGlyph_end"]["()"] = defs["ImVector_ImFontGlyph_end"][1] +defs["ImVector_ImFontGlyph_end"]["()const"] = defs["ImVector_ImFontGlyph_end"][2] +defs["ImVector_ImFontGlyph_erase"] = {} +defs["ImVector_ImFontGlyph_erase"][1] = {} +defs["ImVector_ImFontGlyph_erase"][1]["args"] = "(ImVector_ImFontGlyph* self,ImFontGlyph const * it)" +defs["ImVector_ImFontGlyph_erase"][1]["argsT"] = {} +defs["ImVector_ImFontGlyph_erase"][1]["argsT"][1] = {} +defs["ImVector_ImFontGlyph_erase"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontGlyph_erase"][1]["argsT"][1]["type"] = "ImVector_ImFontGlyph*" +defs["ImVector_ImFontGlyph_erase"][1]["argsT"][2] = {} +defs["ImVector_ImFontGlyph_erase"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImFontGlyph_erase"][1]["argsT"][2]["type"] = "ImFontGlyph const *" +defs["ImVector_ImFontGlyph_erase"][1]["call_args"] = "(it)" +defs["ImVector_ImFontGlyph_erase"][1]["cimguiname"] = "ImVector_ImFontGlyph_erase" +defs["ImVector_ImFontGlyph_erase"][1]["defaults"] = {} +defs["ImVector_ImFontGlyph_erase"][1]["funcname"] = "erase" +defs["ImVector_ImFontGlyph_erase"][1]["ov_cimguiname"] = "ImVector_ImFontGlyph_erase" +defs["ImVector_ImFontGlyph_erase"][1]["ret"] = "ImFontGlyph*" +defs["ImVector_ImFontGlyph_erase"][1]["signature"] = "(const ImFontGlyph*)" +defs["ImVector_ImFontGlyph_erase"][1]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_erase"][1]["templatedgen"] = true +defs["ImVector_ImFontGlyph_erase"][2] = {} +defs["ImVector_ImFontGlyph_erase"][2]["args"] = "(ImVector_ImFontGlyph* self,ImFontGlyph const * it,ImFontGlyph const * it_last)" +defs["ImVector_ImFontGlyph_erase"][2]["argsT"] = {} +defs["ImVector_ImFontGlyph_erase"][2]["argsT"][1] = {} +defs["ImVector_ImFontGlyph_erase"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontGlyph_erase"][2]["argsT"][1]["type"] = "ImVector_ImFontGlyph*" +defs["ImVector_ImFontGlyph_erase"][2]["argsT"][2] = {} +defs["ImVector_ImFontGlyph_erase"][2]["argsT"][2]["name"] = "it" +defs["ImVector_ImFontGlyph_erase"][2]["argsT"][2]["type"] = "ImFontGlyph const *" +defs["ImVector_ImFontGlyph_erase"][2]["argsT"][3] = {} +defs["ImVector_ImFontGlyph_erase"][2]["argsT"][3]["name"] = "it_last" +defs["ImVector_ImFontGlyph_erase"][2]["argsT"][3]["type"] = "ImFontGlyph const *" +defs["ImVector_ImFontGlyph_erase"][2]["call_args"] = "(it,it_last)" +defs["ImVector_ImFontGlyph_erase"][2]["cimguiname"] = "ImVector_ImFontGlyph_erase" +defs["ImVector_ImFontGlyph_erase"][2]["defaults"] = {} +defs["ImVector_ImFontGlyph_erase"][2]["funcname"] = "erase" +defs["ImVector_ImFontGlyph_erase"][2]["ov_cimguiname"] = "ImVector_ImFontGlyph_eraseTPtr" +defs["ImVector_ImFontGlyph_erase"][2]["ret"] = "ImFontGlyph*" +defs["ImVector_ImFontGlyph_erase"][2]["signature"] = "(const ImFontGlyph*,const ImFontGlyph*)" +defs["ImVector_ImFontGlyph_erase"][2]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_erase"][2]["templatedgen"] = true +defs["ImVector_ImFontGlyph_erase"]["(const ImFontGlyph*)"] = defs["ImVector_ImFontGlyph_erase"][1] +defs["ImVector_ImFontGlyph_erase"]["(const ImFontGlyph*,const ImFontGlyph*)"] = defs["ImVector_ImFontGlyph_erase"][2] +defs["ImVector_ImFontGlyph_erase_unsorted"] = {} +defs["ImVector_ImFontGlyph_erase_unsorted"][1] = {} +defs["ImVector_ImFontGlyph_erase_unsorted"][1]["args"] = "(ImVector_ImFontGlyph* self,ImFontGlyph const * it)" +defs["ImVector_ImFontGlyph_erase_unsorted"][1]["argsT"] = {} +defs["ImVector_ImFontGlyph_erase_unsorted"][1]["argsT"][1] = {} +defs["ImVector_ImFontGlyph_erase_unsorted"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontGlyph_erase_unsorted"][1]["argsT"][1]["type"] = "ImVector_ImFontGlyph*" +defs["ImVector_ImFontGlyph_erase_unsorted"][1]["argsT"][2] = {} +defs["ImVector_ImFontGlyph_erase_unsorted"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImFontGlyph_erase_unsorted"][1]["argsT"][2]["type"] = "ImFontGlyph const *" +defs["ImVector_ImFontGlyph_erase_unsorted"][1]["call_args"] = "(it)" +defs["ImVector_ImFontGlyph_erase_unsorted"][1]["cimguiname"] = "ImVector_ImFontGlyph_erase_unsorted" +defs["ImVector_ImFontGlyph_erase_unsorted"][1]["defaults"] = {} +defs["ImVector_ImFontGlyph_erase_unsorted"][1]["funcname"] = "erase_unsorted" +defs["ImVector_ImFontGlyph_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_ImFontGlyph_erase_unsorted" +defs["ImVector_ImFontGlyph_erase_unsorted"][1]["ret"] = "ImFontGlyph*" +defs["ImVector_ImFontGlyph_erase_unsorted"][1]["signature"] = "(const ImFontGlyph*)" +defs["ImVector_ImFontGlyph_erase_unsorted"][1]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_erase_unsorted"][1]["templatedgen"] = true +defs["ImVector_ImFontGlyph_erase_unsorted"]["(const ImFontGlyph*)"] = defs["ImVector_ImFontGlyph_erase_unsorted"][1] +defs["ImVector_ImFontGlyph_front"] = {} +defs["ImVector_ImFontGlyph_front"][1] = {} +defs["ImVector_ImFontGlyph_front"][1]["args"] = "(ImVector_ImFontGlyph* self)" +defs["ImVector_ImFontGlyph_front"][1]["argsT"] = {} +defs["ImVector_ImFontGlyph_front"][1]["argsT"][1] = {} +defs["ImVector_ImFontGlyph_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontGlyph_front"][1]["argsT"][1]["type"] = "ImVector_ImFontGlyph*" +defs["ImVector_ImFontGlyph_front"][1]["call_args"] = "()" +defs["ImVector_ImFontGlyph_front"][1]["cimguiname"] = "ImVector_ImFontGlyph_front" +defs["ImVector_ImFontGlyph_front"][1]["defaults"] = {} +defs["ImVector_ImFontGlyph_front"][1]["funcname"] = "front" +defs["ImVector_ImFontGlyph_front"][1]["ov_cimguiname"] = "ImVector_ImFontGlyph_front" +defs["ImVector_ImFontGlyph_front"][1]["ret"] = "ImFontGlyph*" +defs["ImVector_ImFontGlyph_front"][1]["retref"] = "&" +defs["ImVector_ImFontGlyph_front"][1]["signature"] = "()" +defs["ImVector_ImFontGlyph_front"][1]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_front"][1]["templatedgen"] = true +defs["ImVector_ImFontGlyph_front"][2] = {} +defs["ImVector_ImFontGlyph_front"][2]["args"] = "(const ImVector_ImFontGlyph* self)" +defs["ImVector_ImFontGlyph_front"][2]["argsT"] = {} +defs["ImVector_ImFontGlyph_front"][2]["argsT"][1] = {} +defs["ImVector_ImFontGlyph_front"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontGlyph_front"][2]["argsT"][1]["type"] = "const ImVector_ImFontGlyph*" +defs["ImVector_ImFontGlyph_front"][2]["call_args"] = "()" +defs["ImVector_ImFontGlyph_front"][2]["cimguiname"] = "ImVector_ImFontGlyph_front" +defs["ImVector_ImFontGlyph_front"][2]["defaults"] = {} +defs["ImVector_ImFontGlyph_front"][2]["funcname"] = "front" +defs["ImVector_ImFontGlyph_front"][2]["ov_cimguiname"] = "ImVector_ImFontGlyph_front_const" +defs["ImVector_ImFontGlyph_front"][2]["ret"] = "ImFontGlyph const *" +defs["ImVector_ImFontGlyph_front"][2]["retref"] = "&" +defs["ImVector_ImFontGlyph_front"][2]["signature"] = "()const" +defs["ImVector_ImFontGlyph_front"][2]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_front"][2]["templatedgen"] = true +defs["ImVector_ImFontGlyph_front"]["()"] = defs["ImVector_ImFontGlyph_front"][1] +defs["ImVector_ImFontGlyph_front"]["()const"] = defs["ImVector_ImFontGlyph_front"][2] +defs["ImVector_ImFontGlyph_index_from_ptr"] = {} +defs["ImVector_ImFontGlyph_index_from_ptr"][1] = {} +defs["ImVector_ImFontGlyph_index_from_ptr"][1]["args"] = "(const ImVector_ImFontGlyph* self,ImFontGlyph const * it)" +defs["ImVector_ImFontGlyph_index_from_ptr"][1]["argsT"] = {} +defs["ImVector_ImFontGlyph_index_from_ptr"][1]["argsT"][1] = {} +defs["ImVector_ImFontGlyph_index_from_ptr"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontGlyph_index_from_ptr"][1]["argsT"][1]["type"] = "const ImVector_ImFontGlyph*" +defs["ImVector_ImFontGlyph_index_from_ptr"][1]["argsT"][2] = {} +defs["ImVector_ImFontGlyph_index_from_ptr"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImFontGlyph_index_from_ptr"][1]["argsT"][2]["type"] = "ImFontGlyph const *" +defs["ImVector_ImFontGlyph_index_from_ptr"][1]["call_args"] = "(it)" +defs["ImVector_ImFontGlyph_index_from_ptr"][1]["cimguiname"] = "ImVector_ImFontGlyph_index_from_ptr" +defs["ImVector_ImFontGlyph_index_from_ptr"][1]["defaults"] = {} +defs["ImVector_ImFontGlyph_index_from_ptr"][1]["funcname"] = "index_from_ptr" +defs["ImVector_ImFontGlyph_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_ImFontGlyph_index_from_ptr" +defs["ImVector_ImFontGlyph_index_from_ptr"][1]["ret"] = "int" +defs["ImVector_ImFontGlyph_index_from_ptr"][1]["signature"] = "(const ImFontGlyph*)const" +defs["ImVector_ImFontGlyph_index_from_ptr"][1]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_index_from_ptr"][1]["templatedgen"] = true +defs["ImVector_ImFontGlyph_index_from_ptr"]["(const ImFontGlyph*)const"] = defs["ImVector_ImFontGlyph_index_from_ptr"][1] +defs["ImVector_ImFontGlyph_insert"] = {} +defs["ImVector_ImFontGlyph_insert"][1] = {} +defs["ImVector_ImFontGlyph_insert"][1]["args"] = "(ImVector_ImFontGlyph* self,ImFontGlyph const * it,const ImFontGlyph v)" +defs["ImVector_ImFontGlyph_insert"][1]["argsT"] = {} +defs["ImVector_ImFontGlyph_insert"][1]["argsT"][1] = {} +defs["ImVector_ImFontGlyph_insert"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontGlyph_insert"][1]["argsT"][1]["type"] = "ImVector_ImFontGlyph*" +defs["ImVector_ImFontGlyph_insert"][1]["argsT"][2] = {} +defs["ImVector_ImFontGlyph_insert"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImFontGlyph_insert"][1]["argsT"][2]["type"] = "ImFontGlyph const *" +defs["ImVector_ImFontGlyph_insert"][1]["argsT"][3] = {} +defs["ImVector_ImFontGlyph_insert"][1]["argsT"][3]["name"] = "v" +defs["ImVector_ImFontGlyph_insert"][1]["argsT"][3]["type"] = "const ImFontGlyph" +defs["ImVector_ImFontGlyph_insert"][1]["call_args"] = "(it,v)" +defs["ImVector_ImFontGlyph_insert"][1]["cimguiname"] = "ImVector_ImFontGlyph_insert" +defs["ImVector_ImFontGlyph_insert"][1]["defaults"] = {} +defs["ImVector_ImFontGlyph_insert"][1]["funcname"] = "insert" +defs["ImVector_ImFontGlyph_insert"][1]["ov_cimguiname"] = "ImVector_ImFontGlyph_insert" +defs["ImVector_ImFontGlyph_insert"][1]["ret"] = "ImFontGlyph*" +defs["ImVector_ImFontGlyph_insert"][1]["signature"] = "(const ImFontGlyph*,const ImFontGlyph)" +defs["ImVector_ImFontGlyph_insert"][1]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_insert"][1]["templatedgen"] = true +defs["ImVector_ImFontGlyph_insert"]["(const ImFontGlyph*,const ImFontGlyph)"] = defs["ImVector_ImFontGlyph_insert"][1] +defs["ImVector_ImFontGlyph_pop_back"] = {} +defs["ImVector_ImFontGlyph_pop_back"][1] = {} +defs["ImVector_ImFontGlyph_pop_back"][1]["args"] = "(ImVector_ImFontGlyph* self)" +defs["ImVector_ImFontGlyph_pop_back"][1]["argsT"] = {} +defs["ImVector_ImFontGlyph_pop_back"][1]["argsT"][1] = {} +defs["ImVector_ImFontGlyph_pop_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontGlyph_pop_back"][1]["argsT"][1]["type"] = "ImVector_ImFontGlyph*" +defs["ImVector_ImFontGlyph_pop_back"][1]["call_args"] = "()" +defs["ImVector_ImFontGlyph_pop_back"][1]["cimguiname"] = "ImVector_ImFontGlyph_pop_back" +defs["ImVector_ImFontGlyph_pop_back"][1]["defaults"] = {} +defs["ImVector_ImFontGlyph_pop_back"][1]["funcname"] = "pop_back" +defs["ImVector_ImFontGlyph_pop_back"][1]["ov_cimguiname"] = "ImVector_ImFontGlyph_pop_back" +defs["ImVector_ImFontGlyph_pop_back"][1]["ret"] = "void" +defs["ImVector_ImFontGlyph_pop_back"][1]["signature"] = "()" +defs["ImVector_ImFontGlyph_pop_back"][1]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_pop_back"][1]["templatedgen"] = true +defs["ImVector_ImFontGlyph_pop_back"]["()"] = defs["ImVector_ImFontGlyph_pop_back"][1] +defs["ImVector_ImFontGlyph_push_back"] = {} +defs["ImVector_ImFontGlyph_push_back"][1] = {} +defs["ImVector_ImFontGlyph_push_back"][1]["args"] = "(ImVector_ImFontGlyph* self,const ImFontGlyph v)" +defs["ImVector_ImFontGlyph_push_back"][1]["argsT"] = {} +defs["ImVector_ImFontGlyph_push_back"][1]["argsT"][1] = {} +defs["ImVector_ImFontGlyph_push_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontGlyph_push_back"][1]["argsT"][1]["type"] = "ImVector_ImFontGlyph*" +defs["ImVector_ImFontGlyph_push_back"][1]["argsT"][2] = {} +defs["ImVector_ImFontGlyph_push_back"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImFontGlyph_push_back"][1]["argsT"][2]["type"] = "const ImFontGlyph" +defs["ImVector_ImFontGlyph_push_back"][1]["call_args"] = "(v)" +defs["ImVector_ImFontGlyph_push_back"][1]["cimguiname"] = "ImVector_ImFontGlyph_push_back" +defs["ImVector_ImFontGlyph_push_back"][1]["defaults"] = {} +defs["ImVector_ImFontGlyph_push_back"][1]["funcname"] = "push_back" +defs["ImVector_ImFontGlyph_push_back"][1]["ov_cimguiname"] = "ImVector_ImFontGlyph_push_back" +defs["ImVector_ImFontGlyph_push_back"][1]["ret"] = "void" +defs["ImVector_ImFontGlyph_push_back"][1]["signature"] = "(const ImFontGlyph)" +defs["ImVector_ImFontGlyph_push_back"][1]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_push_back"][1]["templatedgen"] = true +defs["ImVector_ImFontGlyph_push_back"]["(const ImFontGlyph)"] = defs["ImVector_ImFontGlyph_push_back"][1] +defs["ImVector_ImFontGlyph_push_front"] = {} +defs["ImVector_ImFontGlyph_push_front"][1] = {} +defs["ImVector_ImFontGlyph_push_front"][1]["args"] = "(ImVector_ImFontGlyph* self,const ImFontGlyph v)" +defs["ImVector_ImFontGlyph_push_front"][1]["argsT"] = {} +defs["ImVector_ImFontGlyph_push_front"][1]["argsT"][1] = {} +defs["ImVector_ImFontGlyph_push_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontGlyph_push_front"][1]["argsT"][1]["type"] = "ImVector_ImFontGlyph*" +defs["ImVector_ImFontGlyph_push_front"][1]["argsT"][2] = {} +defs["ImVector_ImFontGlyph_push_front"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImFontGlyph_push_front"][1]["argsT"][2]["type"] = "const ImFontGlyph" +defs["ImVector_ImFontGlyph_push_front"][1]["call_args"] = "(v)" +defs["ImVector_ImFontGlyph_push_front"][1]["cimguiname"] = "ImVector_ImFontGlyph_push_front" +defs["ImVector_ImFontGlyph_push_front"][1]["defaults"] = {} +defs["ImVector_ImFontGlyph_push_front"][1]["funcname"] = "push_front" +defs["ImVector_ImFontGlyph_push_front"][1]["ov_cimguiname"] = "ImVector_ImFontGlyph_push_front" +defs["ImVector_ImFontGlyph_push_front"][1]["ret"] = "void" +defs["ImVector_ImFontGlyph_push_front"][1]["signature"] = "(const ImFontGlyph)" +defs["ImVector_ImFontGlyph_push_front"][1]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_push_front"][1]["templatedgen"] = true +defs["ImVector_ImFontGlyph_push_front"]["(const ImFontGlyph)"] = defs["ImVector_ImFontGlyph_push_front"][1] +defs["ImVector_ImFontGlyph_reserve"] = {} +defs["ImVector_ImFontGlyph_reserve"][1] = {} +defs["ImVector_ImFontGlyph_reserve"][1]["args"] = "(ImVector_ImFontGlyph* self,int new_capacity)" +defs["ImVector_ImFontGlyph_reserve"][1]["argsT"] = {} +defs["ImVector_ImFontGlyph_reserve"][1]["argsT"][1] = {} +defs["ImVector_ImFontGlyph_reserve"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontGlyph_reserve"][1]["argsT"][1]["type"] = "ImVector_ImFontGlyph*" +defs["ImVector_ImFontGlyph_reserve"][1]["argsT"][2] = {} +defs["ImVector_ImFontGlyph_reserve"][1]["argsT"][2]["name"] = "new_capacity" +defs["ImVector_ImFontGlyph_reserve"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImFontGlyph_reserve"][1]["call_args"] = "(new_capacity)" +defs["ImVector_ImFontGlyph_reserve"][1]["cimguiname"] = "ImVector_ImFontGlyph_reserve" +defs["ImVector_ImFontGlyph_reserve"][1]["defaults"] = {} +defs["ImVector_ImFontGlyph_reserve"][1]["funcname"] = "reserve" +defs["ImVector_ImFontGlyph_reserve"][1]["ov_cimguiname"] = "ImVector_ImFontGlyph_reserve" +defs["ImVector_ImFontGlyph_reserve"][1]["ret"] = "void" +defs["ImVector_ImFontGlyph_reserve"][1]["signature"] = "(int)" +defs["ImVector_ImFontGlyph_reserve"][1]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_reserve"][1]["templatedgen"] = true +defs["ImVector_ImFontGlyph_reserve"]["(int)"] = defs["ImVector_ImFontGlyph_reserve"][1] +defs["ImVector_ImFontGlyph_resize"] = {} +defs["ImVector_ImFontGlyph_resize"][1] = {} +defs["ImVector_ImFontGlyph_resize"][1]["args"] = "(ImVector_ImFontGlyph* self,int new_size)" +defs["ImVector_ImFontGlyph_resize"][1]["argsT"] = {} +defs["ImVector_ImFontGlyph_resize"][1]["argsT"][1] = {} +defs["ImVector_ImFontGlyph_resize"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontGlyph_resize"][1]["argsT"][1]["type"] = "ImVector_ImFontGlyph*" +defs["ImVector_ImFontGlyph_resize"][1]["argsT"][2] = {} +defs["ImVector_ImFontGlyph_resize"][1]["argsT"][2]["name"] = "new_size" +defs["ImVector_ImFontGlyph_resize"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImFontGlyph_resize"][1]["call_args"] = "(new_size)" +defs["ImVector_ImFontGlyph_resize"][1]["cimguiname"] = "ImVector_ImFontGlyph_resize" +defs["ImVector_ImFontGlyph_resize"][1]["defaults"] = {} +defs["ImVector_ImFontGlyph_resize"][1]["funcname"] = "resize" +defs["ImVector_ImFontGlyph_resize"][1]["ov_cimguiname"] = "ImVector_ImFontGlyph_resize" +defs["ImVector_ImFontGlyph_resize"][1]["ret"] = "void" +defs["ImVector_ImFontGlyph_resize"][1]["signature"] = "(int)" +defs["ImVector_ImFontGlyph_resize"][1]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_resize"][1]["templatedgen"] = true +defs["ImVector_ImFontGlyph_resize"][2] = {} +defs["ImVector_ImFontGlyph_resize"][2]["args"] = "(ImVector_ImFontGlyph* self,int new_size,const ImFontGlyph v)" +defs["ImVector_ImFontGlyph_resize"][2]["argsT"] = {} +defs["ImVector_ImFontGlyph_resize"][2]["argsT"][1] = {} +defs["ImVector_ImFontGlyph_resize"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontGlyph_resize"][2]["argsT"][1]["type"] = "ImVector_ImFontGlyph*" +defs["ImVector_ImFontGlyph_resize"][2]["argsT"][2] = {} +defs["ImVector_ImFontGlyph_resize"][2]["argsT"][2]["name"] = "new_size" +defs["ImVector_ImFontGlyph_resize"][2]["argsT"][2]["type"] = "int" +defs["ImVector_ImFontGlyph_resize"][2]["argsT"][3] = {} +defs["ImVector_ImFontGlyph_resize"][2]["argsT"][3]["name"] = "v" +defs["ImVector_ImFontGlyph_resize"][2]["argsT"][3]["type"] = "const ImFontGlyph" +defs["ImVector_ImFontGlyph_resize"][2]["call_args"] = "(new_size,v)" +defs["ImVector_ImFontGlyph_resize"][2]["cimguiname"] = "ImVector_ImFontGlyph_resize" +defs["ImVector_ImFontGlyph_resize"][2]["defaults"] = {} +defs["ImVector_ImFontGlyph_resize"][2]["funcname"] = "resize" +defs["ImVector_ImFontGlyph_resize"][2]["ov_cimguiname"] = "ImVector_ImFontGlyph_resizeT" +defs["ImVector_ImFontGlyph_resize"][2]["ret"] = "void" +defs["ImVector_ImFontGlyph_resize"][2]["signature"] = "(int,const ImFontGlyph)" +defs["ImVector_ImFontGlyph_resize"][2]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_resize"][2]["templatedgen"] = true +defs["ImVector_ImFontGlyph_resize"]["(int)"] = defs["ImVector_ImFontGlyph_resize"][1] +defs["ImVector_ImFontGlyph_resize"]["(int,const ImFontGlyph)"] = defs["ImVector_ImFontGlyph_resize"][2] +defs["ImVector_ImFontGlyph_size"] = {} +defs["ImVector_ImFontGlyph_size"][1] = {} +defs["ImVector_ImFontGlyph_size"][1]["args"] = "(const ImVector_ImFontGlyph* self)" +defs["ImVector_ImFontGlyph_size"][1]["argsT"] = {} +defs["ImVector_ImFontGlyph_size"][1]["argsT"][1] = {} +defs["ImVector_ImFontGlyph_size"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontGlyph_size"][1]["argsT"][1]["type"] = "const ImVector_ImFontGlyph*" +defs["ImVector_ImFontGlyph_size"][1]["call_args"] = "()" +defs["ImVector_ImFontGlyph_size"][1]["cimguiname"] = "ImVector_ImFontGlyph_size" +defs["ImVector_ImFontGlyph_size"][1]["defaults"] = {} +defs["ImVector_ImFontGlyph_size"][1]["funcname"] = "size" +defs["ImVector_ImFontGlyph_size"][1]["ov_cimguiname"] = "ImVector_ImFontGlyph_size" +defs["ImVector_ImFontGlyph_size"][1]["ret"] = "int" +defs["ImVector_ImFontGlyph_size"][1]["signature"] = "()const" +defs["ImVector_ImFontGlyph_size"][1]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_size"][1]["templatedgen"] = true +defs["ImVector_ImFontGlyph_size"]["()const"] = defs["ImVector_ImFontGlyph_size"][1] +defs["ImVector_ImFontGlyph_size_in_bytes"] = {} +defs["ImVector_ImFontGlyph_size_in_bytes"][1] = {} +defs["ImVector_ImFontGlyph_size_in_bytes"][1]["args"] = "(const ImVector_ImFontGlyph* self)" +defs["ImVector_ImFontGlyph_size_in_bytes"][1]["argsT"] = {} +defs["ImVector_ImFontGlyph_size_in_bytes"][1]["argsT"][1] = {} +defs["ImVector_ImFontGlyph_size_in_bytes"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontGlyph_size_in_bytes"][1]["argsT"][1]["type"] = "const ImVector_ImFontGlyph*" +defs["ImVector_ImFontGlyph_size_in_bytes"][1]["call_args"] = "()" +defs["ImVector_ImFontGlyph_size_in_bytes"][1]["cimguiname"] = "ImVector_ImFontGlyph_size_in_bytes" +defs["ImVector_ImFontGlyph_size_in_bytes"][1]["defaults"] = {} +defs["ImVector_ImFontGlyph_size_in_bytes"][1]["funcname"] = "size_in_bytes" +defs["ImVector_ImFontGlyph_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_ImFontGlyph_size_in_bytes" +defs["ImVector_ImFontGlyph_size_in_bytes"][1]["ret"] = "int" +defs["ImVector_ImFontGlyph_size_in_bytes"][1]["signature"] = "()const" +defs["ImVector_ImFontGlyph_size_in_bytes"][1]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_size_in_bytes"][1]["templatedgen"] = true +defs["ImVector_ImFontGlyph_size_in_bytes"]["()const"] = defs["ImVector_ImFontGlyph_size_in_bytes"][1] +defs["ImVector_ImFontGlyph_swap"] = {} +defs["ImVector_ImFontGlyph_swap"][1] = {} +defs["ImVector_ImFontGlyph_swap"][1]["args"] = "(ImVector_ImFontGlyph* self,ImVector_ImFontGlyph rhs)" +defs["ImVector_ImFontGlyph_swap"][1]["argsT"] = {} +defs["ImVector_ImFontGlyph_swap"][1]["argsT"][1] = {} +defs["ImVector_ImFontGlyph_swap"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontGlyph_swap"][1]["argsT"][1]["type"] = "ImVector_ImFontGlyph*" +defs["ImVector_ImFontGlyph_swap"][1]["argsT"][2] = {} +defs["ImVector_ImFontGlyph_swap"][1]["argsT"][2]["name"] = "rhs" +defs["ImVector_ImFontGlyph_swap"][1]["argsT"][2]["type"] = "ImVector_ImFontGlyph&" +defs["ImVector_ImFontGlyph_swap"][1]["call_args"] = "(rhs)" +defs["ImVector_ImFontGlyph_swap"][1]["cimguiname"] = "ImVector_ImFontGlyph_swap" +defs["ImVector_ImFontGlyph_swap"][1]["defaults"] = {} +defs["ImVector_ImFontGlyph_swap"][1]["funcname"] = "swap" +defs["ImVector_ImFontGlyph_swap"][1]["ov_cimguiname"] = "ImVector_ImFontGlyph_swap" +defs["ImVector_ImFontGlyph_swap"][1]["ret"] = "void" +defs["ImVector_ImFontGlyph_swap"][1]["signature"] = "(ImVector)" +defs["ImVector_ImFontGlyph_swap"][1]["stname"] = "ImVector_ImFontGlyph" +defs["ImVector_ImFontGlyph_swap"][1]["templatedgen"] = true +defs["ImVector_ImFontGlyph_swap"]["(ImVector)"] = defs["ImVector_ImFontGlyph_swap"][1] +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"] = {} +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"][1] = {} +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"][1]["args"] = "()" +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"][1]["argsT"] = {} +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"][1]["call_args"] = "()" +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"][1]["cimguiname"] = "ImVector_ImFontPtr_ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"][1]["constructor"] = true +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"][1]["defaults"] = {} +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"][1]["funcname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"][1]["ov_cimguiname"] = "ImVector_ImFontPtr_ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"][1]["signature"] = "()" +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"][1]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"][1]["templatedgen"] = true +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"][2] = {} +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"][2]["args"] = "(const ImVector_ImFontPtr src)" +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"][2]["argsT"] = {} +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"][2]["argsT"][1] = {} +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"][2]["argsT"][1]["name"] = "src" +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"][2]["argsT"][1]["type"] = "const ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"][2]["call_args"] = "(src)" +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"][2]["cimguiname"] = "ImVector_ImFontPtr_ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"][2]["constructor"] = true +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"][2]["defaults"] = {} +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"][2]["funcname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"][2]["ov_cimguiname"] = "ImVector_ImFontPtr_ImVector_ImFontPtrVector" +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"][2]["signature"] = "(const ImVector)" +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"][2]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"][2]["templatedgen"] = true +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"]["()"] = defs["ImVector_ImFontPtr_ImVector_ImFontPtr"][1] +defs["ImVector_ImFontPtr_ImVector_ImFontPtr"]["(const ImVector)"] = defs["ImVector_ImFontPtr_ImVector_ImFontPtr"][2] +defs["ImVector_ImFontPtr__grow_capacity"] = {} +defs["ImVector_ImFontPtr__grow_capacity"][1] = {} +defs["ImVector_ImFontPtr__grow_capacity"][1]["args"] = "(const ImVector_ImFontPtr* self,int sz)" +defs["ImVector_ImFontPtr__grow_capacity"][1]["argsT"] = {} +defs["ImVector_ImFontPtr__grow_capacity"][1]["argsT"][1] = {} +defs["ImVector_ImFontPtr__grow_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontPtr__grow_capacity"][1]["argsT"][1]["type"] = "const ImVector_ImFontPtr*" +defs["ImVector_ImFontPtr__grow_capacity"][1]["argsT"][2] = {} +defs["ImVector_ImFontPtr__grow_capacity"][1]["argsT"][2]["name"] = "sz" +defs["ImVector_ImFontPtr__grow_capacity"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImFontPtr__grow_capacity"][1]["call_args"] = "(sz)" +defs["ImVector_ImFontPtr__grow_capacity"][1]["cimguiname"] = "ImVector_ImFontPtr__grow_capacity" +defs["ImVector_ImFontPtr__grow_capacity"][1]["defaults"] = {} +defs["ImVector_ImFontPtr__grow_capacity"][1]["funcname"] = "_grow_capacity" +defs["ImVector_ImFontPtr__grow_capacity"][1]["ov_cimguiname"] = "ImVector_ImFontPtr__grow_capacity" +defs["ImVector_ImFontPtr__grow_capacity"][1]["ret"] = "int" +defs["ImVector_ImFontPtr__grow_capacity"][1]["signature"] = "(int)const" +defs["ImVector_ImFontPtr__grow_capacity"][1]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr__grow_capacity"][1]["templatedgen"] = true +defs["ImVector_ImFontPtr__grow_capacity"]["(int)const"] = defs["ImVector_ImFontPtr__grow_capacity"][1] +defs["ImVector_ImFontPtr_back"] = {} +defs["ImVector_ImFontPtr_back"][1] = {} +defs["ImVector_ImFontPtr_back"][1]["args"] = "(ImVector_ImFontPtr* self)" +defs["ImVector_ImFontPtr_back"][1]["argsT"] = {} +defs["ImVector_ImFontPtr_back"][1]["argsT"][1] = {} +defs["ImVector_ImFontPtr_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontPtr_back"][1]["argsT"][1]["type"] = "ImVector_ImFontPtr*" +defs["ImVector_ImFontPtr_back"][1]["call_args"] = "()" +defs["ImVector_ImFontPtr_back"][1]["cimguiname"] = "ImVector_ImFontPtr_back" +defs["ImVector_ImFontPtr_back"][1]["defaults"] = {} +defs["ImVector_ImFontPtr_back"][1]["funcname"] = "back" +defs["ImVector_ImFontPtr_back"][1]["ov_cimguiname"] = "ImVector_ImFontPtr_back" +defs["ImVector_ImFontPtr_back"][1]["ret"] = "ImFont**" +defs["ImVector_ImFontPtr_back"][1]["retref"] = "&" +defs["ImVector_ImFontPtr_back"][1]["signature"] = "()" +defs["ImVector_ImFontPtr_back"][1]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_back"][1]["templatedgen"] = true +defs["ImVector_ImFontPtr_back"][2] = {} +defs["ImVector_ImFontPtr_back"][2]["args"] = "(const ImVector_ImFontPtr* self)" +defs["ImVector_ImFontPtr_back"][2]["argsT"] = {} +defs["ImVector_ImFontPtr_back"][2]["argsT"][1] = {} +defs["ImVector_ImFontPtr_back"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontPtr_back"][2]["argsT"][1]["type"] = "const ImVector_ImFontPtr*" +defs["ImVector_ImFontPtr_back"][2]["call_args"] = "()" +defs["ImVector_ImFontPtr_back"][2]["cimguiname"] = "ImVector_ImFontPtr_back" +defs["ImVector_ImFontPtr_back"][2]["defaults"] = {} +defs["ImVector_ImFontPtr_back"][2]["funcname"] = "back" +defs["ImVector_ImFontPtr_back"][2]["ov_cimguiname"] = "ImVector_ImFontPtr_back_const" +defs["ImVector_ImFontPtr_back"][2]["ret"] = "ImFont* const *" +defs["ImVector_ImFontPtr_back"][2]["retref"] = "&" +defs["ImVector_ImFontPtr_back"][2]["signature"] = "()const" +defs["ImVector_ImFontPtr_back"][2]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_back"][2]["templatedgen"] = true +defs["ImVector_ImFontPtr_back"]["()"] = defs["ImVector_ImFontPtr_back"][1] +defs["ImVector_ImFontPtr_back"]["()const"] = defs["ImVector_ImFontPtr_back"][2] +defs["ImVector_ImFontPtr_begin"] = {} +defs["ImVector_ImFontPtr_begin"][1] = {} +defs["ImVector_ImFontPtr_begin"][1]["args"] = "(ImVector_ImFontPtr* self)" +defs["ImVector_ImFontPtr_begin"][1]["argsT"] = {} +defs["ImVector_ImFontPtr_begin"][1]["argsT"][1] = {} +defs["ImVector_ImFontPtr_begin"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontPtr_begin"][1]["argsT"][1]["type"] = "ImVector_ImFontPtr*" +defs["ImVector_ImFontPtr_begin"][1]["call_args"] = "()" +defs["ImVector_ImFontPtr_begin"][1]["cimguiname"] = "ImVector_ImFontPtr_begin" +defs["ImVector_ImFontPtr_begin"][1]["defaults"] = {} +defs["ImVector_ImFontPtr_begin"][1]["funcname"] = "begin" +defs["ImVector_ImFontPtr_begin"][1]["ov_cimguiname"] = "ImVector_ImFontPtr_begin" +defs["ImVector_ImFontPtr_begin"][1]["ret"] = "ImFont**" +defs["ImVector_ImFontPtr_begin"][1]["signature"] = "()" +defs["ImVector_ImFontPtr_begin"][1]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_begin"][1]["templatedgen"] = true +defs["ImVector_ImFontPtr_begin"][2] = {} +defs["ImVector_ImFontPtr_begin"][2]["args"] = "(const ImVector_ImFontPtr* self)" +defs["ImVector_ImFontPtr_begin"][2]["argsT"] = {} +defs["ImVector_ImFontPtr_begin"][2]["argsT"][1] = {} +defs["ImVector_ImFontPtr_begin"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontPtr_begin"][2]["argsT"][1]["type"] = "const ImVector_ImFontPtr*" +defs["ImVector_ImFontPtr_begin"][2]["call_args"] = "()" +defs["ImVector_ImFontPtr_begin"][2]["cimguiname"] = "ImVector_ImFontPtr_begin" +defs["ImVector_ImFontPtr_begin"][2]["defaults"] = {} +defs["ImVector_ImFontPtr_begin"][2]["funcname"] = "begin" +defs["ImVector_ImFontPtr_begin"][2]["ov_cimguiname"] = "ImVector_ImFontPtr_begin_const" +defs["ImVector_ImFontPtr_begin"][2]["ret"] = "ImFont* const *" +defs["ImVector_ImFontPtr_begin"][2]["signature"] = "()const" +defs["ImVector_ImFontPtr_begin"][2]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_begin"][2]["templatedgen"] = true +defs["ImVector_ImFontPtr_begin"]["()"] = defs["ImVector_ImFontPtr_begin"][1] +defs["ImVector_ImFontPtr_begin"]["()const"] = defs["ImVector_ImFontPtr_begin"][2] +defs["ImVector_ImFontPtr_capacity"] = {} +defs["ImVector_ImFontPtr_capacity"][1] = {} +defs["ImVector_ImFontPtr_capacity"][1]["args"] = "(const ImVector_ImFontPtr* self)" +defs["ImVector_ImFontPtr_capacity"][1]["argsT"] = {} +defs["ImVector_ImFontPtr_capacity"][1]["argsT"][1] = {} +defs["ImVector_ImFontPtr_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontPtr_capacity"][1]["argsT"][1]["type"] = "const ImVector_ImFontPtr*" +defs["ImVector_ImFontPtr_capacity"][1]["call_args"] = "()" +defs["ImVector_ImFontPtr_capacity"][1]["cimguiname"] = "ImVector_ImFontPtr_capacity" +defs["ImVector_ImFontPtr_capacity"][1]["defaults"] = {} +defs["ImVector_ImFontPtr_capacity"][1]["funcname"] = "capacity" +defs["ImVector_ImFontPtr_capacity"][1]["ov_cimguiname"] = "ImVector_ImFontPtr_capacity" +defs["ImVector_ImFontPtr_capacity"][1]["ret"] = "int" +defs["ImVector_ImFontPtr_capacity"][1]["signature"] = "()const" +defs["ImVector_ImFontPtr_capacity"][1]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_capacity"][1]["templatedgen"] = true +defs["ImVector_ImFontPtr_capacity"]["()const"] = defs["ImVector_ImFontPtr_capacity"][1] +defs["ImVector_ImFontPtr_clear"] = {} +defs["ImVector_ImFontPtr_clear"][1] = {} +defs["ImVector_ImFontPtr_clear"][1]["args"] = "(ImVector_ImFontPtr* self)" +defs["ImVector_ImFontPtr_clear"][1]["argsT"] = {} +defs["ImVector_ImFontPtr_clear"][1]["argsT"][1] = {} +defs["ImVector_ImFontPtr_clear"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontPtr_clear"][1]["argsT"][1]["type"] = "ImVector_ImFontPtr*" +defs["ImVector_ImFontPtr_clear"][1]["call_args"] = "()" +defs["ImVector_ImFontPtr_clear"][1]["cimguiname"] = "ImVector_ImFontPtr_clear" +defs["ImVector_ImFontPtr_clear"][1]["defaults"] = {} +defs["ImVector_ImFontPtr_clear"][1]["funcname"] = "clear" +defs["ImVector_ImFontPtr_clear"][1]["ov_cimguiname"] = "ImVector_ImFontPtr_clear" +defs["ImVector_ImFontPtr_clear"][1]["ret"] = "void" +defs["ImVector_ImFontPtr_clear"][1]["signature"] = "()" +defs["ImVector_ImFontPtr_clear"][1]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_clear"][1]["templatedgen"] = true +defs["ImVector_ImFontPtr_clear"]["()"] = defs["ImVector_ImFontPtr_clear"][1] +defs["ImVector_ImFontPtr_contains"] = {} +defs["ImVector_ImFontPtr_contains"][1] = {} +defs["ImVector_ImFontPtr_contains"][1]["args"] = "(const ImVector_ImFontPtr* self,ImFont* const v)" +defs["ImVector_ImFontPtr_contains"][1]["argsT"] = {} +defs["ImVector_ImFontPtr_contains"][1]["argsT"][1] = {} +defs["ImVector_ImFontPtr_contains"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontPtr_contains"][1]["argsT"][1]["type"] = "const ImVector_ImFontPtr*" +defs["ImVector_ImFontPtr_contains"][1]["argsT"][2] = {} +defs["ImVector_ImFontPtr_contains"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImFontPtr_contains"][1]["argsT"][2]["type"] = "ImFont* const " +defs["ImVector_ImFontPtr_contains"][1]["call_args"] = "(v)" +defs["ImVector_ImFontPtr_contains"][1]["cimguiname"] = "ImVector_ImFontPtr_contains" +defs["ImVector_ImFontPtr_contains"][1]["defaults"] = {} +defs["ImVector_ImFontPtr_contains"][1]["funcname"] = "contains" +defs["ImVector_ImFontPtr_contains"][1]["ov_cimguiname"] = "ImVector_ImFontPtr_contains" +defs["ImVector_ImFontPtr_contains"][1]["ret"] = "bool" +defs["ImVector_ImFontPtr_contains"][1]["signature"] = "(const ImFont*)const" +defs["ImVector_ImFontPtr_contains"][1]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_contains"][1]["templatedgen"] = true +defs["ImVector_ImFontPtr_contains"]["(const ImFont*)const"] = defs["ImVector_ImFontPtr_contains"][1] +defs["ImVector_ImFontPtr_destroy"] = {} +defs["ImVector_ImFontPtr_destroy"][1] = {} +defs["ImVector_ImFontPtr_destroy"][1]["args"] = "(ImVector_ImFontPtr* self)" +defs["ImVector_ImFontPtr_destroy"][1]["argsT"] = {} +defs["ImVector_ImFontPtr_destroy"][1]["argsT"][1] = {} +defs["ImVector_ImFontPtr_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontPtr_destroy"][1]["argsT"][1]["type"] = "ImVector_ImFontPtr*" +defs["ImVector_ImFontPtr_destroy"][1]["call_args"] = "(self)" +defs["ImVector_ImFontPtr_destroy"][1]["cimguiname"] = "ImVector_ImFontPtr_destroy" +defs["ImVector_ImFontPtr_destroy"][1]["defaults"] = {} +defs["ImVector_ImFontPtr_destroy"][1]["destructor"] = true +defs["ImVector_ImFontPtr_destroy"][1]["ov_cimguiname"] = "ImVector_ImFontPtr_destroy" +defs["ImVector_ImFontPtr_destroy"][1]["ret"] = "void" +defs["ImVector_ImFontPtr_destroy"][1]["signature"] = "(ImVector_ImFontPtr*)" +defs["ImVector_ImFontPtr_destroy"][1]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_destroy"]["(ImVector_ImFontPtr*)"] = defs["ImVector_ImFontPtr_destroy"][1] +defs["ImVector_ImFontPtr_empty"] = {} +defs["ImVector_ImFontPtr_empty"][1] = {} +defs["ImVector_ImFontPtr_empty"][1]["args"] = "(const ImVector_ImFontPtr* self)" +defs["ImVector_ImFontPtr_empty"][1]["argsT"] = {} +defs["ImVector_ImFontPtr_empty"][1]["argsT"][1] = {} +defs["ImVector_ImFontPtr_empty"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontPtr_empty"][1]["argsT"][1]["type"] = "const ImVector_ImFontPtr*" +defs["ImVector_ImFontPtr_empty"][1]["call_args"] = "()" +defs["ImVector_ImFontPtr_empty"][1]["cimguiname"] = "ImVector_ImFontPtr_empty" +defs["ImVector_ImFontPtr_empty"][1]["defaults"] = {} +defs["ImVector_ImFontPtr_empty"][1]["funcname"] = "empty" +defs["ImVector_ImFontPtr_empty"][1]["ov_cimguiname"] = "ImVector_ImFontPtr_empty" +defs["ImVector_ImFontPtr_empty"][1]["ret"] = "bool" +defs["ImVector_ImFontPtr_empty"][1]["signature"] = "()const" +defs["ImVector_ImFontPtr_empty"][1]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_empty"][1]["templatedgen"] = true +defs["ImVector_ImFontPtr_empty"]["()const"] = defs["ImVector_ImFontPtr_empty"][1] +defs["ImVector_ImFontPtr_end"] = {} +defs["ImVector_ImFontPtr_end"][1] = {} +defs["ImVector_ImFontPtr_end"][1]["args"] = "(ImVector_ImFontPtr* self)" +defs["ImVector_ImFontPtr_end"][1]["argsT"] = {} +defs["ImVector_ImFontPtr_end"][1]["argsT"][1] = {} +defs["ImVector_ImFontPtr_end"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontPtr_end"][1]["argsT"][1]["type"] = "ImVector_ImFontPtr*" +defs["ImVector_ImFontPtr_end"][1]["call_args"] = "()" +defs["ImVector_ImFontPtr_end"][1]["cimguiname"] = "ImVector_ImFontPtr_end" +defs["ImVector_ImFontPtr_end"][1]["defaults"] = {} +defs["ImVector_ImFontPtr_end"][1]["funcname"] = "end" +defs["ImVector_ImFontPtr_end"][1]["ov_cimguiname"] = "ImVector_ImFontPtr_end" +defs["ImVector_ImFontPtr_end"][1]["ret"] = "ImFont**" +defs["ImVector_ImFontPtr_end"][1]["signature"] = "()" +defs["ImVector_ImFontPtr_end"][1]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_end"][1]["templatedgen"] = true +defs["ImVector_ImFontPtr_end"][2] = {} +defs["ImVector_ImFontPtr_end"][2]["args"] = "(const ImVector_ImFontPtr* self)" +defs["ImVector_ImFontPtr_end"][2]["argsT"] = {} +defs["ImVector_ImFontPtr_end"][2]["argsT"][1] = {} +defs["ImVector_ImFontPtr_end"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontPtr_end"][2]["argsT"][1]["type"] = "const ImVector_ImFontPtr*" +defs["ImVector_ImFontPtr_end"][2]["call_args"] = "()" +defs["ImVector_ImFontPtr_end"][2]["cimguiname"] = "ImVector_ImFontPtr_end" +defs["ImVector_ImFontPtr_end"][2]["defaults"] = {} +defs["ImVector_ImFontPtr_end"][2]["funcname"] = "end" +defs["ImVector_ImFontPtr_end"][2]["ov_cimguiname"] = "ImVector_ImFontPtr_end_const" +defs["ImVector_ImFontPtr_end"][2]["ret"] = "ImFont* const *" +defs["ImVector_ImFontPtr_end"][2]["signature"] = "()const" +defs["ImVector_ImFontPtr_end"][2]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_end"][2]["templatedgen"] = true +defs["ImVector_ImFontPtr_end"]["()"] = defs["ImVector_ImFontPtr_end"][1] +defs["ImVector_ImFontPtr_end"]["()const"] = defs["ImVector_ImFontPtr_end"][2] +defs["ImVector_ImFontPtr_erase"] = {} +defs["ImVector_ImFontPtr_erase"][1] = {} +defs["ImVector_ImFontPtr_erase"][1]["args"] = "(ImVector_ImFontPtr* self,ImFont* const * it)" +defs["ImVector_ImFontPtr_erase"][1]["argsT"] = {} +defs["ImVector_ImFontPtr_erase"][1]["argsT"][1] = {} +defs["ImVector_ImFontPtr_erase"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontPtr_erase"][1]["argsT"][1]["type"] = "ImVector_ImFontPtr*" +defs["ImVector_ImFontPtr_erase"][1]["argsT"][2] = {} +defs["ImVector_ImFontPtr_erase"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImFontPtr_erase"][1]["argsT"][2]["type"] = "ImFont* const *" +defs["ImVector_ImFontPtr_erase"][1]["call_args"] = "(it)" +defs["ImVector_ImFontPtr_erase"][1]["cimguiname"] = "ImVector_ImFontPtr_erase" +defs["ImVector_ImFontPtr_erase"][1]["defaults"] = {} +defs["ImVector_ImFontPtr_erase"][1]["funcname"] = "erase" +defs["ImVector_ImFontPtr_erase"][1]["ov_cimguiname"] = "ImVector_ImFontPtr_erase" +defs["ImVector_ImFontPtr_erase"][1]["ret"] = "ImFont**" +defs["ImVector_ImFontPtr_erase"][1]["signature"] = "(const ImFont**)" +defs["ImVector_ImFontPtr_erase"][1]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_erase"][1]["templatedgen"] = true +defs["ImVector_ImFontPtr_erase"][2] = {} +defs["ImVector_ImFontPtr_erase"][2]["args"] = "(ImVector_ImFontPtr* self,ImFont* const * it,ImFont* const * it_last)" +defs["ImVector_ImFontPtr_erase"][2]["argsT"] = {} +defs["ImVector_ImFontPtr_erase"][2]["argsT"][1] = {} +defs["ImVector_ImFontPtr_erase"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontPtr_erase"][2]["argsT"][1]["type"] = "ImVector_ImFontPtr*" +defs["ImVector_ImFontPtr_erase"][2]["argsT"][2] = {} +defs["ImVector_ImFontPtr_erase"][2]["argsT"][2]["name"] = "it" +defs["ImVector_ImFontPtr_erase"][2]["argsT"][2]["type"] = "ImFont* const *" +defs["ImVector_ImFontPtr_erase"][2]["argsT"][3] = {} +defs["ImVector_ImFontPtr_erase"][2]["argsT"][3]["name"] = "it_last" +defs["ImVector_ImFontPtr_erase"][2]["argsT"][3]["type"] = "ImFont* const *" +defs["ImVector_ImFontPtr_erase"][2]["call_args"] = "(it,it_last)" +defs["ImVector_ImFontPtr_erase"][2]["cimguiname"] = "ImVector_ImFontPtr_erase" +defs["ImVector_ImFontPtr_erase"][2]["defaults"] = {} +defs["ImVector_ImFontPtr_erase"][2]["funcname"] = "erase" +defs["ImVector_ImFontPtr_erase"][2]["ov_cimguiname"] = "ImVector_ImFontPtr_eraseTPtr" +defs["ImVector_ImFontPtr_erase"][2]["ret"] = "ImFont**" +defs["ImVector_ImFontPtr_erase"][2]["signature"] = "(const ImFont**,const ImFont**)" +defs["ImVector_ImFontPtr_erase"][2]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_erase"][2]["templatedgen"] = true +defs["ImVector_ImFontPtr_erase"]["(const ImFont**)"] = defs["ImVector_ImFontPtr_erase"][1] +defs["ImVector_ImFontPtr_erase"]["(const ImFont**,const ImFont**)"] = defs["ImVector_ImFontPtr_erase"][2] +defs["ImVector_ImFontPtr_erase_unsorted"] = {} +defs["ImVector_ImFontPtr_erase_unsorted"][1] = {} +defs["ImVector_ImFontPtr_erase_unsorted"][1]["args"] = "(ImVector_ImFontPtr* self,ImFont* const * it)" +defs["ImVector_ImFontPtr_erase_unsorted"][1]["argsT"] = {} +defs["ImVector_ImFontPtr_erase_unsorted"][1]["argsT"][1] = {} +defs["ImVector_ImFontPtr_erase_unsorted"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontPtr_erase_unsorted"][1]["argsT"][1]["type"] = "ImVector_ImFontPtr*" +defs["ImVector_ImFontPtr_erase_unsorted"][1]["argsT"][2] = {} +defs["ImVector_ImFontPtr_erase_unsorted"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImFontPtr_erase_unsorted"][1]["argsT"][2]["type"] = "ImFont* const *" +defs["ImVector_ImFontPtr_erase_unsorted"][1]["call_args"] = "(it)" +defs["ImVector_ImFontPtr_erase_unsorted"][1]["cimguiname"] = "ImVector_ImFontPtr_erase_unsorted" +defs["ImVector_ImFontPtr_erase_unsorted"][1]["defaults"] = {} +defs["ImVector_ImFontPtr_erase_unsorted"][1]["funcname"] = "erase_unsorted" +defs["ImVector_ImFontPtr_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_ImFontPtr_erase_unsorted" +defs["ImVector_ImFontPtr_erase_unsorted"][1]["ret"] = "ImFont**" +defs["ImVector_ImFontPtr_erase_unsorted"][1]["signature"] = "(const ImFont**)" +defs["ImVector_ImFontPtr_erase_unsorted"][1]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_erase_unsorted"][1]["templatedgen"] = true +defs["ImVector_ImFontPtr_erase_unsorted"]["(const ImFont**)"] = defs["ImVector_ImFontPtr_erase_unsorted"][1] +defs["ImVector_ImFontPtr_front"] = {} +defs["ImVector_ImFontPtr_front"][1] = {} +defs["ImVector_ImFontPtr_front"][1]["args"] = "(ImVector_ImFontPtr* self)" +defs["ImVector_ImFontPtr_front"][1]["argsT"] = {} +defs["ImVector_ImFontPtr_front"][1]["argsT"][1] = {} +defs["ImVector_ImFontPtr_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontPtr_front"][1]["argsT"][1]["type"] = "ImVector_ImFontPtr*" +defs["ImVector_ImFontPtr_front"][1]["call_args"] = "()" +defs["ImVector_ImFontPtr_front"][1]["cimguiname"] = "ImVector_ImFontPtr_front" +defs["ImVector_ImFontPtr_front"][1]["defaults"] = {} +defs["ImVector_ImFontPtr_front"][1]["funcname"] = "front" +defs["ImVector_ImFontPtr_front"][1]["ov_cimguiname"] = "ImVector_ImFontPtr_front" +defs["ImVector_ImFontPtr_front"][1]["ret"] = "ImFont**" +defs["ImVector_ImFontPtr_front"][1]["retref"] = "&" +defs["ImVector_ImFontPtr_front"][1]["signature"] = "()" +defs["ImVector_ImFontPtr_front"][1]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_front"][1]["templatedgen"] = true +defs["ImVector_ImFontPtr_front"][2] = {} +defs["ImVector_ImFontPtr_front"][2]["args"] = "(const ImVector_ImFontPtr* self)" +defs["ImVector_ImFontPtr_front"][2]["argsT"] = {} +defs["ImVector_ImFontPtr_front"][2]["argsT"][1] = {} +defs["ImVector_ImFontPtr_front"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontPtr_front"][2]["argsT"][1]["type"] = "const ImVector_ImFontPtr*" +defs["ImVector_ImFontPtr_front"][2]["call_args"] = "()" +defs["ImVector_ImFontPtr_front"][2]["cimguiname"] = "ImVector_ImFontPtr_front" +defs["ImVector_ImFontPtr_front"][2]["defaults"] = {} +defs["ImVector_ImFontPtr_front"][2]["funcname"] = "front" +defs["ImVector_ImFontPtr_front"][2]["ov_cimguiname"] = "ImVector_ImFontPtr_front_const" +defs["ImVector_ImFontPtr_front"][2]["ret"] = "ImFont* const *" +defs["ImVector_ImFontPtr_front"][2]["retref"] = "&" +defs["ImVector_ImFontPtr_front"][2]["signature"] = "()const" +defs["ImVector_ImFontPtr_front"][2]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_front"][2]["templatedgen"] = true +defs["ImVector_ImFontPtr_front"]["()"] = defs["ImVector_ImFontPtr_front"][1] +defs["ImVector_ImFontPtr_front"]["()const"] = defs["ImVector_ImFontPtr_front"][2] +defs["ImVector_ImFontPtr_index_from_ptr"] = {} +defs["ImVector_ImFontPtr_index_from_ptr"][1] = {} +defs["ImVector_ImFontPtr_index_from_ptr"][1]["args"] = "(const ImVector_ImFontPtr* self,ImFont* const * it)" +defs["ImVector_ImFontPtr_index_from_ptr"][1]["argsT"] = {} +defs["ImVector_ImFontPtr_index_from_ptr"][1]["argsT"][1] = {} +defs["ImVector_ImFontPtr_index_from_ptr"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontPtr_index_from_ptr"][1]["argsT"][1]["type"] = "const ImVector_ImFontPtr*" +defs["ImVector_ImFontPtr_index_from_ptr"][1]["argsT"][2] = {} +defs["ImVector_ImFontPtr_index_from_ptr"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImFontPtr_index_from_ptr"][1]["argsT"][2]["type"] = "ImFont* const *" +defs["ImVector_ImFontPtr_index_from_ptr"][1]["call_args"] = "(it)" +defs["ImVector_ImFontPtr_index_from_ptr"][1]["cimguiname"] = "ImVector_ImFontPtr_index_from_ptr" +defs["ImVector_ImFontPtr_index_from_ptr"][1]["defaults"] = {} +defs["ImVector_ImFontPtr_index_from_ptr"][1]["funcname"] = "index_from_ptr" +defs["ImVector_ImFontPtr_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_ImFontPtr_index_from_ptr" +defs["ImVector_ImFontPtr_index_from_ptr"][1]["ret"] = "int" +defs["ImVector_ImFontPtr_index_from_ptr"][1]["signature"] = "(const ImFont**)const" +defs["ImVector_ImFontPtr_index_from_ptr"][1]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_index_from_ptr"][1]["templatedgen"] = true +defs["ImVector_ImFontPtr_index_from_ptr"]["(const ImFont**)const"] = defs["ImVector_ImFontPtr_index_from_ptr"][1] +defs["ImVector_ImFontPtr_insert"] = {} +defs["ImVector_ImFontPtr_insert"][1] = {} +defs["ImVector_ImFontPtr_insert"][1]["args"] = "(ImVector_ImFontPtr* self,ImFont* const * it,ImFont* const v)" +defs["ImVector_ImFontPtr_insert"][1]["argsT"] = {} +defs["ImVector_ImFontPtr_insert"][1]["argsT"][1] = {} +defs["ImVector_ImFontPtr_insert"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontPtr_insert"][1]["argsT"][1]["type"] = "ImVector_ImFontPtr*" +defs["ImVector_ImFontPtr_insert"][1]["argsT"][2] = {} +defs["ImVector_ImFontPtr_insert"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImFontPtr_insert"][1]["argsT"][2]["type"] = "ImFont* const *" +defs["ImVector_ImFontPtr_insert"][1]["argsT"][3] = {} +defs["ImVector_ImFontPtr_insert"][1]["argsT"][3]["name"] = "v" +defs["ImVector_ImFontPtr_insert"][1]["argsT"][3]["type"] = "ImFont* const " +defs["ImVector_ImFontPtr_insert"][1]["call_args"] = "(it,v)" +defs["ImVector_ImFontPtr_insert"][1]["cimguiname"] = "ImVector_ImFontPtr_insert" +defs["ImVector_ImFontPtr_insert"][1]["defaults"] = {} +defs["ImVector_ImFontPtr_insert"][1]["funcname"] = "insert" +defs["ImVector_ImFontPtr_insert"][1]["ov_cimguiname"] = "ImVector_ImFontPtr_insert" +defs["ImVector_ImFontPtr_insert"][1]["ret"] = "ImFont**" +defs["ImVector_ImFontPtr_insert"][1]["signature"] = "(const ImFont**,const ImFont*)" +defs["ImVector_ImFontPtr_insert"][1]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_insert"][1]["templatedgen"] = true +defs["ImVector_ImFontPtr_insert"]["(const ImFont**,const ImFont*)"] = defs["ImVector_ImFontPtr_insert"][1] +defs["ImVector_ImFontPtr_pop_back"] = {} +defs["ImVector_ImFontPtr_pop_back"][1] = {} +defs["ImVector_ImFontPtr_pop_back"][1]["args"] = "(ImVector_ImFontPtr* self)" +defs["ImVector_ImFontPtr_pop_back"][1]["argsT"] = {} +defs["ImVector_ImFontPtr_pop_back"][1]["argsT"][1] = {} +defs["ImVector_ImFontPtr_pop_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontPtr_pop_back"][1]["argsT"][1]["type"] = "ImVector_ImFontPtr*" +defs["ImVector_ImFontPtr_pop_back"][1]["call_args"] = "()" +defs["ImVector_ImFontPtr_pop_back"][1]["cimguiname"] = "ImVector_ImFontPtr_pop_back" +defs["ImVector_ImFontPtr_pop_back"][1]["defaults"] = {} +defs["ImVector_ImFontPtr_pop_back"][1]["funcname"] = "pop_back" +defs["ImVector_ImFontPtr_pop_back"][1]["ov_cimguiname"] = "ImVector_ImFontPtr_pop_back" +defs["ImVector_ImFontPtr_pop_back"][1]["ret"] = "void" +defs["ImVector_ImFontPtr_pop_back"][1]["signature"] = "()" +defs["ImVector_ImFontPtr_pop_back"][1]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_pop_back"][1]["templatedgen"] = true +defs["ImVector_ImFontPtr_pop_back"]["()"] = defs["ImVector_ImFontPtr_pop_back"][1] +defs["ImVector_ImFontPtr_push_back"] = {} +defs["ImVector_ImFontPtr_push_back"][1] = {} +defs["ImVector_ImFontPtr_push_back"][1]["args"] = "(ImVector_ImFontPtr* self,ImFont* const v)" +defs["ImVector_ImFontPtr_push_back"][1]["argsT"] = {} +defs["ImVector_ImFontPtr_push_back"][1]["argsT"][1] = {} +defs["ImVector_ImFontPtr_push_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontPtr_push_back"][1]["argsT"][1]["type"] = "ImVector_ImFontPtr*" +defs["ImVector_ImFontPtr_push_back"][1]["argsT"][2] = {} +defs["ImVector_ImFontPtr_push_back"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImFontPtr_push_back"][1]["argsT"][2]["type"] = "ImFont* const " +defs["ImVector_ImFontPtr_push_back"][1]["call_args"] = "(v)" +defs["ImVector_ImFontPtr_push_back"][1]["cimguiname"] = "ImVector_ImFontPtr_push_back" +defs["ImVector_ImFontPtr_push_back"][1]["defaults"] = {} +defs["ImVector_ImFontPtr_push_back"][1]["funcname"] = "push_back" +defs["ImVector_ImFontPtr_push_back"][1]["ov_cimguiname"] = "ImVector_ImFontPtr_push_back" +defs["ImVector_ImFontPtr_push_back"][1]["ret"] = "void" +defs["ImVector_ImFontPtr_push_back"][1]["signature"] = "(const ImFont*)" +defs["ImVector_ImFontPtr_push_back"][1]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_push_back"][1]["templatedgen"] = true +defs["ImVector_ImFontPtr_push_back"]["(const ImFont*)"] = defs["ImVector_ImFontPtr_push_back"][1] +defs["ImVector_ImFontPtr_push_front"] = {} +defs["ImVector_ImFontPtr_push_front"][1] = {} +defs["ImVector_ImFontPtr_push_front"][1]["args"] = "(ImVector_ImFontPtr* self,ImFont* const v)" +defs["ImVector_ImFontPtr_push_front"][1]["argsT"] = {} +defs["ImVector_ImFontPtr_push_front"][1]["argsT"][1] = {} +defs["ImVector_ImFontPtr_push_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontPtr_push_front"][1]["argsT"][1]["type"] = "ImVector_ImFontPtr*" +defs["ImVector_ImFontPtr_push_front"][1]["argsT"][2] = {} +defs["ImVector_ImFontPtr_push_front"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImFontPtr_push_front"][1]["argsT"][2]["type"] = "ImFont* const " +defs["ImVector_ImFontPtr_push_front"][1]["call_args"] = "(v)" +defs["ImVector_ImFontPtr_push_front"][1]["cimguiname"] = "ImVector_ImFontPtr_push_front" +defs["ImVector_ImFontPtr_push_front"][1]["defaults"] = {} +defs["ImVector_ImFontPtr_push_front"][1]["funcname"] = "push_front" +defs["ImVector_ImFontPtr_push_front"][1]["ov_cimguiname"] = "ImVector_ImFontPtr_push_front" +defs["ImVector_ImFontPtr_push_front"][1]["ret"] = "void" +defs["ImVector_ImFontPtr_push_front"][1]["signature"] = "(const ImFont*)" +defs["ImVector_ImFontPtr_push_front"][1]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_push_front"][1]["templatedgen"] = true +defs["ImVector_ImFontPtr_push_front"]["(const ImFont*)"] = defs["ImVector_ImFontPtr_push_front"][1] +defs["ImVector_ImFontPtr_reserve"] = {} +defs["ImVector_ImFontPtr_reserve"][1] = {} +defs["ImVector_ImFontPtr_reserve"][1]["args"] = "(ImVector_ImFontPtr* self,int new_capacity)" +defs["ImVector_ImFontPtr_reserve"][1]["argsT"] = {} +defs["ImVector_ImFontPtr_reserve"][1]["argsT"][1] = {} +defs["ImVector_ImFontPtr_reserve"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontPtr_reserve"][1]["argsT"][1]["type"] = "ImVector_ImFontPtr*" +defs["ImVector_ImFontPtr_reserve"][1]["argsT"][2] = {} +defs["ImVector_ImFontPtr_reserve"][1]["argsT"][2]["name"] = "new_capacity" +defs["ImVector_ImFontPtr_reserve"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImFontPtr_reserve"][1]["call_args"] = "(new_capacity)" +defs["ImVector_ImFontPtr_reserve"][1]["cimguiname"] = "ImVector_ImFontPtr_reserve" +defs["ImVector_ImFontPtr_reserve"][1]["defaults"] = {} +defs["ImVector_ImFontPtr_reserve"][1]["funcname"] = "reserve" +defs["ImVector_ImFontPtr_reserve"][1]["ov_cimguiname"] = "ImVector_ImFontPtr_reserve" +defs["ImVector_ImFontPtr_reserve"][1]["ret"] = "void" +defs["ImVector_ImFontPtr_reserve"][1]["signature"] = "(int)" +defs["ImVector_ImFontPtr_reserve"][1]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_reserve"][1]["templatedgen"] = true +defs["ImVector_ImFontPtr_reserve"]["(int)"] = defs["ImVector_ImFontPtr_reserve"][1] +defs["ImVector_ImFontPtr_resize"] = {} +defs["ImVector_ImFontPtr_resize"][1] = {} +defs["ImVector_ImFontPtr_resize"][1]["args"] = "(ImVector_ImFontPtr* self,int new_size)" +defs["ImVector_ImFontPtr_resize"][1]["argsT"] = {} +defs["ImVector_ImFontPtr_resize"][1]["argsT"][1] = {} +defs["ImVector_ImFontPtr_resize"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontPtr_resize"][1]["argsT"][1]["type"] = "ImVector_ImFontPtr*" +defs["ImVector_ImFontPtr_resize"][1]["argsT"][2] = {} +defs["ImVector_ImFontPtr_resize"][1]["argsT"][2]["name"] = "new_size" +defs["ImVector_ImFontPtr_resize"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImFontPtr_resize"][1]["call_args"] = "(new_size)" +defs["ImVector_ImFontPtr_resize"][1]["cimguiname"] = "ImVector_ImFontPtr_resize" +defs["ImVector_ImFontPtr_resize"][1]["defaults"] = {} +defs["ImVector_ImFontPtr_resize"][1]["funcname"] = "resize" +defs["ImVector_ImFontPtr_resize"][1]["ov_cimguiname"] = "ImVector_ImFontPtr_resize" +defs["ImVector_ImFontPtr_resize"][1]["ret"] = "void" +defs["ImVector_ImFontPtr_resize"][1]["signature"] = "(int)" +defs["ImVector_ImFontPtr_resize"][1]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_resize"][1]["templatedgen"] = true +defs["ImVector_ImFontPtr_resize"][2] = {} +defs["ImVector_ImFontPtr_resize"][2]["args"] = "(ImVector_ImFontPtr* self,int new_size,ImFont* const v)" +defs["ImVector_ImFontPtr_resize"][2]["argsT"] = {} +defs["ImVector_ImFontPtr_resize"][2]["argsT"][1] = {} +defs["ImVector_ImFontPtr_resize"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontPtr_resize"][2]["argsT"][1]["type"] = "ImVector_ImFontPtr*" +defs["ImVector_ImFontPtr_resize"][2]["argsT"][2] = {} +defs["ImVector_ImFontPtr_resize"][2]["argsT"][2]["name"] = "new_size" +defs["ImVector_ImFontPtr_resize"][2]["argsT"][2]["type"] = "int" +defs["ImVector_ImFontPtr_resize"][2]["argsT"][3] = {} +defs["ImVector_ImFontPtr_resize"][2]["argsT"][3]["name"] = "v" +defs["ImVector_ImFontPtr_resize"][2]["argsT"][3]["type"] = "ImFont* const " +defs["ImVector_ImFontPtr_resize"][2]["call_args"] = "(new_size,v)" +defs["ImVector_ImFontPtr_resize"][2]["cimguiname"] = "ImVector_ImFontPtr_resize" +defs["ImVector_ImFontPtr_resize"][2]["defaults"] = {} +defs["ImVector_ImFontPtr_resize"][2]["funcname"] = "resize" +defs["ImVector_ImFontPtr_resize"][2]["ov_cimguiname"] = "ImVector_ImFontPtr_resizeT" +defs["ImVector_ImFontPtr_resize"][2]["ret"] = "void" +defs["ImVector_ImFontPtr_resize"][2]["signature"] = "(int,const ImFont*)" +defs["ImVector_ImFontPtr_resize"][2]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_resize"][2]["templatedgen"] = true +defs["ImVector_ImFontPtr_resize"]["(int)"] = defs["ImVector_ImFontPtr_resize"][1] +defs["ImVector_ImFontPtr_resize"]["(int,const ImFont*)"] = defs["ImVector_ImFontPtr_resize"][2] +defs["ImVector_ImFontPtr_size"] = {} +defs["ImVector_ImFontPtr_size"][1] = {} +defs["ImVector_ImFontPtr_size"][1]["args"] = "(const ImVector_ImFontPtr* self)" +defs["ImVector_ImFontPtr_size"][1]["argsT"] = {} +defs["ImVector_ImFontPtr_size"][1]["argsT"][1] = {} +defs["ImVector_ImFontPtr_size"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontPtr_size"][1]["argsT"][1]["type"] = "const ImVector_ImFontPtr*" +defs["ImVector_ImFontPtr_size"][1]["call_args"] = "()" +defs["ImVector_ImFontPtr_size"][1]["cimguiname"] = "ImVector_ImFontPtr_size" +defs["ImVector_ImFontPtr_size"][1]["defaults"] = {} +defs["ImVector_ImFontPtr_size"][1]["funcname"] = "size" +defs["ImVector_ImFontPtr_size"][1]["ov_cimguiname"] = "ImVector_ImFontPtr_size" +defs["ImVector_ImFontPtr_size"][1]["ret"] = "int" +defs["ImVector_ImFontPtr_size"][1]["signature"] = "()const" +defs["ImVector_ImFontPtr_size"][1]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_size"][1]["templatedgen"] = true +defs["ImVector_ImFontPtr_size"]["()const"] = defs["ImVector_ImFontPtr_size"][1] +defs["ImVector_ImFontPtr_size_in_bytes"] = {} +defs["ImVector_ImFontPtr_size_in_bytes"][1] = {} +defs["ImVector_ImFontPtr_size_in_bytes"][1]["args"] = "(const ImVector_ImFontPtr* self)" +defs["ImVector_ImFontPtr_size_in_bytes"][1]["argsT"] = {} +defs["ImVector_ImFontPtr_size_in_bytes"][1]["argsT"][1] = {} +defs["ImVector_ImFontPtr_size_in_bytes"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontPtr_size_in_bytes"][1]["argsT"][1]["type"] = "const ImVector_ImFontPtr*" +defs["ImVector_ImFontPtr_size_in_bytes"][1]["call_args"] = "()" +defs["ImVector_ImFontPtr_size_in_bytes"][1]["cimguiname"] = "ImVector_ImFontPtr_size_in_bytes" +defs["ImVector_ImFontPtr_size_in_bytes"][1]["defaults"] = {} +defs["ImVector_ImFontPtr_size_in_bytes"][1]["funcname"] = "size_in_bytes" +defs["ImVector_ImFontPtr_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_ImFontPtr_size_in_bytes" +defs["ImVector_ImFontPtr_size_in_bytes"][1]["ret"] = "int" +defs["ImVector_ImFontPtr_size_in_bytes"][1]["signature"] = "()const" +defs["ImVector_ImFontPtr_size_in_bytes"][1]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_size_in_bytes"][1]["templatedgen"] = true +defs["ImVector_ImFontPtr_size_in_bytes"]["()const"] = defs["ImVector_ImFontPtr_size_in_bytes"][1] +defs["ImVector_ImFontPtr_swap"] = {} +defs["ImVector_ImFontPtr_swap"][1] = {} +defs["ImVector_ImFontPtr_swap"][1]["args"] = "(ImVector_ImFontPtr* self,ImVector_ImFontPtr rhs)" +defs["ImVector_ImFontPtr_swap"][1]["argsT"] = {} +defs["ImVector_ImFontPtr_swap"][1]["argsT"][1] = {} +defs["ImVector_ImFontPtr_swap"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImFontPtr_swap"][1]["argsT"][1]["type"] = "ImVector_ImFontPtr*" +defs["ImVector_ImFontPtr_swap"][1]["argsT"][2] = {} +defs["ImVector_ImFontPtr_swap"][1]["argsT"][2]["name"] = "rhs" +defs["ImVector_ImFontPtr_swap"][1]["argsT"][2]["type"] = "ImVector_ImFontPtr&" +defs["ImVector_ImFontPtr_swap"][1]["call_args"] = "(rhs)" +defs["ImVector_ImFontPtr_swap"][1]["cimguiname"] = "ImVector_ImFontPtr_swap" +defs["ImVector_ImFontPtr_swap"][1]["defaults"] = {} +defs["ImVector_ImFontPtr_swap"][1]["funcname"] = "swap" +defs["ImVector_ImFontPtr_swap"][1]["ov_cimguiname"] = "ImVector_ImFontPtr_swap" +defs["ImVector_ImFontPtr_swap"][1]["ret"] = "void" +defs["ImVector_ImFontPtr_swap"][1]["signature"] = "(ImVector)" +defs["ImVector_ImFontPtr_swap"][1]["stname"] = "ImVector_ImFontPtr" +defs["ImVector_ImFontPtr_swap"][1]["templatedgen"] = true +defs["ImVector_ImFontPtr_swap"]["(ImVector)"] = defs["ImVector_ImFontPtr_swap"][1] +defs["ImVector_ImTextureID_ImVector_ImTextureID"] = {} +defs["ImVector_ImTextureID_ImVector_ImTextureID"][1] = {} +defs["ImVector_ImTextureID_ImVector_ImTextureID"][1]["args"] = "()" +defs["ImVector_ImTextureID_ImVector_ImTextureID"][1]["argsT"] = {} +defs["ImVector_ImTextureID_ImVector_ImTextureID"][1]["call_args"] = "()" +defs["ImVector_ImTextureID_ImVector_ImTextureID"][1]["cimguiname"] = "ImVector_ImTextureID_ImVector_ImTextureID" +defs["ImVector_ImTextureID_ImVector_ImTextureID"][1]["constructor"] = true +defs["ImVector_ImTextureID_ImVector_ImTextureID"][1]["defaults"] = {} +defs["ImVector_ImTextureID_ImVector_ImTextureID"][1]["funcname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_ImVector_ImTextureID"][1]["ov_cimguiname"] = "ImVector_ImTextureID_ImVector_ImTextureID" +defs["ImVector_ImTextureID_ImVector_ImTextureID"][1]["signature"] = "()" +defs["ImVector_ImTextureID_ImVector_ImTextureID"][1]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_ImVector_ImTextureID"][1]["templatedgen"] = true +defs["ImVector_ImTextureID_ImVector_ImTextureID"][2] = {} +defs["ImVector_ImTextureID_ImVector_ImTextureID"][2]["args"] = "(const ImVector_ImTextureID src)" +defs["ImVector_ImTextureID_ImVector_ImTextureID"][2]["argsT"] = {} +defs["ImVector_ImTextureID_ImVector_ImTextureID"][2]["argsT"][1] = {} +defs["ImVector_ImTextureID_ImVector_ImTextureID"][2]["argsT"][1]["name"] = "src" +defs["ImVector_ImTextureID_ImVector_ImTextureID"][2]["argsT"][1]["type"] = "const ImVector_ImTextureID" +defs["ImVector_ImTextureID_ImVector_ImTextureID"][2]["call_args"] = "(src)" +defs["ImVector_ImTextureID_ImVector_ImTextureID"][2]["cimguiname"] = "ImVector_ImTextureID_ImVector_ImTextureID" +defs["ImVector_ImTextureID_ImVector_ImTextureID"][2]["constructor"] = true +defs["ImVector_ImTextureID_ImVector_ImTextureID"][2]["defaults"] = {} +defs["ImVector_ImTextureID_ImVector_ImTextureID"][2]["funcname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_ImVector_ImTextureID"][2]["ov_cimguiname"] = "ImVector_ImTextureID_ImVector_ImTextureIDVector" +defs["ImVector_ImTextureID_ImVector_ImTextureID"][2]["signature"] = "(const ImVector)" +defs["ImVector_ImTextureID_ImVector_ImTextureID"][2]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_ImVector_ImTextureID"][2]["templatedgen"] = true +defs["ImVector_ImTextureID_ImVector_ImTextureID"]["()"] = defs["ImVector_ImTextureID_ImVector_ImTextureID"][1] +defs["ImVector_ImTextureID_ImVector_ImTextureID"]["(const ImVector)"] = defs["ImVector_ImTextureID_ImVector_ImTextureID"][2] +defs["ImVector_ImTextureID__grow_capacity"] = {} +defs["ImVector_ImTextureID__grow_capacity"][1] = {} +defs["ImVector_ImTextureID__grow_capacity"][1]["args"] = "(const ImVector_ImTextureID* self,int sz)" +defs["ImVector_ImTextureID__grow_capacity"][1]["argsT"] = {} +defs["ImVector_ImTextureID__grow_capacity"][1]["argsT"][1] = {} +defs["ImVector_ImTextureID__grow_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImTextureID__grow_capacity"][1]["argsT"][1]["type"] = "const ImVector_ImTextureID*" +defs["ImVector_ImTextureID__grow_capacity"][1]["argsT"][2] = {} +defs["ImVector_ImTextureID__grow_capacity"][1]["argsT"][2]["name"] = "sz" +defs["ImVector_ImTextureID__grow_capacity"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImTextureID__grow_capacity"][1]["call_args"] = "(sz)" +defs["ImVector_ImTextureID__grow_capacity"][1]["cimguiname"] = "ImVector_ImTextureID__grow_capacity" +defs["ImVector_ImTextureID__grow_capacity"][1]["defaults"] = {} +defs["ImVector_ImTextureID__grow_capacity"][1]["funcname"] = "_grow_capacity" +defs["ImVector_ImTextureID__grow_capacity"][1]["ov_cimguiname"] = "ImVector_ImTextureID__grow_capacity" +defs["ImVector_ImTextureID__grow_capacity"][1]["ret"] = "int" +defs["ImVector_ImTextureID__grow_capacity"][1]["signature"] = "(int)const" +defs["ImVector_ImTextureID__grow_capacity"][1]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID__grow_capacity"][1]["templatedgen"] = true +defs["ImVector_ImTextureID__grow_capacity"]["(int)const"] = defs["ImVector_ImTextureID__grow_capacity"][1] +defs["ImVector_ImTextureID_back"] = {} +defs["ImVector_ImTextureID_back"][1] = {} +defs["ImVector_ImTextureID_back"][1]["args"] = "(ImVector_ImTextureID* self)" +defs["ImVector_ImTextureID_back"][1]["argsT"] = {} +defs["ImVector_ImTextureID_back"][1]["argsT"][1] = {} +defs["ImVector_ImTextureID_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImTextureID_back"][1]["argsT"][1]["type"] = "ImVector_ImTextureID*" +defs["ImVector_ImTextureID_back"][1]["call_args"] = "()" +defs["ImVector_ImTextureID_back"][1]["cimguiname"] = "ImVector_ImTextureID_back" +defs["ImVector_ImTextureID_back"][1]["defaults"] = {} +defs["ImVector_ImTextureID_back"][1]["funcname"] = "back" +defs["ImVector_ImTextureID_back"][1]["ov_cimguiname"] = "ImVector_ImTextureID_back" +defs["ImVector_ImTextureID_back"][1]["ret"] = "ImTextureID*" +defs["ImVector_ImTextureID_back"][1]["retref"] = "&" +defs["ImVector_ImTextureID_back"][1]["signature"] = "()" +defs["ImVector_ImTextureID_back"][1]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_back"][1]["templatedgen"] = true +defs["ImVector_ImTextureID_back"][2] = {} +defs["ImVector_ImTextureID_back"][2]["args"] = "(const ImVector_ImTextureID* self)" +defs["ImVector_ImTextureID_back"][2]["argsT"] = {} +defs["ImVector_ImTextureID_back"][2]["argsT"][1] = {} +defs["ImVector_ImTextureID_back"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImTextureID_back"][2]["argsT"][1]["type"] = "const ImVector_ImTextureID*" +defs["ImVector_ImTextureID_back"][2]["call_args"] = "()" +defs["ImVector_ImTextureID_back"][2]["cimguiname"] = "ImVector_ImTextureID_back" +defs["ImVector_ImTextureID_back"][2]["defaults"] = {} +defs["ImVector_ImTextureID_back"][2]["funcname"] = "back" +defs["ImVector_ImTextureID_back"][2]["ov_cimguiname"] = "ImVector_ImTextureID_back_const" +defs["ImVector_ImTextureID_back"][2]["ret"] = "ImTextureID const *" +defs["ImVector_ImTextureID_back"][2]["retref"] = "&" +defs["ImVector_ImTextureID_back"][2]["signature"] = "()const" +defs["ImVector_ImTextureID_back"][2]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_back"][2]["templatedgen"] = true +defs["ImVector_ImTextureID_back"]["()"] = defs["ImVector_ImTextureID_back"][1] +defs["ImVector_ImTextureID_back"]["()const"] = defs["ImVector_ImTextureID_back"][2] +defs["ImVector_ImTextureID_begin"] = {} +defs["ImVector_ImTextureID_begin"][1] = {} +defs["ImVector_ImTextureID_begin"][1]["args"] = "(ImVector_ImTextureID* self)" +defs["ImVector_ImTextureID_begin"][1]["argsT"] = {} +defs["ImVector_ImTextureID_begin"][1]["argsT"][1] = {} +defs["ImVector_ImTextureID_begin"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImTextureID_begin"][1]["argsT"][1]["type"] = "ImVector_ImTextureID*" +defs["ImVector_ImTextureID_begin"][1]["call_args"] = "()" +defs["ImVector_ImTextureID_begin"][1]["cimguiname"] = "ImVector_ImTextureID_begin" +defs["ImVector_ImTextureID_begin"][1]["defaults"] = {} +defs["ImVector_ImTextureID_begin"][1]["funcname"] = "begin" +defs["ImVector_ImTextureID_begin"][1]["ov_cimguiname"] = "ImVector_ImTextureID_begin" +defs["ImVector_ImTextureID_begin"][1]["ret"] = "ImTextureID*" +defs["ImVector_ImTextureID_begin"][1]["signature"] = "()" +defs["ImVector_ImTextureID_begin"][1]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_begin"][1]["templatedgen"] = true +defs["ImVector_ImTextureID_begin"][2] = {} +defs["ImVector_ImTextureID_begin"][2]["args"] = "(const ImVector_ImTextureID* self)" +defs["ImVector_ImTextureID_begin"][2]["argsT"] = {} +defs["ImVector_ImTextureID_begin"][2]["argsT"][1] = {} +defs["ImVector_ImTextureID_begin"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImTextureID_begin"][2]["argsT"][1]["type"] = "const ImVector_ImTextureID*" +defs["ImVector_ImTextureID_begin"][2]["call_args"] = "()" +defs["ImVector_ImTextureID_begin"][2]["cimguiname"] = "ImVector_ImTextureID_begin" +defs["ImVector_ImTextureID_begin"][2]["defaults"] = {} +defs["ImVector_ImTextureID_begin"][2]["funcname"] = "begin" +defs["ImVector_ImTextureID_begin"][2]["ov_cimguiname"] = "ImVector_ImTextureID_begin_const" +defs["ImVector_ImTextureID_begin"][2]["ret"] = "ImTextureID const *" +defs["ImVector_ImTextureID_begin"][2]["signature"] = "()const" +defs["ImVector_ImTextureID_begin"][2]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_begin"][2]["templatedgen"] = true +defs["ImVector_ImTextureID_begin"]["()"] = defs["ImVector_ImTextureID_begin"][1] +defs["ImVector_ImTextureID_begin"]["()const"] = defs["ImVector_ImTextureID_begin"][2] +defs["ImVector_ImTextureID_capacity"] = {} +defs["ImVector_ImTextureID_capacity"][1] = {} +defs["ImVector_ImTextureID_capacity"][1]["args"] = "(const ImVector_ImTextureID* self)" +defs["ImVector_ImTextureID_capacity"][1]["argsT"] = {} +defs["ImVector_ImTextureID_capacity"][1]["argsT"][1] = {} +defs["ImVector_ImTextureID_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImTextureID_capacity"][1]["argsT"][1]["type"] = "const ImVector_ImTextureID*" +defs["ImVector_ImTextureID_capacity"][1]["call_args"] = "()" +defs["ImVector_ImTextureID_capacity"][1]["cimguiname"] = "ImVector_ImTextureID_capacity" +defs["ImVector_ImTextureID_capacity"][1]["defaults"] = {} +defs["ImVector_ImTextureID_capacity"][1]["funcname"] = "capacity" +defs["ImVector_ImTextureID_capacity"][1]["ov_cimguiname"] = "ImVector_ImTextureID_capacity" +defs["ImVector_ImTextureID_capacity"][1]["ret"] = "int" +defs["ImVector_ImTextureID_capacity"][1]["signature"] = "()const" +defs["ImVector_ImTextureID_capacity"][1]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_capacity"][1]["templatedgen"] = true +defs["ImVector_ImTextureID_capacity"]["()const"] = defs["ImVector_ImTextureID_capacity"][1] +defs["ImVector_ImTextureID_clear"] = {} +defs["ImVector_ImTextureID_clear"][1] = {} +defs["ImVector_ImTextureID_clear"][1]["args"] = "(ImVector_ImTextureID* self)" +defs["ImVector_ImTextureID_clear"][1]["argsT"] = {} +defs["ImVector_ImTextureID_clear"][1]["argsT"][1] = {} +defs["ImVector_ImTextureID_clear"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImTextureID_clear"][1]["argsT"][1]["type"] = "ImVector_ImTextureID*" +defs["ImVector_ImTextureID_clear"][1]["call_args"] = "()" +defs["ImVector_ImTextureID_clear"][1]["cimguiname"] = "ImVector_ImTextureID_clear" +defs["ImVector_ImTextureID_clear"][1]["defaults"] = {} +defs["ImVector_ImTextureID_clear"][1]["funcname"] = "clear" +defs["ImVector_ImTextureID_clear"][1]["ov_cimguiname"] = "ImVector_ImTextureID_clear" +defs["ImVector_ImTextureID_clear"][1]["ret"] = "void" +defs["ImVector_ImTextureID_clear"][1]["signature"] = "()" +defs["ImVector_ImTextureID_clear"][1]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_clear"][1]["templatedgen"] = true +defs["ImVector_ImTextureID_clear"]["()"] = defs["ImVector_ImTextureID_clear"][1] +defs["ImVector_ImTextureID_contains"] = {} +defs["ImVector_ImTextureID_contains"][1] = {} +defs["ImVector_ImTextureID_contains"][1]["args"] = "(const ImVector_ImTextureID* self,const ImTextureID v)" +defs["ImVector_ImTextureID_contains"][1]["argsT"] = {} +defs["ImVector_ImTextureID_contains"][1]["argsT"][1] = {} +defs["ImVector_ImTextureID_contains"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImTextureID_contains"][1]["argsT"][1]["type"] = "const ImVector_ImTextureID*" +defs["ImVector_ImTextureID_contains"][1]["argsT"][2] = {} +defs["ImVector_ImTextureID_contains"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImTextureID_contains"][1]["argsT"][2]["type"] = "const ImTextureID" +defs["ImVector_ImTextureID_contains"][1]["call_args"] = "(v)" +defs["ImVector_ImTextureID_contains"][1]["cimguiname"] = "ImVector_ImTextureID_contains" +defs["ImVector_ImTextureID_contains"][1]["defaults"] = {} +defs["ImVector_ImTextureID_contains"][1]["funcname"] = "contains" +defs["ImVector_ImTextureID_contains"][1]["ov_cimguiname"] = "ImVector_ImTextureID_contains" +defs["ImVector_ImTextureID_contains"][1]["ret"] = "bool" +defs["ImVector_ImTextureID_contains"][1]["signature"] = "(const ImTextureID)const" +defs["ImVector_ImTextureID_contains"][1]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_contains"][1]["templatedgen"] = true +defs["ImVector_ImTextureID_contains"]["(const ImTextureID)const"] = defs["ImVector_ImTextureID_contains"][1] +defs["ImVector_ImTextureID_destroy"] = {} +defs["ImVector_ImTextureID_destroy"][1] = {} +defs["ImVector_ImTextureID_destroy"][1]["args"] = "(ImVector_ImTextureID* self)" +defs["ImVector_ImTextureID_destroy"][1]["argsT"] = {} +defs["ImVector_ImTextureID_destroy"][1]["argsT"][1] = {} +defs["ImVector_ImTextureID_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImTextureID_destroy"][1]["argsT"][1]["type"] = "ImVector_ImTextureID*" +defs["ImVector_ImTextureID_destroy"][1]["call_args"] = "(self)" +defs["ImVector_ImTextureID_destroy"][1]["cimguiname"] = "ImVector_ImTextureID_destroy" +defs["ImVector_ImTextureID_destroy"][1]["defaults"] = {} +defs["ImVector_ImTextureID_destroy"][1]["destructor"] = true +defs["ImVector_ImTextureID_destroy"][1]["ov_cimguiname"] = "ImVector_ImTextureID_destroy" +defs["ImVector_ImTextureID_destroy"][1]["ret"] = "void" +defs["ImVector_ImTextureID_destroy"][1]["signature"] = "(ImVector_ImTextureID*)" +defs["ImVector_ImTextureID_destroy"][1]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_destroy"]["(ImVector_ImTextureID*)"] = defs["ImVector_ImTextureID_destroy"][1] +defs["ImVector_ImTextureID_empty"] = {} +defs["ImVector_ImTextureID_empty"][1] = {} +defs["ImVector_ImTextureID_empty"][1]["args"] = "(const ImVector_ImTextureID* self)" +defs["ImVector_ImTextureID_empty"][1]["argsT"] = {} +defs["ImVector_ImTextureID_empty"][1]["argsT"][1] = {} +defs["ImVector_ImTextureID_empty"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImTextureID_empty"][1]["argsT"][1]["type"] = "const ImVector_ImTextureID*" +defs["ImVector_ImTextureID_empty"][1]["call_args"] = "()" +defs["ImVector_ImTextureID_empty"][1]["cimguiname"] = "ImVector_ImTextureID_empty" +defs["ImVector_ImTextureID_empty"][1]["defaults"] = {} +defs["ImVector_ImTextureID_empty"][1]["funcname"] = "empty" +defs["ImVector_ImTextureID_empty"][1]["ov_cimguiname"] = "ImVector_ImTextureID_empty" +defs["ImVector_ImTextureID_empty"][1]["ret"] = "bool" +defs["ImVector_ImTextureID_empty"][1]["signature"] = "()const" +defs["ImVector_ImTextureID_empty"][1]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_empty"][1]["templatedgen"] = true +defs["ImVector_ImTextureID_empty"]["()const"] = defs["ImVector_ImTextureID_empty"][1] +defs["ImVector_ImTextureID_end"] = {} +defs["ImVector_ImTextureID_end"][1] = {} +defs["ImVector_ImTextureID_end"][1]["args"] = "(ImVector_ImTextureID* self)" +defs["ImVector_ImTextureID_end"][1]["argsT"] = {} +defs["ImVector_ImTextureID_end"][1]["argsT"][1] = {} +defs["ImVector_ImTextureID_end"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImTextureID_end"][1]["argsT"][1]["type"] = "ImVector_ImTextureID*" +defs["ImVector_ImTextureID_end"][1]["call_args"] = "()" +defs["ImVector_ImTextureID_end"][1]["cimguiname"] = "ImVector_ImTextureID_end" +defs["ImVector_ImTextureID_end"][1]["defaults"] = {} +defs["ImVector_ImTextureID_end"][1]["funcname"] = "end" +defs["ImVector_ImTextureID_end"][1]["ov_cimguiname"] = "ImVector_ImTextureID_end" +defs["ImVector_ImTextureID_end"][1]["ret"] = "ImTextureID*" +defs["ImVector_ImTextureID_end"][1]["signature"] = "()" +defs["ImVector_ImTextureID_end"][1]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_end"][1]["templatedgen"] = true +defs["ImVector_ImTextureID_end"][2] = {} +defs["ImVector_ImTextureID_end"][2]["args"] = "(const ImVector_ImTextureID* self)" +defs["ImVector_ImTextureID_end"][2]["argsT"] = {} +defs["ImVector_ImTextureID_end"][2]["argsT"][1] = {} +defs["ImVector_ImTextureID_end"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImTextureID_end"][2]["argsT"][1]["type"] = "const ImVector_ImTextureID*" +defs["ImVector_ImTextureID_end"][2]["call_args"] = "()" +defs["ImVector_ImTextureID_end"][2]["cimguiname"] = "ImVector_ImTextureID_end" +defs["ImVector_ImTextureID_end"][2]["defaults"] = {} +defs["ImVector_ImTextureID_end"][2]["funcname"] = "end" +defs["ImVector_ImTextureID_end"][2]["ov_cimguiname"] = "ImVector_ImTextureID_end_const" +defs["ImVector_ImTextureID_end"][2]["ret"] = "ImTextureID const *" +defs["ImVector_ImTextureID_end"][2]["signature"] = "()const" +defs["ImVector_ImTextureID_end"][2]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_end"][2]["templatedgen"] = true +defs["ImVector_ImTextureID_end"]["()"] = defs["ImVector_ImTextureID_end"][1] +defs["ImVector_ImTextureID_end"]["()const"] = defs["ImVector_ImTextureID_end"][2] +defs["ImVector_ImTextureID_erase"] = {} +defs["ImVector_ImTextureID_erase"][1] = {} +defs["ImVector_ImTextureID_erase"][1]["args"] = "(ImVector_ImTextureID* self,ImTextureID const * it)" +defs["ImVector_ImTextureID_erase"][1]["argsT"] = {} +defs["ImVector_ImTextureID_erase"][1]["argsT"][1] = {} +defs["ImVector_ImTextureID_erase"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImTextureID_erase"][1]["argsT"][1]["type"] = "ImVector_ImTextureID*" +defs["ImVector_ImTextureID_erase"][1]["argsT"][2] = {} +defs["ImVector_ImTextureID_erase"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImTextureID_erase"][1]["argsT"][2]["type"] = "ImTextureID const *" +defs["ImVector_ImTextureID_erase"][1]["call_args"] = "(it)" +defs["ImVector_ImTextureID_erase"][1]["cimguiname"] = "ImVector_ImTextureID_erase" +defs["ImVector_ImTextureID_erase"][1]["defaults"] = {} +defs["ImVector_ImTextureID_erase"][1]["funcname"] = "erase" +defs["ImVector_ImTextureID_erase"][1]["ov_cimguiname"] = "ImVector_ImTextureID_erase" +defs["ImVector_ImTextureID_erase"][1]["ret"] = "ImTextureID*" +defs["ImVector_ImTextureID_erase"][1]["signature"] = "(const ImTextureID*)" +defs["ImVector_ImTextureID_erase"][1]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_erase"][1]["templatedgen"] = true +defs["ImVector_ImTextureID_erase"][2] = {} +defs["ImVector_ImTextureID_erase"][2]["args"] = "(ImVector_ImTextureID* self,ImTextureID const * it,ImTextureID const * it_last)" +defs["ImVector_ImTextureID_erase"][2]["argsT"] = {} +defs["ImVector_ImTextureID_erase"][2]["argsT"][1] = {} +defs["ImVector_ImTextureID_erase"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImTextureID_erase"][2]["argsT"][1]["type"] = "ImVector_ImTextureID*" +defs["ImVector_ImTextureID_erase"][2]["argsT"][2] = {} +defs["ImVector_ImTextureID_erase"][2]["argsT"][2]["name"] = "it" +defs["ImVector_ImTextureID_erase"][2]["argsT"][2]["type"] = "ImTextureID const *" +defs["ImVector_ImTextureID_erase"][2]["argsT"][3] = {} +defs["ImVector_ImTextureID_erase"][2]["argsT"][3]["name"] = "it_last" +defs["ImVector_ImTextureID_erase"][2]["argsT"][3]["type"] = "ImTextureID const *" +defs["ImVector_ImTextureID_erase"][2]["call_args"] = "(it,it_last)" +defs["ImVector_ImTextureID_erase"][2]["cimguiname"] = "ImVector_ImTextureID_erase" +defs["ImVector_ImTextureID_erase"][2]["defaults"] = {} +defs["ImVector_ImTextureID_erase"][2]["funcname"] = "erase" +defs["ImVector_ImTextureID_erase"][2]["ov_cimguiname"] = "ImVector_ImTextureID_eraseTPtr" +defs["ImVector_ImTextureID_erase"][2]["ret"] = "ImTextureID*" +defs["ImVector_ImTextureID_erase"][2]["signature"] = "(const ImTextureID*,const ImTextureID*)" +defs["ImVector_ImTextureID_erase"][2]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_erase"][2]["templatedgen"] = true +defs["ImVector_ImTextureID_erase"]["(const ImTextureID*)"] = defs["ImVector_ImTextureID_erase"][1] +defs["ImVector_ImTextureID_erase"]["(const ImTextureID*,const ImTextureID*)"] = defs["ImVector_ImTextureID_erase"][2] +defs["ImVector_ImTextureID_erase_unsorted"] = {} +defs["ImVector_ImTextureID_erase_unsorted"][1] = {} +defs["ImVector_ImTextureID_erase_unsorted"][1]["args"] = "(ImVector_ImTextureID* self,ImTextureID const * it)" +defs["ImVector_ImTextureID_erase_unsorted"][1]["argsT"] = {} +defs["ImVector_ImTextureID_erase_unsorted"][1]["argsT"][1] = {} +defs["ImVector_ImTextureID_erase_unsorted"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImTextureID_erase_unsorted"][1]["argsT"][1]["type"] = "ImVector_ImTextureID*" +defs["ImVector_ImTextureID_erase_unsorted"][1]["argsT"][2] = {} +defs["ImVector_ImTextureID_erase_unsorted"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImTextureID_erase_unsorted"][1]["argsT"][2]["type"] = "ImTextureID const *" +defs["ImVector_ImTextureID_erase_unsorted"][1]["call_args"] = "(it)" +defs["ImVector_ImTextureID_erase_unsorted"][1]["cimguiname"] = "ImVector_ImTextureID_erase_unsorted" +defs["ImVector_ImTextureID_erase_unsorted"][1]["defaults"] = {} +defs["ImVector_ImTextureID_erase_unsorted"][1]["funcname"] = "erase_unsorted" +defs["ImVector_ImTextureID_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_ImTextureID_erase_unsorted" +defs["ImVector_ImTextureID_erase_unsorted"][1]["ret"] = "ImTextureID*" +defs["ImVector_ImTextureID_erase_unsorted"][1]["signature"] = "(const ImTextureID*)" +defs["ImVector_ImTextureID_erase_unsorted"][1]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_erase_unsorted"][1]["templatedgen"] = true +defs["ImVector_ImTextureID_erase_unsorted"]["(const ImTextureID*)"] = defs["ImVector_ImTextureID_erase_unsorted"][1] +defs["ImVector_ImTextureID_front"] = {} +defs["ImVector_ImTextureID_front"][1] = {} +defs["ImVector_ImTextureID_front"][1]["args"] = "(ImVector_ImTextureID* self)" +defs["ImVector_ImTextureID_front"][1]["argsT"] = {} +defs["ImVector_ImTextureID_front"][1]["argsT"][1] = {} +defs["ImVector_ImTextureID_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImTextureID_front"][1]["argsT"][1]["type"] = "ImVector_ImTextureID*" +defs["ImVector_ImTextureID_front"][1]["call_args"] = "()" +defs["ImVector_ImTextureID_front"][1]["cimguiname"] = "ImVector_ImTextureID_front" +defs["ImVector_ImTextureID_front"][1]["defaults"] = {} +defs["ImVector_ImTextureID_front"][1]["funcname"] = "front" +defs["ImVector_ImTextureID_front"][1]["ov_cimguiname"] = "ImVector_ImTextureID_front" +defs["ImVector_ImTextureID_front"][1]["ret"] = "ImTextureID*" +defs["ImVector_ImTextureID_front"][1]["retref"] = "&" +defs["ImVector_ImTextureID_front"][1]["signature"] = "()" +defs["ImVector_ImTextureID_front"][1]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_front"][1]["templatedgen"] = true +defs["ImVector_ImTextureID_front"][2] = {} +defs["ImVector_ImTextureID_front"][2]["args"] = "(const ImVector_ImTextureID* self)" +defs["ImVector_ImTextureID_front"][2]["argsT"] = {} +defs["ImVector_ImTextureID_front"][2]["argsT"][1] = {} +defs["ImVector_ImTextureID_front"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImTextureID_front"][2]["argsT"][1]["type"] = "const ImVector_ImTextureID*" +defs["ImVector_ImTextureID_front"][2]["call_args"] = "()" +defs["ImVector_ImTextureID_front"][2]["cimguiname"] = "ImVector_ImTextureID_front" +defs["ImVector_ImTextureID_front"][2]["defaults"] = {} +defs["ImVector_ImTextureID_front"][2]["funcname"] = "front" +defs["ImVector_ImTextureID_front"][2]["ov_cimguiname"] = "ImVector_ImTextureID_front_const" +defs["ImVector_ImTextureID_front"][2]["ret"] = "ImTextureID const *" +defs["ImVector_ImTextureID_front"][2]["retref"] = "&" +defs["ImVector_ImTextureID_front"][2]["signature"] = "()const" +defs["ImVector_ImTextureID_front"][2]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_front"][2]["templatedgen"] = true +defs["ImVector_ImTextureID_front"]["()"] = defs["ImVector_ImTextureID_front"][1] +defs["ImVector_ImTextureID_front"]["()const"] = defs["ImVector_ImTextureID_front"][2] +defs["ImVector_ImTextureID_index_from_ptr"] = {} +defs["ImVector_ImTextureID_index_from_ptr"][1] = {} +defs["ImVector_ImTextureID_index_from_ptr"][1]["args"] = "(const ImVector_ImTextureID* self,ImTextureID const * it)" +defs["ImVector_ImTextureID_index_from_ptr"][1]["argsT"] = {} +defs["ImVector_ImTextureID_index_from_ptr"][1]["argsT"][1] = {} +defs["ImVector_ImTextureID_index_from_ptr"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImTextureID_index_from_ptr"][1]["argsT"][1]["type"] = "const ImVector_ImTextureID*" +defs["ImVector_ImTextureID_index_from_ptr"][1]["argsT"][2] = {} +defs["ImVector_ImTextureID_index_from_ptr"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImTextureID_index_from_ptr"][1]["argsT"][2]["type"] = "ImTextureID const *" +defs["ImVector_ImTextureID_index_from_ptr"][1]["call_args"] = "(it)" +defs["ImVector_ImTextureID_index_from_ptr"][1]["cimguiname"] = "ImVector_ImTextureID_index_from_ptr" +defs["ImVector_ImTextureID_index_from_ptr"][1]["defaults"] = {} +defs["ImVector_ImTextureID_index_from_ptr"][1]["funcname"] = "index_from_ptr" +defs["ImVector_ImTextureID_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_ImTextureID_index_from_ptr" +defs["ImVector_ImTextureID_index_from_ptr"][1]["ret"] = "int" +defs["ImVector_ImTextureID_index_from_ptr"][1]["signature"] = "(const ImTextureID*)const" +defs["ImVector_ImTextureID_index_from_ptr"][1]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_index_from_ptr"][1]["templatedgen"] = true +defs["ImVector_ImTextureID_index_from_ptr"]["(const ImTextureID*)const"] = defs["ImVector_ImTextureID_index_from_ptr"][1] +defs["ImVector_ImTextureID_insert"] = {} +defs["ImVector_ImTextureID_insert"][1] = {} +defs["ImVector_ImTextureID_insert"][1]["args"] = "(ImVector_ImTextureID* self,ImTextureID const * it,const ImTextureID v)" +defs["ImVector_ImTextureID_insert"][1]["argsT"] = {} +defs["ImVector_ImTextureID_insert"][1]["argsT"][1] = {} +defs["ImVector_ImTextureID_insert"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImTextureID_insert"][1]["argsT"][1]["type"] = "ImVector_ImTextureID*" +defs["ImVector_ImTextureID_insert"][1]["argsT"][2] = {} +defs["ImVector_ImTextureID_insert"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImTextureID_insert"][1]["argsT"][2]["type"] = "ImTextureID const *" +defs["ImVector_ImTextureID_insert"][1]["argsT"][3] = {} +defs["ImVector_ImTextureID_insert"][1]["argsT"][3]["name"] = "v" +defs["ImVector_ImTextureID_insert"][1]["argsT"][3]["type"] = "const ImTextureID" +defs["ImVector_ImTextureID_insert"][1]["call_args"] = "(it,v)" +defs["ImVector_ImTextureID_insert"][1]["cimguiname"] = "ImVector_ImTextureID_insert" +defs["ImVector_ImTextureID_insert"][1]["defaults"] = {} +defs["ImVector_ImTextureID_insert"][1]["funcname"] = "insert" +defs["ImVector_ImTextureID_insert"][1]["ov_cimguiname"] = "ImVector_ImTextureID_insert" +defs["ImVector_ImTextureID_insert"][1]["ret"] = "ImTextureID*" +defs["ImVector_ImTextureID_insert"][1]["signature"] = "(const ImTextureID*,const ImTextureID)" +defs["ImVector_ImTextureID_insert"][1]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_insert"][1]["templatedgen"] = true +defs["ImVector_ImTextureID_insert"]["(const ImTextureID*,const ImTextureID)"] = defs["ImVector_ImTextureID_insert"][1] +defs["ImVector_ImTextureID_pop_back"] = {} +defs["ImVector_ImTextureID_pop_back"][1] = {} +defs["ImVector_ImTextureID_pop_back"][1]["args"] = "(ImVector_ImTextureID* self)" +defs["ImVector_ImTextureID_pop_back"][1]["argsT"] = {} +defs["ImVector_ImTextureID_pop_back"][1]["argsT"][1] = {} +defs["ImVector_ImTextureID_pop_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImTextureID_pop_back"][1]["argsT"][1]["type"] = "ImVector_ImTextureID*" +defs["ImVector_ImTextureID_pop_back"][1]["call_args"] = "()" +defs["ImVector_ImTextureID_pop_back"][1]["cimguiname"] = "ImVector_ImTextureID_pop_back" +defs["ImVector_ImTextureID_pop_back"][1]["defaults"] = {} +defs["ImVector_ImTextureID_pop_back"][1]["funcname"] = "pop_back" +defs["ImVector_ImTextureID_pop_back"][1]["ov_cimguiname"] = "ImVector_ImTextureID_pop_back" +defs["ImVector_ImTextureID_pop_back"][1]["ret"] = "void" +defs["ImVector_ImTextureID_pop_back"][1]["signature"] = "()" +defs["ImVector_ImTextureID_pop_back"][1]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_pop_back"][1]["templatedgen"] = true +defs["ImVector_ImTextureID_pop_back"]["()"] = defs["ImVector_ImTextureID_pop_back"][1] +defs["ImVector_ImTextureID_push_back"] = {} +defs["ImVector_ImTextureID_push_back"][1] = {} +defs["ImVector_ImTextureID_push_back"][1]["args"] = "(ImVector_ImTextureID* self,const ImTextureID v)" +defs["ImVector_ImTextureID_push_back"][1]["argsT"] = {} +defs["ImVector_ImTextureID_push_back"][1]["argsT"][1] = {} +defs["ImVector_ImTextureID_push_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImTextureID_push_back"][1]["argsT"][1]["type"] = "ImVector_ImTextureID*" +defs["ImVector_ImTextureID_push_back"][1]["argsT"][2] = {} +defs["ImVector_ImTextureID_push_back"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImTextureID_push_back"][1]["argsT"][2]["type"] = "const ImTextureID" +defs["ImVector_ImTextureID_push_back"][1]["call_args"] = "(v)" +defs["ImVector_ImTextureID_push_back"][1]["cimguiname"] = "ImVector_ImTextureID_push_back" +defs["ImVector_ImTextureID_push_back"][1]["defaults"] = {} +defs["ImVector_ImTextureID_push_back"][1]["funcname"] = "push_back" +defs["ImVector_ImTextureID_push_back"][1]["ov_cimguiname"] = "ImVector_ImTextureID_push_back" +defs["ImVector_ImTextureID_push_back"][1]["ret"] = "void" +defs["ImVector_ImTextureID_push_back"][1]["signature"] = "(const ImTextureID)" +defs["ImVector_ImTextureID_push_back"][1]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_push_back"][1]["templatedgen"] = true +defs["ImVector_ImTextureID_push_back"]["(const ImTextureID)"] = defs["ImVector_ImTextureID_push_back"][1] +defs["ImVector_ImTextureID_push_front"] = {} +defs["ImVector_ImTextureID_push_front"][1] = {} +defs["ImVector_ImTextureID_push_front"][1]["args"] = "(ImVector_ImTextureID* self,const ImTextureID v)" +defs["ImVector_ImTextureID_push_front"][1]["argsT"] = {} +defs["ImVector_ImTextureID_push_front"][1]["argsT"][1] = {} +defs["ImVector_ImTextureID_push_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImTextureID_push_front"][1]["argsT"][1]["type"] = "ImVector_ImTextureID*" +defs["ImVector_ImTextureID_push_front"][1]["argsT"][2] = {} +defs["ImVector_ImTextureID_push_front"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImTextureID_push_front"][1]["argsT"][2]["type"] = "const ImTextureID" +defs["ImVector_ImTextureID_push_front"][1]["call_args"] = "(v)" +defs["ImVector_ImTextureID_push_front"][1]["cimguiname"] = "ImVector_ImTextureID_push_front" +defs["ImVector_ImTextureID_push_front"][1]["defaults"] = {} +defs["ImVector_ImTextureID_push_front"][1]["funcname"] = "push_front" +defs["ImVector_ImTextureID_push_front"][1]["ov_cimguiname"] = "ImVector_ImTextureID_push_front" +defs["ImVector_ImTextureID_push_front"][1]["ret"] = "void" +defs["ImVector_ImTextureID_push_front"][1]["signature"] = "(const ImTextureID)" +defs["ImVector_ImTextureID_push_front"][1]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_push_front"][1]["templatedgen"] = true +defs["ImVector_ImTextureID_push_front"]["(const ImTextureID)"] = defs["ImVector_ImTextureID_push_front"][1] +defs["ImVector_ImTextureID_reserve"] = {} +defs["ImVector_ImTextureID_reserve"][1] = {} +defs["ImVector_ImTextureID_reserve"][1]["args"] = "(ImVector_ImTextureID* self,int new_capacity)" +defs["ImVector_ImTextureID_reserve"][1]["argsT"] = {} +defs["ImVector_ImTextureID_reserve"][1]["argsT"][1] = {} +defs["ImVector_ImTextureID_reserve"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImTextureID_reserve"][1]["argsT"][1]["type"] = "ImVector_ImTextureID*" +defs["ImVector_ImTextureID_reserve"][1]["argsT"][2] = {} +defs["ImVector_ImTextureID_reserve"][1]["argsT"][2]["name"] = "new_capacity" +defs["ImVector_ImTextureID_reserve"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImTextureID_reserve"][1]["call_args"] = "(new_capacity)" +defs["ImVector_ImTextureID_reserve"][1]["cimguiname"] = "ImVector_ImTextureID_reserve" +defs["ImVector_ImTextureID_reserve"][1]["defaults"] = {} +defs["ImVector_ImTextureID_reserve"][1]["funcname"] = "reserve" +defs["ImVector_ImTextureID_reserve"][1]["ov_cimguiname"] = "ImVector_ImTextureID_reserve" +defs["ImVector_ImTextureID_reserve"][1]["ret"] = "void" +defs["ImVector_ImTextureID_reserve"][1]["signature"] = "(int)" +defs["ImVector_ImTextureID_reserve"][1]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_reserve"][1]["templatedgen"] = true +defs["ImVector_ImTextureID_reserve"]["(int)"] = defs["ImVector_ImTextureID_reserve"][1] +defs["ImVector_ImTextureID_resize"] = {} +defs["ImVector_ImTextureID_resize"][1] = {} +defs["ImVector_ImTextureID_resize"][1]["args"] = "(ImVector_ImTextureID* self,int new_size)" +defs["ImVector_ImTextureID_resize"][1]["argsT"] = {} +defs["ImVector_ImTextureID_resize"][1]["argsT"][1] = {} +defs["ImVector_ImTextureID_resize"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImTextureID_resize"][1]["argsT"][1]["type"] = "ImVector_ImTextureID*" +defs["ImVector_ImTextureID_resize"][1]["argsT"][2] = {} +defs["ImVector_ImTextureID_resize"][1]["argsT"][2]["name"] = "new_size" +defs["ImVector_ImTextureID_resize"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImTextureID_resize"][1]["call_args"] = "(new_size)" +defs["ImVector_ImTextureID_resize"][1]["cimguiname"] = "ImVector_ImTextureID_resize" +defs["ImVector_ImTextureID_resize"][1]["defaults"] = {} +defs["ImVector_ImTextureID_resize"][1]["funcname"] = "resize" +defs["ImVector_ImTextureID_resize"][1]["ov_cimguiname"] = "ImVector_ImTextureID_resize" +defs["ImVector_ImTextureID_resize"][1]["ret"] = "void" +defs["ImVector_ImTextureID_resize"][1]["signature"] = "(int)" +defs["ImVector_ImTextureID_resize"][1]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_resize"][1]["templatedgen"] = true +defs["ImVector_ImTextureID_resize"][2] = {} +defs["ImVector_ImTextureID_resize"][2]["args"] = "(ImVector_ImTextureID* self,int new_size,const ImTextureID v)" +defs["ImVector_ImTextureID_resize"][2]["argsT"] = {} +defs["ImVector_ImTextureID_resize"][2]["argsT"][1] = {} +defs["ImVector_ImTextureID_resize"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImTextureID_resize"][2]["argsT"][1]["type"] = "ImVector_ImTextureID*" +defs["ImVector_ImTextureID_resize"][2]["argsT"][2] = {} +defs["ImVector_ImTextureID_resize"][2]["argsT"][2]["name"] = "new_size" +defs["ImVector_ImTextureID_resize"][2]["argsT"][2]["type"] = "int" +defs["ImVector_ImTextureID_resize"][2]["argsT"][3] = {} +defs["ImVector_ImTextureID_resize"][2]["argsT"][3]["name"] = "v" +defs["ImVector_ImTextureID_resize"][2]["argsT"][3]["type"] = "const ImTextureID" +defs["ImVector_ImTextureID_resize"][2]["call_args"] = "(new_size,v)" +defs["ImVector_ImTextureID_resize"][2]["cimguiname"] = "ImVector_ImTextureID_resize" +defs["ImVector_ImTextureID_resize"][2]["defaults"] = {} +defs["ImVector_ImTextureID_resize"][2]["funcname"] = "resize" +defs["ImVector_ImTextureID_resize"][2]["ov_cimguiname"] = "ImVector_ImTextureID_resizeT" +defs["ImVector_ImTextureID_resize"][2]["ret"] = "void" +defs["ImVector_ImTextureID_resize"][2]["signature"] = "(int,const ImTextureID)" +defs["ImVector_ImTextureID_resize"][2]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_resize"][2]["templatedgen"] = true +defs["ImVector_ImTextureID_resize"]["(int)"] = defs["ImVector_ImTextureID_resize"][1] +defs["ImVector_ImTextureID_resize"]["(int,const ImTextureID)"] = defs["ImVector_ImTextureID_resize"][2] +defs["ImVector_ImTextureID_size"] = {} +defs["ImVector_ImTextureID_size"][1] = {} +defs["ImVector_ImTextureID_size"][1]["args"] = "(const ImVector_ImTextureID* self)" +defs["ImVector_ImTextureID_size"][1]["argsT"] = {} +defs["ImVector_ImTextureID_size"][1]["argsT"][1] = {} +defs["ImVector_ImTextureID_size"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImTextureID_size"][1]["argsT"][1]["type"] = "const ImVector_ImTextureID*" +defs["ImVector_ImTextureID_size"][1]["call_args"] = "()" +defs["ImVector_ImTextureID_size"][1]["cimguiname"] = "ImVector_ImTextureID_size" +defs["ImVector_ImTextureID_size"][1]["defaults"] = {} +defs["ImVector_ImTextureID_size"][1]["funcname"] = "size" +defs["ImVector_ImTextureID_size"][1]["ov_cimguiname"] = "ImVector_ImTextureID_size" +defs["ImVector_ImTextureID_size"][1]["ret"] = "int" +defs["ImVector_ImTextureID_size"][1]["signature"] = "()const" +defs["ImVector_ImTextureID_size"][1]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_size"][1]["templatedgen"] = true +defs["ImVector_ImTextureID_size"]["()const"] = defs["ImVector_ImTextureID_size"][1] +defs["ImVector_ImTextureID_size_in_bytes"] = {} +defs["ImVector_ImTextureID_size_in_bytes"][1] = {} +defs["ImVector_ImTextureID_size_in_bytes"][1]["args"] = "(const ImVector_ImTextureID* self)" +defs["ImVector_ImTextureID_size_in_bytes"][1]["argsT"] = {} +defs["ImVector_ImTextureID_size_in_bytes"][1]["argsT"][1] = {} +defs["ImVector_ImTextureID_size_in_bytes"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImTextureID_size_in_bytes"][1]["argsT"][1]["type"] = "const ImVector_ImTextureID*" +defs["ImVector_ImTextureID_size_in_bytes"][1]["call_args"] = "()" +defs["ImVector_ImTextureID_size_in_bytes"][1]["cimguiname"] = "ImVector_ImTextureID_size_in_bytes" +defs["ImVector_ImTextureID_size_in_bytes"][1]["defaults"] = {} +defs["ImVector_ImTextureID_size_in_bytes"][1]["funcname"] = "size_in_bytes" +defs["ImVector_ImTextureID_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_ImTextureID_size_in_bytes" +defs["ImVector_ImTextureID_size_in_bytes"][1]["ret"] = "int" +defs["ImVector_ImTextureID_size_in_bytes"][1]["signature"] = "()const" +defs["ImVector_ImTextureID_size_in_bytes"][1]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_size_in_bytes"][1]["templatedgen"] = true +defs["ImVector_ImTextureID_size_in_bytes"]["()const"] = defs["ImVector_ImTextureID_size_in_bytes"][1] +defs["ImVector_ImTextureID_swap"] = {} +defs["ImVector_ImTextureID_swap"][1] = {} +defs["ImVector_ImTextureID_swap"][1]["args"] = "(ImVector_ImTextureID* self,ImVector_ImTextureID rhs)" +defs["ImVector_ImTextureID_swap"][1]["argsT"] = {} +defs["ImVector_ImTextureID_swap"][1]["argsT"][1] = {} +defs["ImVector_ImTextureID_swap"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImTextureID_swap"][1]["argsT"][1]["type"] = "ImVector_ImTextureID*" +defs["ImVector_ImTextureID_swap"][1]["argsT"][2] = {} +defs["ImVector_ImTextureID_swap"][1]["argsT"][2]["name"] = "rhs" +defs["ImVector_ImTextureID_swap"][1]["argsT"][2]["type"] = "ImVector_ImTextureID&" +defs["ImVector_ImTextureID_swap"][1]["call_args"] = "(rhs)" +defs["ImVector_ImTextureID_swap"][1]["cimguiname"] = "ImVector_ImTextureID_swap" +defs["ImVector_ImTextureID_swap"][1]["defaults"] = {} +defs["ImVector_ImTextureID_swap"][1]["funcname"] = "swap" +defs["ImVector_ImTextureID_swap"][1]["ov_cimguiname"] = "ImVector_ImTextureID_swap" +defs["ImVector_ImTextureID_swap"][1]["ret"] = "void" +defs["ImVector_ImTextureID_swap"][1]["signature"] = "(ImVector)" +defs["ImVector_ImTextureID_swap"][1]["stname"] = "ImVector_ImTextureID" +defs["ImVector_ImTextureID_swap"][1]["templatedgen"] = true +defs["ImVector_ImTextureID_swap"]["(ImVector)"] = defs["ImVector_ImTextureID_swap"][1] +defs["ImVector_ImVec2_ImVector_ImVec2"] = {} +defs["ImVector_ImVec2_ImVector_ImVec2"][1] = {} +defs["ImVector_ImVec2_ImVector_ImVec2"][1]["args"] = "()" +defs["ImVector_ImVec2_ImVector_ImVec2"][1]["argsT"] = {} +defs["ImVector_ImVec2_ImVector_ImVec2"][1]["call_args"] = "()" +defs["ImVector_ImVec2_ImVector_ImVec2"][1]["cimguiname"] = "ImVector_ImVec2_ImVector_ImVec2" +defs["ImVector_ImVec2_ImVector_ImVec2"][1]["constructor"] = true +defs["ImVector_ImVec2_ImVector_ImVec2"][1]["defaults"] = {} +defs["ImVector_ImVec2_ImVector_ImVec2"][1]["funcname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_ImVector_ImVec2"][1]["ov_cimguiname"] = "ImVector_ImVec2_ImVector_ImVec2" +defs["ImVector_ImVec2_ImVector_ImVec2"][1]["signature"] = "()" +defs["ImVector_ImVec2_ImVector_ImVec2"][1]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_ImVector_ImVec2"][1]["templatedgen"] = true +defs["ImVector_ImVec2_ImVector_ImVec2"][2] = {} +defs["ImVector_ImVec2_ImVector_ImVec2"][2]["args"] = "(const ImVector_ImVec2 src)" +defs["ImVector_ImVec2_ImVector_ImVec2"][2]["argsT"] = {} +defs["ImVector_ImVec2_ImVector_ImVec2"][2]["argsT"][1] = {} +defs["ImVector_ImVec2_ImVector_ImVec2"][2]["argsT"][1]["name"] = "src" +defs["ImVector_ImVec2_ImVector_ImVec2"][2]["argsT"][1]["type"] = "const ImVector_ImVec2" +defs["ImVector_ImVec2_ImVector_ImVec2"][2]["call_args"] = "(src)" +defs["ImVector_ImVec2_ImVector_ImVec2"][2]["cimguiname"] = "ImVector_ImVec2_ImVector_ImVec2" +defs["ImVector_ImVec2_ImVector_ImVec2"][2]["constructor"] = true +defs["ImVector_ImVec2_ImVector_ImVec2"][2]["defaults"] = {} +defs["ImVector_ImVec2_ImVector_ImVec2"][2]["funcname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_ImVector_ImVec2"][2]["ov_cimguiname"] = "ImVector_ImVec2_ImVector_ImVec2Vector" +defs["ImVector_ImVec2_ImVector_ImVec2"][2]["signature"] = "(const ImVector)" +defs["ImVector_ImVec2_ImVector_ImVec2"][2]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_ImVector_ImVec2"][2]["templatedgen"] = true +defs["ImVector_ImVec2_ImVector_ImVec2"]["()"] = defs["ImVector_ImVec2_ImVector_ImVec2"][1] +defs["ImVector_ImVec2_ImVector_ImVec2"]["(const ImVector)"] = defs["ImVector_ImVec2_ImVector_ImVec2"][2] +defs["ImVector_ImVec2__grow_capacity"] = {} +defs["ImVector_ImVec2__grow_capacity"][1] = {} +defs["ImVector_ImVec2__grow_capacity"][1]["args"] = "(const ImVector_ImVec2* self,int sz)" +defs["ImVector_ImVec2__grow_capacity"][1]["argsT"] = {} +defs["ImVector_ImVec2__grow_capacity"][1]["argsT"][1] = {} +defs["ImVector_ImVec2__grow_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec2__grow_capacity"][1]["argsT"][1]["type"] = "const ImVector_ImVec2*" +defs["ImVector_ImVec2__grow_capacity"][1]["argsT"][2] = {} +defs["ImVector_ImVec2__grow_capacity"][1]["argsT"][2]["name"] = "sz" +defs["ImVector_ImVec2__grow_capacity"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImVec2__grow_capacity"][1]["call_args"] = "(sz)" +defs["ImVector_ImVec2__grow_capacity"][1]["cimguiname"] = "ImVector_ImVec2__grow_capacity" +defs["ImVector_ImVec2__grow_capacity"][1]["defaults"] = {} +defs["ImVector_ImVec2__grow_capacity"][1]["funcname"] = "_grow_capacity" +defs["ImVector_ImVec2__grow_capacity"][1]["ov_cimguiname"] = "ImVector_ImVec2__grow_capacity" +defs["ImVector_ImVec2__grow_capacity"][1]["ret"] = "int" +defs["ImVector_ImVec2__grow_capacity"][1]["signature"] = "(int)const" +defs["ImVector_ImVec2__grow_capacity"][1]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2__grow_capacity"][1]["templatedgen"] = true +defs["ImVector_ImVec2__grow_capacity"]["(int)const"] = defs["ImVector_ImVec2__grow_capacity"][1] +defs["ImVector_ImVec2_back"] = {} +defs["ImVector_ImVec2_back"][1] = {} +defs["ImVector_ImVec2_back"][1]["args"] = "(ImVector_ImVec2* self)" +defs["ImVector_ImVec2_back"][1]["argsT"] = {} +defs["ImVector_ImVec2_back"][1]["argsT"][1] = {} +defs["ImVector_ImVec2_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec2_back"][1]["argsT"][1]["type"] = "ImVector_ImVec2*" +defs["ImVector_ImVec2_back"][1]["call_args"] = "()" +defs["ImVector_ImVec2_back"][1]["cimguiname"] = "ImVector_ImVec2_back" +defs["ImVector_ImVec2_back"][1]["defaults"] = {} +defs["ImVector_ImVec2_back"][1]["funcname"] = "back" +defs["ImVector_ImVec2_back"][1]["ov_cimguiname"] = "ImVector_ImVec2_back" +defs["ImVector_ImVec2_back"][1]["ret"] = "ImVec2*" +defs["ImVector_ImVec2_back"][1]["retref"] = "&" +defs["ImVector_ImVec2_back"][1]["signature"] = "()" +defs["ImVector_ImVec2_back"][1]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_back"][1]["templatedgen"] = true +defs["ImVector_ImVec2_back"][2] = {} +defs["ImVector_ImVec2_back"][2]["args"] = "(const ImVector_ImVec2* self)" +defs["ImVector_ImVec2_back"][2]["argsT"] = {} +defs["ImVector_ImVec2_back"][2]["argsT"][1] = {} +defs["ImVector_ImVec2_back"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec2_back"][2]["argsT"][1]["type"] = "const ImVector_ImVec2*" +defs["ImVector_ImVec2_back"][2]["call_args"] = "()" +defs["ImVector_ImVec2_back"][2]["cimguiname"] = "ImVector_ImVec2_back" +defs["ImVector_ImVec2_back"][2]["defaults"] = {} +defs["ImVector_ImVec2_back"][2]["funcname"] = "back" +defs["ImVector_ImVec2_back"][2]["ov_cimguiname"] = "ImVector_ImVec2_back_const" +defs["ImVector_ImVec2_back"][2]["ret"] = "ImVec2 const *" +defs["ImVector_ImVec2_back"][2]["retref"] = "&" +defs["ImVector_ImVec2_back"][2]["signature"] = "()const" +defs["ImVector_ImVec2_back"][2]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_back"][2]["templatedgen"] = true +defs["ImVector_ImVec2_back"]["()"] = defs["ImVector_ImVec2_back"][1] +defs["ImVector_ImVec2_back"]["()const"] = defs["ImVector_ImVec2_back"][2] +defs["ImVector_ImVec2_begin"] = {} +defs["ImVector_ImVec2_begin"][1] = {} +defs["ImVector_ImVec2_begin"][1]["args"] = "(ImVector_ImVec2* self)" +defs["ImVector_ImVec2_begin"][1]["argsT"] = {} +defs["ImVector_ImVec2_begin"][1]["argsT"][1] = {} +defs["ImVector_ImVec2_begin"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec2_begin"][1]["argsT"][1]["type"] = "ImVector_ImVec2*" +defs["ImVector_ImVec2_begin"][1]["call_args"] = "()" +defs["ImVector_ImVec2_begin"][1]["cimguiname"] = "ImVector_ImVec2_begin" +defs["ImVector_ImVec2_begin"][1]["defaults"] = {} +defs["ImVector_ImVec2_begin"][1]["funcname"] = "begin" +defs["ImVector_ImVec2_begin"][1]["ov_cimguiname"] = "ImVector_ImVec2_begin" +defs["ImVector_ImVec2_begin"][1]["ret"] = "ImVec2*" +defs["ImVector_ImVec2_begin"][1]["signature"] = "()" +defs["ImVector_ImVec2_begin"][1]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_begin"][1]["templatedgen"] = true +defs["ImVector_ImVec2_begin"][2] = {} +defs["ImVector_ImVec2_begin"][2]["args"] = "(const ImVector_ImVec2* self)" +defs["ImVector_ImVec2_begin"][2]["argsT"] = {} +defs["ImVector_ImVec2_begin"][2]["argsT"][1] = {} +defs["ImVector_ImVec2_begin"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec2_begin"][2]["argsT"][1]["type"] = "const ImVector_ImVec2*" +defs["ImVector_ImVec2_begin"][2]["call_args"] = "()" +defs["ImVector_ImVec2_begin"][2]["cimguiname"] = "ImVector_ImVec2_begin" +defs["ImVector_ImVec2_begin"][2]["defaults"] = {} +defs["ImVector_ImVec2_begin"][2]["funcname"] = "begin" +defs["ImVector_ImVec2_begin"][2]["ov_cimguiname"] = "ImVector_ImVec2_begin_const" +defs["ImVector_ImVec2_begin"][2]["ret"] = "ImVec2 const *" +defs["ImVector_ImVec2_begin"][2]["signature"] = "()const" +defs["ImVector_ImVec2_begin"][2]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_begin"][2]["templatedgen"] = true +defs["ImVector_ImVec2_begin"]["()"] = defs["ImVector_ImVec2_begin"][1] +defs["ImVector_ImVec2_begin"]["()const"] = defs["ImVector_ImVec2_begin"][2] +defs["ImVector_ImVec2_capacity"] = {} +defs["ImVector_ImVec2_capacity"][1] = {} +defs["ImVector_ImVec2_capacity"][1]["args"] = "(const ImVector_ImVec2* self)" +defs["ImVector_ImVec2_capacity"][1]["argsT"] = {} +defs["ImVector_ImVec2_capacity"][1]["argsT"][1] = {} +defs["ImVector_ImVec2_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec2_capacity"][1]["argsT"][1]["type"] = "const ImVector_ImVec2*" +defs["ImVector_ImVec2_capacity"][1]["call_args"] = "()" +defs["ImVector_ImVec2_capacity"][1]["cimguiname"] = "ImVector_ImVec2_capacity" +defs["ImVector_ImVec2_capacity"][1]["defaults"] = {} +defs["ImVector_ImVec2_capacity"][1]["funcname"] = "capacity" +defs["ImVector_ImVec2_capacity"][1]["ov_cimguiname"] = "ImVector_ImVec2_capacity" +defs["ImVector_ImVec2_capacity"][1]["ret"] = "int" +defs["ImVector_ImVec2_capacity"][1]["signature"] = "()const" +defs["ImVector_ImVec2_capacity"][1]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_capacity"][1]["templatedgen"] = true +defs["ImVector_ImVec2_capacity"]["()const"] = defs["ImVector_ImVec2_capacity"][1] +defs["ImVector_ImVec2_clear"] = {} +defs["ImVector_ImVec2_clear"][1] = {} +defs["ImVector_ImVec2_clear"][1]["args"] = "(ImVector_ImVec2* self)" +defs["ImVector_ImVec2_clear"][1]["argsT"] = {} +defs["ImVector_ImVec2_clear"][1]["argsT"][1] = {} +defs["ImVector_ImVec2_clear"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec2_clear"][1]["argsT"][1]["type"] = "ImVector_ImVec2*" +defs["ImVector_ImVec2_clear"][1]["call_args"] = "()" +defs["ImVector_ImVec2_clear"][1]["cimguiname"] = "ImVector_ImVec2_clear" +defs["ImVector_ImVec2_clear"][1]["defaults"] = {} +defs["ImVector_ImVec2_clear"][1]["funcname"] = "clear" +defs["ImVector_ImVec2_clear"][1]["ov_cimguiname"] = "ImVector_ImVec2_clear" +defs["ImVector_ImVec2_clear"][1]["ret"] = "void" +defs["ImVector_ImVec2_clear"][1]["signature"] = "()" +defs["ImVector_ImVec2_clear"][1]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_clear"][1]["templatedgen"] = true +defs["ImVector_ImVec2_clear"]["()"] = defs["ImVector_ImVec2_clear"][1] +defs["ImVector_ImVec2_contains"] = {} +defs["ImVector_ImVec2_contains"][1] = {} +defs["ImVector_ImVec2_contains"][1]["args"] = "(const ImVector_ImVec2* self,const ImVec2 v)" +defs["ImVector_ImVec2_contains"][1]["argsT"] = {} +defs["ImVector_ImVec2_contains"][1]["argsT"][1] = {} +defs["ImVector_ImVec2_contains"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec2_contains"][1]["argsT"][1]["type"] = "const ImVector_ImVec2*" +defs["ImVector_ImVec2_contains"][1]["argsT"][2] = {} +defs["ImVector_ImVec2_contains"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImVec2_contains"][1]["argsT"][2]["type"] = "const ImVec2" +defs["ImVector_ImVec2_contains"][1]["call_args"] = "(v)" +defs["ImVector_ImVec2_contains"][1]["cimguiname"] = "ImVector_ImVec2_contains" +defs["ImVector_ImVec2_contains"][1]["defaults"] = {} +defs["ImVector_ImVec2_contains"][1]["funcname"] = "contains" +defs["ImVector_ImVec2_contains"][1]["ov_cimguiname"] = "ImVector_ImVec2_contains" +defs["ImVector_ImVec2_contains"][1]["ret"] = "bool" +defs["ImVector_ImVec2_contains"][1]["signature"] = "(const ImVec2)const" +defs["ImVector_ImVec2_contains"][1]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_contains"][1]["templatedgen"] = true +defs["ImVector_ImVec2_contains"]["(const ImVec2)const"] = defs["ImVector_ImVec2_contains"][1] +defs["ImVector_ImVec2_destroy"] = {} +defs["ImVector_ImVec2_destroy"][1] = {} +defs["ImVector_ImVec2_destroy"][1]["args"] = "(ImVector_ImVec2* self)" +defs["ImVector_ImVec2_destroy"][1]["argsT"] = {} +defs["ImVector_ImVec2_destroy"][1]["argsT"][1] = {} +defs["ImVector_ImVec2_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec2_destroy"][1]["argsT"][1]["type"] = "ImVector_ImVec2*" +defs["ImVector_ImVec2_destroy"][1]["call_args"] = "(self)" +defs["ImVector_ImVec2_destroy"][1]["cimguiname"] = "ImVector_ImVec2_destroy" +defs["ImVector_ImVec2_destroy"][1]["defaults"] = {} +defs["ImVector_ImVec2_destroy"][1]["destructor"] = true +defs["ImVector_ImVec2_destroy"][1]["ov_cimguiname"] = "ImVector_ImVec2_destroy" +defs["ImVector_ImVec2_destroy"][1]["ret"] = "void" +defs["ImVector_ImVec2_destroy"][1]["signature"] = "(ImVector_ImVec2*)" +defs["ImVector_ImVec2_destroy"][1]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_destroy"]["(ImVector_ImVec2*)"] = defs["ImVector_ImVec2_destroy"][1] +defs["ImVector_ImVec2_empty"] = {} +defs["ImVector_ImVec2_empty"][1] = {} +defs["ImVector_ImVec2_empty"][1]["args"] = "(const ImVector_ImVec2* self)" +defs["ImVector_ImVec2_empty"][1]["argsT"] = {} +defs["ImVector_ImVec2_empty"][1]["argsT"][1] = {} +defs["ImVector_ImVec2_empty"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec2_empty"][1]["argsT"][1]["type"] = "const ImVector_ImVec2*" +defs["ImVector_ImVec2_empty"][1]["call_args"] = "()" +defs["ImVector_ImVec2_empty"][1]["cimguiname"] = "ImVector_ImVec2_empty" +defs["ImVector_ImVec2_empty"][1]["defaults"] = {} +defs["ImVector_ImVec2_empty"][1]["funcname"] = "empty" +defs["ImVector_ImVec2_empty"][1]["ov_cimguiname"] = "ImVector_ImVec2_empty" +defs["ImVector_ImVec2_empty"][1]["ret"] = "bool" +defs["ImVector_ImVec2_empty"][1]["signature"] = "()const" +defs["ImVector_ImVec2_empty"][1]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_empty"][1]["templatedgen"] = true +defs["ImVector_ImVec2_empty"]["()const"] = defs["ImVector_ImVec2_empty"][1] +defs["ImVector_ImVec2_end"] = {} +defs["ImVector_ImVec2_end"][1] = {} +defs["ImVector_ImVec2_end"][1]["args"] = "(ImVector_ImVec2* self)" +defs["ImVector_ImVec2_end"][1]["argsT"] = {} +defs["ImVector_ImVec2_end"][1]["argsT"][1] = {} +defs["ImVector_ImVec2_end"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec2_end"][1]["argsT"][1]["type"] = "ImVector_ImVec2*" +defs["ImVector_ImVec2_end"][1]["call_args"] = "()" +defs["ImVector_ImVec2_end"][1]["cimguiname"] = "ImVector_ImVec2_end" +defs["ImVector_ImVec2_end"][1]["defaults"] = {} +defs["ImVector_ImVec2_end"][1]["funcname"] = "end" +defs["ImVector_ImVec2_end"][1]["ov_cimguiname"] = "ImVector_ImVec2_end" +defs["ImVector_ImVec2_end"][1]["ret"] = "ImVec2*" +defs["ImVector_ImVec2_end"][1]["signature"] = "()" +defs["ImVector_ImVec2_end"][1]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_end"][1]["templatedgen"] = true +defs["ImVector_ImVec2_end"][2] = {} +defs["ImVector_ImVec2_end"][2]["args"] = "(const ImVector_ImVec2* self)" +defs["ImVector_ImVec2_end"][2]["argsT"] = {} +defs["ImVector_ImVec2_end"][2]["argsT"][1] = {} +defs["ImVector_ImVec2_end"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec2_end"][2]["argsT"][1]["type"] = "const ImVector_ImVec2*" +defs["ImVector_ImVec2_end"][2]["call_args"] = "()" +defs["ImVector_ImVec2_end"][2]["cimguiname"] = "ImVector_ImVec2_end" +defs["ImVector_ImVec2_end"][2]["defaults"] = {} +defs["ImVector_ImVec2_end"][2]["funcname"] = "end" +defs["ImVector_ImVec2_end"][2]["ov_cimguiname"] = "ImVector_ImVec2_end_const" +defs["ImVector_ImVec2_end"][2]["ret"] = "ImVec2 const *" +defs["ImVector_ImVec2_end"][2]["signature"] = "()const" +defs["ImVector_ImVec2_end"][2]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_end"][2]["templatedgen"] = true +defs["ImVector_ImVec2_end"]["()"] = defs["ImVector_ImVec2_end"][1] +defs["ImVector_ImVec2_end"]["()const"] = defs["ImVector_ImVec2_end"][2] +defs["ImVector_ImVec2_erase"] = {} +defs["ImVector_ImVec2_erase"][1] = {} +defs["ImVector_ImVec2_erase"][1]["args"] = "(ImVector_ImVec2* self,ImVec2 const * it)" +defs["ImVector_ImVec2_erase"][1]["argsT"] = {} +defs["ImVector_ImVec2_erase"][1]["argsT"][1] = {} +defs["ImVector_ImVec2_erase"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec2_erase"][1]["argsT"][1]["type"] = "ImVector_ImVec2*" +defs["ImVector_ImVec2_erase"][1]["argsT"][2] = {} +defs["ImVector_ImVec2_erase"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImVec2_erase"][1]["argsT"][2]["type"] = "ImVec2 const *" +defs["ImVector_ImVec2_erase"][1]["call_args"] = "(it)" +defs["ImVector_ImVec2_erase"][1]["cimguiname"] = "ImVector_ImVec2_erase" +defs["ImVector_ImVec2_erase"][1]["defaults"] = {} +defs["ImVector_ImVec2_erase"][1]["funcname"] = "erase" +defs["ImVector_ImVec2_erase"][1]["ov_cimguiname"] = "ImVector_ImVec2_erase" +defs["ImVector_ImVec2_erase"][1]["ret"] = "ImVec2*" +defs["ImVector_ImVec2_erase"][1]["signature"] = "(const ImVec2*)" +defs["ImVector_ImVec2_erase"][1]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_erase"][1]["templatedgen"] = true +defs["ImVector_ImVec2_erase"][2] = {} +defs["ImVector_ImVec2_erase"][2]["args"] = "(ImVector_ImVec2* self,ImVec2 const * it,ImVec2 const * it_last)" +defs["ImVector_ImVec2_erase"][2]["argsT"] = {} +defs["ImVector_ImVec2_erase"][2]["argsT"][1] = {} +defs["ImVector_ImVec2_erase"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec2_erase"][2]["argsT"][1]["type"] = "ImVector_ImVec2*" +defs["ImVector_ImVec2_erase"][2]["argsT"][2] = {} +defs["ImVector_ImVec2_erase"][2]["argsT"][2]["name"] = "it" +defs["ImVector_ImVec2_erase"][2]["argsT"][2]["type"] = "ImVec2 const *" +defs["ImVector_ImVec2_erase"][2]["argsT"][3] = {} +defs["ImVector_ImVec2_erase"][2]["argsT"][3]["name"] = "it_last" +defs["ImVector_ImVec2_erase"][2]["argsT"][3]["type"] = "ImVec2 const *" +defs["ImVector_ImVec2_erase"][2]["call_args"] = "(it,it_last)" +defs["ImVector_ImVec2_erase"][2]["cimguiname"] = "ImVector_ImVec2_erase" +defs["ImVector_ImVec2_erase"][2]["defaults"] = {} +defs["ImVector_ImVec2_erase"][2]["funcname"] = "erase" +defs["ImVector_ImVec2_erase"][2]["ov_cimguiname"] = "ImVector_ImVec2_eraseTPtr" +defs["ImVector_ImVec2_erase"][2]["ret"] = "ImVec2*" +defs["ImVector_ImVec2_erase"][2]["signature"] = "(const ImVec2*,const ImVec2*)" +defs["ImVector_ImVec2_erase"][2]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_erase"][2]["templatedgen"] = true +defs["ImVector_ImVec2_erase"]["(const ImVec2*)"] = defs["ImVector_ImVec2_erase"][1] +defs["ImVector_ImVec2_erase"]["(const ImVec2*,const ImVec2*)"] = defs["ImVector_ImVec2_erase"][2] +defs["ImVector_ImVec2_erase_unsorted"] = {} +defs["ImVector_ImVec2_erase_unsorted"][1] = {} +defs["ImVector_ImVec2_erase_unsorted"][1]["args"] = "(ImVector_ImVec2* self,ImVec2 const * it)" +defs["ImVector_ImVec2_erase_unsorted"][1]["argsT"] = {} +defs["ImVector_ImVec2_erase_unsorted"][1]["argsT"][1] = {} +defs["ImVector_ImVec2_erase_unsorted"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec2_erase_unsorted"][1]["argsT"][1]["type"] = "ImVector_ImVec2*" +defs["ImVector_ImVec2_erase_unsorted"][1]["argsT"][2] = {} +defs["ImVector_ImVec2_erase_unsorted"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImVec2_erase_unsorted"][1]["argsT"][2]["type"] = "ImVec2 const *" +defs["ImVector_ImVec2_erase_unsorted"][1]["call_args"] = "(it)" +defs["ImVector_ImVec2_erase_unsorted"][1]["cimguiname"] = "ImVector_ImVec2_erase_unsorted" +defs["ImVector_ImVec2_erase_unsorted"][1]["defaults"] = {} +defs["ImVector_ImVec2_erase_unsorted"][1]["funcname"] = "erase_unsorted" +defs["ImVector_ImVec2_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_ImVec2_erase_unsorted" +defs["ImVector_ImVec2_erase_unsorted"][1]["ret"] = "ImVec2*" +defs["ImVector_ImVec2_erase_unsorted"][1]["signature"] = "(const ImVec2*)" +defs["ImVector_ImVec2_erase_unsorted"][1]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_erase_unsorted"][1]["templatedgen"] = true +defs["ImVector_ImVec2_erase_unsorted"]["(const ImVec2*)"] = defs["ImVector_ImVec2_erase_unsorted"][1] +defs["ImVector_ImVec2_front"] = {} +defs["ImVector_ImVec2_front"][1] = {} +defs["ImVector_ImVec2_front"][1]["args"] = "(ImVector_ImVec2* self)" +defs["ImVector_ImVec2_front"][1]["argsT"] = {} +defs["ImVector_ImVec2_front"][1]["argsT"][1] = {} +defs["ImVector_ImVec2_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec2_front"][1]["argsT"][1]["type"] = "ImVector_ImVec2*" +defs["ImVector_ImVec2_front"][1]["call_args"] = "()" +defs["ImVector_ImVec2_front"][1]["cimguiname"] = "ImVector_ImVec2_front" +defs["ImVector_ImVec2_front"][1]["defaults"] = {} +defs["ImVector_ImVec2_front"][1]["funcname"] = "front" +defs["ImVector_ImVec2_front"][1]["ov_cimguiname"] = "ImVector_ImVec2_front" +defs["ImVector_ImVec2_front"][1]["ret"] = "ImVec2*" +defs["ImVector_ImVec2_front"][1]["retref"] = "&" +defs["ImVector_ImVec2_front"][1]["signature"] = "()" +defs["ImVector_ImVec2_front"][1]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_front"][1]["templatedgen"] = true +defs["ImVector_ImVec2_front"][2] = {} +defs["ImVector_ImVec2_front"][2]["args"] = "(const ImVector_ImVec2* self)" +defs["ImVector_ImVec2_front"][2]["argsT"] = {} +defs["ImVector_ImVec2_front"][2]["argsT"][1] = {} +defs["ImVector_ImVec2_front"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec2_front"][2]["argsT"][1]["type"] = "const ImVector_ImVec2*" +defs["ImVector_ImVec2_front"][2]["call_args"] = "()" +defs["ImVector_ImVec2_front"][2]["cimguiname"] = "ImVector_ImVec2_front" +defs["ImVector_ImVec2_front"][2]["defaults"] = {} +defs["ImVector_ImVec2_front"][2]["funcname"] = "front" +defs["ImVector_ImVec2_front"][2]["ov_cimguiname"] = "ImVector_ImVec2_front_const" +defs["ImVector_ImVec2_front"][2]["ret"] = "ImVec2 const *" +defs["ImVector_ImVec2_front"][2]["retref"] = "&" +defs["ImVector_ImVec2_front"][2]["signature"] = "()const" +defs["ImVector_ImVec2_front"][2]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_front"][2]["templatedgen"] = true +defs["ImVector_ImVec2_front"]["()"] = defs["ImVector_ImVec2_front"][1] +defs["ImVector_ImVec2_front"]["()const"] = defs["ImVector_ImVec2_front"][2] +defs["ImVector_ImVec2_index_from_ptr"] = {} +defs["ImVector_ImVec2_index_from_ptr"][1] = {} +defs["ImVector_ImVec2_index_from_ptr"][1]["args"] = "(const ImVector_ImVec2* self,ImVec2 const * it)" +defs["ImVector_ImVec2_index_from_ptr"][1]["argsT"] = {} +defs["ImVector_ImVec2_index_from_ptr"][1]["argsT"][1] = {} +defs["ImVector_ImVec2_index_from_ptr"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec2_index_from_ptr"][1]["argsT"][1]["type"] = "const ImVector_ImVec2*" +defs["ImVector_ImVec2_index_from_ptr"][1]["argsT"][2] = {} +defs["ImVector_ImVec2_index_from_ptr"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImVec2_index_from_ptr"][1]["argsT"][2]["type"] = "ImVec2 const *" +defs["ImVector_ImVec2_index_from_ptr"][1]["call_args"] = "(it)" +defs["ImVector_ImVec2_index_from_ptr"][1]["cimguiname"] = "ImVector_ImVec2_index_from_ptr" +defs["ImVector_ImVec2_index_from_ptr"][1]["defaults"] = {} +defs["ImVector_ImVec2_index_from_ptr"][1]["funcname"] = "index_from_ptr" +defs["ImVector_ImVec2_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_ImVec2_index_from_ptr" +defs["ImVector_ImVec2_index_from_ptr"][1]["ret"] = "int" +defs["ImVector_ImVec2_index_from_ptr"][1]["signature"] = "(const ImVec2*)const" +defs["ImVector_ImVec2_index_from_ptr"][1]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_index_from_ptr"][1]["templatedgen"] = true +defs["ImVector_ImVec2_index_from_ptr"]["(const ImVec2*)const"] = defs["ImVector_ImVec2_index_from_ptr"][1] +defs["ImVector_ImVec2_insert"] = {} +defs["ImVector_ImVec2_insert"][1] = {} +defs["ImVector_ImVec2_insert"][1]["args"] = "(ImVector_ImVec2* self,ImVec2 const * it,const ImVec2 v)" +defs["ImVector_ImVec2_insert"][1]["argsT"] = {} +defs["ImVector_ImVec2_insert"][1]["argsT"][1] = {} +defs["ImVector_ImVec2_insert"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec2_insert"][1]["argsT"][1]["type"] = "ImVector_ImVec2*" +defs["ImVector_ImVec2_insert"][1]["argsT"][2] = {} +defs["ImVector_ImVec2_insert"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImVec2_insert"][1]["argsT"][2]["type"] = "ImVec2 const *" +defs["ImVector_ImVec2_insert"][1]["argsT"][3] = {} +defs["ImVector_ImVec2_insert"][1]["argsT"][3]["name"] = "v" +defs["ImVector_ImVec2_insert"][1]["argsT"][3]["type"] = "const ImVec2" +defs["ImVector_ImVec2_insert"][1]["call_args"] = "(it,v)" +defs["ImVector_ImVec2_insert"][1]["cimguiname"] = "ImVector_ImVec2_insert" +defs["ImVector_ImVec2_insert"][1]["defaults"] = {} +defs["ImVector_ImVec2_insert"][1]["funcname"] = "insert" +defs["ImVector_ImVec2_insert"][1]["ov_cimguiname"] = "ImVector_ImVec2_insert" +defs["ImVector_ImVec2_insert"][1]["ret"] = "ImVec2*" +defs["ImVector_ImVec2_insert"][1]["signature"] = "(const ImVec2*,const ImVec2)" +defs["ImVector_ImVec2_insert"][1]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_insert"][1]["templatedgen"] = true +defs["ImVector_ImVec2_insert"]["(const ImVec2*,const ImVec2)"] = defs["ImVector_ImVec2_insert"][1] +defs["ImVector_ImVec2_pop_back"] = {} +defs["ImVector_ImVec2_pop_back"][1] = {} +defs["ImVector_ImVec2_pop_back"][1]["args"] = "(ImVector_ImVec2* self)" +defs["ImVector_ImVec2_pop_back"][1]["argsT"] = {} +defs["ImVector_ImVec2_pop_back"][1]["argsT"][1] = {} +defs["ImVector_ImVec2_pop_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec2_pop_back"][1]["argsT"][1]["type"] = "ImVector_ImVec2*" +defs["ImVector_ImVec2_pop_back"][1]["call_args"] = "()" +defs["ImVector_ImVec2_pop_back"][1]["cimguiname"] = "ImVector_ImVec2_pop_back" +defs["ImVector_ImVec2_pop_back"][1]["defaults"] = {} +defs["ImVector_ImVec2_pop_back"][1]["funcname"] = "pop_back" +defs["ImVector_ImVec2_pop_back"][1]["ov_cimguiname"] = "ImVector_ImVec2_pop_back" +defs["ImVector_ImVec2_pop_back"][1]["ret"] = "void" +defs["ImVector_ImVec2_pop_back"][1]["signature"] = "()" +defs["ImVector_ImVec2_pop_back"][1]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_pop_back"][1]["templatedgen"] = true +defs["ImVector_ImVec2_pop_back"]["()"] = defs["ImVector_ImVec2_pop_back"][1] +defs["ImVector_ImVec2_push_back"] = {} +defs["ImVector_ImVec2_push_back"][1] = {} +defs["ImVector_ImVec2_push_back"][1]["args"] = "(ImVector_ImVec2* self,const ImVec2 v)" +defs["ImVector_ImVec2_push_back"][1]["argsT"] = {} +defs["ImVector_ImVec2_push_back"][1]["argsT"][1] = {} +defs["ImVector_ImVec2_push_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec2_push_back"][1]["argsT"][1]["type"] = "ImVector_ImVec2*" +defs["ImVector_ImVec2_push_back"][1]["argsT"][2] = {} +defs["ImVector_ImVec2_push_back"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImVec2_push_back"][1]["argsT"][2]["type"] = "const ImVec2" +defs["ImVector_ImVec2_push_back"][1]["call_args"] = "(v)" +defs["ImVector_ImVec2_push_back"][1]["cimguiname"] = "ImVector_ImVec2_push_back" +defs["ImVector_ImVec2_push_back"][1]["defaults"] = {} +defs["ImVector_ImVec2_push_back"][1]["funcname"] = "push_back" +defs["ImVector_ImVec2_push_back"][1]["ov_cimguiname"] = "ImVector_ImVec2_push_back" +defs["ImVector_ImVec2_push_back"][1]["ret"] = "void" +defs["ImVector_ImVec2_push_back"][1]["signature"] = "(const ImVec2)" +defs["ImVector_ImVec2_push_back"][1]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_push_back"][1]["templatedgen"] = true +defs["ImVector_ImVec2_push_back"]["(const ImVec2)"] = defs["ImVector_ImVec2_push_back"][1] +defs["ImVector_ImVec2_push_front"] = {} +defs["ImVector_ImVec2_push_front"][1] = {} +defs["ImVector_ImVec2_push_front"][1]["args"] = "(ImVector_ImVec2* self,const ImVec2 v)" +defs["ImVector_ImVec2_push_front"][1]["argsT"] = {} +defs["ImVector_ImVec2_push_front"][1]["argsT"][1] = {} +defs["ImVector_ImVec2_push_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec2_push_front"][1]["argsT"][1]["type"] = "ImVector_ImVec2*" +defs["ImVector_ImVec2_push_front"][1]["argsT"][2] = {} +defs["ImVector_ImVec2_push_front"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImVec2_push_front"][1]["argsT"][2]["type"] = "const ImVec2" +defs["ImVector_ImVec2_push_front"][1]["call_args"] = "(v)" +defs["ImVector_ImVec2_push_front"][1]["cimguiname"] = "ImVector_ImVec2_push_front" +defs["ImVector_ImVec2_push_front"][1]["defaults"] = {} +defs["ImVector_ImVec2_push_front"][1]["funcname"] = "push_front" +defs["ImVector_ImVec2_push_front"][1]["ov_cimguiname"] = "ImVector_ImVec2_push_front" +defs["ImVector_ImVec2_push_front"][1]["ret"] = "void" +defs["ImVector_ImVec2_push_front"][1]["signature"] = "(const ImVec2)" +defs["ImVector_ImVec2_push_front"][1]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_push_front"][1]["templatedgen"] = true +defs["ImVector_ImVec2_push_front"]["(const ImVec2)"] = defs["ImVector_ImVec2_push_front"][1] +defs["ImVector_ImVec2_reserve"] = {} +defs["ImVector_ImVec2_reserve"][1] = {} +defs["ImVector_ImVec2_reserve"][1]["args"] = "(ImVector_ImVec2* self,int new_capacity)" +defs["ImVector_ImVec2_reserve"][1]["argsT"] = {} +defs["ImVector_ImVec2_reserve"][1]["argsT"][1] = {} +defs["ImVector_ImVec2_reserve"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec2_reserve"][1]["argsT"][1]["type"] = "ImVector_ImVec2*" +defs["ImVector_ImVec2_reserve"][1]["argsT"][2] = {} +defs["ImVector_ImVec2_reserve"][1]["argsT"][2]["name"] = "new_capacity" +defs["ImVector_ImVec2_reserve"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImVec2_reserve"][1]["call_args"] = "(new_capacity)" +defs["ImVector_ImVec2_reserve"][1]["cimguiname"] = "ImVector_ImVec2_reserve" +defs["ImVector_ImVec2_reserve"][1]["defaults"] = {} +defs["ImVector_ImVec2_reserve"][1]["funcname"] = "reserve" +defs["ImVector_ImVec2_reserve"][1]["ov_cimguiname"] = "ImVector_ImVec2_reserve" +defs["ImVector_ImVec2_reserve"][1]["ret"] = "void" +defs["ImVector_ImVec2_reserve"][1]["signature"] = "(int)" +defs["ImVector_ImVec2_reserve"][1]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_reserve"][1]["templatedgen"] = true +defs["ImVector_ImVec2_reserve"]["(int)"] = defs["ImVector_ImVec2_reserve"][1] +defs["ImVector_ImVec2_resize"] = {} +defs["ImVector_ImVec2_resize"][1] = {} +defs["ImVector_ImVec2_resize"][1]["args"] = "(ImVector_ImVec2* self,int new_size)" +defs["ImVector_ImVec2_resize"][1]["argsT"] = {} +defs["ImVector_ImVec2_resize"][1]["argsT"][1] = {} +defs["ImVector_ImVec2_resize"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec2_resize"][1]["argsT"][1]["type"] = "ImVector_ImVec2*" +defs["ImVector_ImVec2_resize"][1]["argsT"][2] = {} +defs["ImVector_ImVec2_resize"][1]["argsT"][2]["name"] = "new_size" +defs["ImVector_ImVec2_resize"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImVec2_resize"][1]["call_args"] = "(new_size)" +defs["ImVector_ImVec2_resize"][1]["cimguiname"] = "ImVector_ImVec2_resize" +defs["ImVector_ImVec2_resize"][1]["defaults"] = {} +defs["ImVector_ImVec2_resize"][1]["funcname"] = "resize" +defs["ImVector_ImVec2_resize"][1]["ov_cimguiname"] = "ImVector_ImVec2_resize" +defs["ImVector_ImVec2_resize"][1]["ret"] = "void" +defs["ImVector_ImVec2_resize"][1]["signature"] = "(int)" +defs["ImVector_ImVec2_resize"][1]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_resize"][1]["templatedgen"] = true +defs["ImVector_ImVec2_resize"][2] = {} +defs["ImVector_ImVec2_resize"][2]["args"] = "(ImVector_ImVec2* self,int new_size,const ImVec2 v)" +defs["ImVector_ImVec2_resize"][2]["argsT"] = {} +defs["ImVector_ImVec2_resize"][2]["argsT"][1] = {} +defs["ImVector_ImVec2_resize"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec2_resize"][2]["argsT"][1]["type"] = "ImVector_ImVec2*" +defs["ImVector_ImVec2_resize"][2]["argsT"][2] = {} +defs["ImVector_ImVec2_resize"][2]["argsT"][2]["name"] = "new_size" +defs["ImVector_ImVec2_resize"][2]["argsT"][2]["type"] = "int" +defs["ImVector_ImVec2_resize"][2]["argsT"][3] = {} +defs["ImVector_ImVec2_resize"][2]["argsT"][3]["name"] = "v" +defs["ImVector_ImVec2_resize"][2]["argsT"][3]["type"] = "const ImVec2" +defs["ImVector_ImVec2_resize"][2]["call_args"] = "(new_size,v)" +defs["ImVector_ImVec2_resize"][2]["cimguiname"] = "ImVector_ImVec2_resize" +defs["ImVector_ImVec2_resize"][2]["defaults"] = {} +defs["ImVector_ImVec2_resize"][2]["funcname"] = "resize" +defs["ImVector_ImVec2_resize"][2]["ov_cimguiname"] = "ImVector_ImVec2_resizeT" +defs["ImVector_ImVec2_resize"][2]["ret"] = "void" +defs["ImVector_ImVec2_resize"][2]["signature"] = "(int,const ImVec2)" +defs["ImVector_ImVec2_resize"][2]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_resize"][2]["templatedgen"] = true +defs["ImVector_ImVec2_resize"]["(int)"] = defs["ImVector_ImVec2_resize"][1] +defs["ImVector_ImVec2_resize"]["(int,const ImVec2)"] = defs["ImVector_ImVec2_resize"][2] +defs["ImVector_ImVec2_size"] = {} +defs["ImVector_ImVec2_size"][1] = {} +defs["ImVector_ImVec2_size"][1]["args"] = "(const ImVector_ImVec2* self)" +defs["ImVector_ImVec2_size"][1]["argsT"] = {} +defs["ImVector_ImVec2_size"][1]["argsT"][1] = {} +defs["ImVector_ImVec2_size"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec2_size"][1]["argsT"][1]["type"] = "const ImVector_ImVec2*" +defs["ImVector_ImVec2_size"][1]["call_args"] = "()" +defs["ImVector_ImVec2_size"][1]["cimguiname"] = "ImVector_ImVec2_size" +defs["ImVector_ImVec2_size"][1]["defaults"] = {} +defs["ImVector_ImVec2_size"][1]["funcname"] = "size" +defs["ImVector_ImVec2_size"][1]["ov_cimguiname"] = "ImVector_ImVec2_size" +defs["ImVector_ImVec2_size"][1]["ret"] = "int" +defs["ImVector_ImVec2_size"][1]["signature"] = "()const" +defs["ImVector_ImVec2_size"][1]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_size"][1]["templatedgen"] = true +defs["ImVector_ImVec2_size"]["()const"] = defs["ImVector_ImVec2_size"][1] +defs["ImVector_ImVec2_size_in_bytes"] = {} +defs["ImVector_ImVec2_size_in_bytes"][1] = {} +defs["ImVector_ImVec2_size_in_bytes"][1]["args"] = "(const ImVector_ImVec2* self)" +defs["ImVector_ImVec2_size_in_bytes"][1]["argsT"] = {} +defs["ImVector_ImVec2_size_in_bytes"][1]["argsT"][1] = {} +defs["ImVector_ImVec2_size_in_bytes"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec2_size_in_bytes"][1]["argsT"][1]["type"] = "const ImVector_ImVec2*" +defs["ImVector_ImVec2_size_in_bytes"][1]["call_args"] = "()" +defs["ImVector_ImVec2_size_in_bytes"][1]["cimguiname"] = "ImVector_ImVec2_size_in_bytes" +defs["ImVector_ImVec2_size_in_bytes"][1]["defaults"] = {} +defs["ImVector_ImVec2_size_in_bytes"][1]["funcname"] = "size_in_bytes" +defs["ImVector_ImVec2_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_ImVec2_size_in_bytes" +defs["ImVector_ImVec2_size_in_bytes"][1]["ret"] = "int" +defs["ImVector_ImVec2_size_in_bytes"][1]["signature"] = "()const" +defs["ImVector_ImVec2_size_in_bytes"][1]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_size_in_bytes"][1]["templatedgen"] = true +defs["ImVector_ImVec2_size_in_bytes"]["()const"] = defs["ImVector_ImVec2_size_in_bytes"][1] +defs["ImVector_ImVec2_swap"] = {} +defs["ImVector_ImVec2_swap"][1] = {} +defs["ImVector_ImVec2_swap"][1]["args"] = "(ImVector_ImVec2* self,ImVector_ImVec2 rhs)" +defs["ImVector_ImVec2_swap"][1]["argsT"] = {} +defs["ImVector_ImVec2_swap"][1]["argsT"][1] = {} +defs["ImVector_ImVec2_swap"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec2_swap"][1]["argsT"][1]["type"] = "ImVector_ImVec2*" +defs["ImVector_ImVec2_swap"][1]["argsT"][2] = {} +defs["ImVector_ImVec2_swap"][1]["argsT"][2]["name"] = "rhs" +defs["ImVector_ImVec2_swap"][1]["argsT"][2]["type"] = "ImVector_ImVec2&" +defs["ImVector_ImVec2_swap"][1]["call_args"] = "(rhs)" +defs["ImVector_ImVec2_swap"][1]["cimguiname"] = "ImVector_ImVec2_swap" +defs["ImVector_ImVec2_swap"][1]["defaults"] = {} +defs["ImVector_ImVec2_swap"][1]["funcname"] = "swap" +defs["ImVector_ImVec2_swap"][1]["ov_cimguiname"] = "ImVector_ImVec2_swap" +defs["ImVector_ImVec2_swap"][1]["ret"] = "void" +defs["ImVector_ImVec2_swap"][1]["signature"] = "(ImVector)" +defs["ImVector_ImVec2_swap"][1]["stname"] = "ImVector_ImVec2" +defs["ImVector_ImVec2_swap"][1]["templatedgen"] = true +defs["ImVector_ImVec2_swap"]["(ImVector)"] = defs["ImVector_ImVec2_swap"][1] +defs["ImVector_ImVec4_ImVector_ImVec4"] = {} +defs["ImVector_ImVec4_ImVector_ImVec4"][1] = {} +defs["ImVector_ImVec4_ImVector_ImVec4"][1]["args"] = "()" +defs["ImVector_ImVec4_ImVector_ImVec4"][1]["argsT"] = {} +defs["ImVector_ImVec4_ImVector_ImVec4"][1]["call_args"] = "()" +defs["ImVector_ImVec4_ImVector_ImVec4"][1]["cimguiname"] = "ImVector_ImVec4_ImVector_ImVec4" +defs["ImVector_ImVec4_ImVector_ImVec4"][1]["constructor"] = true +defs["ImVector_ImVec4_ImVector_ImVec4"][1]["defaults"] = {} +defs["ImVector_ImVec4_ImVector_ImVec4"][1]["funcname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_ImVector_ImVec4"][1]["ov_cimguiname"] = "ImVector_ImVec4_ImVector_ImVec4" +defs["ImVector_ImVec4_ImVector_ImVec4"][1]["signature"] = "()" +defs["ImVector_ImVec4_ImVector_ImVec4"][1]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_ImVector_ImVec4"][1]["templatedgen"] = true +defs["ImVector_ImVec4_ImVector_ImVec4"][2] = {} +defs["ImVector_ImVec4_ImVector_ImVec4"][2]["args"] = "(const ImVector_ImVec4 src)" +defs["ImVector_ImVec4_ImVector_ImVec4"][2]["argsT"] = {} +defs["ImVector_ImVec4_ImVector_ImVec4"][2]["argsT"][1] = {} +defs["ImVector_ImVec4_ImVector_ImVec4"][2]["argsT"][1]["name"] = "src" +defs["ImVector_ImVec4_ImVector_ImVec4"][2]["argsT"][1]["type"] = "const ImVector_ImVec4" +defs["ImVector_ImVec4_ImVector_ImVec4"][2]["call_args"] = "(src)" +defs["ImVector_ImVec4_ImVector_ImVec4"][2]["cimguiname"] = "ImVector_ImVec4_ImVector_ImVec4" +defs["ImVector_ImVec4_ImVector_ImVec4"][2]["constructor"] = true +defs["ImVector_ImVec4_ImVector_ImVec4"][2]["defaults"] = {} +defs["ImVector_ImVec4_ImVector_ImVec4"][2]["funcname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_ImVector_ImVec4"][2]["ov_cimguiname"] = "ImVector_ImVec4_ImVector_ImVec4Vector" +defs["ImVector_ImVec4_ImVector_ImVec4"][2]["signature"] = "(const ImVector)" +defs["ImVector_ImVec4_ImVector_ImVec4"][2]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_ImVector_ImVec4"][2]["templatedgen"] = true +defs["ImVector_ImVec4_ImVector_ImVec4"]["()"] = defs["ImVector_ImVec4_ImVector_ImVec4"][1] +defs["ImVector_ImVec4_ImVector_ImVec4"]["(const ImVector)"] = defs["ImVector_ImVec4_ImVector_ImVec4"][2] +defs["ImVector_ImVec4__grow_capacity"] = {} +defs["ImVector_ImVec4__grow_capacity"][1] = {} +defs["ImVector_ImVec4__grow_capacity"][1]["args"] = "(const ImVector_ImVec4* self,int sz)" +defs["ImVector_ImVec4__grow_capacity"][1]["argsT"] = {} +defs["ImVector_ImVec4__grow_capacity"][1]["argsT"][1] = {} +defs["ImVector_ImVec4__grow_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec4__grow_capacity"][1]["argsT"][1]["type"] = "const ImVector_ImVec4*" +defs["ImVector_ImVec4__grow_capacity"][1]["argsT"][2] = {} +defs["ImVector_ImVec4__grow_capacity"][1]["argsT"][2]["name"] = "sz" +defs["ImVector_ImVec4__grow_capacity"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImVec4__grow_capacity"][1]["call_args"] = "(sz)" +defs["ImVector_ImVec4__grow_capacity"][1]["cimguiname"] = "ImVector_ImVec4__grow_capacity" +defs["ImVector_ImVec4__grow_capacity"][1]["defaults"] = {} +defs["ImVector_ImVec4__grow_capacity"][1]["funcname"] = "_grow_capacity" +defs["ImVector_ImVec4__grow_capacity"][1]["ov_cimguiname"] = "ImVector_ImVec4__grow_capacity" +defs["ImVector_ImVec4__grow_capacity"][1]["ret"] = "int" +defs["ImVector_ImVec4__grow_capacity"][1]["signature"] = "(int)const" +defs["ImVector_ImVec4__grow_capacity"][1]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4__grow_capacity"][1]["templatedgen"] = true +defs["ImVector_ImVec4__grow_capacity"]["(int)const"] = defs["ImVector_ImVec4__grow_capacity"][1] +defs["ImVector_ImVec4_back"] = {} +defs["ImVector_ImVec4_back"][1] = {} +defs["ImVector_ImVec4_back"][1]["args"] = "(ImVector_ImVec4* self)" +defs["ImVector_ImVec4_back"][1]["argsT"] = {} +defs["ImVector_ImVec4_back"][1]["argsT"][1] = {} +defs["ImVector_ImVec4_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec4_back"][1]["argsT"][1]["type"] = "ImVector_ImVec4*" +defs["ImVector_ImVec4_back"][1]["call_args"] = "()" +defs["ImVector_ImVec4_back"][1]["cimguiname"] = "ImVector_ImVec4_back" +defs["ImVector_ImVec4_back"][1]["defaults"] = {} +defs["ImVector_ImVec4_back"][1]["funcname"] = "back" +defs["ImVector_ImVec4_back"][1]["ov_cimguiname"] = "ImVector_ImVec4_back" +defs["ImVector_ImVec4_back"][1]["ret"] = "ImVec4*" +defs["ImVector_ImVec4_back"][1]["retref"] = "&" +defs["ImVector_ImVec4_back"][1]["signature"] = "()" +defs["ImVector_ImVec4_back"][1]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_back"][1]["templatedgen"] = true +defs["ImVector_ImVec4_back"][2] = {} +defs["ImVector_ImVec4_back"][2]["args"] = "(const ImVector_ImVec4* self)" +defs["ImVector_ImVec4_back"][2]["argsT"] = {} +defs["ImVector_ImVec4_back"][2]["argsT"][1] = {} +defs["ImVector_ImVec4_back"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec4_back"][2]["argsT"][1]["type"] = "const ImVector_ImVec4*" +defs["ImVector_ImVec4_back"][2]["call_args"] = "()" +defs["ImVector_ImVec4_back"][2]["cimguiname"] = "ImVector_ImVec4_back" +defs["ImVector_ImVec4_back"][2]["defaults"] = {} +defs["ImVector_ImVec4_back"][2]["funcname"] = "back" +defs["ImVector_ImVec4_back"][2]["ov_cimguiname"] = "ImVector_ImVec4_back_const" +defs["ImVector_ImVec4_back"][2]["ret"] = "ImVec4 const *" +defs["ImVector_ImVec4_back"][2]["retref"] = "&" +defs["ImVector_ImVec4_back"][2]["signature"] = "()const" +defs["ImVector_ImVec4_back"][2]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_back"][2]["templatedgen"] = true +defs["ImVector_ImVec4_back"]["()"] = defs["ImVector_ImVec4_back"][1] +defs["ImVector_ImVec4_back"]["()const"] = defs["ImVector_ImVec4_back"][2] +defs["ImVector_ImVec4_begin"] = {} +defs["ImVector_ImVec4_begin"][1] = {} +defs["ImVector_ImVec4_begin"][1]["args"] = "(ImVector_ImVec4* self)" +defs["ImVector_ImVec4_begin"][1]["argsT"] = {} +defs["ImVector_ImVec4_begin"][1]["argsT"][1] = {} +defs["ImVector_ImVec4_begin"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec4_begin"][1]["argsT"][1]["type"] = "ImVector_ImVec4*" +defs["ImVector_ImVec4_begin"][1]["call_args"] = "()" +defs["ImVector_ImVec4_begin"][1]["cimguiname"] = "ImVector_ImVec4_begin" +defs["ImVector_ImVec4_begin"][1]["defaults"] = {} +defs["ImVector_ImVec4_begin"][1]["funcname"] = "begin" +defs["ImVector_ImVec4_begin"][1]["ov_cimguiname"] = "ImVector_ImVec4_begin" +defs["ImVector_ImVec4_begin"][1]["ret"] = "ImVec4*" +defs["ImVector_ImVec4_begin"][1]["signature"] = "()" +defs["ImVector_ImVec4_begin"][1]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_begin"][1]["templatedgen"] = true +defs["ImVector_ImVec4_begin"][2] = {} +defs["ImVector_ImVec4_begin"][2]["args"] = "(const ImVector_ImVec4* self)" +defs["ImVector_ImVec4_begin"][2]["argsT"] = {} +defs["ImVector_ImVec4_begin"][2]["argsT"][1] = {} +defs["ImVector_ImVec4_begin"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec4_begin"][2]["argsT"][1]["type"] = "const ImVector_ImVec4*" +defs["ImVector_ImVec4_begin"][2]["call_args"] = "()" +defs["ImVector_ImVec4_begin"][2]["cimguiname"] = "ImVector_ImVec4_begin" +defs["ImVector_ImVec4_begin"][2]["defaults"] = {} +defs["ImVector_ImVec4_begin"][2]["funcname"] = "begin" +defs["ImVector_ImVec4_begin"][2]["ov_cimguiname"] = "ImVector_ImVec4_begin_const" +defs["ImVector_ImVec4_begin"][2]["ret"] = "ImVec4 const *" +defs["ImVector_ImVec4_begin"][2]["signature"] = "()const" +defs["ImVector_ImVec4_begin"][2]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_begin"][2]["templatedgen"] = true +defs["ImVector_ImVec4_begin"]["()"] = defs["ImVector_ImVec4_begin"][1] +defs["ImVector_ImVec4_begin"]["()const"] = defs["ImVector_ImVec4_begin"][2] +defs["ImVector_ImVec4_capacity"] = {} +defs["ImVector_ImVec4_capacity"][1] = {} +defs["ImVector_ImVec4_capacity"][1]["args"] = "(const ImVector_ImVec4* self)" +defs["ImVector_ImVec4_capacity"][1]["argsT"] = {} +defs["ImVector_ImVec4_capacity"][1]["argsT"][1] = {} +defs["ImVector_ImVec4_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec4_capacity"][1]["argsT"][1]["type"] = "const ImVector_ImVec4*" +defs["ImVector_ImVec4_capacity"][1]["call_args"] = "()" +defs["ImVector_ImVec4_capacity"][1]["cimguiname"] = "ImVector_ImVec4_capacity" +defs["ImVector_ImVec4_capacity"][1]["defaults"] = {} +defs["ImVector_ImVec4_capacity"][1]["funcname"] = "capacity" +defs["ImVector_ImVec4_capacity"][1]["ov_cimguiname"] = "ImVector_ImVec4_capacity" +defs["ImVector_ImVec4_capacity"][1]["ret"] = "int" +defs["ImVector_ImVec4_capacity"][1]["signature"] = "()const" +defs["ImVector_ImVec4_capacity"][1]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_capacity"][1]["templatedgen"] = true +defs["ImVector_ImVec4_capacity"]["()const"] = defs["ImVector_ImVec4_capacity"][1] +defs["ImVector_ImVec4_clear"] = {} +defs["ImVector_ImVec4_clear"][1] = {} +defs["ImVector_ImVec4_clear"][1]["args"] = "(ImVector_ImVec4* self)" +defs["ImVector_ImVec4_clear"][1]["argsT"] = {} +defs["ImVector_ImVec4_clear"][1]["argsT"][1] = {} +defs["ImVector_ImVec4_clear"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec4_clear"][1]["argsT"][1]["type"] = "ImVector_ImVec4*" +defs["ImVector_ImVec4_clear"][1]["call_args"] = "()" +defs["ImVector_ImVec4_clear"][1]["cimguiname"] = "ImVector_ImVec4_clear" +defs["ImVector_ImVec4_clear"][1]["defaults"] = {} +defs["ImVector_ImVec4_clear"][1]["funcname"] = "clear" +defs["ImVector_ImVec4_clear"][1]["ov_cimguiname"] = "ImVector_ImVec4_clear" +defs["ImVector_ImVec4_clear"][1]["ret"] = "void" +defs["ImVector_ImVec4_clear"][1]["signature"] = "()" +defs["ImVector_ImVec4_clear"][1]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_clear"][1]["templatedgen"] = true +defs["ImVector_ImVec4_clear"]["()"] = defs["ImVector_ImVec4_clear"][1] +defs["ImVector_ImVec4_contains"] = {} +defs["ImVector_ImVec4_contains"][1] = {} +defs["ImVector_ImVec4_contains"][1]["args"] = "(const ImVector_ImVec4* self,const ImVec4 v)" +defs["ImVector_ImVec4_contains"][1]["argsT"] = {} +defs["ImVector_ImVec4_contains"][1]["argsT"][1] = {} +defs["ImVector_ImVec4_contains"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec4_contains"][1]["argsT"][1]["type"] = "const ImVector_ImVec4*" +defs["ImVector_ImVec4_contains"][1]["argsT"][2] = {} +defs["ImVector_ImVec4_contains"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImVec4_contains"][1]["argsT"][2]["type"] = "const ImVec4" +defs["ImVector_ImVec4_contains"][1]["call_args"] = "(v)" +defs["ImVector_ImVec4_contains"][1]["cimguiname"] = "ImVector_ImVec4_contains" +defs["ImVector_ImVec4_contains"][1]["defaults"] = {} +defs["ImVector_ImVec4_contains"][1]["funcname"] = "contains" +defs["ImVector_ImVec4_contains"][1]["ov_cimguiname"] = "ImVector_ImVec4_contains" +defs["ImVector_ImVec4_contains"][1]["ret"] = "bool" +defs["ImVector_ImVec4_contains"][1]["signature"] = "(const ImVec4)const" +defs["ImVector_ImVec4_contains"][1]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_contains"][1]["templatedgen"] = true +defs["ImVector_ImVec4_contains"]["(const ImVec4)const"] = defs["ImVector_ImVec4_contains"][1] +defs["ImVector_ImVec4_destroy"] = {} +defs["ImVector_ImVec4_destroy"][1] = {} +defs["ImVector_ImVec4_destroy"][1]["args"] = "(ImVector_ImVec4* self)" +defs["ImVector_ImVec4_destroy"][1]["argsT"] = {} +defs["ImVector_ImVec4_destroy"][1]["argsT"][1] = {} +defs["ImVector_ImVec4_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec4_destroy"][1]["argsT"][1]["type"] = "ImVector_ImVec4*" +defs["ImVector_ImVec4_destroy"][1]["call_args"] = "(self)" +defs["ImVector_ImVec4_destroy"][1]["cimguiname"] = "ImVector_ImVec4_destroy" +defs["ImVector_ImVec4_destroy"][1]["defaults"] = {} +defs["ImVector_ImVec4_destroy"][1]["destructor"] = true +defs["ImVector_ImVec4_destroy"][1]["ov_cimguiname"] = "ImVector_ImVec4_destroy" +defs["ImVector_ImVec4_destroy"][1]["ret"] = "void" +defs["ImVector_ImVec4_destroy"][1]["signature"] = "(ImVector_ImVec4*)" +defs["ImVector_ImVec4_destroy"][1]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_destroy"]["(ImVector_ImVec4*)"] = defs["ImVector_ImVec4_destroy"][1] +defs["ImVector_ImVec4_empty"] = {} +defs["ImVector_ImVec4_empty"][1] = {} +defs["ImVector_ImVec4_empty"][1]["args"] = "(const ImVector_ImVec4* self)" +defs["ImVector_ImVec4_empty"][1]["argsT"] = {} +defs["ImVector_ImVec4_empty"][1]["argsT"][1] = {} +defs["ImVector_ImVec4_empty"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec4_empty"][1]["argsT"][1]["type"] = "const ImVector_ImVec4*" +defs["ImVector_ImVec4_empty"][1]["call_args"] = "()" +defs["ImVector_ImVec4_empty"][1]["cimguiname"] = "ImVector_ImVec4_empty" +defs["ImVector_ImVec4_empty"][1]["defaults"] = {} +defs["ImVector_ImVec4_empty"][1]["funcname"] = "empty" +defs["ImVector_ImVec4_empty"][1]["ov_cimguiname"] = "ImVector_ImVec4_empty" +defs["ImVector_ImVec4_empty"][1]["ret"] = "bool" +defs["ImVector_ImVec4_empty"][1]["signature"] = "()const" +defs["ImVector_ImVec4_empty"][1]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_empty"][1]["templatedgen"] = true +defs["ImVector_ImVec4_empty"]["()const"] = defs["ImVector_ImVec4_empty"][1] +defs["ImVector_ImVec4_end"] = {} +defs["ImVector_ImVec4_end"][1] = {} +defs["ImVector_ImVec4_end"][1]["args"] = "(ImVector_ImVec4* self)" +defs["ImVector_ImVec4_end"][1]["argsT"] = {} +defs["ImVector_ImVec4_end"][1]["argsT"][1] = {} +defs["ImVector_ImVec4_end"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec4_end"][1]["argsT"][1]["type"] = "ImVector_ImVec4*" +defs["ImVector_ImVec4_end"][1]["call_args"] = "()" +defs["ImVector_ImVec4_end"][1]["cimguiname"] = "ImVector_ImVec4_end" +defs["ImVector_ImVec4_end"][1]["defaults"] = {} +defs["ImVector_ImVec4_end"][1]["funcname"] = "end" +defs["ImVector_ImVec4_end"][1]["ov_cimguiname"] = "ImVector_ImVec4_end" +defs["ImVector_ImVec4_end"][1]["ret"] = "ImVec4*" +defs["ImVector_ImVec4_end"][1]["signature"] = "()" +defs["ImVector_ImVec4_end"][1]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_end"][1]["templatedgen"] = true +defs["ImVector_ImVec4_end"][2] = {} +defs["ImVector_ImVec4_end"][2]["args"] = "(const ImVector_ImVec4* self)" +defs["ImVector_ImVec4_end"][2]["argsT"] = {} +defs["ImVector_ImVec4_end"][2]["argsT"][1] = {} +defs["ImVector_ImVec4_end"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec4_end"][2]["argsT"][1]["type"] = "const ImVector_ImVec4*" +defs["ImVector_ImVec4_end"][2]["call_args"] = "()" +defs["ImVector_ImVec4_end"][2]["cimguiname"] = "ImVector_ImVec4_end" +defs["ImVector_ImVec4_end"][2]["defaults"] = {} +defs["ImVector_ImVec4_end"][2]["funcname"] = "end" +defs["ImVector_ImVec4_end"][2]["ov_cimguiname"] = "ImVector_ImVec4_end_const" +defs["ImVector_ImVec4_end"][2]["ret"] = "ImVec4 const *" +defs["ImVector_ImVec4_end"][2]["signature"] = "()const" +defs["ImVector_ImVec4_end"][2]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_end"][2]["templatedgen"] = true +defs["ImVector_ImVec4_end"]["()"] = defs["ImVector_ImVec4_end"][1] +defs["ImVector_ImVec4_end"]["()const"] = defs["ImVector_ImVec4_end"][2] +defs["ImVector_ImVec4_erase"] = {} +defs["ImVector_ImVec4_erase"][1] = {} +defs["ImVector_ImVec4_erase"][1]["args"] = "(ImVector_ImVec4* self,ImVec4 const * it)" +defs["ImVector_ImVec4_erase"][1]["argsT"] = {} +defs["ImVector_ImVec4_erase"][1]["argsT"][1] = {} +defs["ImVector_ImVec4_erase"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec4_erase"][1]["argsT"][1]["type"] = "ImVector_ImVec4*" +defs["ImVector_ImVec4_erase"][1]["argsT"][2] = {} +defs["ImVector_ImVec4_erase"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImVec4_erase"][1]["argsT"][2]["type"] = "ImVec4 const *" +defs["ImVector_ImVec4_erase"][1]["call_args"] = "(it)" +defs["ImVector_ImVec4_erase"][1]["cimguiname"] = "ImVector_ImVec4_erase" +defs["ImVector_ImVec4_erase"][1]["defaults"] = {} +defs["ImVector_ImVec4_erase"][1]["funcname"] = "erase" +defs["ImVector_ImVec4_erase"][1]["ov_cimguiname"] = "ImVector_ImVec4_erase" +defs["ImVector_ImVec4_erase"][1]["ret"] = "ImVec4*" +defs["ImVector_ImVec4_erase"][1]["signature"] = "(const ImVec4*)" +defs["ImVector_ImVec4_erase"][1]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_erase"][1]["templatedgen"] = true +defs["ImVector_ImVec4_erase"][2] = {} +defs["ImVector_ImVec4_erase"][2]["args"] = "(ImVector_ImVec4* self,ImVec4 const * it,ImVec4 const * it_last)" +defs["ImVector_ImVec4_erase"][2]["argsT"] = {} +defs["ImVector_ImVec4_erase"][2]["argsT"][1] = {} +defs["ImVector_ImVec4_erase"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec4_erase"][2]["argsT"][1]["type"] = "ImVector_ImVec4*" +defs["ImVector_ImVec4_erase"][2]["argsT"][2] = {} +defs["ImVector_ImVec4_erase"][2]["argsT"][2]["name"] = "it" +defs["ImVector_ImVec4_erase"][2]["argsT"][2]["type"] = "ImVec4 const *" +defs["ImVector_ImVec4_erase"][2]["argsT"][3] = {} +defs["ImVector_ImVec4_erase"][2]["argsT"][3]["name"] = "it_last" +defs["ImVector_ImVec4_erase"][2]["argsT"][3]["type"] = "ImVec4 const *" +defs["ImVector_ImVec4_erase"][2]["call_args"] = "(it,it_last)" +defs["ImVector_ImVec4_erase"][2]["cimguiname"] = "ImVector_ImVec4_erase" +defs["ImVector_ImVec4_erase"][2]["defaults"] = {} +defs["ImVector_ImVec4_erase"][2]["funcname"] = "erase" +defs["ImVector_ImVec4_erase"][2]["ov_cimguiname"] = "ImVector_ImVec4_eraseTPtr" +defs["ImVector_ImVec4_erase"][2]["ret"] = "ImVec4*" +defs["ImVector_ImVec4_erase"][2]["signature"] = "(const ImVec4*,const ImVec4*)" +defs["ImVector_ImVec4_erase"][2]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_erase"][2]["templatedgen"] = true +defs["ImVector_ImVec4_erase"]["(const ImVec4*)"] = defs["ImVector_ImVec4_erase"][1] +defs["ImVector_ImVec4_erase"]["(const ImVec4*,const ImVec4*)"] = defs["ImVector_ImVec4_erase"][2] +defs["ImVector_ImVec4_erase_unsorted"] = {} +defs["ImVector_ImVec4_erase_unsorted"][1] = {} +defs["ImVector_ImVec4_erase_unsorted"][1]["args"] = "(ImVector_ImVec4* self,ImVec4 const * it)" +defs["ImVector_ImVec4_erase_unsorted"][1]["argsT"] = {} +defs["ImVector_ImVec4_erase_unsorted"][1]["argsT"][1] = {} +defs["ImVector_ImVec4_erase_unsorted"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec4_erase_unsorted"][1]["argsT"][1]["type"] = "ImVector_ImVec4*" +defs["ImVector_ImVec4_erase_unsorted"][1]["argsT"][2] = {} +defs["ImVector_ImVec4_erase_unsorted"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImVec4_erase_unsorted"][1]["argsT"][2]["type"] = "ImVec4 const *" +defs["ImVector_ImVec4_erase_unsorted"][1]["call_args"] = "(it)" +defs["ImVector_ImVec4_erase_unsorted"][1]["cimguiname"] = "ImVector_ImVec4_erase_unsorted" +defs["ImVector_ImVec4_erase_unsorted"][1]["defaults"] = {} +defs["ImVector_ImVec4_erase_unsorted"][1]["funcname"] = "erase_unsorted" +defs["ImVector_ImVec4_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_ImVec4_erase_unsorted" +defs["ImVector_ImVec4_erase_unsorted"][1]["ret"] = "ImVec4*" +defs["ImVector_ImVec4_erase_unsorted"][1]["signature"] = "(const ImVec4*)" +defs["ImVector_ImVec4_erase_unsorted"][1]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_erase_unsorted"][1]["templatedgen"] = true +defs["ImVector_ImVec4_erase_unsorted"]["(const ImVec4*)"] = defs["ImVector_ImVec4_erase_unsorted"][1] +defs["ImVector_ImVec4_front"] = {} +defs["ImVector_ImVec4_front"][1] = {} +defs["ImVector_ImVec4_front"][1]["args"] = "(ImVector_ImVec4* self)" +defs["ImVector_ImVec4_front"][1]["argsT"] = {} +defs["ImVector_ImVec4_front"][1]["argsT"][1] = {} +defs["ImVector_ImVec4_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec4_front"][1]["argsT"][1]["type"] = "ImVector_ImVec4*" +defs["ImVector_ImVec4_front"][1]["call_args"] = "()" +defs["ImVector_ImVec4_front"][1]["cimguiname"] = "ImVector_ImVec4_front" +defs["ImVector_ImVec4_front"][1]["defaults"] = {} +defs["ImVector_ImVec4_front"][1]["funcname"] = "front" +defs["ImVector_ImVec4_front"][1]["ov_cimguiname"] = "ImVector_ImVec4_front" +defs["ImVector_ImVec4_front"][1]["ret"] = "ImVec4*" +defs["ImVector_ImVec4_front"][1]["retref"] = "&" +defs["ImVector_ImVec4_front"][1]["signature"] = "()" +defs["ImVector_ImVec4_front"][1]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_front"][1]["templatedgen"] = true +defs["ImVector_ImVec4_front"][2] = {} +defs["ImVector_ImVec4_front"][2]["args"] = "(const ImVector_ImVec4* self)" +defs["ImVector_ImVec4_front"][2]["argsT"] = {} +defs["ImVector_ImVec4_front"][2]["argsT"][1] = {} +defs["ImVector_ImVec4_front"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec4_front"][2]["argsT"][1]["type"] = "const ImVector_ImVec4*" +defs["ImVector_ImVec4_front"][2]["call_args"] = "()" +defs["ImVector_ImVec4_front"][2]["cimguiname"] = "ImVector_ImVec4_front" +defs["ImVector_ImVec4_front"][2]["defaults"] = {} +defs["ImVector_ImVec4_front"][2]["funcname"] = "front" +defs["ImVector_ImVec4_front"][2]["ov_cimguiname"] = "ImVector_ImVec4_front_const" +defs["ImVector_ImVec4_front"][2]["ret"] = "ImVec4 const *" +defs["ImVector_ImVec4_front"][2]["retref"] = "&" +defs["ImVector_ImVec4_front"][2]["signature"] = "()const" +defs["ImVector_ImVec4_front"][2]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_front"][2]["templatedgen"] = true +defs["ImVector_ImVec4_front"]["()"] = defs["ImVector_ImVec4_front"][1] +defs["ImVector_ImVec4_front"]["()const"] = defs["ImVector_ImVec4_front"][2] +defs["ImVector_ImVec4_index_from_ptr"] = {} +defs["ImVector_ImVec4_index_from_ptr"][1] = {} +defs["ImVector_ImVec4_index_from_ptr"][1]["args"] = "(const ImVector_ImVec4* self,ImVec4 const * it)" +defs["ImVector_ImVec4_index_from_ptr"][1]["argsT"] = {} +defs["ImVector_ImVec4_index_from_ptr"][1]["argsT"][1] = {} +defs["ImVector_ImVec4_index_from_ptr"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec4_index_from_ptr"][1]["argsT"][1]["type"] = "const ImVector_ImVec4*" +defs["ImVector_ImVec4_index_from_ptr"][1]["argsT"][2] = {} +defs["ImVector_ImVec4_index_from_ptr"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImVec4_index_from_ptr"][1]["argsT"][2]["type"] = "ImVec4 const *" +defs["ImVector_ImVec4_index_from_ptr"][1]["call_args"] = "(it)" +defs["ImVector_ImVec4_index_from_ptr"][1]["cimguiname"] = "ImVector_ImVec4_index_from_ptr" +defs["ImVector_ImVec4_index_from_ptr"][1]["defaults"] = {} +defs["ImVector_ImVec4_index_from_ptr"][1]["funcname"] = "index_from_ptr" +defs["ImVector_ImVec4_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_ImVec4_index_from_ptr" +defs["ImVector_ImVec4_index_from_ptr"][1]["ret"] = "int" +defs["ImVector_ImVec4_index_from_ptr"][1]["signature"] = "(const ImVec4*)const" +defs["ImVector_ImVec4_index_from_ptr"][1]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_index_from_ptr"][1]["templatedgen"] = true +defs["ImVector_ImVec4_index_from_ptr"]["(const ImVec4*)const"] = defs["ImVector_ImVec4_index_from_ptr"][1] +defs["ImVector_ImVec4_insert"] = {} +defs["ImVector_ImVec4_insert"][1] = {} +defs["ImVector_ImVec4_insert"][1]["args"] = "(ImVector_ImVec4* self,ImVec4 const * it,const ImVec4 v)" +defs["ImVector_ImVec4_insert"][1]["argsT"] = {} +defs["ImVector_ImVec4_insert"][1]["argsT"][1] = {} +defs["ImVector_ImVec4_insert"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec4_insert"][1]["argsT"][1]["type"] = "ImVector_ImVec4*" +defs["ImVector_ImVec4_insert"][1]["argsT"][2] = {} +defs["ImVector_ImVec4_insert"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImVec4_insert"][1]["argsT"][2]["type"] = "ImVec4 const *" +defs["ImVector_ImVec4_insert"][1]["argsT"][3] = {} +defs["ImVector_ImVec4_insert"][1]["argsT"][3]["name"] = "v" +defs["ImVector_ImVec4_insert"][1]["argsT"][3]["type"] = "const ImVec4" +defs["ImVector_ImVec4_insert"][1]["call_args"] = "(it,v)" +defs["ImVector_ImVec4_insert"][1]["cimguiname"] = "ImVector_ImVec4_insert" +defs["ImVector_ImVec4_insert"][1]["defaults"] = {} +defs["ImVector_ImVec4_insert"][1]["funcname"] = "insert" +defs["ImVector_ImVec4_insert"][1]["ov_cimguiname"] = "ImVector_ImVec4_insert" +defs["ImVector_ImVec4_insert"][1]["ret"] = "ImVec4*" +defs["ImVector_ImVec4_insert"][1]["signature"] = "(const ImVec4*,const ImVec4)" +defs["ImVector_ImVec4_insert"][1]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_insert"][1]["templatedgen"] = true +defs["ImVector_ImVec4_insert"]["(const ImVec4*,const ImVec4)"] = defs["ImVector_ImVec4_insert"][1] +defs["ImVector_ImVec4_pop_back"] = {} +defs["ImVector_ImVec4_pop_back"][1] = {} +defs["ImVector_ImVec4_pop_back"][1]["args"] = "(ImVector_ImVec4* self)" +defs["ImVector_ImVec4_pop_back"][1]["argsT"] = {} +defs["ImVector_ImVec4_pop_back"][1]["argsT"][1] = {} +defs["ImVector_ImVec4_pop_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec4_pop_back"][1]["argsT"][1]["type"] = "ImVector_ImVec4*" +defs["ImVector_ImVec4_pop_back"][1]["call_args"] = "()" +defs["ImVector_ImVec4_pop_back"][1]["cimguiname"] = "ImVector_ImVec4_pop_back" +defs["ImVector_ImVec4_pop_back"][1]["defaults"] = {} +defs["ImVector_ImVec4_pop_back"][1]["funcname"] = "pop_back" +defs["ImVector_ImVec4_pop_back"][1]["ov_cimguiname"] = "ImVector_ImVec4_pop_back" +defs["ImVector_ImVec4_pop_back"][1]["ret"] = "void" +defs["ImVector_ImVec4_pop_back"][1]["signature"] = "()" +defs["ImVector_ImVec4_pop_back"][1]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_pop_back"][1]["templatedgen"] = true +defs["ImVector_ImVec4_pop_back"]["()"] = defs["ImVector_ImVec4_pop_back"][1] +defs["ImVector_ImVec4_push_back"] = {} +defs["ImVector_ImVec4_push_back"][1] = {} +defs["ImVector_ImVec4_push_back"][1]["args"] = "(ImVector_ImVec4* self,const ImVec4 v)" +defs["ImVector_ImVec4_push_back"][1]["argsT"] = {} +defs["ImVector_ImVec4_push_back"][1]["argsT"][1] = {} +defs["ImVector_ImVec4_push_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec4_push_back"][1]["argsT"][1]["type"] = "ImVector_ImVec4*" +defs["ImVector_ImVec4_push_back"][1]["argsT"][2] = {} +defs["ImVector_ImVec4_push_back"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImVec4_push_back"][1]["argsT"][2]["type"] = "const ImVec4" +defs["ImVector_ImVec4_push_back"][1]["call_args"] = "(v)" +defs["ImVector_ImVec4_push_back"][1]["cimguiname"] = "ImVector_ImVec4_push_back" +defs["ImVector_ImVec4_push_back"][1]["defaults"] = {} +defs["ImVector_ImVec4_push_back"][1]["funcname"] = "push_back" +defs["ImVector_ImVec4_push_back"][1]["ov_cimguiname"] = "ImVector_ImVec4_push_back" +defs["ImVector_ImVec4_push_back"][1]["ret"] = "void" +defs["ImVector_ImVec4_push_back"][1]["signature"] = "(const ImVec4)" +defs["ImVector_ImVec4_push_back"][1]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_push_back"][1]["templatedgen"] = true +defs["ImVector_ImVec4_push_back"]["(const ImVec4)"] = defs["ImVector_ImVec4_push_back"][1] +defs["ImVector_ImVec4_push_front"] = {} +defs["ImVector_ImVec4_push_front"][1] = {} +defs["ImVector_ImVec4_push_front"][1]["args"] = "(ImVector_ImVec4* self,const ImVec4 v)" +defs["ImVector_ImVec4_push_front"][1]["argsT"] = {} +defs["ImVector_ImVec4_push_front"][1]["argsT"][1] = {} +defs["ImVector_ImVec4_push_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec4_push_front"][1]["argsT"][1]["type"] = "ImVector_ImVec4*" +defs["ImVector_ImVec4_push_front"][1]["argsT"][2] = {} +defs["ImVector_ImVec4_push_front"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImVec4_push_front"][1]["argsT"][2]["type"] = "const ImVec4" +defs["ImVector_ImVec4_push_front"][1]["call_args"] = "(v)" +defs["ImVector_ImVec4_push_front"][1]["cimguiname"] = "ImVector_ImVec4_push_front" +defs["ImVector_ImVec4_push_front"][1]["defaults"] = {} +defs["ImVector_ImVec4_push_front"][1]["funcname"] = "push_front" +defs["ImVector_ImVec4_push_front"][1]["ov_cimguiname"] = "ImVector_ImVec4_push_front" +defs["ImVector_ImVec4_push_front"][1]["ret"] = "void" +defs["ImVector_ImVec4_push_front"][1]["signature"] = "(const ImVec4)" +defs["ImVector_ImVec4_push_front"][1]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_push_front"][1]["templatedgen"] = true +defs["ImVector_ImVec4_push_front"]["(const ImVec4)"] = defs["ImVector_ImVec4_push_front"][1] +defs["ImVector_ImVec4_reserve"] = {} +defs["ImVector_ImVec4_reserve"][1] = {} +defs["ImVector_ImVec4_reserve"][1]["args"] = "(ImVector_ImVec4* self,int new_capacity)" +defs["ImVector_ImVec4_reserve"][1]["argsT"] = {} +defs["ImVector_ImVec4_reserve"][1]["argsT"][1] = {} +defs["ImVector_ImVec4_reserve"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec4_reserve"][1]["argsT"][1]["type"] = "ImVector_ImVec4*" +defs["ImVector_ImVec4_reserve"][1]["argsT"][2] = {} +defs["ImVector_ImVec4_reserve"][1]["argsT"][2]["name"] = "new_capacity" +defs["ImVector_ImVec4_reserve"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImVec4_reserve"][1]["call_args"] = "(new_capacity)" +defs["ImVector_ImVec4_reserve"][1]["cimguiname"] = "ImVector_ImVec4_reserve" +defs["ImVector_ImVec4_reserve"][1]["defaults"] = {} +defs["ImVector_ImVec4_reserve"][1]["funcname"] = "reserve" +defs["ImVector_ImVec4_reserve"][1]["ov_cimguiname"] = "ImVector_ImVec4_reserve" +defs["ImVector_ImVec4_reserve"][1]["ret"] = "void" +defs["ImVector_ImVec4_reserve"][1]["signature"] = "(int)" +defs["ImVector_ImVec4_reserve"][1]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_reserve"][1]["templatedgen"] = true +defs["ImVector_ImVec4_reserve"]["(int)"] = defs["ImVector_ImVec4_reserve"][1] +defs["ImVector_ImVec4_resize"] = {} +defs["ImVector_ImVec4_resize"][1] = {} +defs["ImVector_ImVec4_resize"][1]["args"] = "(ImVector_ImVec4* self,int new_size)" +defs["ImVector_ImVec4_resize"][1]["argsT"] = {} +defs["ImVector_ImVec4_resize"][1]["argsT"][1] = {} +defs["ImVector_ImVec4_resize"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec4_resize"][1]["argsT"][1]["type"] = "ImVector_ImVec4*" +defs["ImVector_ImVec4_resize"][1]["argsT"][2] = {} +defs["ImVector_ImVec4_resize"][1]["argsT"][2]["name"] = "new_size" +defs["ImVector_ImVec4_resize"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImVec4_resize"][1]["call_args"] = "(new_size)" +defs["ImVector_ImVec4_resize"][1]["cimguiname"] = "ImVector_ImVec4_resize" +defs["ImVector_ImVec4_resize"][1]["defaults"] = {} +defs["ImVector_ImVec4_resize"][1]["funcname"] = "resize" +defs["ImVector_ImVec4_resize"][1]["ov_cimguiname"] = "ImVector_ImVec4_resize" +defs["ImVector_ImVec4_resize"][1]["ret"] = "void" +defs["ImVector_ImVec4_resize"][1]["signature"] = "(int)" +defs["ImVector_ImVec4_resize"][1]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_resize"][1]["templatedgen"] = true +defs["ImVector_ImVec4_resize"][2] = {} +defs["ImVector_ImVec4_resize"][2]["args"] = "(ImVector_ImVec4* self,int new_size,const ImVec4 v)" +defs["ImVector_ImVec4_resize"][2]["argsT"] = {} +defs["ImVector_ImVec4_resize"][2]["argsT"][1] = {} +defs["ImVector_ImVec4_resize"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec4_resize"][2]["argsT"][1]["type"] = "ImVector_ImVec4*" +defs["ImVector_ImVec4_resize"][2]["argsT"][2] = {} +defs["ImVector_ImVec4_resize"][2]["argsT"][2]["name"] = "new_size" +defs["ImVector_ImVec4_resize"][2]["argsT"][2]["type"] = "int" +defs["ImVector_ImVec4_resize"][2]["argsT"][3] = {} +defs["ImVector_ImVec4_resize"][2]["argsT"][3]["name"] = "v" +defs["ImVector_ImVec4_resize"][2]["argsT"][3]["type"] = "const ImVec4" +defs["ImVector_ImVec4_resize"][2]["call_args"] = "(new_size,v)" +defs["ImVector_ImVec4_resize"][2]["cimguiname"] = "ImVector_ImVec4_resize" +defs["ImVector_ImVec4_resize"][2]["defaults"] = {} +defs["ImVector_ImVec4_resize"][2]["funcname"] = "resize" +defs["ImVector_ImVec4_resize"][2]["ov_cimguiname"] = "ImVector_ImVec4_resizeT" +defs["ImVector_ImVec4_resize"][2]["ret"] = "void" +defs["ImVector_ImVec4_resize"][2]["signature"] = "(int,const ImVec4)" +defs["ImVector_ImVec4_resize"][2]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_resize"][2]["templatedgen"] = true +defs["ImVector_ImVec4_resize"]["(int)"] = defs["ImVector_ImVec4_resize"][1] +defs["ImVector_ImVec4_resize"]["(int,const ImVec4)"] = defs["ImVector_ImVec4_resize"][2] +defs["ImVector_ImVec4_size"] = {} +defs["ImVector_ImVec4_size"][1] = {} +defs["ImVector_ImVec4_size"][1]["args"] = "(const ImVector_ImVec4* self)" +defs["ImVector_ImVec4_size"][1]["argsT"] = {} +defs["ImVector_ImVec4_size"][1]["argsT"][1] = {} +defs["ImVector_ImVec4_size"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec4_size"][1]["argsT"][1]["type"] = "const ImVector_ImVec4*" +defs["ImVector_ImVec4_size"][1]["call_args"] = "()" +defs["ImVector_ImVec4_size"][1]["cimguiname"] = "ImVector_ImVec4_size" +defs["ImVector_ImVec4_size"][1]["defaults"] = {} +defs["ImVector_ImVec4_size"][1]["funcname"] = "size" +defs["ImVector_ImVec4_size"][1]["ov_cimguiname"] = "ImVector_ImVec4_size" +defs["ImVector_ImVec4_size"][1]["ret"] = "int" +defs["ImVector_ImVec4_size"][1]["signature"] = "()const" +defs["ImVector_ImVec4_size"][1]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_size"][1]["templatedgen"] = true +defs["ImVector_ImVec4_size"]["()const"] = defs["ImVector_ImVec4_size"][1] +defs["ImVector_ImVec4_size_in_bytes"] = {} +defs["ImVector_ImVec4_size_in_bytes"][1] = {} +defs["ImVector_ImVec4_size_in_bytes"][1]["args"] = "(const ImVector_ImVec4* self)" +defs["ImVector_ImVec4_size_in_bytes"][1]["argsT"] = {} +defs["ImVector_ImVec4_size_in_bytes"][1]["argsT"][1] = {} +defs["ImVector_ImVec4_size_in_bytes"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec4_size_in_bytes"][1]["argsT"][1]["type"] = "const ImVector_ImVec4*" +defs["ImVector_ImVec4_size_in_bytes"][1]["call_args"] = "()" +defs["ImVector_ImVec4_size_in_bytes"][1]["cimguiname"] = "ImVector_ImVec4_size_in_bytes" +defs["ImVector_ImVec4_size_in_bytes"][1]["defaults"] = {} +defs["ImVector_ImVec4_size_in_bytes"][1]["funcname"] = "size_in_bytes" +defs["ImVector_ImVec4_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_ImVec4_size_in_bytes" +defs["ImVector_ImVec4_size_in_bytes"][1]["ret"] = "int" +defs["ImVector_ImVec4_size_in_bytes"][1]["signature"] = "()const" +defs["ImVector_ImVec4_size_in_bytes"][1]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_size_in_bytes"][1]["templatedgen"] = true +defs["ImVector_ImVec4_size_in_bytes"]["()const"] = defs["ImVector_ImVec4_size_in_bytes"][1] +defs["ImVector_ImVec4_swap"] = {} +defs["ImVector_ImVec4_swap"][1] = {} +defs["ImVector_ImVec4_swap"][1]["args"] = "(ImVector_ImVec4* self,ImVector_ImVec4 rhs)" +defs["ImVector_ImVec4_swap"][1]["argsT"] = {} +defs["ImVector_ImVec4_swap"][1]["argsT"][1] = {} +defs["ImVector_ImVec4_swap"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImVec4_swap"][1]["argsT"][1]["type"] = "ImVector_ImVec4*" +defs["ImVector_ImVec4_swap"][1]["argsT"][2] = {} +defs["ImVector_ImVec4_swap"][1]["argsT"][2]["name"] = "rhs" +defs["ImVector_ImVec4_swap"][1]["argsT"][2]["type"] = "ImVector_ImVec4&" +defs["ImVector_ImVec4_swap"][1]["call_args"] = "(rhs)" +defs["ImVector_ImVec4_swap"][1]["cimguiname"] = "ImVector_ImVec4_swap" +defs["ImVector_ImVec4_swap"][1]["defaults"] = {} +defs["ImVector_ImVec4_swap"][1]["funcname"] = "swap" +defs["ImVector_ImVec4_swap"][1]["ov_cimguiname"] = "ImVector_ImVec4_swap" +defs["ImVector_ImVec4_swap"][1]["ret"] = "void" +defs["ImVector_ImVec4_swap"][1]["signature"] = "(ImVector)" +defs["ImVector_ImVec4_swap"][1]["stname"] = "ImVector_ImVec4" +defs["ImVector_ImVec4_swap"][1]["templatedgen"] = true +defs["ImVector_ImVec4_swap"]["(ImVector)"] = defs["ImVector_ImVec4_swap"][1] defs["ImVector_ImVector"] = {} defs["ImVector_ImVector"][1] = {} defs["ImVector_ImVector"][1]["args"] = "()" @@ -4622,11 +10683,11 @@ defs["ImVector_ImVector"][1]["signature"] = "()" defs["ImVector_ImVector"][1]["stname"] = "ImVector" defs["ImVector_ImVector"][1]["templated"] = true defs["ImVector_ImVector"][2] = {} -defs["ImVector_ImVector"][2]["args"] = "(const ImVector_ src)" +defs["ImVector_ImVector"][2]["args"] = "(const ImVector src)" defs["ImVector_ImVector"][2]["argsT"] = {} defs["ImVector_ImVector"][2]["argsT"][1] = {} defs["ImVector_ImVector"][2]["argsT"][1]["name"] = "src" -defs["ImVector_ImVector"][2]["argsT"][1]["type"] = "const ImVector_" +defs["ImVector_ImVector"][2]["argsT"][1]["type"] = "const ImVector" defs["ImVector_ImVector"][2]["argsoriginal"] = "(const ImVector& src)" defs["ImVector_ImVector"][2]["call_args"] = "(src)" defs["ImVector_ImVector"][2]["cimguiname"] = "ImVector_ImVector" @@ -4634,12 +10695,1665 @@ defs["ImVector_ImVector"][2]["comment"] = "" defs["ImVector_ImVector"][2]["constructor"] = true defs["ImVector_ImVector"][2]["defaults"] = {} defs["ImVector_ImVector"][2]["funcname"] = "ImVector" -defs["ImVector_ImVector"][2]["ov_cimguiname"] = "ImVector_ImVectorVector_" -defs["ImVector_ImVector"][2]["signature"] = "(const ImVector_)" +defs["ImVector_ImVector"][2]["ov_cimguiname"] = "ImVector_ImVectorVector" +defs["ImVector_ImVector"][2]["signature"] = "(const ImVector)" defs["ImVector_ImVector"][2]["stname"] = "ImVector" defs["ImVector_ImVector"][2]["templated"] = true defs["ImVector_ImVector"]["()"] = defs["ImVector_ImVector"][1] -defs["ImVector_ImVector"]["(const ImVector_)"] = defs["ImVector_ImVector"][2] +defs["ImVector_ImVector"]["(const ImVector)"] = defs["ImVector_ImVector"][2] +defs["ImVector_ImWchar_ImVector_ImWchar"] = {} +defs["ImVector_ImWchar_ImVector_ImWchar"][1] = {} +defs["ImVector_ImWchar_ImVector_ImWchar"][1]["args"] = "()" +defs["ImVector_ImWchar_ImVector_ImWchar"][1]["argsT"] = {} +defs["ImVector_ImWchar_ImVector_ImWchar"][1]["call_args"] = "()" +defs["ImVector_ImWchar_ImVector_ImWchar"][1]["cimguiname"] = "ImVector_ImWchar_ImVector_ImWchar" +defs["ImVector_ImWchar_ImVector_ImWchar"][1]["constructor"] = true +defs["ImVector_ImWchar_ImVector_ImWchar"][1]["defaults"] = {} +defs["ImVector_ImWchar_ImVector_ImWchar"][1]["funcname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_ImVector_ImWchar"][1]["ov_cimguiname"] = "ImVector_ImWchar_ImVector_ImWchar" +defs["ImVector_ImWchar_ImVector_ImWchar"][1]["signature"] = "()" +defs["ImVector_ImWchar_ImVector_ImWchar"][1]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_ImVector_ImWchar"][1]["templatedgen"] = true +defs["ImVector_ImWchar_ImVector_ImWchar"][2] = {} +defs["ImVector_ImWchar_ImVector_ImWchar"][2]["args"] = "(const ImVector_ImWchar src)" +defs["ImVector_ImWchar_ImVector_ImWchar"][2]["argsT"] = {} +defs["ImVector_ImWchar_ImVector_ImWchar"][2]["argsT"][1] = {} +defs["ImVector_ImWchar_ImVector_ImWchar"][2]["argsT"][1]["name"] = "src" +defs["ImVector_ImWchar_ImVector_ImWchar"][2]["argsT"][1]["type"] = "const ImVector_ImWchar" +defs["ImVector_ImWchar_ImVector_ImWchar"][2]["call_args"] = "(src)" +defs["ImVector_ImWchar_ImVector_ImWchar"][2]["cimguiname"] = "ImVector_ImWchar_ImVector_ImWchar" +defs["ImVector_ImWchar_ImVector_ImWchar"][2]["constructor"] = true +defs["ImVector_ImWchar_ImVector_ImWchar"][2]["defaults"] = {} +defs["ImVector_ImWchar_ImVector_ImWchar"][2]["funcname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_ImVector_ImWchar"][2]["ov_cimguiname"] = "ImVector_ImWchar_ImVector_ImWcharVector" +defs["ImVector_ImWchar_ImVector_ImWchar"][2]["signature"] = "(const ImVector)" +defs["ImVector_ImWchar_ImVector_ImWchar"][2]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_ImVector_ImWchar"][2]["templatedgen"] = true +defs["ImVector_ImWchar_ImVector_ImWchar"]["()"] = defs["ImVector_ImWchar_ImVector_ImWchar"][1] +defs["ImVector_ImWchar_ImVector_ImWchar"]["(const ImVector)"] = defs["ImVector_ImWchar_ImVector_ImWchar"][2] +defs["ImVector_ImWchar__grow_capacity"] = {} +defs["ImVector_ImWchar__grow_capacity"][1] = {} +defs["ImVector_ImWchar__grow_capacity"][1]["args"] = "(const ImVector_ImWchar* self,int sz)" +defs["ImVector_ImWchar__grow_capacity"][1]["argsT"] = {} +defs["ImVector_ImWchar__grow_capacity"][1]["argsT"][1] = {} +defs["ImVector_ImWchar__grow_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImWchar__grow_capacity"][1]["argsT"][1]["type"] = "const ImVector_ImWchar*" +defs["ImVector_ImWchar__grow_capacity"][1]["argsT"][2] = {} +defs["ImVector_ImWchar__grow_capacity"][1]["argsT"][2]["name"] = "sz" +defs["ImVector_ImWchar__grow_capacity"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImWchar__grow_capacity"][1]["call_args"] = "(sz)" +defs["ImVector_ImWchar__grow_capacity"][1]["cimguiname"] = "ImVector_ImWchar__grow_capacity" +defs["ImVector_ImWchar__grow_capacity"][1]["defaults"] = {} +defs["ImVector_ImWchar__grow_capacity"][1]["funcname"] = "_grow_capacity" +defs["ImVector_ImWchar__grow_capacity"][1]["ov_cimguiname"] = "ImVector_ImWchar__grow_capacity" +defs["ImVector_ImWchar__grow_capacity"][1]["ret"] = "int" +defs["ImVector_ImWchar__grow_capacity"][1]["signature"] = "(int)const" +defs["ImVector_ImWchar__grow_capacity"][1]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar__grow_capacity"][1]["templatedgen"] = true +defs["ImVector_ImWchar__grow_capacity"]["(int)const"] = defs["ImVector_ImWchar__grow_capacity"][1] +defs["ImVector_ImWchar_back"] = {} +defs["ImVector_ImWchar_back"][1] = {} +defs["ImVector_ImWchar_back"][1]["args"] = "(ImVector_ImWchar* self)" +defs["ImVector_ImWchar_back"][1]["argsT"] = {} +defs["ImVector_ImWchar_back"][1]["argsT"][1] = {} +defs["ImVector_ImWchar_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImWchar_back"][1]["argsT"][1]["type"] = "ImVector_ImWchar*" +defs["ImVector_ImWchar_back"][1]["call_args"] = "()" +defs["ImVector_ImWchar_back"][1]["cimguiname"] = "ImVector_ImWchar_back" +defs["ImVector_ImWchar_back"][1]["defaults"] = {} +defs["ImVector_ImWchar_back"][1]["funcname"] = "back" +defs["ImVector_ImWchar_back"][1]["ov_cimguiname"] = "ImVector_ImWchar_back" +defs["ImVector_ImWchar_back"][1]["ret"] = "ImWchar*" +defs["ImVector_ImWchar_back"][1]["retref"] = "&" +defs["ImVector_ImWchar_back"][1]["signature"] = "()" +defs["ImVector_ImWchar_back"][1]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_back"][1]["templatedgen"] = true +defs["ImVector_ImWchar_back"][2] = {} +defs["ImVector_ImWchar_back"][2]["args"] = "(const ImVector_ImWchar* self)" +defs["ImVector_ImWchar_back"][2]["argsT"] = {} +defs["ImVector_ImWchar_back"][2]["argsT"][1] = {} +defs["ImVector_ImWchar_back"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImWchar_back"][2]["argsT"][1]["type"] = "const ImVector_ImWchar*" +defs["ImVector_ImWchar_back"][2]["call_args"] = "()" +defs["ImVector_ImWchar_back"][2]["cimguiname"] = "ImVector_ImWchar_back" +defs["ImVector_ImWchar_back"][2]["defaults"] = {} +defs["ImVector_ImWchar_back"][2]["funcname"] = "back" +defs["ImVector_ImWchar_back"][2]["ov_cimguiname"] = "ImVector_ImWchar_back_const" +defs["ImVector_ImWchar_back"][2]["ret"] = "ImWchar const *" +defs["ImVector_ImWchar_back"][2]["retref"] = "&" +defs["ImVector_ImWchar_back"][2]["signature"] = "()const" +defs["ImVector_ImWchar_back"][2]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_back"][2]["templatedgen"] = true +defs["ImVector_ImWchar_back"]["()"] = defs["ImVector_ImWchar_back"][1] +defs["ImVector_ImWchar_back"]["()const"] = defs["ImVector_ImWchar_back"][2] +defs["ImVector_ImWchar_begin"] = {} +defs["ImVector_ImWchar_begin"][1] = {} +defs["ImVector_ImWchar_begin"][1]["args"] = "(ImVector_ImWchar* self)" +defs["ImVector_ImWchar_begin"][1]["argsT"] = {} +defs["ImVector_ImWchar_begin"][1]["argsT"][1] = {} +defs["ImVector_ImWchar_begin"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImWchar_begin"][1]["argsT"][1]["type"] = "ImVector_ImWchar*" +defs["ImVector_ImWchar_begin"][1]["call_args"] = "()" +defs["ImVector_ImWchar_begin"][1]["cimguiname"] = "ImVector_ImWchar_begin" +defs["ImVector_ImWchar_begin"][1]["defaults"] = {} +defs["ImVector_ImWchar_begin"][1]["funcname"] = "begin" +defs["ImVector_ImWchar_begin"][1]["ov_cimguiname"] = "ImVector_ImWchar_begin" +defs["ImVector_ImWchar_begin"][1]["ret"] = "ImWchar*" +defs["ImVector_ImWchar_begin"][1]["signature"] = "()" +defs["ImVector_ImWchar_begin"][1]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_begin"][1]["templatedgen"] = true +defs["ImVector_ImWchar_begin"][2] = {} +defs["ImVector_ImWchar_begin"][2]["args"] = "(const ImVector_ImWchar* self)" +defs["ImVector_ImWchar_begin"][2]["argsT"] = {} +defs["ImVector_ImWchar_begin"][2]["argsT"][1] = {} +defs["ImVector_ImWchar_begin"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImWchar_begin"][2]["argsT"][1]["type"] = "const ImVector_ImWchar*" +defs["ImVector_ImWchar_begin"][2]["call_args"] = "()" +defs["ImVector_ImWchar_begin"][2]["cimguiname"] = "ImVector_ImWchar_begin" +defs["ImVector_ImWchar_begin"][2]["defaults"] = {} +defs["ImVector_ImWchar_begin"][2]["funcname"] = "begin" +defs["ImVector_ImWchar_begin"][2]["ov_cimguiname"] = "ImVector_ImWchar_begin_const" +defs["ImVector_ImWchar_begin"][2]["ret"] = "ImWchar const *" +defs["ImVector_ImWchar_begin"][2]["signature"] = "()const" +defs["ImVector_ImWchar_begin"][2]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_begin"][2]["templatedgen"] = true +defs["ImVector_ImWchar_begin"]["()"] = defs["ImVector_ImWchar_begin"][1] +defs["ImVector_ImWchar_begin"]["()const"] = defs["ImVector_ImWchar_begin"][2] +defs["ImVector_ImWchar_capacity"] = {} +defs["ImVector_ImWchar_capacity"][1] = {} +defs["ImVector_ImWchar_capacity"][1]["args"] = "(const ImVector_ImWchar* self)" +defs["ImVector_ImWchar_capacity"][1]["argsT"] = {} +defs["ImVector_ImWchar_capacity"][1]["argsT"][1] = {} +defs["ImVector_ImWchar_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImWchar_capacity"][1]["argsT"][1]["type"] = "const ImVector_ImWchar*" +defs["ImVector_ImWchar_capacity"][1]["call_args"] = "()" +defs["ImVector_ImWchar_capacity"][1]["cimguiname"] = "ImVector_ImWchar_capacity" +defs["ImVector_ImWchar_capacity"][1]["defaults"] = {} +defs["ImVector_ImWchar_capacity"][1]["funcname"] = "capacity" +defs["ImVector_ImWchar_capacity"][1]["ov_cimguiname"] = "ImVector_ImWchar_capacity" +defs["ImVector_ImWchar_capacity"][1]["ret"] = "int" +defs["ImVector_ImWchar_capacity"][1]["signature"] = "()const" +defs["ImVector_ImWchar_capacity"][1]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_capacity"][1]["templatedgen"] = true +defs["ImVector_ImWchar_capacity"]["()const"] = defs["ImVector_ImWchar_capacity"][1] +defs["ImVector_ImWchar_clear"] = {} +defs["ImVector_ImWchar_clear"][1] = {} +defs["ImVector_ImWchar_clear"][1]["args"] = "(ImVector_ImWchar* self)" +defs["ImVector_ImWchar_clear"][1]["argsT"] = {} +defs["ImVector_ImWchar_clear"][1]["argsT"][1] = {} +defs["ImVector_ImWchar_clear"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImWchar_clear"][1]["argsT"][1]["type"] = "ImVector_ImWchar*" +defs["ImVector_ImWchar_clear"][1]["call_args"] = "()" +defs["ImVector_ImWchar_clear"][1]["cimguiname"] = "ImVector_ImWchar_clear" +defs["ImVector_ImWchar_clear"][1]["defaults"] = {} +defs["ImVector_ImWchar_clear"][1]["funcname"] = "clear" +defs["ImVector_ImWchar_clear"][1]["ov_cimguiname"] = "ImVector_ImWchar_clear" +defs["ImVector_ImWchar_clear"][1]["ret"] = "void" +defs["ImVector_ImWchar_clear"][1]["signature"] = "()" +defs["ImVector_ImWchar_clear"][1]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_clear"][1]["templatedgen"] = true +defs["ImVector_ImWchar_clear"]["()"] = defs["ImVector_ImWchar_clear"][1] +defs["ImVector_ImWchar_contains"] = {} +defs["ImVector_ImWchar_contains"][1] = {} +defs["ImVector_ImWchar_contains"][1]["args"] = "(const ImVector_ImWchar* self,const ImWchar v)" +defs["ImVector_ImWchar_contains"][1]["argsT"] = {} +defs["ImVector_ImWchar_contains"][1]["argsT"][1] = {} +defs["ImVector_ImWchar_contains"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImWchar_contains"][1]["argsT"][1]["type"] = "const ImVector_ImWchar*" +defs["ImVector_ImWchar_contains"][1]["argsT"][2] = {} +defs["ImVector_ImWchar_contains"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImWchar_contains"][1]["argsT"][2]["type"] = "const ImWchar" +defs["ImVector_ImWchar_contains"][1]["call_args"] = "(v)" +defs["ImVector_ImWchar_contains"][1]["cimguiname"] = "ImVector_ImWchar_contains" +defs["ImVector_ImWchar_contains"][1]["defaults"] = {} +defs["ImVector_ImWchar_contains"][1]["funcname"] = "contains" +defs["ImVector_ImWchar_contains"][1]["ov_cimguiname"] = "ImVector_ImWchar_contains" +defs["ImVector_ImWchar_contains"][1]["ret"] = "bool" +defs["ImVector_ImWchar_contains"][1]["signature"] = "(const ImWchar)const" +defs["ImVector_ImWchar_contains"][1]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_contains"][1]["templatedgen"] = true +defs["ImVector_ImWchar_contains"]["(const ImWchar)const"] = defs["ImVector_ImWchar_contains"][1] +defs["ImVector_ImWchar_destroy"] = {} +defs["ImVector_ImWchar_destroy"][1] = {} +defs["ImVector_ImWchar_destroy"][1]["args"] = "(ImVector_ImWchar* self)" +defs["ImVector_ImWchar_destroy"][1]["argsT"] = {} +defs["ImVector_ImWchar_destroy"][1]["argsT"][1] = {} +defs["ImVector_ImWchar_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImWchar_destroy"][1]["argsT"][1]["type"] = "ImVector_ImWchar*" +defs["ImVector_ImWchar_destroy"][1]["call_args"] = "(self)" +defs["ImVector_ImWchar_destroy"][1]["cimguiname"] = "ImVector_ImWchar_destroy" +defs["ImVector_ImWchar_destroy"][1]["defaults"] = {} +defs["ImVector_ImWchar_destroy"][1]["destructor"] = true +defs["ImVector_ImWchar_destroy"][1]["ov_cimguiname"] = "ImVector_ImWchar_destroy" +defs["ImVector_ImWchar_destroy"][1]["ret"] = "void" +defs["ImVector_ImWchar_destroy"][1]["signature"] = "(ImVector_ImWchar*)" +defs["ImVector_ImWchar_destroy"][1]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_destroy"]["(ImVector_ImWchar*)"] = defs["ImVector_ImWchar_destroy"][1] +defs["ImVector_ImWchar_empty"] = {} +defs["ImVector_ImWchar_empty"][1] = {} +defs["ImVector_ImWchar_empty"][1]["args"] = "(const ImVector_ImWchar* self)" +defs["ImVector_ImWchar_empty"][1]["argsT"] = {} +defs["ImVector_ImWchar_empty"][1]["argsT"][1] = {} +defs["ImVector_ImWchar_empty"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImWchar_empty"][1]["argsT"][1]["type"] = "const ImVector_ImWchar*" +defs["ImVector_ImWchar_empty"][1]["call_args"] = "()" +defs["ImVector_ImWchar_empty"][1]["cimguiname"] = "ImVector_ImWchar_empty" +defs["ImVector_ImWchar_empty"][1]["defaults"] = {} +defs["ImVector_ImWchar_empty"][1]["funcname"] = "empty" +defs["ImVector_ImWchar_empty"][1]["ov_cimguiname"] = "ImVector_ImWchar_empty" +defs["ImVector_ImWchar_empty"][1]["ret"] = "bool" +defs["ImVector_ImWchar_empty"][1]["signature"] = "()const" +defs["ImVector_ImWchar_empty"][1]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_empty"][1]["templatedgen"] = true +defs["ImVector_ImWchar_empty"]["()const"] = defs["ImVector_ImWchar_empty"][1] +defs["ImVector_ImWchar_end"] = {} +defs["ImVector_ImWchar_end"][1] = {} +defs["ImVector_ImWchar_end"][1]["args"] = "(ImVector_ImWchar* self)" +defs["ImVector_ImWchar_end"][1]["argsT"] = {} +defs["ImVector_ImWchar_end"][1]["argsT"][1] = {} +defs["ImVector_ImWchar_end"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImWchar_end"][1]["argsT"][1]["type"] = "ImVector_ImWchar*" +defs["ImVector_ImWchar_end"][1]["call_args"] = "()" +defs["ImVector_ImWchar_end"][1]["cimguiname"] = "ImVector_ImWchar_end" +defs["ImVector_ImWchar_end"][1]["defaults"] = {} +defs["ImVector_ImWchar_end"][1]["funcname"] = "end" +defs["ImVector_ImWchar_end"][1]["ov_cimguiname"] = "ImVector_ImWchar_end" +defs["ImVector_ImWchar_end"][1]["ret"] = "ImWchar*" +defs["ImVector_ImWchar_end"][1]["signature"] = "()" +defs["ImVector_ImWchar_end"][1]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_end"][1]["templatedgen"] = true +defs["ImVector_ImWchar_end"][2] = {} +defs["ImVector_ImWchar_end"][2]["args"] = "(const ImVector_ImWchar* self)" +defs["ImVector_ImWchar_end"][2]["argsT"] = {} +defs["ImVector_ImWchar_end"][2]["argsT"][1] = {} +defs["ImVector_ImWchar_end"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImWchar_end"][2]["argsT"][1]["type"] = "const ImVector_ImWchar*" +defs["ImVector_ImWchar_end"][2]["call_args"] = "()" +defs["ImVector_ImWchar_end"][2]["cimguiname"] = "ImVector_ImWchar_end" +defs["ImVector_ImWchar_end"][2]["defaults"] = {} +defs["ImVector_ImWchar_end"][2]["funcname"] = "end" +defs["ImVector_ImWchar_end"][2]["ov_cimguiname"] = "ImVector_ImWchar_end_const" +defs["ImVector_ImWchar_end"][2]["ret"] = "ImWchar const *" +defs["ImVector_ImWchar_end"][2]["signature"] = "()const" +defs["ImVector_ImWchar_end"][2]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_end"][2]["templatedgen"] = true +defs["ImVector_ImWchar_end"]["()"] = defs["ImVector_ImWchar_end"][1] +defs["ImVector_ImWchar_end"]["()const"] = defs["ImVector_ImWchar_end"][2] +defs["ImVector_ImWchar_erase"] = {} +defs["ImVector_ImWchar_erase"][1] = {} +defs["ImVector_ImWchar_erase"][1]["args"] = "(ImVector_ImWchar* self,ImWchar const * it)" +defs["ImVector_ImWchar_erase"][1]["argsT"] = {} +defs["ImVector_ImWchar_erase"][1]["argsT"][1] = {} +defs["ImVector_ImWchar_erase"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImWchar_erase"][1]["argsT"][1]["type"] = "ImVector_ImWchar*" +defs["ImVector_ImWchar_erase"][1]["argsT"][2] = {} +defs["ImVector_ImWchar_erase"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImWchar_erase"][1]["argsT"][2]["type"] = "ImWchar const *" +defs["ImVector_ImWchar_erase"][1]["call_args"] = "(it)" +defs["ImVector_ImWchar_erase"][1]["cimguiname"] = "ImVector_ImWchar_erase" +defs["ImVector_ImWchar_erase"][1]["defaults"] = {} +defs["ImVector_ImWchar_erase"][1]["funcname"] = "erase" +defs["ImVector_ImWchar_erase"][1]["ov_cimguiname"] = "ImVector_ImWchar_erase" +defs["ImVector_ImWchar_erase"][1]["ret"] = "ImWchar*" +defs["ImVector_ImWchar_erase"][1]["signature"] = "(const ImWchar*)" +defs["ImVector_ImWchar_erase"][1]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_erase"][1]["templatedgen"] = true +defs["ImVector_ImWchar_erase"][2] = {} +defs["ImVector_ImWchar_erase"][2]["args"] = "(ImVector_ImWchar* self,ImWchar const * it,ImWchar const * it_last)" +defs["ImVector_ImWchar_erase"][2]["argsT"] = {} +defs["ImVector_ImWchar_erase"][2]["argsT"][1] = {} +defs["ImVector_ImWchar_erase"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImWchar_erase"][2]["argsT"][1]["type"] = "ImVector_ImWchar*" +defs["ImVector_ImWchar_erase"][2]["argsT"][2] = {} +defs["ImVector_ImWchar_erase"][2]["argsT"][2]["name"] = "it" +defs["ImVector_ImWchar_erase"][2]["argsT"][2]["type"] = "ImWchar const *" +defs["ImVector_ImWchar_erase"][2]["argsT"][3] = {} +defs["ImVector_ImWchar_erase"][2]["argsT"][3]["name"] = "it_last" +defs["ImVector_ImWchar_erase"][2]["argsT"][3]["type"] = "ImWchar const *" +defs["ImVector_ImWchar_erase"][2]["call_args"] = "(it,it_last)" +defs["ImVector_ImWchar_erase"][2]["cimguiname"] = "ImVector_ImWchar_erase" +defs["ImVector_ImWchar_erase"][2]["defaults"] = {} +defs["ImVector_ImWchar_erase"][2]["funcname"] = "erase" +defs["ImVector_ImWchar_erase"][2]["ov_cimguiname"] = "ImVector_ImWchar_eraseTPtr" +defs["ImVector_ImWchar_erase"][2]["ret"] = "ImWchar*" +defs["ImVector_ImWchar_erase"][2]["signature"] = "(const ImWchar*,const ImWchar*)" +defs["ImVector_ImWchar_erase"][2]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_erase"][2]["templatedgen"] = true +defs["ImVector_ImWchar_erase"]["(const ImWchar*)"] = defs["ImVector_ImWchar_erase"][1] +defs["ImVector_ImWchar_erase"]["(const ImWchar*,const ImWchar*)"] = defs["ImVector_ImWchar_erase"][2] +defs["ImVector_ImWchar_erase_unsorted"] = {} +defs["ImVector_ImWchar_erase_unsorted"][1] = {} +defs["ImVector_ImWchar_erase_unsorted"][1]["args"] = "(ImVector_ImWchar* self,ImWchar const * it)" +defs["ImVector_ImWchar_erase_unsorted"][1]["argsT"] = {} +defs["ImVector_ImWchar_erase_unsorted"][1]["argsT"][1] = {} +defs["ImVector_ImWchar_erase_unsorted"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImWchar_erase_unsorted"][1]["argsT"][1]["type"] = "ImVector_ImWchar*" +defs["ImVector_ImWchar_erase_unsorted"][1]["argsT"][2] = {} +defs["ImVector_ImWchar_erase_unsorted"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImWchar_erase_unsorted"][1]["argsT"][2]["type"] = "ImWchar const *" +defs["ImVector_ImWchar_erase_unsorted"][1]["call_args"] = "(it)" +defs["ImVector_ImWchar_erase_unsorted"][1]["cimguiname"] = "ImVector_ImWchar_erase_unsorted" +defs["ImVector_ImWchar_erase_unsorted"][1]["defaults"] = {} +defs["ImVector_ImWchar_erase_unsorted"][1]["funcname"] = "erase_unsorted" +defs["ImVector_ImWchar_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_ImWchar_erase_unsorted" +defs["ImVector_ImWchar_erase_unsorted"][1]["ret"] = "ImWchar*" +defs["ImVector_ImWchar_erase_unsorted"][1]["signature"] = "(const ImWchar*)" +defs["ImVector_ImWchar_erase_unsorted"][1]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_erase_unsorted"][1]["templatedgen"] = true +defs["ImVector_ImWchar_erase_unsorted"]["(const ImWchar*)"] = defs["ImVector_ImWchar_erase_unsorted"][1] +defs["ImVector_ImWchar_front"] = {} +defs["ImVector_ImWchar_front"][1] = {} +defs["ImVector_ImWchar_front"][1]["args"] = "(ImVector_ImWchar* self)" +defs["ImVector_ImWchar_front"][1]["argsT"] = {} +defs["ImVector_ImWchar_front"][1]["argsT"][1] = {} +defs["ImVector_ImWchar_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImWchar_front"][1]["argsT"][1]["type"] = "ImVector_ImWchar*" +defs["ImVector_ImWchar_front"][1]["call_args"] = "()" +defs["ImVector_ImWchar_front"][1]["cimguiname"] = "ImVector_ImWchar_front" +defs["ImVector_ImWchar_front"][1]["defaults"] = {} +defs["ImVector_ImWchar_front"][1]["funcname"] = "front" +defs["ImVector_ImWchar_front"][1]["ov_cimguiname"] = "ImVector_ImWchar_front" +defs["ImVector_ImWchar_front"][1]["ret"] = "ImWchar*" +defs["ImVector_ImWchar_front"][1]["retref"] = "&" +defs["ImVector_ImWchar_front"][1]["signature"] = "()" +defs["ImVector_ImWchar_front"][1]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_front"][1]["templatedgen"] = true +defs["ImVector_ImWchar_front"][2] = {} +defs["ImVector_ImWchar_front"][2]["args"] = "(const ImVector_ImWchar* self)" +defs["ImVector_ImWchar_front"][2]["argsT"] = {} +defs["ImVector_ImWchar_front"][2]["argsT"][1] = {} +defs["ImVector_ImWchar_front"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImWchar_front"][2]["argsT"][1]["type"] = "const ImVector_ImWchar*" +defs["ImVector_ImWchar_front"][2]["call_args"] = "()" +defs["ImVector_ImWchar_front"][2]["cimguiname"] = "ImVector_ImWchar_front" +defs["ImVector_ImWchar_front"][2]["defaults"] = {} +defs["ImVector_ImWchar_front"][2]["funcname"] = "front" +defs["ImVector_ImWchar_front"][2]["ov_cimguiname"] = "ImVector_ImWchar_front_const" +defs["ImVector_ImWchar_front"][2]["ret"] = "ImWchar const *" +defs["ImVector_ImWchar_front"][2]["retref"] = "&" +defs["ImVector_ImWchar_front"][2]["signature"] = "()const" +defs["ImVector_ImWchar_front"][2]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_front"][2]["templatedgen"] = true +defs["ImVector_ImWchar_front"]["()"] = defs["ImVector_ImWchar_front"][1] +defs["ImVector_ImWchar_front"]["()const"] = defs["ImVector_ImWchar_front"][2] +defs["ImVector_ImWchar_index_from_ptr"] = {} +defs["ImVector_ImWchar_index_from_ptr"][1] = {} +defs["ImVector_ImWchar_index_from_ptr"][1]["args"] = "(const ImVector_ImWchar* self,ImWchar const * it)" +defs["ImVector_ImWchar_index_from_ptr"][1]["argsT"] = {} +defs["ImVector_ImWchar_index_from_ptr"][1]["argsT"][1] = {} +defs["ImVector_ImWchar_index_from_ptr"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImWchar_index_from_ptr"][1]["argsT"][1]["type"] = "const ImVector_ImWchar*" +defs["ImVector_ImWchar_index_from_ptr"][1]["argsT"][2] = {} +defs["ImVector_ImWchar_index_from_ptr"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImWchar_index_from_ptr"][1]["argsT"][2]["type"] = "ImWchar const *" +defs["ImVector_ImWchar_index_from_ptr"][1]["call_args"] = "(it)" +defs["ImVector_ImWchar_index_from_ptr"][1]["cimguiname"] = "ImVector_ImWchar_index_from_ptr" +defs["ImVector_ImWchar_index_from_ptr"][1]["defaults"] = {} +defs["ImVector_ImWchar_index_from_ptr"][1]["funcname"] = "index_from_ptr" +defs["ImVector_ImWchar_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_ImWchar_index_from_ptr" +defs["ImVector_ImWchar_index_from_ptr"][1]["ret"] = "int" +defs["ImVector_ImWchar_index_from_ptr"][1]["signature"] = "(const ImWchar*)const" +defs["ImVector_ImWchar_index_from_ptr"][1]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_index_from_ptr"][1]["templatedgen"] = true +defs["ImVector_ImWchar_index_from_ptr"]["(const ImWchar*)const"] = defs["ImVector_ImWchar_index_from_ptr"][1] +defs["ImVector_ImWchar_insert"] = {} +defs["ImVector_ImWchar_insert"][1] = {} +defs["ImVector_ImWchar_insert"][1]["args"] = "(ImVector_ImWchar* self,ImWchar const * it,const ImWchar v)" +defs["ImVector_ImWchar_insert"][1]["argsT"] = {} +defs["ImVector_ImWchar_insert"][1]["argsT"][1] = {} +defs["ImVector_ImWchar_insert"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImWchar_insert"][1]["argsT"][1]["type"] = "ImVector_ImWchar*" +defs["ImVector_ImWchar_insert"][1]["argsT"][2] = {} +defs["ImVector_ImWchar_insert"][1]["argsT"][2]["name"] = "it" +defs["ImVector_ImWchar_insert"][1]["argsT"][2]["type"] = "ImWchar const *" +defs["ImVector_ImWchar_insert"][1]["argsT"][3] = {} +defs["ImVector_ImWchar_insert"][1]["argsT"][3]["name"] = "v" +defs["ImVector_ImWchar_insert"][1]["argsT"][3]["type"] = "const ImWchar" +defs["ImVector_ImWchar_insert"][1]["call_args"] = "(it,v)" +defs["ImVector_ImWchar_insert"][1]["cimguiname"] = "ImVector_ImWchar_insert" +defs["ImVector_ImWchar_insert"][1]["defaults"] = {} +defs["ImVector_ImWchar_insert"][1]["funcname"] = "insert" +defs["ImVector_ImWchar_insert"][1]["ov_cimguiname"] = "ImVector_ImWchar_insert" +defs["ImVector_ImWchar_insert"][1]["ret"] = "ImWchar*" +defs["ImVector_ImWchar_insert"][1]["signature"] = "(const ImWchar*,const ImWchar)" +defs["ImVector_ImWchar_insert"][1]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_insert"][1]["templatedgen"] = true +defs["ImVector_ImWchar_insert"]["(const ImWchar*,const ImWchar)"] = defs["ImVector_ImWchar_insert"][1] +defs["ImVector_ImWchar_pop_back"] = {} +defs["ImVector_ImWchar_pop_back"][1] = {} +defs["ImVector_ImWchar_pop_back"][1]["args"] = "(ImVector_ImWchar* self)" +defs["ImVector_ImWchar_pop_back"][1]["argsT"] = {} +defs["ImVector_ImWchar_pop_back"][1]["argsT"][1] = {} +defs["ImVector_ImWchar_pop_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImWchar_pop_back"][1]["argsT"][1]["type"] = "ImVector_ImWchar*" +defs["ImVector_ImWchar_pop_back"][1]["call_args"] = "()" +defs["ImVector_ImWchar_pop_back"][1]["cimguiname"] = "ImVector_ImWchar_pop_back" +defs["ImVector_ImWchar_pop_back"][1]["defaults"] = {} +defs["ImVector_ImWchar_pop_back"][1]["funcname"] = "pop_back" +defs["ImVector_ImWchar_pop_back"][1]["ov_cimguiname"] = "ImVector_ImWchar_pop_back" +defs["ImVector_ImWchar_pop_back"][1]["ret"] = "void" +defs["ImVector_ImWchar_pop_back"][1]["signature"] = "()" +defs["ImVector_ImWchar_pop_back"][1]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_pop_back"][1]["templatedgen"] = true +defs["ImVector_ImWchar_pop_back"]["()"] = defs["ImVector_ImWchar_pop_back"][1] +defs["ImVector_ImWchar_push_back"] = {} +defs["ImVector_ImWchar_push_back"][1] = {} +defs["ImVector_ImWchar_push_back"][1]["args"] = "(ImVector_ImWchar* self,const ImWchar v)" +defs["ImVector_ImWchar_push_back"][1]["argsT"] = {} +defs["ImVector_ImWchar_push_back"][1]["argsT"][1] = {} +defs["ImVector_ImWchar_push_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImWchar_push_back"][1]["argsT"][1]["type"] = "ImVector_ImWchar*" +defs["ImVector_ImWchar_push_back"][1]["argsT"][2] = {} +defs["ImVector_ImWchar_push_back"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImWchar_push_back"][1]["argsT"][2]["type"] = "const ImWchar" +defs["ImVector_ImWchar_push_back"][1]["call_args"] = "(v)" +defs["ImVector_ImWchar_push_back"][1]["cimguiname"] = "ImVector_ImWchar_push_back" +defs["ImVector_ImWchar_push_back"][1]["defaults"] = {} +defs["ImVector_ImWchar_push_back"][1]["funcname"] = "push_back" +defs["ImVector_ImWchar_push_back"][1]["ov_cimguiname"] = "ImVector_ImWchar_push_back" +defs["ImVector_ImWchar_push_back"][1]["ret"] = "void" +defs["ImVector_ImWchar_push_back"][1]["signature"] = "(const ImWchar)" +defs["ImVector_ImWchar_push_back"][1]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_push_back"][1]["templatedgen"] = true +defs["ImVector_ImWchar_push_back"]["(const ImWchar)"] = defs["ImVector_ImWchar_push_back"][1] +defs["ImVector_ImWchar_push_front"] = {} +defs["ImVector_ImWchar_push_front"][1] = {} +defs["ImVector_ImWchar_push_front"][1]["args"] = "(ImVector_ImWchar* self,const ImWchar v)" +defs["ImVector_ImWchar_push_front"][1]["argsT"] = {} +defs["ImVector_ImWchar_push_front"][1]["argsT"][1] = {} +defs["ImVector_ImWchar_push_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImWchar_push_front"][1]["argsT"][1]["type"] = "ImVector_ImWchar*" +defs["ImVector_ImWchar_push_front"][1]["argsT"][2] = {} +defs["ImVector_ImWchar_push_front"][1]["argsT"][2]["name"] = "v" +defs["ImVector_ImWchar_push_front"][1]["argsT"][2]["type"] = "const ImWchar" +defs["ImVector_ImWchar_push_front"][1]["call_args"] = "(v)" +defs["ImVector_ImWchar_push_front"][1]["cimguiname"] = "ImVector_ImWchar_push_front" +defs["ImVector_ImWchar_push_front"][1]["defaults"] = {} +defs["ImVector_ImWchar_push_front"][1]["funcname"] = "push_front" +defs["ImVector_ImWchar_push_front"][1]["ov_cimguiname"] = "ImVector_ImWchar_push_front" +defs["ImVector_ImWchar_push_front"][1]["ret"] = "void" +defs["ImVector_ImWchar_push_front"][1]["signature"] = "(const ImWchar)" +defs["ImVector_ImWchar_push_front"][1]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_push_front"][1]["templatedgen"] = true +defs["ImVector_ImWchar_push_front"]["(const ImWchar)"] = defs["ImVector_ImWchar_push_front"][1] +defs["ImVector_ImWchar_reserve"] = {} +defs["ImVector_ImWchar_reserve"][1] = {} +defs["ImVector_ImWchar_reserve"][1]["args"] = "(ImVector_ImWchar* self,int new_capacity)" +defs["ImVector_ImWchar_reserve"][1]["argsT"] = {} +defs["ImVector_ImWchar_reserve"][1]["argsT"][1] = {} +defs["ImVector_ImWchar_reserve"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImWchar_reserve"][1]["argsT"][1]["type"] = "ImVector_ImWchar*" +defs["ImVector_ImWchar_reserve"][1]["argsT"][2] = {} +defs["ImVector_ImWchar_reserve"][1]["argsT"][2]["name"] = "new_capacity" +defs["ImVector_ImWchar_reserve"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImWchar_reserve"][1]["call_args"] = "(new_capacity)" +defs["ImVector_ImWchar_reserve"][1]["cimguiname"] = "ImVector_ImWchar_reserve" +defs["ImVector_ImWchar_reserve"][1]["defaults"] = {} +defs["ImVector_ImWchar_reserve"][1]["funcname"] = "reserve" +defs["ImVector_ImWchar_reserve"][1]["ov_cimguiname"] = "ImVector_ImWchar_reserve" +defs["ImVector_ImWchar_reserve"][1]["ret"] = "void" +defs["ImVector_ImWchar_reserve"][1]["signature"] = "(int)" +defs["ImVector_ImWchar_reserve"][1]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_reserve"][1]["templatedgen"] = true +defs["ImVector_ImWchar_reserve"]["(int)"] = defs["ImVector_ImWchar_reserve"][1] +defs["ImVector_ImWchar_resize"] = {} +defs["ImVector_ImWchar_resize"][1] = {} +defs["ImVector_ImWchar_resize"][1]["args"] = "(ImVector_ImWchar* self,int new_size)" +defs["ImVector_ImWchar_resize"][1]["argsT"] = {} +defs["ImVector_ImWchar_resize"][1]["argsT"][1] = {} +defs["ImVector_ImWchar_resize"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImWchar_resize"][1]["argsT"][1]["type"] = "ImVector_ImWchar*" +defs["ImVector_ImWchar_resize"][1]["argsT"][2] = {} +defs["ImVector_ImWchar_resize"][1]["argsT"][2]["name"] = "new_size" +defs["ImVector_ImWchar_resize"][1]["argsT"][2]["type"] = "int" +defs["ImVector_ImWchar_resize"][1]["call_args"] = "(new_size)" +defs["ImVector_ImWchar_resize"][1]["cimguiname"] = "ImVector_ImWchar_resize" +defs["ImVector_ImWchar_resize"][1]["defaults"] = {} +defs["ImVector_ImWchar_resize"][1]["funcname"] = "resize" +defs["ImVector_ImWchar_resize"][1]["ov_cimguiname"] = "ImVector_ImWchar_resize" +defs["ImVector_ImWchar_resize"][1]["ret"] = "void" +defs["ImVector_ImWchar_resize"][1]["signature"] = "(int)" +defs["ImVector_ImWchar_resize"][1]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_resize"][1]["templatedgen"] = true +defs["ImVector_ImWchar_resize"][2] = {} +defs["ImVector_ImWchar_resize"][2]["args"] = "(ImVector_ImWchar* self,int new_size,const ImWchar v)" +defs["ImVector_ImWchar_resize"][2]["argsT"] = {} +defs["ImVector_ImWchar_resize"][2]["argsT"][1] = {} +defs["ImVector_ImWchar_resize"][2]["argsT"][1]["name"] = "self" +defs["ImVector_ImWchar_resize"][2]["argsT"][1]["type"] = "ImVector_ImWchar*" +defs["ImVector_ImWchar_resize"][2]["argsT"][2] = {} +defs["ImVector_ImWchar_resize"][2]["argsT"][2]["name"] = "new_size" +defs["ImVector_ImWchar_resize"][2]["argsT"][2]["type"] = "int" +defs["ImVector_ImWchar_resize"][2]["argsT"][3] = {} +defs["ImVector_ImWchar_resize"][2]["argsT"][3]["name"] = "v" +defs["ImVector_ImWchar_resize"][2]["argsT"][3]["type"] = "const ImWchar" +defs["ImVector_ImWchar_resize"][2]["call_args"] = "(new_size,v)" +defs["ImVector_ImWchar_resize"][2]["cimguiname"] = "ImVector_ImWchar_resize" +defs["ImVector_ImWchar_resize"][2]["defaults"] = {} +defs["ImVector_ImWchar_resize"][2]["funcname"] = "resize" +defs["ImVector_ImWchar_resize"][2]["ov_cimguiname"] = "ImVector_ImWchar_resizeT" +defs["ImVector_ImWchar_resize"][2]["ret"] = "void" +defs["ImVector_ImWchar_resize"][2]["signature"] = "(int,const ImWchar)" +defs["ImVector_ImWchar_resize"][2]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_resize"][2]["templatedgen"] = true +defs["ImVector_ImWchar_resize"]["(int)"] = defs["ImVector_ImWchar_resize"][1] +defs["ImVector_ImWchar_resize"]["(int,const ImWchar)"] = defs["ImVector_ImWchar_resize"][2] +defs["ImVector_ImWchar_size"] = {} +defs["ImVector_ImWchar_size"][1] = {} +defs["ImVector_ImWchar_size"][1]["args"] = "(const ImVector_ImWchar* self)" +defs["ImVector_ImWchar_size"][1]["argsT"] = {} +defs["ImVector_ImWchar_size"][1]["argsT"][1] = {} +defs["ImVector_ImWchar_size"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImWchar_size"][1]["argsT"][1]["type"] = "const ImVector_ImWchar*" +defs["ImVector_ImWchar_size"][1]["call_args"] = "()" +defs["ImVector_ImWchar_size"][1]["cimguiname"] = "ImVector_ImWchar_size" +defs["ImVector_ImWchar_size"][1]["defaults"] = {} +defs["ImVector_ImWchar_size"][1]["funcname"] = "size" +defs["ImVector_ImWchar_size"][1]["ov_cimguiname"] = "ImVector_ImWchar_size" +defs["ImVector_ImWchar_size"][1]["ret"] = "int" +defs["ImVector_ImWchar_size"][1]["signature"] = "()const" +defs["ImVector_ImWchar_size"][1]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_size"][1]["templatedgen"] = true +defs["ImVector_ImWchar_size"]["()const"] = defs["ImVector_ImWchar_size"][1] +defs["ImVector_ImWchar_size_in_bytes"] = {} +defs["ImVector_ImWchar_size_in_bytes"][1] = {} +defs["ImVector_ImWchar_size_in_bytes"][1]["args"] = "(const ImVector_ImWchar* self)" +defs["ImVector_ImWchar_size_in_bytes"][1]["argsT"] = {} +defs["ImVector_ImWchar_size_in_bytes"][1]["argsT"][1] = {} +defs["ImVector_ImWchar_size_in_bytes"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImWchar_size_in_bytes"][1]["argsT"][1]["type"] = "const ImVector_ImWchar*" +defs["ImVector_ImWchar_size_in_bytes"][1]["call_args"] = "()" +defs["ImVector_ImWchar_size_in_bytes"][1]["cimguiname"] = "ImVector_ImWchar_size_in_bytes" +defs["ImVector_ImWchar_size_in_bytes"][1]["defaults"] = {} +defs["ImVector_ImWchar_size_in_bytes"][1]["funcname"] = "size_in_bytes" +defs["ImVector_ImWchar_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_ImWchar_size_in_bytes" +defs["ImVector_ImWchar_size_in_bytes"][1]["ret"] = "int" +defs["ImVector_ImWchar_size_in_bytes"][1]["signature"] = "()const" +defs["ImVector_ImWchar_size_in_bytes"][1]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_size_in_bytes"][1]["templatedgen"] = true +defs["ImVector_ImWchar_size_in_bytes"]["()const"] = defs["ImVector_ImWchar_size_in_bytes"][1] +defs["ImVector_ImWchar_swap"] = {} +defs["ImVector_ImWchar_swap"][1] = {} +defs["ImVector_ImWchar_swap"][1]["args"] = "(ImVector_ImWchar* self,ImVector_ImWchar rhs)" +defs["ImVector_ImWchar_swap"][1]["argsT"] = {} +defs["ImVector_ImWchar_swap"][1]["argsT"][1] = {} +defs["ImVector_ImWchar_swap"][1]["argsT"][1]["name"] = "self" +defs["ImVector_ImWchar_swap"][1]["argsT"][1]["type"] = "ImVector_ImWchar*" +defs["ImVector_ImWchar_swap"][1]["argsT"][2] = {} +defs["ImVector_ImWchar_swap"][1]["argsT"][2]["name"] = "rhs" +defs["ImVector_ImWchar_swap"][1]["argsT"][2]["type"] = "ImVector_ImWchar&" +defs["ImVector_ImWchar_swap"][1]["call_args"] = "(rhs)" +defs["ImVector_ImWchar_swap"][1]["cimguiname"] = "ImVector_ImWchar_swap" +defs["ImVector_ImWchar_swap"][1]["defaults"] = {} +defs["ImVector_ImWchar_swap"][1]["funcname"] = "swap" +defs["ImVector_ImWchar_swap"][1]["ov_cimguiname"] = "ImVector_ImWchar_swap" +defs["ImVector_ImWchar_swap"][1]["ret"] = "void" +defs["ImVector_ImWchar_swap"][1]["signature"] = "(ImVector)" +defs["ImVector_ImWchar_swap"][1]["stname"] = "ImVector_ImWchar" +defs["ImVector_ImWchar_swap"][1]["templatedgen"] = true +defs["ImVector_ImWchar_swap"]["(ImVector)"] = defs["ImVector_ImWchar_swap"][1] +defs["ImVector_Pair_ImVector_Pair"] = {} +defs["ImVector_Pair_ImVector_Pair"][1] = {} +defs["ImVector_Pair_ImVector_Pair"][1]["args"] = "()" +defs["ImVector_Pair_ImVector_Pair"][1]["argsT"] = {} +defs["ImVector_Pair_ImVector_Pair"][1]["call_args"] = "()" +defs["ImVector_Pair_ImVector_Pair"][1]["cimguiname"] = "ImVector_Pair_ImVector_Pair" +defs["ImVector_Pair_ImVector_Pair"][1]["constructor"] = true +defs["ImVector_Pair_ImVector_Pair"][1]["defaults"] = {} +defs["ImVector_Pair_ImVector_Pair"][1]["funcname"] = "ImVector_Pair" +defs["ImVector_Pair_ImVector_Pair"][1]["ov_cimguiname"] = "ImVector_Pair_ImVector_Pair" +defs["ImVector_Pair_ImVector_Pair"][1]["signature"] = "()" +defs["ImVector_Pair_ImVector_Pair"][1]["stname"] = "ImVector_Pair" +defs["ImVector_Pair_ImVector_Pair"][1]["templatedgen"] = true +defs["ImVector_Pair_ImVector_Pair"][2] = {} +defs["ImVector_Pair_ImVector_Pair"][2]["args"] = "(const ImVector_Pair src)" +defs["ImVector_Pair_ImVector_Pair"][2]["argsT"] = {} +defs["ImVector_Pair_ImVector_Pair"][2]["argsT"][1] = {} +defs["ImVector_Pair_ImVector_Pair"][2]["argsT"][1]["name"] = "src" +defs["ImVector_Pair_ImVector_Pair"][2]["argsT"][1]["type"] = "const ImVector_Pair" +defs["ImVector_Pair_ImVector_Pair"][2]["call_args"] = "(src)" +defs["ImVector_Pair_ImVector_Pair"][2]["cimguiname"] = "ImVector_Pair_ImVector_Pair" +defs["ImVector_Pair_ImVector_Pair"][2]["constructor"] = true +defs["ImVector_Pair_ImVector_Pair"][2]["defaults"] = {} +defs["ImVector_Pair_ImVector_Pair"][2]["funcname"] = "ImVector_Pair" +defs["ImVector_Pair_ImVector_Pair"][2]["ov_cimguiname"] = "ImVector_Pair_ImVector_PairVector" +defs["ImVector_Pair_ImVector_Pair"][2]["signature"] = "(const ImVector)" +defs["ImVector_Pair_ImVector_Pair"][2]["stname"] = "ImVector_Pair" +defs["ImVector_Pair_ImVector_Pair"][2]["templatedgen"] = true +defs["ImVector_Pair_ImVector_Pair"]["()"] = defs["ImVector_Pair_ImVector_Pair"][1] +defs["ImVector_Pair_ImVector_Pair"]["(const ImVector)"] = defs["ImVector_Pair_ImVector_Pair"][2] +defs["ImVector_Pair__grow_capacity"] = {} +defs["ImVector_Pair__grow_capacity"][1] = {} +defs["ImVector_Pair__grow_capacity"][1]["args"] = "(const ImVector_Pair* self,int sz)" +defs["ImVector_Pair__grow_capacity"][1]["argsT"] = {} +defs["ImVector_Pair__grow_capacity"][1]["argsT"][1] = {} +defs["ImVector_Pair__grow_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_Pair__grow_capacity"][1]["argsT"][1]["type"] = "const ImVector_Pair*" +defs["ImVector_Pair__grow_capacity"][1]["argsT"][2] = {} +defs["ImVector_Pair__grow_capacity"][1]["argsT"][2]["name"] = "sz" +defs["ImVector_Pair__grow_capacity"][1]["argsT"][2]["type"] = "int" +defs["ImVector_Pair__grow_capacity"][1]["call_args"] = "(sz)" +defs["ImVector_Pair__grow_capacity"][1]["cimguiname"] = "ImVector_Pair__grow_capacity" +defs["ImVector_Pair__grow_capacity"][1]["defaults"] = {} +defs["ImVector_Pair__grow_capacity"][1]["funcname"] = "_grow_capacity" +defs["ImVector_Pair__grow_capacity"][1]["ov_cimguiname"] = "ImVector_Pair__grow_capacity" +defs["ImVector_Pair__grow_capacity"][1]["ret"] = "int" +defs["ImVector_Pair__grow_capacity"][1]["signature"] = "(int)const" +defs["ImVector_Pair__grow_capacity"][1]["stname"] = "ImVector_Pair" +defs["ImVector_Pair__grow_capacity"][1]["templatedgen"] = true +defs["ImVector_Pair__grow_capacity"]["(int)const"] = defs["ImVector_Pair__grow_capacity"][1] +defs["ImVector_Pair_back"] = {} +defs["ImVector_Pair_back"][1] = {} +defs["ImVector_Pair_back"][1]["args"] = "(ImVector_Pair* self)" +defs["ImVector_Pair_back"][1]["argsT"] = {} +defs["ImVector_Pair_back"][1]["argsT"][1] = {} +defs["ImVector_Pair_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_Pair_back"][1]["argsT"][1]["type"] = "ImVector_Pair*" +defs["ImVector_Pair_back"][1]["call_args"] = "()" +defs["ImVector_Pair_back"][1]["cimguiname"] = "ImVector_Pair_back" +defs["ImVector_Pair_back"][1]["defaults"] = {} +defs["ImVector_Pair_back"][1]["funcname"] = "back" +defs["ImVector_Pair_back"][1]["ov_cimguiname"] = "ImVector_Pair_back" +defs["ImVector_Pair_back"][1]["ret"] = "Pair*" +defs["ImVector_Pair_back"][1]["retref"] = "&" +defs["ImVector_Pair_back"][1]["signature"] = "()" +defs["ImVector_Pair_back"][1]["stname"] = "ImVector_Pair" +defs["ImVector_Pair_back"][1]["templatedgen"] = true +defs["ImVector_Pair_back"][2] = {} +defs["ImVector_Pair_back"][2]["args"] = "(const ImVector_Pair* self)" +defs["ImVector_Pair_back"][2]["argsT"] = {} +defs["ImVector_Pair_back"][2]["argsT"][1] = {} +defs["ImVector_Pair_back"][2]["argsT"][1]["name"] = "self" +defs["ImVector_Pair_back"][2]["argsT"][1]["type"] = "const ImVector_Pair*" +defs["ImVector_Pair_back"][2]["call_args"] = "()" +defs["ImVector_Pair_back"][2]["cimguiname"] = "ImVector_Pair_back" +defs["ImVector_Pair_back"][2]["defaults"] = {} +defs["ImVector_Pair_back"][2]["funcname"] = "back" +defs["ImVector_Pair_back"][2]["ov_cimguiname"] = "ImVector_Pair_back_const" +defs["ImVector_Pair_back"][2]["ret"] = "Pair const *" +defs["ImVector_Pair_back"][2]["retref"] = "&" +defs["ImVector_Pair_back"][2]["signature"] = "()const" +defs["ImVector_Pair_back"][2]["stname"] = "ImVector_Pair" +defs["ImVector_Pair_back"][2]["templatedgen"] = true +defs["ImVector_Pair_back"]["()"] = defs["ImVector_Pair_back"][1] +defs["ImVector_Pair_back"]["()const"] = defs["ImVector_Pair_back"][2] +defs["ImVector_Pair_begin"] = {} +defs["ImVector_Pair_begin"][1] = {} +defs["ImVector_Pair_begin"][1]["args"] = "(ImVector_Pair* self)" +defs["ImVector_Pair_begin"][1]["argsT"] = {} +defs["ImVector_Pair_begin"][1]["argsT"][1] = {} +defs["ImVector_Pair_begin"][1]["argsT"][1]["name"] = "self" +defs["ImVector_Pair_begin"][1]["argsT"][1]["type"] = "ImVector_Pair*" +defs["ImVector_Pair_begin"][1]["call_args"] = "()" +defs["ImVector_Pair_begin"][1]["cimguiname"] = "ImVector_Pair_begin" +defs["ImVector_Pair_begin"][1]["defaults"] = {} +defs["ImVector_Pair_begin"][1]["funcname"] = "begin" +defs["ImVector_Pair_begin"][1]["ov_cimguiname"] = "ImVector_Pair_begin" +defs["ImVector_Pair_begin"][1]["ret"] = "Pair*" +defs["ImVector_Pair_begin"][1]["signature"] = "()" +defs["ImVector_Pair_begin"][1]["stname"] = "ImVector_Pair" +defs["ImVector_Pair_begin"][1]["templatedgen"] = true +defs["ImVector_Pair_begin"][2] = {} +defs["ImVector_Pair_begin"][2]["args"] = "(const ImVector_Pair* self)" +defs["ImVector_Pair_begin"][2]["argsT"] = {} +defs["ImVector_Pair_begin"][2]["argsT"][1] = {} +defs["ImVector_Pair_begin"][2]["argsT"][1]["name"] = "self" +defs["ImVector_Pair_begin"][2]["argsT"][1]["type"] = "const ImVector_Pair*" +defs["ImVector_Pair_begin"][2]["call_args"] = "()" +defs["ImVector_Pair_begin"][2]["cimguiname"] = "ImVector_Pair_begin" +defs["ImVector_Pair_begin"][2]["defaults"] = {} +defs["ImVector_Pair_begin"][2]["funcname"] = "begin" +defs["ImVector_Pair_begin"][2]["ov_cimguiname"] = "ImVector_Pair_begin_const" +defs["ImVector_Pair_begin"][2]["ret"] = "Pair const *" +defs["ImVector_Pair_begin"][2]["signature"] = "()const" +defs["ImVector_Pair_begin"][2]["stname"] = "ImVector_Pair" +defs["ImVector_Pair_begin"][2]["templatedgen"] = true +defs["ImVector_Pair_begin"]["()"] = defs["ImVector_Pair_begin"][1] +defs["ImVector_Pair_begin"]["()const"] = defs["ImVector_Pair_begin"][2] +defs["ImVector_Pair_capacity"] = {} +defs["ImVector_Pair_capacity"][1] = {} +defs["ImVector_Pair_capacity"][1]["args"] = "(const ImVector_Pair* self)" +defs["ImVector_Pair_capacity"][1]["argsT"] = {} +defs["ImVector_Pair_capacity"][1]["argsT"][1] = {} +defs["ImVector_Pair_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_Pair_capacity"][1]["argsT"][1]["type"] = "const ImVector_Pair*" +defs["ImVector_Pair_capacity"][1]["call_args"] = "()" +defs["ImVector_Pair_capacity"][1]["cimguiname"] = "ImVector_Pair_capacity" +defs["ImVector_Pair_capacity"][1]["defaults"] = {} +defs["ImVector_Pair_capacity"][1]["funcname"] = "capacity" +defs["ImVector_Pair_capacity"][1]["ov_cimguiname"] = "ImVector_Pair_capacity" +defs["ImVector_Pair_capacity"][1]["ret"] = "int" +defs["ImVector_Pair_capacity"][1]["signature"] = "()const" +defs["ImVector_Pair_capacity"][1]["stname"] = "ImVector_Pair" +defs["ImVector_Pair_capacity"][1]["templatedgen"] = true +defs["ImVector_Pair_capacity"]["()const"] = defs["ImVector_Pair_capacity"][1] +defs["ImVector_Pair_clear"] = {} +defs["ImVector_Pair_clear"][1] = {} +defs["ImVector_Pair_clear"][1]["args"] = "(ImVector_Pair* self)" +defs["ImVector_Pair_clear"][1]["argsT"] = {} +defs["ImVector_Pair_clear"][1]["argsT"][1] = {} +defs["ImVector_Pair_clear"][1]["argsT"][1]["name"] = "self" +defs["ImVector_Pair_clear"][1]["argsT"][1]["type"] = "ImVector_Pair*" +defs["ImVector_Pair_clear"][1]["call_args"] = "()" +defs["ImVector_Pair_clear"][1]["cimguiname"] = "ImVector_Pair_clear" +defs["ImVector_Pair_clear"][1]["defaults"] = {} +defs["ImVector_Pair_clear"][1]["funcname"] = "clear" +defs["ImVector_Pair_clear"][1]["ov_cimguiname"] = "ImVector_Pair_clear" +defs["ImVector_Pair_clear"][1]["ret"] = "void" +defs["ImVector_Pair_clear"][1]["signature"] = "()" +defs["ImVector_Pair_clear"][1]["stname"] = "ImVector_Pair" +defs["ImVector_Pair_clear"][1]["templatedgen"] = true +defs["ImVector_Pair_clear"]["()"] = defs["ImVector_Pair_clear"][1] +defs["ImVector_Pair_contains"] = {} +defs["ImVector_Pair_contains"][1] = {} +defs["ImVector_Pair_contains"][1]["args"] = "(const ImVector_Pair* self,const Pair v)" +defs["ImVector_Pair_contains"][1]["argsT"] = {} +defs["ImVector_Pair_contains"][1]["argsT"][1] = {} +defs["ImVector_Pair_contains"][1]["argsT"][1]["name"] = "self" +defs["ImVector_Pair_contains"][1]["argsT"][1]["type"] = "const ImVector_Pair*" +defs["ImVector_Pair_contains"][1]["argsT"][2] = {} +defs["ImVector_Pair_contains"][1]["argsT"][2]["name"] = "v" +defs["ImVector_Pair_contains"][1]["argsT"][2]["type"] = "const Pair" +defs["ImVector_Pair_contains"][1]["call_args"] = "(v)" +defs["ImVector_Pair_contains"][1]["cimguiname"] = "ImVector_Pair_contains" +defs["ImVector_Pair_contains"][1]["defaults"] = {} +defs["ImVector_Pair_contains"][1]["funcname"] = "contains" +defs["ImVector_Pair_contains"][1]["ov_cimguiname"] = "ImVector_Pair_contains" +defs["ImVector_Pair_contains"][1]["ret"] = "bool" +defs["ImVector_Pair_contains"][1]["signature"] = "(const Pair)const" +defs["ImVector_Pair_contains"][1]["stname"] = "ImVector_Pair" +defs["ImVector_Pair_contains"][1]["templatedgen"] = true +defs["ImVector_Pair_contains"]["(const Pair)const"] = defs["ImVector_Pair_contains"][1] +defs["ImVector_Pair_destroy"] = {} +defs["ImVector_Pair_destroy"][1] = {} +defs["ImVector_Pair_destroy"][1]["args"] = "(ImVector_Pair* self)" +defs["ImVector_Pair_destroy"][1]["argsT"] = {} +defs["ImVector_Pair_destroy"][1]["argsT"][1] = {} +defs["ImVector_Pair_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImVector_Pair_destroy"][1]["argsT"][1]["type"] = "ImVector_Pair*" +defs["ImVector_Pair_destroy"][1]["call_args"] = "(self)" +defs["ImVector_Pair_destroy"][1]["cimguiname"] = "ImVector_Pair_destroy" +defs["ImVector_Pair_destroy"][1]["defaults"] = {} +defs["ImVector_Pair_destroy"][1]["destructor"] = true +defs["ImVector_Pair_destroy"][1]["ov_cimguiname"] = "ImVector_Pair_destroy" +defs["ImVector_Pair_destroy"][1]["ret"] = "void" +defs["ImVector_Pair_destroy"][1]["signature"] = "(ImVector_Pair*)" +defs["ImVector_Pair_destroy"][1]["stname"] = "ImVector_Pair" +defs["ImVector_Pair_destroy"]["(ImVector_Pair*)"] = defs["ImVector_Pair_destroy"][1] +defs["ImVector_Pair_empty"] = {} +defs["ImVector_Pair_empty"][1] = {} +defs["ImVector_Pair_empty"][1]["args"] = "(const ImVector_Pair* self)" +defs["ImVector_Pair_empty"][1]["argsT"] = {} +defs["ImVector_Pair_empty"][1]["argsT"][1] = {} +defs["ImVector_Pair_empty"][1]["argsT"][1]["name"] = "self" +defs["ImVector_Pair_empty"][1]["argsT"][1]["type"] = "const ImVector_Pair*" +defs["ImVector_Pair_empty"][1]["call_args"] = "()" +defs["ImVector_Pair_empty"][1]["cimguiname"] = "ImVector_Pair_empty" +defs["ImVector_Pair_empty"][1]["defaults"] = {} +defs["ImVector_Pair_empty"][1]["funcname"] = "empty" +defs["ImVector_Pair_empty"][1]["ov_cimguiname"] = "ImVector_Pair_empty" +defs["ImVector_Pair_empty"][1]["ret"] = "bool" +defs["ImVector_Pair_empty"][1]["signature"] = "()const" +defs["ImVector_Pair_empty"][1]["stname"] = "ImVector_Pair" +defs["ImVector_Pair_empty"][1]["templatedgen"] = true +defs["ImVector_Pair_empty"]["()const"] = defs["ImVector_Pair_empty"][1] +defs["ImVector_Pair_end"] = {} +defs["ImVector_Pair_end"][1] = {} +defs["ImVector_Pair_end"][1]["args"] = "(ImVector_Pair* self)" +defs["ImVector_Pair_end"][1]["argsT"] = {} +defs["ImVector_Pair_end"][1]["argsT"][1] = {} +defs["ImVector_Pair_end"][1]["argsT"][1]["name"] = "self" +defs["ImVector_Pair_end"][1]["argsT"][1]["type"] = "ImVector_Pair*" +defs["ImVector_Pair_end"][1]["call_args"] = "()" +defs["ImVector_Pair_end"][1]["cimguiname"] = "ImVector_Pair_end" +defs["ImVector_Pair_end"][1]["defaults"] = {} +defs["ImVector_Pair_end"][1]["funcname"] = "end" +defs["ImVector_Pair_end"][1]["ov_cimguiname"] = "ImVector_Pair_end" +defs["ImVector_Pair_end"][1]["ret"] = "Pair*" +defs["ImVector_Pair_end"][1]["signature"] = "()" +defs["ImVector_Pair_end"][1]["stname"] = "ImVector_Pair" +defs["ImVector_Pair_end"][1]["templatedgen"] = true +defs["ImVector_Pair_end"][2] = {} +defs["ImVector_Pair_end"][2]["args"] = "(const ImVector_Pair* self)" +defs["ImVector_Pair_end"][2]["argsT"] = {} +defs["ImVector_Pair_end"][2]["argsT"][1] = {} +defs["ImVector_Pair_end"][2]["argsT"][1]["name"] = "self" +defs["ImVector_Pair_end"][2]["argsT"][1]["type"] = "const ImVector_Pair*" +defs["ImVector_Pair_end"][2]["call_args"] = "()" +defs["ImVector_Pair_end"][2]["cimguiname"] = "ImVector_Pair_end" +defs["ImVector_Pair_end"][2]["defaults"] = {} +defs["ImVector_Pair_end"][2]["funcname"] = "end" +defs["ImVector_Pair_end"][2]["ov_cimguiname"] = "ImVector_Pair_end_const" +defs["ImVector_Pair_end"][2]["ret"] = "Pair const *" +defs["ImVector_Pair_end"][2]["signature"] = "()const" +defs["ImVector_Pair_end"][2]["stname"] = "ImVector_Pair" +defs["ImVector_Pair_end"][2]["templatedgen"] = true +defs["ImVector_Pair_end"]["()"] = defs["ImVector_Pair_end"][1] +defs["ImVector_Pair_end"]["()const"] = defs["ImVector_Pair_end"][2] +defs["ImVector_Pair_erase"] = {} +defs["ImVector_Pair_erase"][1] = {} +defs["ImVector_Pair_erase"][1]["args"] = "(ImVector_Pair* self,Pair const * it)" +defs["ImVector_Pair_erase"][1]["argsT"] = {} +defs["ImVector_Pair_erase"][1]["argsT"][1] = {} +defs["ImVector_Pair_erase"][1]["argsT"][1]["name"] = "self" +defs["ImVector_Pair_erase"][1]["argsT"][1]["type"] = "ImVector_Pair*" +defs["ImVector_Pair_erase"][1]["argsT"][2] = {} +defs["ImVector_Pair_erase"][1]["argsT"][2]["name"] = "it" +defs["ImVector_Pair_erase"][1]["argsT"][2]["type"] = "Pair const *" +defs["ImVector_Pair_erase"][1]["call_args"] = "(it)" +defs["ImVector_Pair_erase"][1]["cimguiname"] = "ImVector_Pair_erase" +defs["ImVector_Pair_erase"][1]["defaults"] = {} +defs["ImVector_Pair_erase"][1]["funcname"] = "erase" +defs["ImVector_Pair_erase"][1]["ov_cimguiname"] = "ImVector_Pair_erase" +defs["ImVector_Pair_erase"][1]["ret"] = "Pair*" +defs["ImVector_Pair_erase"][1]["signature"] = "(const Pair*)" +defs["ImVector_Pair_erase"][1]["stname"] = "ImVector_Pair" +defs["ImVector_Pair_erase"][1]["templatedgen"] = true +defs["ImVector_Pair_erase"][2] = {} +defs["ImVector_Pair_erase"][2]["args"] = "(ImVector_Pair* self,Pair const * it,Pair const * it_last)" +defs["ImVector_Pair_erase"][2]["argsT"] = {} +defs["ImVector_Pair_erase"][2]["argsT"][1] = {} +defs["ImVector_Pair_erase"][2]["argsT"][1]["name"] = "self" +defs["ImVector_Pair_erase"][2]["argsT"][1]["type"] = "ImVector_Pair*" +defs["ImVector_Pair_erase"][2]["argsT"][2] = {} +defs["ImVector_Pair_erase"][2]["argsT"][2]["name"] = "it" +defs["ImVector_Pair_erase"][2]["argsT"][2]["type"] = "Pair const *" +defs["ImVector_Pair_erase"][2]["argsT"][3] = {} +defs["ImVector_Pair_erase"][2]["argsT"][3]["name"] = "it_last" +defs["ImVector_Pair_erase"][2]["argsT"][3]["type"] = "Pair const *" +defs["ImVector_Pair_erase"][2]["call_args"] = "(it,it_last)" +defs["ImVector_Pair_erase"][2]["cimguiname"] = "ImVector_Pair_erase" +defs["ImVector_Pair_erase"][2]["defaults"] = {} +defs["ImVector_Pair_erase"][2]["funcname"] = "erase" +defs["ImVector_Pair_erase"][2]["ov_cimguiname"] = "ImVector_Pair_eraseTPtr" +defs["ImVector_Pair_erase"][2]["ret"] = "Pair*" +defs["ImVector_Pair_erase"][2]["signature"] = "(const Pair*,const Pair*)" +defs["ImVector_Pair_erase"][2]["stname"] = "ImVector_Pair" +defs["ImVector_Pair_erase"][2]["templatedgen"] = true +defs["ImVector_Pair_erase"]["(const Pair*)"] = defs["ImVector_Pair_erase"][1] +defs["ImVector_Pair_erase"]["(const Pair*,const Pair*)"] = defs["ImVector_Pair_erase"][2] +defs["ImVector_Pair_erase_unsorted"] = {} +defs["ImVector_Pair_erase_unsorted"][1] = {} +defs["ImVector_Pair_erase_unsorted"][1]["args"] = "(ImVector_Pair* self,Pair const * it)" +defs["ImVector_Pair_erase_unsorted"][1]["argsT"] = {} +defs["ImVector_Pair_erase_unsorted"][1]["argsT"][1] = {} +defs["ImVector_Pair_erase_unsorted"][1]["argsT"][1]["name"] = "self" +defs["ImVector_Pair_erase_unsorted"][1]["argsT"][1]["type"] = "ImVector_Pair*" +defs["ImVector_Pair_erase_unsorted"][1]["argsT"][2] = {} +defs["ImVector_Pair_erase_unsorted"][1]["argsT"][2]["name"] = "it" +defs["ImVector_Pair_erase_unsorted"][1]["argsT"][2]["type"] = "Pair const *" +defs["ImVector_Pair_erase_unsorted"][1]["call_args"] = "(it)" +defs["ImVector_Pair_erase_unsorted"][1]["cimguiname"] = "ImVector_Pair_erase_unsorted" +defs["ImVector_Pair_erase_unsorted"][1]["defaults"] = {} +defs["ImVector_Pair_erase_unsorted"][1]["funcname"] = "erase_unsorted" +defs["ImVector_Pair_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_Pair_erase_unsorted" +defs["ImVector_Pair_erase_unsorted"][1]["ret"] = "Pair*" +defs["ImVector_Pair_erase_unsorted"][1]["signature"] = "(const Pair*)" +defs["ImVector_Pair_erase_unsorted"][1]["stname"] = "ImVector_Pair" +defs["ImVector_Pair_erase_unsorted"][1]["templatedgen"] = true +defs["ImVector_Pair_erase_unsorted"]["(const Pair*)"] = defs["ImVector_Pair_erase_unsorted"][1] +defs["ImVector_Pair_front"] = {} +defs["ImVector_Pair_front"][1] = {} +defs["ImVector_Pair_front"][1]["args"] = "(ImVector_Pair* self)" +defs["ImVector_Pair_front"][1]["argsT"] = {} +defs["ImVector_Pair_front"][1]["argsT"][1] = {} +defs["ImVector_Pair_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_Pair_front"][1]["argsT"][1]["type"] = "ImVector_Pair*" +defs["ImVector_Pair_front"][1]["call_args"] = "()" +defs["ImVector_Pair_front"][1]["cimguiname"] = "ImVector_Pair_front" +defs["ImVector_Pair_front"][1]["defaults"] = {} +defs["ImVector_Pair_front"][1]["funcname"] = "front" +defs["ImVector_Pair_front"][1]["ov_cimguiname"] = "ImVector_Pair_front" +defs["ImVector_Pair_front"][1]["ret"] = "Pair*" +defs["ImVector_Pair_front"][1]["retref"] = "&" +defs["ImVector_Pair_front"][1]["signature"] = "()" +defs["ImVector_Pair_front"][1]["stname"] = "ImVector_Pair" +defs["ImVector_Pair_front"][1]["templatedgen"] = true +defs["ImVector_Pair_front"][2] = {} +defs["ImVector_Pair_front"][2]["args"] = "(const ImVector_Pair* self)" +defs["ImVector_Pair_front"][2]["argsT"] = {} +defs["ImVector_Pair_front"][2]["argsT"][1] = {} +defs["ImVector_Pair_front"][2]["argsT"][1]["name"] = "self" +defs["ImVector_Pair_front"][2]["argsT"][1]["type"] = "const ImVector_Pair*" +defs["ImVector_Pair_front"][2]["call_args"] = "()" +defs["ImVector_Pair_front"][2]["cimguiname"] = "ImVector_Pair_front" +defs["ImVector_Pair_front"][2]["defaults"] = {} +defs["ImVector_Pair_front"][2]["funcname"] = "front" +defs["ImVector_Pair_front"][2]["ov_cimguiname"] = "ImVector_Pair_front_const" +defs["ImVector_Pair_front"][2]["ret"] = "Pair const *" +defs["ImVector_Pair_front"][2]["retref"] = "&" +defs["ImVector_Pair_front"][2]["signature"] = "()const" +defs["ImVector_Pair_front"][2]["stname"] = "ImVector_Pair" +defs["ImVector_Pair_front"][2]["templatedgen"] = true +defs["ImVector_Pair_front"]["()"] = defs["ImVector_Pair_front"][1] +defs["ImVector_Pair_front"]["()const"] = defs["ImVector_Pair_front"][2] +defs["ImVector_Pair_index_from_ptr"] = {} +defs["ImVector_Pair_index_from_ptr"][1] = {} +defs["ImVector_Pair_index_from_ptr"][1]["args"] = "(const ImVector_Pair* self,Pair const * it)" +defs["ImVector_Pair_index_from_ptr"][1]["argsT"] = {} +defs["ImVector_Pair_index_from_ptr"][1]["argsT"][1] = {} +defs["ImVector_Pair_index_from_ptr"][1]["argsT"][1]["name"] = "self" +defs["ImVector_Pair_index_from_ptr"][1]["argsT"][1]["type"] = "const ImVector_Pair*" +defs["ImVector_Pair_index_from_ptr"][1]["argsT"][2] = {} +defs["ImVector_Pair_index_from_ptr"][1]["argsT"][2]["name"] = "it" +defs["ImVector_Pair_index_from_ptr"][1]["argsT"][2]["type"] = "Pair const *" +defs["ImVector_Pair_index_from_ptr"][1]["call_args"] = "(it)" +defs["ImVector_Pair_index_from_ptr"][1]["cimguiname"] = "ImVector_Pair_index_from_ptr" +defs["ImVector_Pair_index_from_ptr"][1]["defaults"] = {} +defs["ImVector_Pair_index_from_ptr"][1]["funcname"] = "index_from_ptr" +defs["ImVector_Pair_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_Pair_index_from_ptr" +defs["ImVector_Pair_index_from_ptr"][1]["ret"] = "int" +defs["ImVector_Pair_index_from_ptr"][1]["signature"] = "(const Pair*)const" +defs["ImVector_Pair_index_from_ptr"][1]["stname"] = "ImVector_Pair" +defs["ImVector_Pair_index_from_ptr"][1]["templatedgen"] = true +defs["ImVector_Pair_index_from_ptr"]["(const Pair*)const"] = defs["ImVector_Pair_index_from_ptr"][1] +defs["ImVector_Pair_insert"] = {} +defs["ImVector_Pair_insert"][1] = {} +defs["ImVector_Pair_insert"][1]["args"] = "(ImVector_Pair* self,Pair const * it,const Pair v)" +defs["ImVector_Pair_insert"][1]["argsT"] = {} +defs["ImVector_Pair_insert"][1]["argsT"][1] = {} +defs["ImVector_Pair_insert"][1]["argsT"][1]["name"] = "self" +defs["ImVector_Pair_insert"][1]["argsT"][1]["type"] = "ImVector_Pair*" +defs["ImVector_Pair_insert"][1]["argsT"][2] = {} +defs["ImVector_Pair_insert"][1]["argsT"][2]["name"] = "it" +defs["ImVector_Pair_insert"][1]["argsT"][2]["type"] = "Pair const *" +defs["ImVector_Pair_insert"][1]["argsT"][3] = {} +defs["ImVector_Pair_insert"][1]["argsT"][3]["name"] = "v" +defs["ImVector_Pair_insert"][1]["argsT"][3]["type"] = "const Pair" +defs["ImVector_Pair_insert"][1]["call_args"] = "(it,v)" +defs["ImVector_Pair_insert"][1]["cimguiname"] = "ImVector_Pair_insert" +defs["ImVector_Pair_insert"][1]["defaults"] = {} +defs["ImVector_Pair_insert"][1]["funcname"] = "insert" +defs["ImVector_Pair_insert"][1]["ov_cimguiname"] = "ImVector_Pair_insert" +defs["ImVector_Pair_insert"][1]["ret"] = "Pair*" +defs["ImVector_Pair_insert"][1]["signature"] = "(const Pair*,const Pair)" +defs["ImVector_Pair_insert"][1]["stname"] = "ImVector_Pair" +defs["ImVector_Pair_insert"][1]["templatedgen"] = true +defs["ImVector_Pair_insert"]["(const Pair*,const Pair)"] = defs["ImVector_Pair_insert"][1] +defs["ImVector_Pair_pop_back"] = {} +defs["ImVector_Pair_pop_back"][1] = {} +defs["ImVector_Pair_pop_back"][1]["args"] = "(ImVector_Pair* self)" +defs["ImVector_Pair_pop_back"][1]["argsT"] = {} +defs["ImVector_Pair_pop_back"][1]["argsT"][1] = {} +defs["ImVector_Pair_pop_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_Pair_pop_back"][1]["argsT"][1]["type"] = "ImVector_Pair*" +defs["ImVector_Pair_pop_back"][1]["call_args"] = "()" +defs["ImVector_Pair_pop_back"][1]["cimguiname"] = "ImVector_Pair_pop_back" +defs["ImVector_Pair_pop_back"][1]["defaults"] = {} +defs["ImVector_Pair_pop_back"][1]["funcname"] = "pop_back" +defs["ImVector_Pair_pop_back"][1]["ov_cimguiname"] = "ImVector_Pair_pop_back" +defs["ImVector_Pair_pop_back"][1]["ret"] = "void" +defs["ImVector_Pair_pop_back"][1]["signature"] = "()" +defs["ImVector_Pair_pop_back"][1]["stname"] = "ImVector_Pair" +defs["ImVector_Pair_pop_back"][1]["templatedgen"] = true +defs["ImVector_Pair_pop_back"]["()"] = defs["ImVector_Pair_pop_back"][1] +defs["ImVector_Pair_push_back"] = {} +defs["ImVector_Pair_push_back"][1] = {} +defs["ImVector_Pair_push_back"][1]["args"] = "(ImVector_Pair* self,const Pair v)" +defs["ImVector_Pair_push_back"][1]["argsT"] = {} +defs["ImVector_Pair_push_back"][1]["argsT"][1] = {} +defs["ImVector_Pair_push_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_Pair_push_back"][1]["argsT"][1]["type"] = "ImVector_Pair*" +defs["ImVector_Pair_push_back"][1]["argsT"][2] = {} +defs["ImVector_Pair_push_back"][1]["argsT"][2]["name"] = "v" +defs["ImVector_Pair_push_back"][1]["argsT"][2]["type"] = "const Pair" +defs["ImVector_Pair_push_back"][1]["call_args"] = "(v)" +defs["ImVector_Pair_push_back"][1]["cimguiname"] = "ImVector_Pair_push_back" +defs["ImVector_Pair_push_back"][1]["defaults"] = {} +defs["ImVector_Pair_push_back"][1]["funcname"] = "push_back" +defs["ImVector_Pair_push_back"][1]["ov_cimguiname"] = "ImVector_Pair_push_back" +defs["ImVector_Pair_push_back"][1]["ret"] = "void" +defs["ImVector_Pair_push_back"][1]["signature"] = "(const Pair)" +defs["ImVector_Pair_push_back"][1]["stname"] = "ImVector_Pair" +defs["ImVector_Pair_push_back"][1]["templatedgen"] = true +defs["ImVector_Pair_push_back"]["(const Pair)"] = defs["ImVector_Pair_push_back"][1] +defs["ImVector_Pair_push_front"] = {} +defs["ImVector_Pair_push_front"][1] = {} +defs["ImVector_Pair_push_front"][1]["args"] = "(ImVector_Pair* self,const Pair v)" +defs["ImVector_Pair_push_front"][1]["argsT"] = {} +defs["ImVector_Pair_push_front"][1]["argsT"][1] = {} +defs["ImVector_Pair_push_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_Pair_push_front"][1]["argsT"][1]["type"] = "ImVector_Pair*" +defs["ImVector_Pair_push_front"][1]["argsT"][2] = {} +defs["ImVector_Pair_push_front"][1]["argsT"][2]["name"] = "v" +defs["ImVector_Pair_push_front"][1]["argsT"][2]["type"] = "const Pair" +defs["ImVector_Pair_push_front"][1]["call_args"] = "(v)" +defs["ImVector_Pair_push_front"][1]["cimguiname"] = "ImVector_Pair_push_front" +defs["ImVector_Pair_push_front"][1]["defaults"] = {} +defs["ImVector_Pair_push_front"][1]["funcname"] = "push_front" +defs["ImVector_Pair_push_front"][1]["ov_cimguiname"] = "ImVector_Pair_push_front" +defs["ImVector_Pair_push_front"][1]["ret"] = "void" +defs["ImVector_Pair_push_front"][1]["signature"] = "(const Pair)" +defs["ImVector_Pair_push_front"][1]["stname"] = "ImVector_Pair" +defs["ImVector_Pair_push_front"][1]["templatedgen"] = true +defs["ImVector_Pair_push_front"]["(const Pair)"] = defs["ImVector_Pair_push_front"][1] +defs["ImVector_Pair_reserve"] = {} +defs["ImVector_Pair_reserve"][1] = {} +defs["ImVector_Pair_reserve"][1]["args"] = "(ImVector_Pair* self,int new_capacity)" +defs["ImVector_Pair_reserve"][1]["argsT"] = {} +defs["ImVector_Pair_reserve"][1]["argsT"][1] = {} +defs["ImVector_Pair_reserve"][1]["argsT"][1]["name"] = "self" +defs["ImVector_Pair_reserve"][1]["argsT"][1]["type"] = "ImVector_Pair*" +defs["ImVector_Pair_reserve"][1]["argsT"][2] = {} +defs["ImVector_Pair_reserve"][1]["argsT"][2]["name"] = "new_capacity" +defs["ImVector_Pair_reserve"][1]["argsT"][2]["type"] = "int" +defs["ImVector_Pair_reserve"][1]["call_args"] = "(new_capacity)" +defs["ImVector_Pair_reserve"][1]["cimguiname"] = "ImVector_Pair_reserve" +defs["ImVector_Pair_reserve"][1]["defaults"] = {} +defs["ImVector_Pair_reserve"][1]["funcname"] = "reserve" +defs["ImVector_Pair_reserve"][1]["ov_cimguiname"] = "ImVector_Pair_reserve" +defs["ImVector_Pair_reserve"][1]["ret"] = "void" +defs["ImVector_Pair_reserve"][1]["signature"] = "(int)" +defs["ImVector_Pair_reserve"][1]["stname"] = "ImVector_Pair" +defs["ImVector_Pair_reserve"][1]["templatedgen"] = true +defs["ImVector_Pair_reserve"]["(int)"] = defs["ImVector_Pair_reserve"][1] +defs["ImVector_Pair_resize"] = {} +defs["ImVector_Pair_resize"][1] = {} +defs["ImVector_Pair_resize"][1]["args"] = "(ImVector_Pair* self,int new_size)" +defs["ImVector_Pair_resize"][1]["argsT"] = {} +defs["ImVector_Pair_resize"][1]["argsT"][1] = {} +defs["ImVector_Pair_resize"][1]["argsT"][1]["name"] = "self" +defs["ImVector_Pair_resize"][1]["argsT"][1]["type"] = "ImVector_Pair*" +defs["ImVector_Pair_resize"][1]["argsT"][2] = {} +defs["ImVector_Pair_resize"][1]["argsT"][2]["name"] = "new_size" +defs["ImVector_Pair_resize"][1]["argsT"][2]["type"] = "int" +defs["ImVector_Pair_resize"][1]["call_args"] = "(new_size)" +defs["ImVector_Pair_resize"][1]["cimguiname"] = "ImVector_Pair_resize" +defs["ImVector_Pair_resize"][1]["defaults"] = {} +defs["ImVector_Pair_resize"][1]["funcname"] = "resize" +defs["ImVector_Pair_resize"][1]["ov_cimguiname"] = "ImVector_Pair_resize" +defs["ImVector_Pair_resize"][1]["ret"] = "void" +defs["ImVector_Pair_resize"][1]["signature"] = "(int)" +defs["ImVector_Pair_resize"][1]["stname"] = "ImVector_Pair" +defs["ImVector_Pair_resize"][1]["templatedgen"] = true +defs["ImVector_Pair_resize"][2] = {} +defs["ImVector_Pair_resize"][2]["args"] = "(ImVector_Pair* self,int new_size,const Pair v)" +defs["ImVector_Pair_resize"][2]["argsT"] = {} +defs["ImVector_Pair_resize"][2]["argsT"][1] = {} +defs["ImVector_Pair_resize"][2]["argsT"][1]["name"] = "self" +defs["ImVector_Pair_resize"][2]["argsT"][1]["type"] = "ImVector_Pair*" +defs["ImVector_Pair_resize"][2]["argsT"][2] = {} +defs["ImVector_Pair_resize"][2]["argsT"][2]["name"] = "new_size" +defs["ImVector_Pair_resize"][2]["argsT"][2]["type"] = "int" +defs["ImVector_Pair_resize"][2]["argsT"][3] = {} +defs["ImVector_Pair_resize"][2]["argsT"][3]["name"] = "v" +defs["ImVector_Pair_resize"][2]["argsT"][3]["type"] = "const Pair" +defs["ImVector_Pair_resize"][2]["call_args"] = "(new_size,v)" +defs["ImVector_Pair_resize"][2]["cimguiname"] = "ImVector_Pair_resize" +defs["ImVector_Pair_resize"][2]["defaults"] = {} +defs["ImVector_Pair_resize"][2]["funcname"] = "resize" +defs["ImVector_Pair_resize"][2]["ov_cimguiname"] = "ImVector_Pair_resizeT" +defs["ImVector_Pair_resize"][2]["ret"] = "void" +defs["ImVector_Pair_resize"][2]["signature"] = "(int,const Pair)" +defs["ImVector_Pair_resize"][2]["stname"] = "ImVector_Pair" +defs["ImVector_Pair_resize"][2]["templatedgen"] = true +defs["ImVector_Pair_resize"]["(int)"] = defs["ImVector_Pair_resize"][1] +defs["ImVector_Pair_resize"]["(int,const Pair)"] = defs["ImVector_Pair_resize"][2] +defs["ImVector_Pair_size"] = {} +defs["ImVector_Pair_size"][1] = {} +defs["ImVector_Pair_size"][1]["args"] = "(const ImVector_Pair* self)" +defs["ImVector_Pair_size"][1]["argsT"] = {} +defs["ImVector_Pair_size"][1]["argsT"][1] = {} +defs["ImVector_Pair_size"][1]["argsT"][1]["name"] = "self" +defs["ImVector_Pair_size"][1]["argsT"][1]["type"] = "const ImVector_Pair*" +defs["ImVector_Pair_size"][1]["call_args"] = "()" +defs["ImVector_Pair_size"][1]["cimguiname"] = "ImVector_Pair_size" +defs["ImVector_Pair_size"][1]["defaults"] = {} +defs["ImVector_Pair_size"][1]["funcname"] = "size" +defs["ImVector_Pair_size"][1]["ov_cimguiname"] = "ImVector_Pair_size" +defs["ImVector_Pair_size"][1]["ret"] = "int" +defs["ImVector_Pair_size"][1]["signature"] = "()const" +defs["ImVector_Pair_size"][1]["stname"] = "ImVector_Pair" +defs["ImVector_Pair_size"][1]["templatedgen"] = true +defs["ImVector_Pair_size"]["()const"] = defs["ImVector_Pair_size"][1] +defs["ImVector_Pair_size_in_bytes"] = {} +defs["ImVector_Pair_size_in_bytes"][1] = {} +defs["ImVector_Pair_size_in_bytes"][1]["args"] = "(const ImVector_Pair* self)" +defs["ImVector_Pair_size_in_bytes"][1]["argsT"] = {} +defs["ImVector_Pair_size_in_bytes"][1]["argsT"][1] = {} +defs["ImVector_Pair_size_in_bytes"][1]["argsT"][1]["name"] = "self" +defs["ImVector_Pair_size_in_bytes"][1]["argsT"][1]["type"] = "const ImVector_Pair*" +defs["ImVector_Pair_size_in_bytes"][1]["call_args"] = "()" +defs["ImVector_Pair_size_in_bytes"][1]["cimguiname"] = "ImVector_Pair_size_in_bytes" +defs["ImVector_Pair_size_in_bytes"][1]["defaults"] = {} +defs["ImVector_Pair_size_in_bytes"][1]["funcname"] = "size_in_bytes" +defs["ImVector_Pair_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_Pair_size_in_bytes" +defs["ImVector_Pair_size_in_bytes"][1]["ret"] = "int" +defs["ImVector_Pair_size_in_bytes"][1]["signature"] = "()const" +defs["ImVector_Pair_size_in_bytes"][1]["stname"] = "ImVector_Pair" +defs["ImVector_Pair_size_in_bytes"][1]["templatedgen"] = true +defs["ImVector_Pair_size_in_bytes"]["()const"] = defs["ImVector_Pair_size_in_bytes"][1] +defs["ImVector_Pair_swap"] = {} +defs["ImVector_Pair_swap"][1] = {} +defs["ImVector_Pair_swap"][1]["args"] = "(ImVector_Pair* self,ImVector_Pair rhs)" +defs["ImVector_Pair_swap"][1]["argsT"] = {} +defs["ImVector_Pair_swap"][1]["argsT"][1] = {} +defs["ImVector_Pair_swap"][1]["argsT"][1]["name"] = "self" +defs["ImVector_Pair_swap"][1]["argsT"][1]["type"] = "ImVector_Pair*" +defs["ImVector_Pair_swap"][1]["argsT"][2] = {} +defs["ImVector_Pair_swap"][1]["argsT"][2]["name"] = "rhs" +defs["ImVector_Pair_swap"][1]["argsT"][2]["type"] = "ImVector_Pair&" +defs["ImVector_Pair_swap"][1]["call_args"] = "(rhs)" +defs["ImVector_Pair_swap"][1]["cimguiname"] = "ImVector_Pair_swap" +defs["ImVector_Pair_swap"][1]["defaults"] = {} +defs["ImVector_Pair_swap"][1]["funcname"] = "swap" +defs["ImVector_Pair_swap"][1]["ov_cimguiname"] = "ImVector_Pair_swap" +defs["ImVector_Pair_swap"][1]["ret"] = "void" +defs["ImVector_Pair_swap"][1]["signature"] = "(ImVector)" +defs["ImVector_Pair_swap"][1]["stname"] = "ImVector_Pair" +defs["ImVector_Pair_swap"][1]["templatedgen"] = true +defs["ImVector_Pair_swap"]["(ImVector)"] = defs["ImVector_Pair_swap"][1] +defs["ImVector_TextRange_ImVector_TextRange"] = {} +defs["ImVector_TextRange_ImVector_TextRange"][1] = {} +defs["ImVector_TextRange_ImVector_TextRange"][1]["args"] = "()" +defs["ImVector_TextRange_ImVector_TextRange"][1]["argsT"] = {} +defs["ImVector_TextRange_ImVector_TextRange"][1]["call_args"] = "()" +defs["ImVector_TextRange_ImVector_TextRange"][1]["cimguiname"] = "ImVector_TextRange_ImVector_TextRange" +defs["ImVector_TextRange_ImVector_TextRange"][1]["constructor"] = true +defs["ImVector_TextRange_ImVector_TextRange"][1]["defaults"] = {} +defs["ImVector_TextRange_ImVector_TextRange"][1]["funcname"] = "ImVector_TextRange" +defs["ImVector_TextRange_ImVector_TextRange"][1]["ov_cimguiname"] = "ImVector_TextRange_ImVector_TextRange" +defs["ImVector_TextRange_ImVector_TextRange"][1]["signature"] = "()" +defs["ImVector_TextRange_ImVector_TextRange"][1]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange_ImVector_TextRange"][1]["templatedgen"] = true +defs["ImVector_TextRange_ImVector_TextRange"][2] = {} +defs["ImVector_TextRange_ImVector_TextRange"][2]["args"] = "(const ImVector_TextRange src)" +defs["ImVector_TextRange_ImVector_TextRange"][2]["argsT"] = {} +defs["ImVector_TextRange_ImVector_TextRange"][2]["argsT"][1] = {} +defs["ImVector_TextRange_ImVector_TextRange"][2]["argsT"][1]["name"] = "src" +defs["ImVector_TextRange_ImVector_TextRange"][2]["argsT"][1]["type"] = "const ImVector_TextRange" +defs["ImVector_TextRange_ImVector_TextRange"][2]["call_args"] = "(src)" +defs["ImVector_TextRange_ImVector_TextRange"][2]["cimguiname"] = "ImVector_TextRange_ImVector_TextRange" +defs["ImVector_TextRange_ImVector_TextRange"][2]["constructor"] = true +defs["ImVector_TextRange_ImVector_TextRange"][2]["defaults"] = {} +defs["ImVector_TextRange_ImVector_TextRange"][2]["funcname"] = "ImVector_TextRange" +defs["ImVector_TextRange_ImVector_TextRange"][2]["ov_cimguiname"] = "ImVector_TextRange_ImVector_TextRangeVector" +defs["ImVector_TextRange_ImVector_TextRange"][2]["signature"] = "(const ImVector)" +defs["ImVector_TextRange_ImVector_TextRange"][2]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange_ImVector_TextRange"][2]["templatedgen"] = true +defs["ImVector_TextRange_ImVector_TextRange"]["()"] = defs["ImVector_TextRange_ImVector_TextRange"][1] +defs["ImVector_TextRange_ImVector_TextRange"]["(const ImVector)"] = defs["ImVector_TextRange_ImVector_TextRange"][2] +defs["ImVector_TextRange__grow_capacity"] = {} +defs["ImVector_TextRange__grow_capacity"][1] = {} +defs["ImVector_TextRange__grow_capacity"][1]["args"] = "(const ImVector_TextRange* self,int sz)" +defs["ImVector_TextRange__grow_capacity"][1]["argsT"] = {} +defs["ImVector_TextRange__grow_capacity"][1]["argsT"][1] = {} +defs["ImVector_TextRange__grow_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_TextRange__grow_capacity"][1]["argsT"][1]["type"] = "const ImVector_TextRange*" +defs["ImVector_TextRange__grow_capacity"][1]["argsT"][2] = {} +defs["ImVector_TextRange__grow_capacity"][1]["argsT"][2]["name"] = "sz" +defs["ImVector_TextRange__grow_capacity"][1]["argsT"][2]["type"] = "int" +defs["ImVector_TextRange__grow_capacity"][1]["call_args"] = "(sz)" +defs["ImVector_TextRange__grow_capacity"][1]["cimguiname"] = "ImVector_TextRange__grow_capacity" +defs["ImVector_TextRange__grow_capacity"][1]["defaults"] = {} +defs["ImVector_TextRange__grow_capacity"][1]["funcname"] = "_grow_capacity" +defs["ImVector_TextRange__grow_capacity"][1]["ov_cimguiname"] = "ImVector_TextRange__grow_capacity" +defs["ImVector_TextRange__grow_capacity"][1]["ret"] = "int" +defs["ImVector_TextRange__grow_capacity"][1]["signature"] = "(int)const" +defs["ImVector_TextRange__grow_capacity"][1]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange__grow_capacity"][1]["templatedgen"] = true +defs["ImVector_TextRange__grow_capacity"]["(int)const"] = defs["ImVector_TextRange__grow_capacity"][1] +defs["ImVector_TextRange_back"] = {} +defs["ImVector_TextRange_back"][1] = {} +defs["ImVector_TextRange_back"][1]["args"] = "(ImVector_TextRange* self)" +defs["ImVector_TextRange_back"][1]["argsT"] = {} +defs["ImVector_TextRange_back"][1]["argsT"][1] = {} +defs["ImVector_TextRange_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_TextRange_back"][1]["argsT"][1]["type"] = "ImVector_TextRange*" +defs["ImVector_TextRange_back"][1]["call_args"] = "()" +defs["ImVector_TextRange_back"][1]["cimguiname"] = "ImVector_TextRange_back" +defs["ImVector_TextRange_back"][1]["defaults"] = {} +defs["ImVector_TextRange_back"][1]["funcname"] = "back" +defs["ImVector_TextRange_back"][1]["ov_cimguiname"] = "ImVector_TextRange_back" +defs["ImVector_TextRange_back"][1]["ret"] = "TextRange*" +defs["ImVector_TextRange_back"][1]["retref"] = "&" +defs["ImVector_TextRange_back"][1]["signature"] = "()" +defs["ImVector_TextRange_back"][1]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange_back"][1]["templatedgen"] = true +defs["ImVector_TextRange_back"][2] = {} +defs["ImVector_TextRange_back"][2]["args"] = "(const ImVector_TextRange* self)" +defs["ImVector_TextRange_back"][2]["argsT"] = {} +defs["ImVector_TextRange_back"][2]["argsT"][1] = {} +defs["ImVector_TextRange_back"][2]["argsT"][1]["name"] = "self" +defs["ImVector_TextRange_back"][2]["argsT"][1]["type"] = "const ImVector_TextRange*" +defs["ImVector_TextRange_back"][2]["call_args"] = "()" +defs["ImVector_TextRange_back"][2]["cimguiname"] = "ImVector_TextRange_back" +defs["ImVector_TextRange_back"][2]["defaults"] = {} +defs["ImVector_TextRange_back"][2]["funcname"] = "back" +defs["ImVector_TextRange_back"][2]["ov_cimguiname"] = "ImVector_TextRange_back_const" +defs["ImVector_TextRange_back"][2]["ret"] = "TextRange const *" +defs["ImVector_TextRange_back"][2]["retref"] = "&" +defs["ImVector_TextRange_back"][2]["signature"] = "()const" +defs["ImVector_TextRange_back"][2]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange_back"][2]["templatedgen"] = true +defs["ImVector_TextRange_back"]["()"] = defs["ImVector_TextRange_back"][1] +defs["ImVector_TextRange_back"]["()const"] = defs["ImVector_TextRange_back"][2] +defs["ImVector_TextRange_begin"] = {} +defs["ImVector_TextRange_begin"][1] = {} +defs["ImVector_TextRange_begin"][1]["args"] = "(ImVector_TextRange* self)" +defs["ImVector_TextRange_begin"][1]["argsT"] = {} +defs["ImVector_TextRange_begin"][1]["argsT"][1] = {} +defs["ImVector_TextRange_begin"][1]["argsT"][1]["name"] = "self" +defs["ImVector_TextRange_begin"][1]["argsT"][1]["type"] = "ImVector_TextRange*" +defs["ImVector_TextRange_begin"][1]["call_args"] = "()" +defs["ImVector_TextRange_begin"][1]["cimguiname"] = "ImVector_TextRange_begin" +defs["ImVector_TextRange_begin"][1]["defaults"] = {} +defs["ImVector_TextRange_begin"][1]["funcname"] = "begin" +defs["ImVector_TextRange_begin"][1]["ov_cimguiname"] = "ImVector_TextRange_begin" +defs["ImVector_TextRange_begin"][1]["ret"] = "TextRange*" +defs["ImVector_TextRange_begin"][1]["signature"] = "()" +defs["ImVector_TextRange_begin"][1]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange_begin"][1]["templatedgen"] = true +defs["ImVector_TextRange_begin"][2] = {} +defs["ImVector_TextRange_begin"][2]["args"] = "(const ImVector_TextRange* self)" +defs["ImVector_TextRange_begin"][2]["argsT"] = {} +defs["ImVector_TextRange_begin"][2]["argsT"][1] = {} +defs["ImVector_TextRange_begin"][2]["argsT"][1]["name"] = "self" +defs["ImVector_TextRange_begin"][2]["argsT"][1]["type"] = "const ImVector_TextRange*" +defs["ImVector_TextRange_begin"][2]["call_args"] = "()" +defs["ImVector_TextRange_begin"][2]["cimguiname"] = "ImVector_TextRange_begin" +defs["ImVector_TextRange_begin"][2]["defaults"] = {} +defs["ImVector_TextRange_begin"][2]["funcname"] = "begin" +defs["ImVector_TextRange_begin"][2]["ov_cimguiname"] = "ImVector_TextRange_begin_const" +defs["ImVector_TextRange_begin"][2]["ret"] = "TextRange const *" +defs["ImVector_TextRange_begin"][2]["signature"] = "()const" +defs["ImVector_TextRange_begin"][2]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange_begin"][2]["templatedgen"] = true +defs["ImVector_TextRange_begin"]["()"] = defs["ImVector_TextRange_begin"][1] +defs["ImVector_TextRange_begin"]["()const"] = defs["ImVector_TextRange_begin"][2] +defs["ImVector_TextRange_capacity"] = {} +defs["ImVector_TextRange_capacity"][1] = {} +defs["ImVector_TextRange_capacity"][1]["args"] = "(const ImVector_TextRange* self)" +defs["ImVector_TextRange_capacity"][1]["argsT"] = {} +defs["ImVector_TextRange_capacity"][1]["argsT"][1] = {} +defs["ImVector_TextRange_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_TextRange_capacity"][1]["argsT"][1]["type"] = "const ImVector_TextRange*" +defs["ImVector_TextRange_capacity"][1]["call_args"] = "()" +defs["ImVector_TextRange_capacity"][1]["cimguiname"] = "ImVector_TextRange_capacity" +defs["ImVector_TextRange_capacity"][1]["defaults"] = {} +defs["ImVector_TextRange_capacity"][1]["funcname"] = "capacity" +defs["ImVector_TextRange_capacity"][1]["ov_cimguiname"] = "ImVector_TextRange_capacity" +defs["ImVector_TextRange_capacity"][1]["ret"] = "int" +defs["ImVector_TextRange_capacity"][1]["signature"] = "()const" +defs["ImVector_TextRange_capacity"][1]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange_capacity"][1]["templatedgen"] = true +defs["ImVector_TextRange_capacity"]["()const"] = defs["ImVector_TextRange_capacity"][1] +defs["ImVector_TextRange_clear"] = {} +defs["ImVector_TextRange_clear"][1] = {} +defs["ImVector_TextRange_clear"][1]["args"] = "(ImVector_TextRange* self)" +defs["ImVector_TextRange_clear"][1]["argsT"] = {} +defs["ImVector_TextRange_clear"][1]["argsT"][1] = {} +defs["ImVector_TextRange_clear"][1]["argsT"][1]["name"] = "self" +defs["ImVector_TextRange_clear"][1]["argsT"][1]["type"] = "ImVector_TextRange*" +defs["ImVector_TextRange_clear"][1]["call_args"] = "()" +defs["ImVector_TextRange_clear"][1]["cimguiname"] = "ImVector_TextRange_clear" +defs["ImVector_TextRange_clear"][1]["defaults"] = {} +defs["ImVector_TextRange_clear"][1]["funcname"] = "clear" +defs["ImVector_TextRange_clear"][1]["ov_cimguiname"] = "ImVector_TextRange_clear" +defs["ImVector_TextRange_clear"][1]["ret"] = "void" +defs["ImVector_TextRange_clear"][1]["signature"] = "()" +defs["ImVector_TextRange_clear"][1]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange_clear"][1]["templatedgen"] = true +defs["ImVector_TextRange_clear"]["()"] = defs["ImVector_TextRange_clear"][1] +defs["ImVector_TextRange_contains"] = {} +defs["ImVector_TextRange_contains"][1] = {} +defs["ImVector_TextRange_contains"][1]["args"] = "(const ImVector_TextRange* self,const TextRange v)" +defs["ImVector_TextRange_contains"][1]["argsT"] = {} +defs["ImVector_TextRange_contains"][1]["argsT"][1] = {} +defs["ImVector_TextRange_contains"][1]["argsT"][1]["name"] = "self" +defs["ImVector_TextRange_contains"][1]["argsT"][1]["type"] = "const ImVector_TextRange*" +defs["ImVector_TextRange_contains"][1]["argsT"][2] = {} +defs["ImVector_TextRange_contains"][1]["argsT"][2]["name"] = "v" +defs["ImVector_TextRange_contains"][1]["argsT"][2]["type"] = "const TextRange" +defs["ImVector_TextRange_contains"][1]["call_args"] = "(v)" +defs["ImVector_TextRange_contains"][1]["cimguiname"] = "ImVector_TextRange_contains" +defs["ImVector_TextRange_contains"][1]["defaults"] = {} +defs["ImVector_TextRange_contains"][1]["funcname"] = "contains" +defs["ImVector_TextRange_contains"][1]["ov_cimguiname"] = "ImVector_TextRange_contains" +defs["ImVector_TextRange_contains"][1]["ret"] = "bool" +defs["ImVector_TextRange_contains"][1]["signature"] = "(const TextRange)const" +defs["ImVector_TextRange_contains"][1]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange_contains"][1]["templatedgen"] = true +defs["ImVector_TextRange_contains"]["(const TextRange)const"] = defs["ImVector_TextRange_contains"][1] +defs["ImVector_TextRange_destroy"] = {} +defs["ImVector_TextRange_destroy"][1] = {} +defs["ImVector_TextRange_destroy"][1]["args"] = "(ImVector_TextRange* self)" +defs["ImVector_TextRange_destroy"][1]["argsT"] = {} +defs["ImVector_TextRange_destroy"][1]["argsT"][1] = {} +defs["ImVector_TextRange_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImVector_TextRange_destroy"][1]["argsT"][1]["type"] = "ImVector_TextRange*" +defs["ImVector_TextRange_destroy"][1]["call_args"] = "(self)" +defs["ImVector_TextRange_destroy"][1]["cimguiname"] = "ImVector_TextRange_destroy" +defs["ImVector_TextRange_destroy"][1]["defaults"] = {} +defs["ImVector_TextRange_destroy"][1]["destructor"] = true +defs["ImVector_TextRange_destroy"][1]["ov_cimguiname"] = "ImVector_TextRange_destroy" +defs["ImVector_TextRange_destroy"][1]["ret"] = "void" +defs["ImVector_TextRange_destroy"][1]["signature"] = "(ImVector_TextRange*)" +defs["ImVector_TextRange_destroy"][1]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange_destroy"]["(ImVector_TextRange*)"] = defs["ImVector_TextRange_destroy"][1] +defs["ImVector_TextRange_empty"] = {} +defs["ImVector_TextRange_empty"][1] = {} +defs["ImVector_TextRange_empty"][1]["args"] = "(const ImVector_TextRange* self)" +defs["ImVector_TextRange_empty"][1]["argsT"] = {} +defs["ImVector_TextRange_empty"][1]["argsT"][1] = {} +defs["ImVector_TextRange_empty"][1]["argsT"][1]["name"] = "self" +defs["ImVector_TextRange_empty"][1]["argsT"][1]["type"] = "const ImVector_TextRange*" +defs["ImVector_TextRange_empty"][1]["call_args"] = "()" +defs["ImVector_TextRange_empty"][1]["cimguiname"] = "ImVector_TextRange_empty" +defs["ImVector_TextRange_empty"][1]["defaults"] = {} +defs["ImVector_TextRange_empty"][1]["funcname"] = "empty" +defs["ImVector_TextRange_empty"][1]["ov_cimguiname"] = "ImVector_TextRange_empty" +defs["ImVector_TextRange_empty"][1]["ret"] = "bool" +defs["ImVector_TextRange_empty"][1]["signature"] = "()const" +defs["ImVector_TextRange_empty"][1]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange_empty"][1]["templatedgen"] = true +defs["ImVector_TextRange_empty"]["()const"] = defs["ImVector_TextRange_empty"][1] +defs["ImVector_TextRange_end"] = {} +defs["ImVector_TextRange_end"][1] = {} +defs["ImVector_TextRange_end"][1]["args"] = "(ImVector_TextRange* self)" +defs["ImVector_TextRange_end"][1]["argsT"] = {} +defs["ImVector_TextRange_end"][1]["argsT"][1] = {} +defs["ImVector_TextRange_end"][1]["argsT"][1]["name"] = "self" +defs["ImVector_TextRange_end"][1]["argsT"][1]["type"] = "ImVector_TextRange*" +defs["ImVector_TextRange_end"][1]["call_args"] = "()" +defs["ImVector_TextRange_end"][1]["cimguiname"] = "ImVector_TextRange_end" +defs["ImVector_TextRange_end"][1]["defaults"] = {} +defs["ImVector_TextRange_end"][1]["funcname"] = "end" +defs["ImVector_TextRange_end"][1]["ov_cimguiname"] = "ImVector_TextRange_end" +defs["ImVector_TextRange_end"][1]["ret"] = "TextRange*" +defs["ImVector_TextRange_end"][1]["signature"] = "()" +defs["ImVector_TextRange_end"][1]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange_end"][1]["templatedgen"] = true +defs["ImVector_TextRange_end"][2] = {} +defs["ImVector_TextRange_end"][2]["args"] = "(const ImVector_TextRange* self)" +defs["ImVector_TextRange_end"][2]["argsT"] = {} +defs["ImVector_TextRange_end"][2]["argsT"][1] = {} +defs["ImVector_TextRange_end"][2]["argsT"][1]["name"] = "self" +defs["ImVector_TextRange_end"][2]["argsT"][1]["type"] = "const ImVector_TextRange*" +defs["ImVector_TextRange_end"][2]["call_args"] = "()" +defs["ImVector_TextRange_end"][2]["cimguiname"] = "ImVector_TextRange_end" +defs["ImVector_TextRange_end"][2]["defaults"] = {} +defs["ImVector_TextRange_end"][2]["funcname"] = "end" +defs["ImVector_TextRange_end"][2]["ov_cimguiname"] = "ImVector_TextRange_end_const" +defs["ImVector_TextRange_end"][2]["ret"] = "TextRange const *" +defs["ImVector_TextRange_end"][2]["signature"] = "()const" +defs["ImVector_TextRange_end"][2]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange_end"][2]["templatedgen"] = true +defs["ImVector_TextRange_end"]["()"] = defs["ImVector_TextRange_end"][1] +defs["ImVector_TextRange_end"]["()const"] = defs["ImVector_TextRange_end"][2] +defs["ImVector_TextRange_erase"] = {} +defs["ImVector_TextRange_erase"][1] = {} +defs["ImVector_TextRange_erase"][1]["args"] = "(ImVector_TextRange* self,TextRange const * it)" +defs["ImVector_TextRange_erase"][1]["argsT"] = {} +defs["ImVector_TextRange_erase"][1]["argsT"][1] = {} +defs["ImVector_TextRange_erase"][1]["argsT"][1]["name"] = "self" +defs["ImVector_TextRange_erase"][1]["argsT"][1]["type"] = "ImVector_TextRange*" +defs["ImVector_TextRange_erase"][1]["argsT"][2] = {} +defs["ImVector_TextRange_erase"][1]["argsT"][2]["name"] = "it" +defs["ImVector_TextRange_erase"][1]["argsT"][2]["type"] = "TextRange const *" +defs["ImVector_TextRange_erase"][1]["call_args"] = "(it)" +defs["ImVector_TextRange_erase"][1]["cimguiname"] = "ImVector_TextRange_erase" +defs["ImVector_TextRange_erase"][1]["defaults"] = {} +defs["ImVector_TextRange_erase"][1]["funcname"] = "erase" +defs["ImVector_TextRange_erase"][1]["ov_cimguiname"] = "ImVector_TextRange_erase" +defs["ImVector_TextRange_erase"][1]["ret"] = "TextRange*" +defs["ImVector_TextRange_erase"][1]["signature"] = "(const TextRange*)" +defs["ImVector_TextRange_erase"][1]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange_erase"][1]["templatedgen"] = true +defs["ImVector_TextRange_erase"][2] = {} +defs["ImVector_TextRange_erase"][2]["args"] = "(ImVector_TextRange* self,TextRange const * it,TextRange const * it_last)" +defs["ImVector_TextRange_erase"][2]["argsT"] = {} +defs["ImVector_TextRange_erase"][2]["argsT"][1] = {} +defs["ImVector_TextRange_erase"][2]["argsT"][1]["name"] = "self" +defs["ImVector_TextRange_erase"][2]["argsT"][1]["type"] = "ImVector_TextRange*" +defs["ImVector_TextRange_erase"][2]["argsT"][2] = {} +defs["ImVector_TextRange_erase"][2]["argsT"][2]["name"] = "it" +defs["ImVector_TextRange_erase"][2]["argsT"][2]["type"] = "TextRange const *" +defs["ImVector_TextRange_erase"][2]["argsT"][3] = {} +defs["ImVector_TextRange_erase"][2]["argsT"][3]["name"] = "it_last" +defs["ImVector_TextRange_erase"][2]["argsT"][3]["type"] = "TextRange const *" +defs["ImVector_TextRange_erase"][2]["call_args"] = "(it,it_last)" +defs["ImVector_TextRange_erase"][2]["cimguiname"] = "ImVector_TextRange_erase" +defs["ImVector_TextRange_erase"][2]["defaults"] = {} +defs["ImVector_TextRange_erase"][2]["funcname"] = "erase" +defs["ImVector_TextRange_erase"][2]["ov_cimguiname"] = "ImVector_TextRange_eraseTPtr" +defs["ImVector_TextRange_erase"][2]["ret"] = "TextRange*" +defs["ImVector_TextRange_erase"][2]["signature"] = "(const TextRange*,const TextRange*)" +defs["ImVector_TextRange_erase"][2]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange_erase"][2]["templatedgen"] = true +defs["ImVector_TextRange_erase"]["(const TextRange*)"] = defs["ImVector_TextRange_erase"][1] +defs["ImVector_TextRange_erase"]["(const TextRange*,const TextRange*)"] = defs["ImVector_TextRange_erase"][2] +defs["ImVector_TextRange_erase_unsorted"] = {} +defs["ImVector_TextRange_erase_unsorted"][1] = {} +defs["ImVector_TextRange_erase_unsorted"][1]["args"] = "(ImVector_TextRange* self,TextRange const * it)" +defs["ImVector_TextRange_erase_unsorted"][1]["argsT"] = {} +defs["ImVector_TextRange_erase_unsorted"][1]["argsT"][1] = {} +defs["ImVector_TextRange_erase_unsorted"][1]["argsT"][1]["name"] = "self" +defs["ImVector_TextRange_erase_unsorted"][1]["argsT"][1]["type"] = "ImVector_TextRange*" +defs["ImVector_TextRange_erase_unsorted"][1]["argsT"][2] = {} +defs["ImVector_TextRange_erase_unsorted"][1]["argsT"][2]["name"] = "it" +defs["ImVector_TextRange_erase_unsorted"][1]["argsT"][2]["type"] = "TextRange const *" +defs["ImVector_TextRange_erase_unsorted"][1]["call_args"] = "(it)" +defs["ImVector_TextRange_erase_unsorted"][1]["cimguiname"] = "ImVector_TextRange_erase_unsorted" +defs["ImVector_TextRange_erase_unsorted"][1]["defaults"] = {} +defs["ImVector_TextRange_erase_unsorted"][1]["funcname"] = "erase_unsorted" +defs["ImVector_TextRange_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_TextRange_erase_unsorted" +defs["ImVector_TextRange_erase_unsorted"][1]["ret"] = "TextRange*" +defs["ImVector_TextRange_erase_unsorted"][1]["signature"] = "(const TextRange*)" +defs["ImVector_TextRange_erase_unsorted"][1]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange_erase_unsorted"][1]["templatedgen"] = true +defs["ImVector_TextRange_erase_unsorted"]["(const TextRange*)"] = defs["ImVector_TextRange_erase_unsorted"][1] +defs["ImVector_TextRange_front"] = {} +defs["ImVector_TextRange_front"][1] = {} +defs["ImVector_TextRange_front"][1]["args"] = "(ImVector_TextRange* self)" +defs["ImVector_TextRange_front"][1]["argsT"] = {} +defs["ImVector_TextRange_front"][1]["argsT"][1] = {} +defs["ImVector_TextRange_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_TextRange_front"][1]["argsT"][1]["type"] = "ImVector_TextRange*" +defs["ImVector_TextRange_front"][1]["call_args"] = "()" +defs["ImVector_TextRange_front"][1]["cimguiname"] = "ImVector_TextRange_front" +defs["ImVector_TextRange_front"][1]["defaults"] = {} +defs["ImVector_TextRange_front"][1]["funcname"] = "front" +defs["ImVector_TextRange_front"][1]["ov_cimguiname"] = "ImVector_TextRange_front" +defs["ImVector_TextRange_front"][1]["ret"] = "TextRange*" +defs["ImVector_TextRange_front"][1]["retref"] = "&" +defs["ImVector_TextRange_front"][1]["signature"] = "()" +defs["ImVector_TextRange_front"][1]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange_front"][1]["templatedgen"] = true +defs["ImVector_TextRange_front"][2] = {} +defs["ImVector_TextRange_front"][2]["args"] = "(const ImVector_TextRange* self)" +defs["ImVector_TextRange_front"][2]["argsT"] = {} +defs["ImVector_TextRange_front"][2]["argsT"][1] = {} +defs["ImVector_TextRange_front"][2]["argsT"][1]["name"] = "self" +defs["ImVector_TextRange_front"][2]["argsT"][1]["type"] = "const ImVector_TextRange*" +defs["ImVector_TextRange_front"][2]["call_args"] = "()" +defs["ImVector_TextRange_front"][2]["cimguiname"] = "ImVector_TextRange_front" +defs["ImVector_TextRange_front"][2]["defaults"] = {} +defs["ImVector_TextRange_front"][2]["funcname"] = "front" +defs["ImVector_TextRange_front"][2]["ov_cimguiname"] = "ImVector_TextRange_front_const" +defs["ImVector_TextRange_front"][2]["ret"] = "TextRange const *" +defs["ImVector_TextRange_front"][2]["retref"] = "&" +defs["ImVector_TextRange_front"][2]["signature"] = "()const" +defs["ImVector_TextRange_front"][2]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange_front"][2]["templatedgen"] = true +defs["ImVector_TextRange_front"]["()"] = defs["ImVector_TextRange_front"][1] +defs["ImVector_TextRange_front"]["()const"] = defs["ImVector_TextRange_front"][2] +defs["ImVector_TextRange_index_from_ptr"] = {} +defs["ImVector_TextRange_index_from_ptr"][1] = {} +defs["ImVector_TextRange_index_from_ptr"][1]["args"] = "(const ImVector_TextRange* self,TextRange const * it)" +defs["ImVector_TextRange_index_from_ptr"][1]["argsT"] = {} +defs["ImVector_TextRange_index_from_ptr"][1]["argsT"][1] = {} +defs["ImVector_TextRange_index_from_ptr"][1]["argsT"][1]["name"] = "self" +defs["ImVector_TextRange_index_from_ptr"][1]["argsT"][1]["type"] = "const ImVector_TextRange*" +defs["ImVector_TextRange_index_from_ptr"][1]["argsT"][2] = {} +defs["ImVector_TextRange_index_from_ptr"][1]["argsT"][2]["name"] = "it" +defs["ImVector_TextRange_index_from_ptr"][1]["argsT"][2]["type"] = "TextRange const *" +defs["ImVector_TextRange_index_from_ptr"][1]["call_args"] = "(it)" +defs["ImVector_TextRange_index_from_ptr"][1]["cimguiname"] = "ImVector_TextRange_index_from_ptr" +defs["ImVector_TextRange_index_from_ptr"][1]["defaults"] = {} +defs["ImVector_TextRange_index_from_ptr"][1]["funcname"] = "index_from_ptr" +defs["ImVector_TextRange_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_TextRange_index_from_ptr" +defs["ImVector_TextRange_index_from_ptr"][1]["ret"] = "int" +defs["ImVector_TextRange_index_from_ptr"][1]["signature"] = "(const TextRange*)const" +defs["ImVector_TextRange_index_from_ptr"][1]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange_index_from_ptr"][1]["templatedgen"] = true +defs["ImVector_TextRange_index_from_ptr"]["(const TextRange*)const"] = defs["ImVector_TextRange_index_from_ptr"][1] +defs["ImVector_TextRange_insert"] = {} +defs["ImVector_TextRange_insert"][1] = {} +defs["ImVector_TextRange_insert"][1]["args"] = "(ImVector_TextRange* self,TextRange const * it,const TextRange v)" +defs["ImVector_TextRange_insert"][1]["argsT"] = {} +defs["ImVector_TextRange_insert"][1]["argsT"][1] = {} +defs["ImVector_TextRange_insert"][1]["argsT"][1]["name"] = "self" +defs["ImVector_TextRange_insert"][1]["argsT"][1]["type"] = "ImVector_TextRange*" +defs["ImVector_TextRange_insert"][1]["argsT"][2] = {} +defs["ImVector_TextRange_insert"][1]["argsT"][2]["name"] = "it" +defs["ImVector_TextRange_insert"][1]["argsT"][2]["type"] = "TextRange const *" +defs["ImVector_TextRange_insert"][1]["argsT"][3] = {} +defs["ImVector_TextRange_insert"][1]["argsT"][3]["name"] = "v" +defs["ImVector_TextRange_insert"][1]["argsT"][3]["type"] = "const TextRange" +defs["ImVector_TextRange_insert"][1]["call_args"] = "(it,v)" +defs["ImVector_TextRange_insert"][1]["cimguiname"] = "ImVector_TextRange_insert" +defs["ImVector_TextRange_insert"][1]["defaults"] = {} +defs["ImVector_TextRange_insert"][1]["funcname"] = "insert" +defs["ImVector_TextRange_insert"][1]["ov_cimguiname"] = "ImVector_TextRange_insert" +defs["ImVector_TextRange_insert"][1]["ret"] = "TextRange*" +defs["ImVector_TextRange_insert"][1]["signature"] = "(const TextRange*,const TextRange)" +defs["ImVector_TextRange_insert"][1]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange_insert"][1]["templatedgen"] = true +defs["ImVector_TextRange_insert"]["(const TextRange*,const TextRange)"] = defs["ImVector_TextRange_insert"][1] +defs["ImVector_TextRange_pop_back"] = {} +defs["ImVector_TextRange_pop_back"][1] = {} +defs["ImVector_TextRange_pop_back"][1]["args"] = "(ImVector_TextRange* self)" +defs["ImVector_TextRange_pop_back"][1]["argsT"] = {} +defs["ImVector_TextRange_pop_back"][1]["argsT"][1] = {} +defs["ImVector_TextRange_pop_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_TextRange_pop_back"][1]["argsT"][1]["type"] = "ImVector_TextRange*" +defs["ImVector_TextRange_pop_back"][1]["call_args"] = "()" +defs["ImVector_TextRange_pop_back"][1]["cimguiname"] = "ImVector_TextRange_pop_back" +defs["ImVector_TextRange_pop_back"][1]["defaults"] = {} +defs["ImVector_TextRange_pop_back"][1]["funcname"] = "pop_back" +defs["ImVector_TextRange_pop_back"][1]["ov_cimguiname"] = "ImVector_TextRange_pop_back" +defs["ImVector_TextRange_pop_back"][1]["ret"] = "void" +defs["ImVector_TextRange_pop_back"][1]["signature"] = "()" +defs["ImVector_TextRange_pop_back"][1]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange_pop_back"][1]["templatedgen"] = true +defs["ImVector_TextRange_pop_back"]["()"] = defs["ImVector_TextRange_pop_back"][1] +defs["ImVector_TextRange_push_back"] = {} +defs["ImVector_TextRange_push_back"][1] = {} +defs["ImVector_TextRange_push_back"][1]["args"] = "(ImVector_TextRange* self,const TextRange v)" +defs["ImVector_TextRange_push_back"][1]["argsT"] = {} +defs["ImVector_TextRange_push_back"][1]["argsT"][1] = {} +defs["ImVector_TextRange_push_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_TextRange_push_back"][1]["argsT"][1]["type"] = "ImVector_TextRange*" +defs["ImVector_TextRange_push_back"][1]["argsT"][2] = {} +defs["ImVector_TextRange_push_back"][1]["argsT"][2]["name"] = "v" +defs["ImVector_TextRange_push_back"][1]["argsT"][2]["type"] = "const TextRange" +defs["ImVector_TextRange_push_back"][1]["call_args"] = "(v)" +defs["ImVector_TextRange_push_back"][1]["cimguiname"] = "ImVector_TextRange_push_back" +defs["ImVector_TextRange_push_back"][1]["defaults"] = {} +defs["ImVector_TextRange_push_back"][1]["funcname"] = "push_back" +defs["ImVector_TextRange_push_back"][1]["ov_cimguiname"] = "ImVector_TextRange_push_back" +defs["ImVector_TextRange_push_back"][1]["ret"] = "void" +defs["ImVector_TextRange_push_back"][1]["signature"] = "(const TextRange)" +defs["ImVector_TextRange_push_back"][1]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange_push_back"][1]["templatedgen"] = true +defs["ImVector_TextRange_push_back"]["(const TextRange)"] = defs["ImVector_TextRange_push_back"][1] +defs["ImVector_TextRange_push_front"] = {} +defs["ImVector_TextRange_push_front"][1] = {} +defs["ImVector_TextRange_push_front"][1]["args"] = "(ImVector_TextRange* self,const TextRange v)" +defs["ImVector_TextRange_push_front"][1]["argsT"] = {} +defs["ImVector_TextRange_push_front"][1]["argsT"][1] = {} +defs["ImVector_TextRange_push_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_TextRange_push_front"][1]["argsT"][1]["type"] = "ImVector_TextRange*" +defs["ImVector_TextRange_push_front"][1]["argsT"][2] = {} +defs["ImVector_TextRange_push_front"][1]["argsT"][2]["name"] = "v" +defs["ImVector_TextRange_push_front"][1]["argsT"][2]["type"] = "const TextRange" +defs["ImVector_TextRange_push_front"][1]["call_args"] = "(v)" +defs["ImVector_TextRange_push_front"][1]["cimguiname"] = "ImVector_TextRange_push_front" +defs["ImVector_TextRange_push_front"][1]["defaults"] = {} +defs["ImVector_TextRange_push_front"][1]["funcname"] = "push_front" +defs["ImVector_TextRange_push_front"][1]["ov_cimguiname"] = "ImVector_TextRange_push_front" +defs["ImVector_TextRange_push_front"][1]["ret"] = "void" +defs["ImVector_TextRange_push_front"][1]["signature"] = "(const TextRange)" +defs["ImVector_TextRange_push_front"][1]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange_push_front"][1]["templatedgen"] = true +defs["ImVector_TextRange_push_front"]["(const TextRange)"] = defs["ImVector_TextRange_push_front"][1] +defs["ImVector_TextRange_reserve"] = {} +defs["ImVector_TextRange_reserve"][1] = {} +defs["ImVector_TextRange_reserve"][1]["args"] = "(ImVector_TextRange* self,int new_capacity)" +defs["ImVector_TextRange_reserve"][1]["argsT"] = {} +defs["ImVector_TextRange_reserve"][1]["argsT"][1] = {} +defs["ImVector_TextRange_reserve"][1]["argsT"][1]["name"] = "self" +defs["ImVector_TextRange_reserve"][1]["argsT"][1]["type"] = "ImVector_TextRange*" +defs["ImVector_TextRange_reserve"][1]["argsT"][2] = {} +defs["ImVector_TextRange_reserve"][1]["argsT"][2]["name"] = "new_capacity" +defs["ImVector_TextRange_reserve"][1]["argsT"][2]["type"] = "int" +defs["ImVector_TextRange_reserve"][1]["call_args"] = "(new_capacity)" +defs["ImVector_TextRange_reserve"][1]["cimguiname"] = "ImVector_TextRange_reserve" +defs["ImVector_TextRange_reserve"][1]["defaults"] = {} +defs["ImVector_TextRange_reserve"][1]["funcname"] = "reserve" +defs["ImVector_TextRange_reserve"][1]["ov_cimguiname"] = "ImVector_TextRange_reserve" +defs["ImVector_TextRange_reserve"][1]["ret"] = "void" +defs["ImVector_TextRange_reserve"][1]["signature"] = "(int)" +defs["ImVector_TextRange_reserve"][1]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange_reserve"][1]["templatedgen"] = true +defs["ImVector_TextRange_reserve"]["(int)"] = defs["ImVector_TextRange_reserve"][1] +defs["ImVector_TextRange_resize"] = {} +defs["ImVector_TextRange_resize"][1] = {} +defs["ImVector_TextRange_resize"][1]["args"] = "(ImVector_TextRange* self,int new_size)" +defs["ImVector_TextRange_resize"][1]["argsT"] = {} +defs["ImVector_TextRange_resize"][1]["argsT"][1] = {} +defs["ImVector_TextRange_resize"][1]["argsT"][1]["name"] = "self" +defs["ImVector_TextRange_resize"][1]["argsT"][1]["type"] = "ImVector_TextRange*" +defs["ImVector_TextRange_resize"][1]["argsT"][2] = {} +defs["ImVector_TextRange_resize"][1]["argsT"][2]["name"] = "new_size" +defs["ImVector_TextRange_resize"][1]["argsT"][2]["type"] = "int" +defs["ImVector_TextRange_resize"][1]["call_args"] = "(new_size)" +defs["ImVector_TextRange_resize"][1]["cimguiname"] = "ImVector_TextRange_resize" +defs["ImVector_TextRange_resize"][1]["defaults"] = {} +defs["ImVector_TextRange_resize"][1]["funcname"] = "resize" +defs["ImVector_TextRange_resize"][1]["ov_cimguiname"] = "ImVector_TextRange_resize" +defs["ImVector_TextRange_resize"][1]["ret"] = "void" +defs["ImVector_TextRange_resize"][1]["signature"] = "(int)" +defs["ImVector_TextRange_resize"][1]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange_resize"][1]["templatedgen"] = true +defs["ImVector_TextRange_resize"][2] = {} +defs["ImVector_TextRange_resize"][2]["args"] = "(ImVector_TextRange* self,int new_size,const TextRange v)" +defs["ImVector_TextRange_resize"][2]["argsT"] = {} +defs["ImVector_TextRange_resize"][2]["argsT"][1] = {} +defs["ImVector_TextRange_resize"][2]["argsT"][1]["name"] = "self" +defs["ImVector_TextRange_resize"][2]["argsT"][1]["type"] = "ImVector_TextRange*" +defs["ImVector_TextRange_resize"][2]["argsT"][2] = {} +defs["ImVector_TextRange_resize"][2]["argsT"][2]["name"] = "new_size" +defs["ImVector_TextRange_resize"][2]["argsT"][2]["type"] = "int" +defs["ImVector_TextRange_resize"][2]["argsT"][3] = {} +defs["ImVector_TextRange_resize"][2]["argsT"][3]["name"] = "v" +defs["ImVector_TextRange_resize"][2]["argsT"][3]["type"] = "const TextRange" +defs["ImVector_TextRange_resize"][2]["call_args"] = "(new_size,v)" +defs["ImVector_TextRange_resize"][2]["cimguiname"] = "ImVector_TextRange_resize" +defs["ImVector_TextRange_resize"][2]["defaults"] = {} +defs["ImVector_TextRange_resize"][2]["funcname"] = "resize" +defs["ImVector_TextRange_resize"][2]["ov_cimguiname"] = "ImVector_TextRange_resizeT" +defs["ImVector_TextRange_resize"][2]["ret"] = "void" +defs["ImVector_TextRange_resize"][2]["signature"] = "(int,const TextRange)" +defs["ImVector_TextRange_resize"][2]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange_resize"][2]["templatedgen"] = true +defs["ImVector_TextRange_resize"]["(int)"] = defs["ImVector_TextRange_resize"][1] +defs["ImVector_TextRange_resize"]["(int,const TextRange)"] = defs["ImVector_TextRange_resize"][2] +defs["ImVector_TextRange_size"] = {} +defs["ImVector_TextRange_size"][1] = {} +defs["ImVector_TextRange_size"][1]["args"] = "(const ImVector_TextRange* self)" +defs["ImVector_TextRange_size"][1]["argsT"] = {} +defs["ImVector_TextRange_size"][1]["argsT"][1] = {} +defs["ImVector_TextRange_size"][1]["argsT"][1]["name"] = "self" +defs["ImVector_TextRange_size"][1]["argsT"][1]["type"] = "const ImVector_TextRange*" +defs["ImVector_TextRange_size"][1]["call_args"] = "()" +defs["ImVector_TextRange_size"][1]["cimguiname"] = "ImVector_TextRange_size" +defs["ImVector_TextRange_size"][1]["defaults"] = {} +defs["ImVector_TextRange_size"][1]["funcname"] = "size" +defs["ImVector_TextRange_size"][1]["ov_cimguiname"] = "ImVector_TextRange_size" +defs["ImVector_TextRange_size"][1]["ret"] = "int" +defs["ImVector_TextRange_size"][1]["signature"] = "()const" +defs["ImVector_TextRange_size"][1]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange_size"][1]["templatedgen"] = true +defs["ImVector_TextRange_size"]["()const"] = defs["ImVector_TextRange_size"][1] +defs["ImVector_TextRange_size_in_bytes"] = {} +defs["ImVector_TextRange_size_in_bytes"][1] = {} +defs["ImVector_TextRange_size_in_bytes"][1]["args"] = "(const ImVector_TextRange* self)" +defs["ImVector_TextRange_size_in_bytes"][1]["argsT"] = {} +defs["ImVector_TextRange_size_in_bytes"][1]["argsT"][1] = {} +defs["ImVector_TextRange_size_in_bytes"][1]["argsT"][1]["name"] = "self" +defs["ImVector_TextRange_size_in_bytes"][1]["argsT"][1]["type"] = "const ImVector_TextRange*" +defs["ImVector_TextRange_size_in_bytes"][1]["call_args"] = "()" +defs["ImVector_TextRange_size_in_bytes"][1]["cimguiname"] = "ImVector_TextRange_size_in_bytes" +defs["ImVector_TextRange_size_in_bytes"][1]["defaults"] = {} +defs["ImVector_TextRange_size_in_bytes"][1]["funcname"] = "size_in_bytes" +defs["ImVector_TextRange_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_TextRange_size_in_bytes" +defs["ImVector_TextRange_size_in_bytes"][1]["ret"] = "int" +defs["ImVector_TextRange_size_in_bytes"][1]["signature"] = "()const" +defs["ImVector_TextRange_size_in_bytes"][1]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange_size_in_bytes"][1]["templatedgen"] = true +defs["ImVector_TextRange_size_in_bytes"]["()const"] = defs["ImVector_TextRange_size_in_bytes"][1] +defs["ImVector_TextRange_swap"] = {} +defs["ImVector_TextRange_swap"][1] = {} +defs["ImVector_TextRange_swap"][1]["args"] = "(ImVector_TextRange* self,ImVector_TextRange rhs)" +defs["ImVector_TextRange_swap"][1]["argsT"] = {} +defs["ImVector_TextRange_swap"][1]["argsT"][1] = {} +defs["ImVector_TextRange_swap"][1]["argsT"][1]["name"] = "self" +defs["ImVector_TextRange_swap"][1]["argsT"][1]["type"] = "ImVector_TextRange*" +defs["ImVector_TextRange_swap"][1]["argsT"][2] = {} +defs["ImVector_TextRange_swap"][1]["argsT"][2]["name"] = "rhs" +defs["ImVector_TextRange_swap"][1]["argsT"][2]["type"] = "ImVector_TextRange&" +defs["ImVector_TextRange_swap"][1]["call_args"] = "(rhs)" +defs["ImVector_TextRange_swap"][1]["cimguiname"] = "ImVector_TextRange_swap" +defs["ImVector_TextRange_swap"][1]["defaults"] = {} +defs["ImVector_TextRange_swap"][1]["funcname"] = "swap" +defs["ImVector_TextRange_swap"][1]["ov_cimguiname"] = "ImVector_TextRange_swap" +defs["ImVector_TextRange_swap"][1]["ret"] = "void" +defs["ImVector_TextRange_swap"][1]["signature"] = "(ImVector)" +defs["ImVector_TextRange_swap"][1]["stname"] = "ImVector_TextRange" +defs["ImVector_TextRange_swap"][1]["templatedgen"] = true +defs["ImVector_TextRange_swap"]["(ImVector)"] = defs["ImVector_TextRange_swap"][1] defs["ImVector__grow_capacity"] = {} defs["ImVector__grow_capacity"][1] = {} defs["ImVector__grow_capacity"][1]["args"] = "(ImVector* self,int sz)" @@ -4658,10 +12372,10 @@ defs["ImVector__grow_capacity"][1]["defaults"] = {} defs["ImVector__grow_capacity"][1]["funcname"] = "_grow_capacity" defs["ImVector__grow_capacity"][1]["ov_cimguiname"] = "ImVector__grow_capacity" defs["ImVector__grow_capacity"][1]["ret"] = "int" -defs["ImVector__grow_capacity"][1]["signature"] = "(int)" +defs["ImVector__grow_capacity"][1]["signature"] = "(int)const" defs["ImVector__grow_capacity"][1]["stname"] = "ImVector" defs["ImVector__grow_capacity"][1]["templated"] = true -defs["ImVector__grow_capacity"]["(int)"] = defs["ImVector__grow_capacity"][1] +defs["ImVector__grow_capacity"]["(int)const"] = defs["ImVector__grow_capacity"][1] defs["ImVector_back"] = {} defs["ImVector_back"][1] = {} defs["ImVector_back"][1]["args"] = "(ImVector* self)" @@ -4693,13 +12407,14 @@ defs["ImVector_back"][2]["cimguiname"] = "ImVector_back" defs["ImVector_back"][2]["comment"] = "" defs["ImVector_back"][2]["defaults"] = {} defs["ImVector_back"][2]["funcname"] = "back" -defs["ImVector_back"][2]["ov_cimguiname"] = "ImVector_back" +defs["ImVector_back"][2]["ov_cimguiname"] = "ImVector_back_const" defs["ImVector_back"][2]["ret"] = "const T*" defs["ImVector_back"][2]["retref"] = "&" -defs["ImVector_back"][2]["signature"] = "()" +defs["ImVector_back"][2]["signature"] = "()const" defs["ImVector_back"][2]["stname"] = "ImVector" defs["ImVector_back"][2]["templated"] = true -defs["ImVector_back"]["()"] = defs["ImVector_back"][2] +defs["ImVector_back"]["()"] = defs["ImVector_back"][1] +defs["ImVector_back"]["()const"] = defs["ImVector_back"][2] defs["ImVector_begin"] = {} defs["ImVector_begin"][1] = {} defs["ImVector_begin"][1]["args"] = "(ImVector* self)" @@ -4730,12 +12445,13 @@ defs["ImVector_begin"][2]["cimguiname"] = "ImVector_begin" defs["ImVector_begin"][2]["comment"] = "" defs["ImVector_begin"][2]["defaults"] = {} defs["ImVector_begin"][2]["funcname"] = "begin" -defs["ImVector_begin"][2]["ov_cimguiname"] = "ImVector_begin" +defs["ImVector_begin"][2]["ov_cimguiname"] = "ImVector_begin_const" defs["ImVector_begin"][2]["ret"] = "const T*" -defs["ImVector_begin"][2]["signature"] = "()" +defs["ImVector_begin"][2]["signature"] = "()const" defs["ImVector_begin"][2]["stname"] = "ImVector" defs["ImVector_begin"][2]["templated"] = true -defs["ImVector_begin"]["()"] = defs["ImVector_begin"][2] +defs["ImVector_begin"]["()"] = defs["ImVector_begin"][1] +defs["ImVector_begin"]["()const"] = defs["ImVector_begin"][2] defs["ImVector_capacity"] = {} defs["ImVector_capacity"][1] = {} defs["ImVector_capacity"][1]["args"] = "(ImVector* self)" @@ -4751,10 +12467,561 @@ defs["ImVector_capacity"][1]["defaults"] = {} defs["ImVector_capacity"][1]["funcname"] = "capacity" defs["ImVector_capacity"][1]["ov_cimguiname"] = "ImVector_capacity" defs["ImVector_capacity"][1]["ret"] = "int" -defs["ImVector_capacity"][1]["signature"] = "()" +defs["ImVector_capacity"][1]["signature"] = "()const" defs["ImVector_capacity"][1]["stname"] = "ImVector" defs["ImVector_capacity"][1]["templated"] = true -defs["ImVector_capacity"]["()"] = defs["ImVector_capacity"][1] +defs["ImVector_capacity"]["()const"] = defs["ImVector_capacity"][1] +defs["ImVector_char_ImVector_char"] = {} +defs["ImVector_char_ImVector_char"][1] = {} +defs["ImVector_char_ImVector_char"][1]["args"] = "()" +defs["ImVector_char_ImVector_char"][1]["argsT"] = {} +defs["ImVector_char_ImVector_char"][1]["call_args"] = "()" +defs["ImVector_char_ImVector_char"][1]["cimguiname"] = "ImVector_char_ImVector_char" +defs["ImVector_char_ImVector_char"][1]["constructor"] = true +defs["ImVector_char_ImVector_char"][1]["defaults"] = {} +defs["ImVector_char_ImVector_char"][1]["funcname"] = "ImVector_char" +defs["ImVector_char_ImVector_char"][1]["ov_cimguiname"] = "ImVector_char_ImVector_char" +defs["ImVector_char_ImVector_char"][1]["signature"] = "()" +defs["ImVector_char_ImVector_char"][1]["stname"] = "ImVector_char" +defs["ImVector_char_ImVector_char"][1]["templatedgen"] = true +defs["ImVector_char_ImVector_char"][2] = {} +defs["ImVector_char_ImVector_char"][2]["args"] = "(const ImVector_char src)" +defs["ImVector_char_ImVector_char"][2]["argsT"] = {} +defs["ImVector_char_ImVector_char"][2]["argsT"][1] = {} +defs["ImVector_char_ImVector_char"][2]["argsT"][1]["name"] = "src" +defs["ImVector_char_ImVector_char"][2]["argsT"][1]["type"] = "const ImVector_char" +defs["ImVector_char_ImVector_char"][2]["call_args"] = "(src)" +defs["ImVector_char_ImVector_char"][2]["cimguiname"] = "ImVector_char_ImVector_char" +defs["ImVector_char_ImVector_char"][2]["constructor"] = true +defs["ImVector_char_ImVector_char"][2]["defaults"] = {} +defs["ImVector_char_ImVector_char"][2]["funcname"] = "ImVector_char" +defs["ImVector_char_ImVector_char"][2]["ov_cimguiname"] = "ImVector_char_ImVector_charVector" +defs["ImVector_char_ImVector_char"][2]["signature"] = "(const ImVector)" +defs["ImVector_char_ImVector_char"][2]["stname"] = "ImVector_char" +defs["ImVector_char_ImVector_char"][2]["templatedgen"] = true +defs["ImVector_char_ImVector_char"]["()"] = defs["ImVector_char_ImVector_char"][1] +defs["ImVector_char_ImVector_char"]["(const ImVector)"] = defs["ImVector_char_ImVector_char"][2] +defs["ImVector_char__grow_capacity"] = {} +defs["ImVector_char__grow_capacity"][1] = {} +defs["ImVector_char__grow_capacity"][1]["args"] = "(const ImVector_char* self,int sz)" +defs["ImVector_char__grow_capacity"][1]["argsT"] = {} +defs["ImVector_char__grow_capacity"][1]["argsT"][1] = {} +defs["ImVector_char__grow_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_char__grow_capacity"][1]["argsT"][1]["type"] = "const ImVector_char*" +defs["ImVector_char__grow_capacity"][1]["argsT"][2] = {} +defs["ImVector_char__grow_capacity"][1]["argsT"][2]["name"] = "sz" +defs["ImVector_char__grow_capacity"][1]["argsT"][2]["type"] = "int" +defs["ImVector_char__grow_capacity"][1]["call_args"] = "(sz)" +defs["ImVector_char__grow_capacity"][1]["cimguiname"] = "ImVector_char__grow_capacity" +defs["ImVector_char__grow_capacity"][1]["defaults"] = {} +defs["ImVector_char__grow_capacity"][1]["funcname"] = "_grow_capacity" +defs["ImVector_char__grow_capacity"][1]["ov_cimguiname"] = "ImVector_char__grow_capacity" +defs["ImVector_char__grow_capacity"][1]["ret"] = "int" +defs["ImVector_char__grow_capacity"][1]["signature"] = "(int)const" +defs["ImVector_char__grow_capacity"][1]["stname"] = "ImVector_char" +defs["ImVector_char__grow_capacity"][1]["templatedgen"] = true +defs["ImVector_char__grow_capacity"]["(int)const"] = defs["ImVector_char__grow_capacity"][1] +defs["ImVector_char_back"] = {} +defs["ImVector_char_back"][1] = {} +defs["ImVector_char_back"][1]["args"] = "(ImVector_char* self)" +defs["ImVector_char_back"][1]["argsT"] = {} +defs["ImVector_char_back"][1]["argsT"][1] = {} +defs["ImVector_char_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_char_back"][1]["argsT"][1]["type"] = "ImVector_char*" +defs["ImVector_char_back"][1]["call_args"] = "()" +defs["ImVector_char_back"][1]["cimguiname"] = "ImVector_char_back" +defs["ImVector_char_back"][1]["defaults"] = {} +defs["ImVector_char_back"][1]["funcname"] = "back" +defs["ImVector_char_back"][1]["ov_cimguiname"] = "ImVector_char_back" +defs["ImVector_char_back"][1]["ret"] = "char*" +defs["ImVector_char_back"][1]["retref"] = "&" +defs["ImVector_char_back"][1]["signature"] = "()" +defs["ImVector_char_back"][1]["stname"] = "ImVector_char" +defs["ImVector_char_back"][1]["templatedgen"] = true +defs["ImVector_char_back"][2] = {} +defs["ImVector_char_back"][2]["args"] = "(const ImVector_char* self)" +defs["ImVector_char_back"][2]["argsT"] = {} +defs["ImVector_char_back"][2]["argsT"][1] = {} +defs["ImVector_char_back"][2]["argsT"][1]["name"] = "self" +defs["ImVector_char_back"][2]["argsT"][1]["type"] = "const ImVector_char*" +defs["ImVector_char_back"][2]["call_args"] = "()" +defs["ImVector_char_back"][2]["cimguiname"] = "ImVector_char_back" +defs["ImVector_char_back"][2]["defaults"] = {} +defs["ImVector_char_back"][2]["funcname"] = "back" +defs["ImVector_char_back"][2]["ov_cimguiname"] = "ImVector_char_back_const" +defs["ImVector_char_back"][2]["ret"] = "char const *" +defs["ImVector_char_back"][2]["retref"] = "&" +defs["ImVector_char_back"][2]["signature"] = "()const" +defs["ImVector_char_back"][2]["stname"] = "ImVector_char" +defs["ImVector_char_back"][2]["templatedgen"] = true +defs["ImVector_char_back"]["()"] = defs["ImVector_char_back"][1] +defs["ImVector_char_back"]["()const"] = defs["ImVector_char_back"][2] +defs["ImVector_char_begin"] = {} +defs["ImVector_char_begin"][1] = {} +defs["ImVector_char_begin"][1]["args"] = "(ImVector_char* self)" +defs["ImVector_char_begin"][1]["argsT"] = {} +defs["ImVector_char_begin"][1]["argsT"][1] = {} +defs["ImVector_char_begin"][1]["argsT"][1]["name"] = "self" +defs["ImVector_char_begin"][1]["argsT"][1]["type"] = "ImVector_char*" +defs["ImVector_char_begin"][1]["call_args"] = "()" +defs["ImVector_char_begin"][1]["cimguiname"] = "ImVector_char_begin" +defs["ImVector_char_begin"][1]["defaults"] = {} +defs["ImVector_char_begin"][1]["funcname"] = "begin" +defs["ImVector_char_begin"][1]["ov_cimguiname"] = "ImVector_char_begin" +defs["ImVector_char_begin"][1]["ret"] = "char*" +defs["ImVector_char_begin"][1]["signature"] = "()" +defs["ImVector_char_begin"][1]["stname"] = "ImVector_char" +defs["ImVector_char_begin"][1]["templatedgen"] = true +defs["ImVector_char_begin"][2] = {} +defs["ImVector_char_begin"][2]["args"] = "(const ImVector_char* self)" +defs["ImVector_char_begin"][2]["argsT"] = {} +defs["ImVector_char_begin"][2]["argsT"][1] = {} +defs["ImVector_char_begin"][2]["argsT"][1]["name"] = "self" +defs["ImVector_char_begin"][2]["argsT"][1]["type"] = "const ImVector_char*" +defs["ImVector_char_begin"][2]["call_args"] = "()" +defs["ImVector_char_begin"][2]["cimguiname"] = "ImVector_char_begin" +defs["ImVector_char_begin"][2]["defaults"] = {} +defs["ImVector_char_begin"][2]["funcname"] = "begin" +defs["ImVector_char_begin"][2]["ov_cimguiname"] = "ImVector_char_begin_const" +defs["ImVector_char_begin"][2]["ret"] = "char const *" +defs["ImVector_char_begin"][2]["signature"] = "()const" +defs["ImVector_char_begin"][2]["stname"] = "ImVector_char" +defs["ImVector_char_begin"][2]["templatedgen"] = true +defs["ImVector_char_begin"]["()"] = defs["ImVector_char_begin"][1] +defs["ImVector_char_begin"]["()const"] = defs["ImVector_char_begin"][2] +defs["ImVector_char_capacity"] = {} +defs["ImVector_char_capacity"][1] = {} +defs["ImVector_char_capacity"][1]["args"] = "(const ImVector_char* self)" +defs["ImVector_char_capacity"][1]["argsT"] = {} +defs["ImVector_char_capacity"][1]["argsT"][1] = {} +defs["ImVector_char_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_char_capacity"][1]["argsT"][1]["type"] = "const ImVector_char*" +defs["ImVector_char_capacity"][1]["call_args"] = "()" +defs["ImVector_char_capacity"][1]["cimguiname"] = "ImVector_char_capacity" +defs["ImVector_char_capacity"][1]["defaults"] = {} +defs["ImVector_char_capacity"][1]["funcname"] = "capacity" +defs["ImVector_char_capacity"][1]["ov_cimguiname"] = "ImVector_char_capacity" +defs["ImVector_char_capacity"][1]["ret"] = "int" +defs["ImVector_char_capacity"][1]["signature"] = "()const" +defs["ImVector_char_capacity"][1]["stname"] = "ImVector_char" +defs["ImVector_char_capacity"][1]["templatedgen"] = true +defs["ImVector_char_capacity"]["()const"] = defs["ImVector_char_capacity"][1] +defs["ImVector_char_clear"] = {} +defs["ImVector_char_clear"][1] = {} +defs["ImVector_char_clear"][1]["args"] = "(ImVector_char* self)" +defs["ImVector_char_clear"][1]["argsT"] = {} +defs["ImVector_char_clear"][1]["argsT"][1] = {} +defs["ImVector_char_clear"][1]["argsT"][1]["name"] = "self" +defs["ImVector_char_clear"][1]["argsT"][1]["type"] = "ImVector_char*" +defs["ImVector_char_clear"][1]["call_args"] = "()" +defs["ImVector_char_clear"][1]["cimguiname"] = "ImVector_char_clear" +defs["ImVector_char_clear"][1]["defaults"] = {} +defs["ImVector_char_clear"][1]["funcname"] = "clear" +defs["ImVector_char_clear"][1]["ov_cimguiname"] = "ImVector_char_clear" +defs["ImVector_char_clear"][1]["ret"] = "void" +defs["ImVector_char_clear"][1]["signature"] = "()" +defs["ImVector_char_clear"][1]["stname"] = "ImVector_char" +defs["ImVector_char_clear"][1]["templatedgen"] = true +defs["ImVector_char_clear"]["()"] = defs["ImVector_char_clear"][1] +defs["ImVector_char_contains"] = {} +defs["ImVector_char_contains"][1] = {} +defs["ImVector_char_contains"][1]["args"] = "(const ImVector_char* self,const char v)" +defs["ImVector_char_contains"][1]["argsT"] = {} +defs["ImVector_char_contains"][1]["argsT"][1] = {} +defs["ImVector_char_contains"][1]["argsT"][1]["name"] = "self" +defs["ImVector_char_contains"][1]["argsT"][1]["type"] = "const ImVector_char*" +defs["ImVector_char_contains"][1]["argsT"][2] = {} +defs["ImVector_char_contains"][1]["argsT"][2]["name"] = "v" +defs["ImVector_char_contains"][1]["argsT"][2]["type"] = "const char" +defs["ImVector_char_contains"][1]["call_args"] = "(v)" +defs["ImVector_char_contains"][1]["cimguiname"] = "ImVector_char_contains" +defs["ImVector_char_contains"][1]["defaults"] = {} +defs["ImVector_char_contains"][1]["funcname"] = "contains" +defs["ImVector_char_contains"][1]["ov_cimguiname"] = "ImVector_char_contains" +defs["ImVector_char_contains"][1]["ret"] = "bool" +defs["ImVector_char_contains"][1]["signature"] = "(const char)const" +defs["ImVector_char_contains"][1]["stname"] = "ImVector_char" +defs["ImVector_char_contains"][1]["templatedgen"] = true +defs["ImVector_char_contains"]["(const char)const"] = defs["ImVector_char_contains"][1] +defs["ImVector_char_destroy"] = {} +defs["ImVector_char_destroy"][1] = {} +defs["ImVector_char_destroy"][1]["args"] = "(ImVector_char* self)" +defs["ImVector_char_destroy"][1]["argsT"] = {} +defs["ImVector_char_destroy"][1]["argsT"][1] = {} +defs["ImVector_char_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImVector_char_destroy"][1]["argsT"][1]["type"] = "ImVector_char*" +defs["ImVector_char_destroy"][1]["call_args"] = "(self)" +defs["ImVector_char_destroy"][1]["cimguiname"] = "ImVector_char_destroy" +defs["ImVector_char_destroy"][1]["defaults"] = {} +defs["ImVector_char_destroy"][1]["destructor"] = true +defs["ImVector_char_destroy"][1]["ov_cimguiname"] = "ImVector_char_destroy" +defs["ImVector_char_destroy"][1]["ret"] = "void" +defs["ImVector_char_destroy"][1]["signature"] = "(ImVector_char*)" +defs["ImVector_char_destroy"][1]["stname"] = "ImVector_char" +defs["ImVector_char_destroy"]["(ImVector_char*)"] = defs["ImVector_char_destroy"][1] +defs["ImVector_char_empty"] = {} +defs["ImVector_char_empty"][1] = {} +defs["ImVector_char_empty"][1]["args"] = "(const ImVector_char* self)" +defs["ImVector_char_empty"][1]["argsT"] = {} +defs["ImVector_char_empty"][1]["argsT"][1] = {} +defs["ImVector_char_empty"][1]["argsT"][1]["name"] = "self" +defs["ImVector_char_empty"][1]["argsT"][1]["type"] = "const ImVector_char*" +defs["ImVector_char_empty"][1]["call_args"] = "()" +defs["ImVector_char_empty"][1]["cimguiname"] = "ImVector_char_empty" +defs["ImVector_char_empty"][1]["defaults"] = {} +defs["ImVector_char_empty"][1]["funcname"] = "empty" +defs["ImVector_char_empty"][1]["ov_cimguiname"] = "ImVector_char_empty" +defs["ImVector_char_empty"][1]["ret"] = "bool" +defs["ImVector_char_empty"][1]["signature"] = "()const" +defs["ImVector_char_empty"][1]["stname"] = "ImVector_char" +defs["ImVector_char_empty"][1]["templatedgen"] = true +defs["ImVector_char_empty"]["()const"] = defs["ImVector_char_empty"][1] +defs["ImVector_char_end"] = {} +defs["ImVector_char_end"][1] = {} +defs["ImVector_char_end"][1]["args"] = "(ImVector_char* self)" +defs["ImVector_char_end"][1]["argsT"] = {} +defs["ImVector_char_end"][1]["argsT"][1] = {} +defs["ImVector_char_end"][1]["argsT"][1]["name"] = "self" +defs["ImVector_char_end"][1]["argsT"][1]["type"] = "ImVector_char*" +defs["ImVector_char_end"][1]["call_args"] = "()" +defs["ImVector_char_end"][1]["cimguiname"] = "ImVector_char_end" +defs["ImVector_char_end"][1]["defaults"] = {} +defs["ImVector_char_end"][1]["funcname"] = "end" +defs["ImVector_char_end"][1]["ov_cimguiname"] = "ImVector_char_end" +defs["ImVector_char_end"][1]["ret"] = "char*" +defs["ImVector_char_end"][1]["signature"] = "()" +defs["ImVector_char_end"][1]["stname"] = "ImVector_char" +defs["ImVector_char_end"][1]["templatedgen"] = true +defs["ImVector_char_end"][2] = {} +defs["ImVector_char_end"][2]["args"] = "(const ImVector_char* self)" +defs["ImVector_char_end"][2]["argsT"] = {} +defs["ImVector_char_end"][2]["argsT"][1] = {} +defs["ImVector_char_end"][2]["argsT"][1]["name"] = "self" +defs["ImVector_char_end"][2]["argsT"][1]["type"] = "const ImVector_char*" +defs["ImVector_char_end"][2]["call_args"] = "()" +defs["ImVector_char_end"][2]["cimguiname"] = "ImVector_char_end" +defs["ImVector_char_end"][2]["defaults"] = {} +defs["ImVector_char_end"][2]["funcname"] = "end" +defs["ImVector_char_end"][2]["ov_cimguiname"] = "ImVector_char_end_const" +defs["ImVector_char_end"][2]["ret"] = "char const *" +defs["ImVector_char_end"][2]["signature"] = "()const" +defs["ImVector_char_end"][2]["stname"] = "ImVector_char" +defs["ImVector_char_end"][2]["templatedgen"] = true +defs["ImVector_char_end"]["()"] = defs["ImVector_char_end"][1] +defs["ImVector_char_end"]["()const"] = defs["ImVector_char_end"][2] +defs["ImVector_char_erase"] = {} +defs["ImVector_char_erase"][1] = {} +defs["ImVector_char_erase"][1]["args"] = "(ImVector_char* self,char const * it)" +defs["ImVector_char_erase"][1]["argsT"] = {} +defs["ImVector_char_erase"][1]["argsT"][1] = {} +defs["ImVector_char_erase"][1]["argsT"][1]["name"] = "self" +defs["ImVector_char_erase"][1]["argsT"][1]["type"] = "ImVector_char*" +defs["ImVector_char_erase"][1]["argsT"][2] = {} +defs["ImVector_char_erase"][1]["argsT"][2]["name"] = "it" +defs["ImVector_char_erase"][1]["argsT"][2]["type"] = "char const *" +defs["ImVector_char_erase"][1]["call_args"] = "(it)" +defs["ImVector_char_erase"][1]["cimguiname"] = "ImVector_char_erase" +defs["ImVector_char_erase"][1]["defaults"] = {} +defs["ImVector_char_erase"][1]["funcname"] = "erase" +defs["ImVector_char_erase"][1]["ov_cimguiname"] = "ImVector_char_erase" +defs["ImVector_char_erase"][1]["ret"] = "char*" +defs["ImVector_char_erase"][1]["signature"] = "(const char*)" +defs["ImVector_char_erase"][1]["stname"] = "ImVector_char" +defs["ImVector_char_erase"][1]["templatedgen"] = true +defs["ImVector_char_erase"][2] = {} +defs["ImVector_char_erase"][2]["args"] = "(ImVector_char* self,char const * it,char const * it_last)" +defs["ImVector_char_erase"][2]["argsT"] = {} +defs["ImVector_char_erase"][2]["argsT"][1] = {} +defs["ImVector_char_erase"][2]["argsT"][1]["name"] = "self" +defs["ImVector_char_erase"][2]["argsT"][1]["type"] = "ImVector_char*" +defs["ImVector_char_erase"][2]["argsT"][2] = {} +defs["ImVector_char_erase"][2]["argsT"][2]["name"] = "it" +defs["ImVector_char_erase"][2]["argsT"][2]["type"] = "char const *" +defs["ImVector_char_erase"][2]["argsT"][3] = {} +defs["ImVector_char_erase"][2]["argsT"][3]["name"] = "it_last" +defs["ImVector_char_erase"][2]["argsT"][3]["type"] = "char const *" +defs["ImVector_char_erase"][2]["call_args"] = "(it,it_last)" +defs["ImVector_char_erase"][2]["cimguiname"] = "ImVector_char_erase" +defs["ImVector_char_erase"][2]["defaults"] = {} +defs["ImVector_char_erase"][2]["funcname"] = "erase" +defs["ImVector_char_erase"][2]["ov_cimguiname"] = "ImVector_char_eraseTPtr" +defs["ImVector_char_erase"][2]["ret"] = "char*" +defs["ImVector_char_erase"][2]["signature"] = "(const char*,const char*)" +defs["ImVector_char_erase"][2]["stname"] = "ImVector_char" +defs["ImVector_char_erase"][2]["templatedgen"] = true +defs["ImVector_char_erase"]["(const char*)"] = defs["ImVector_char_erase"][1] +defs["ImVector_char_erase"]["(const char*,const char*)"] = defs["ImVector_char_erase"][2] +defs["ImVector_char_erase_unsorted"] = {} +defs["ImVector_char_erase_unsorted"][1] = {} +defs["ImVector_char_erase_unsorted"][1]["args"] = "(ImVector_char* self,char const * it)" +defs["ImVector_char_erase_unsorted"][1]["argsT"] = {} +defs["ImVector_char_erase_unsorted"][1]["argsT"][1] = {} +defs["ImVector_char_erase_unsorted"][1]["argsT"][1]["name"] = "self" +defs["ImVector_char_erase_unsorted"][1]["argsT"][1]["type"] = "ImVector_char*" +defs["ImVector_char_erase_unsorted"][1]["argsT"][2] = {} +defs["ImVector_char_erase_unsorted"][1]["argsT"][2]["name"] = "it" +defs["ImVector_char_erase_unsorted"][1]["argsT"][2]["type"] = "char const *" +defs["ImVector_char_erase_unsorted"][1]["call_args"] = "(it)" +defs["ImVector_char_erase_unsorted"][1]["cimguiname"] = "ImVector_char_erase_unsorted" +defs["ImVector_char_erase_unsorted"][1]["defaults"] = {} +defs["ImVector_char_erase_unsorted"][1]["funcname"] = "erase_unsorted" +defs["ImVector_char_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_char_erase_unsorted" +defs["ImVector_char_erase_unsorted"][1]["ret"] = "char*" +defs["ImVector_char_erase_unsorted"][1]["signature"] = "(const char*)" +defs["ImVector_char_erase_unsorted"][1]["stname"] = "ImVector_char" +defs["ImVector_char_erase_unsorted"][1]["templatedgen"] = true +defs["ImVector_char_erase_unsorted"]["(const char*)"] = defs["ImVector_char_erase_unsorted"][1] +defs["ImVector_char_front"] = {} +defs["ImVector_char_front"][1] = {} +defs["ImVector_char_front"][1]["args"] = "(ImVector_char* self)" +defs["ImVector_char_front"][1]["argsT"] = {} +defs["ImVector_char_front"][1]["argsT"][1] = {} +defs["ImVector_char_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_char_front"][1]["argsT"][1]["type"] = "ImVector_char*" +defs["ImVector_char_front"][1]["call_args"] = "()" +defs["ImVector_char_front"][1]["cimguiname"] = "ImVector_char_front" +defs["ImVector_char_front"][1]["defaults"] = {} +defs["ImVector_char_front"][1]["funcname"] = "front" +defs["ImVector_char_front"][1]["ov_cimguiname"] = "ImVector_char_front" +defs["ImVector_char_front"][1]["ret"] = "char*" +defs["ImVector_char_front"][1]["retref"] = "&" +defs["ImVector_char_front"][1]["signature"] = "()" +defs["ImVector_char_front"][1]["stname"] = "ImVector_char" +defs["ImVector_char_front"][1]["templatedgen"] = true +defs["ImVector_char_front"][2] = {} +defs["ImVector_char_front"][2]["args"] = "(const ImVector_char* self)" +defs["ImVector_char_front"][2]["argsT"] = {} +defs["ImVector_char_front"][2]["argsT"][1] = {} +defs["ImVector_char_front"][2]["argsT"][1]["name"] = "self" +defs["ImVector_char_front"][2]["argsT"][1]["type"] = "const ImVector_char*" +defs["ImVector_char_front"][2]["call_args"] = "()" +defs["ImVector_char_front"][2]["cimguiname"] = "ImVector_char_front" +defs["ImVector_char_front"][2]["defaults"] = {} +defs["ImVector_char_front"][2]["funcname"] = "front" +defs["ImVector_char_front"][2]["ov_cimguiname"] = "ImVector_char_front_const" +defs["ImVector_char_front"][2]["ret"] = "char const *" +defs["ImVector_char_front"][2]["retref"] = "&" +defs["ImVector_char_front"][2]["signature"] = "()const" +defs["ImVector_char_front"][2]["stname"] = "ImVector_char" +defs["ImVector_char_front"][2]["templatedgen"] = true +defs["ImVector_char_front"]["()"] = defs["ImVector_char_front"][1] +defs["ImVector_char_front"]["()const"] = defs["ImVector_char_front"][2] +defs["ImVector_char_index_from_ptr"] = {} +defs["ImVector_char_index_from_ptr"][1] = {} +defs["ImVector_char_index_from_ptr"][1]["args"] = "(const ImVector_char* self,char const * it)" +defs["ImVector_char_index_from_ptr"][1]["argsT"] = {} +defs["ImVector_char_index_from_ptr"][1]["argsT"][1] = {} +defs["ImVector_char_index_from_ptr"][1]["argsT"][1]["name"] = "self" +defs["ImVector_char_index_from_ptr"][1]["argsT"][1]["type"] = "const ImVector_char*" +defs["ImVector_char_index_from_ptr"][1]["argsT"][2] = {} +defs["ImVector_char_index_from_ptr"][1]["argsT"][2]["name"] = "it" +defs["ImVector_char_index_from_ptr"][1]["argsT"][2]["type"] = "char const *" +defs["ImVector_char_index_from_ptr"][1]["call_args"] = "(it)" +defs["ImVector_char_index_from_ptr"][1]["cimguiname"] = "ImVector_char_index_from_ptr" +defs["ImVector_char_index_from_ptr"][1]["defaults"] = {} +defs["ImVector_char_index_from_ptr"][1]["funcname"] = "index_from_ptr" +defs["ImVector_char_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_char_index_from_ptr" +defs["ImVector_char_index_from_ptr"][1]["ret"] = "int" +defs["ImVector_char_index_from_ptr"][1]["signature"] = "(const char*)const" +defs["ImVector_char_index_from_ptr"][1]["stname"] = "ImVector_char" +defs["ImVector_char_index_from_ptr"][1]["templatedgen"] = true +defs["ImVector_char_index_from_ptr"]["(const char*)const"] = defs["ImVector_char_index_from_ptr"][1] +defs["ImVector_char_insert"] = {} +defs["ImVector_char_insert"][1] = {} +defs["ImVector_char_insert"][1]["args"] = "(ImVector_char* self,char const * it,const char v)" +defs["ImVector_char_insert"][1]["argsT"] = {} +defs["ImVector_char_insert"][1]["argsT"][1] = {} +defs["ImVector_char_insert"][1]["argsT"][1]["name"] = "self" +defs["ImVector_char_insert"][1]["argsT"][1]["type"] = "ImVector_char*" +defs["ImVector_char_insert"][1]["argsT"][2] = {} +defs["ImVector_char_insert"][1]["argsT"][2]["name"] = "it" +defs["ImVector_char_insert"][1]["argsT"][2]["type"] = "char const *" +defs["ImVector_char_insert"][1]["argsT"][3] = {} +defs["ImVector_char_insert"][1]["argsT"][3]["name"] = "v" +defs["ImVector_char_insert"][1]["argsT"][3]["type"] = "const char" +defs["ImVector_char_insert"][1]["call_args"] = "(it,v)" +defs["ImVector_char_insert"][1]["cimguiname"] = "ImVector_char_insert" +defs["ImVector_char_insert"][1]["defaults"] = {} +defs["ImVector_char_insert"][1]["funcname"] = "insert" +defs["ImVector_char_insert"][1]["ov_cimguiname"] = "ImVector_char_insert" +defs["ImVector_char_insert"][1]["ret"] = "char*" +defs["ImVector_char_insert"][1]["signature"] = "(const char*,const char)" +defs["ImVector_char_insert"][1]["stname"] = "ImVector_char" +defs["ImVector_char_insert"][1]["templatedgen"] = true +defs["ImVector_char_insert"]["(const char*,const char)"] = defs["ImVector_char_insert"][1] +defs["ImVector_char_pop_back"] = {} +defs["ImVector_char_pop_back"][1] = {} +defs["ImVector_char_pop_back"][1]["args"] = "(ImVector_char* self)" +defs["ImVector_char_pop_back"][1]["argsT"] = {} +defs["ImVector_char_pop_back"][1]["argsT"][1] = {} +defs["ImVector_char_pop_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_char_pop_back"][1]["argsT"][1]["type"] = "ImVector_char*" +defs["ImVector_char_pop_back"][1]["call_args"] = "()" +defs["ImVector_char_pop_back"][1]["cimguiname"] = "ImVector_char_pop_back" +defs["ImVector_char_pop_back"][1]["defaults"] = {} +defs["ImVector_char_pop_back"][1]["funcname"] = "pop_back" +defs["ImVector_char_pop_back"][1]["ov_cimguiname"] = "ImVector_char_pop_back" +defs["ImVector_char_pop_back"][1]["ret"] = "void" +defs["ImVector_char_pop_back"][1]["signature"] = "()" +defs["ImVector_char_pop_back"][1]["stname"] = "ImVector_char" +defs["ImVector_char_pop_back"][1]["templatedgen"] = true +defs["ImVector_char_pop_back"]["()"] = defs["ImVector_char_pop_back"][1] +defs["ImVector_char_push_back"] = {} +defs["ImVector_char_push_back"][1] = {} +defs["ImVector_char_push_back"][1]["args"] = "(ImVector_char* self,const char v)" +defs["ImVector_char_push_back"][1]["argsT"] = {} +defs["ImVector_char_push_back"][1]["argsT"][1] = {} +defs["ImVector_char_push_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_char_push_back"][1]["argsT"][1]["type"] = "ImVector_char*" +defs["ImVector_char_push_back"][1]["argsT"][2] = {} +defs["ImVector_char_push_back"][1]["argsT"][2]["name"] = "v" +defs["ImVector_char_push_back"][1]["argsT"][2]["type"] = "const char" +defs["ImVector_char_push_back"][1]["call_args"] = "(v)" +defs["ImVector_char_push_back"][1]["cimguiname"] = "ImVector_char_push_back" +defs["ImVector_char_push_back"][1]["defaults"] = {} +defs["ImVector_char_push_back"][1]["funcname"] = "push_back" +defs["ImVector_char_push_back"][1]["ov_cimguiname"] = "ImVector_char_push_back" +defs["ImVector_char_push_back"][1]["ret"] = "void" +defs["ImVector_char_push_back"][1]["signature"] = "(const char)" +defs["ImVector_char_push_back"][1]["stname"] = "ImVector_char" +defs["ImVector_char_push_back"][1]["templatedgen"] = true +defs["ImVector_char_push_back"]["(const char)"] = defs["ImVector_char_push_back"][1] +defs["ImVector_char_push_front"] = {} +defs["ImVector_char_push_front"][1] = {} +defs["ImVector_char_push_front"][1]["args"] = "(ImVector_char* self,const char v)" +defs["ImVector_char_push_front"][1]["argsT"] = {} +defs["ImVector_char_push_front"][1]["argsT"][1] = {} +defs["ImVector_char_push_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_char_push_front"][1]["argsT"][1]["type"] = "ImVector_char*" +defs["ImVector_char_push_front"][1]["argsT"][2] = {} +defs["ImVector_char_push_front"][1]["argsT"][2]["name"] = "v" +defs["ImVector_char_push_front"][1]["argsT"][2]["type"] = "const char" +defs["ImVector_char_push_front"][1]["call_args"] = "(v)" +defs["ImVector_char_push_front"][1]["cimguiname"] = "ImVector_char_push_front" +defs["ImVector_char_push_front"][1]["defaults"] = {} +defs["ImVector_char_push_front"][1]["funcname"] = "push_front" +defs["ImVector_char_push_front"][1]["ov_cimguiname"] = "ImVector_char_push_front" +defs["ImVector_char_push_front"][1]["ret"] = "void" +defs["ImVector_char_push_front"][1]["signature"] = "(const char)" +defs["ImVector_char_push_front"][1]["stname"] = "ImVector_char" +defs["ImVector_char_push_front"][1]["templatedgen"] = true +defs["ImVector_char_push_front"]["(const char)"] = defs["ImVector_char_push_front"][1] +defs["ImVector_char_reserve"] = {} +defs["ImVector_char_reserve"][1] = {} +defs["ImVector_char_reserve"][1]["args"] = "(ImVector_char* self,int new_capacity)" +defs["ImVector_char_reserve"][1]["argsT"] = {} +defs["ImVector_char_reserve"][1]["argsT"][1] = {} +defs["ImVector_char_reserve"][1]["argsT"][1]["name"] = "self" +defs["ImVector_char_reserve"][1]["argsT"][1]["type"] = "ImVector_char*" +defs["ImVector_char_reserve"][1]["argsT"][2] = {} +defs["ImVector_char_reserve"][1]["argsT"][2]["name"] = "new_capacity" +defs["ImVector_char_reserve"][1]["argsT"][2]["type"] = "int" +defs["ImVector_char_reserve"][1]["call_args"] = "(new_capacity)" +defs["ImVector_char_reserve"][1]["cimguiname"] = "ImVector_char_reserve" +defs["ImVector_char_reserve"][1]["defaults"] = {} +defs["ImVector_char_reserve"][1]["funcname"] = "reserve" +defs["ImVector_char_reserve"][1]["ov_cimguiname"] = "ImVector_char_reserve" +defs["ImVector_char_reserve"][1]["ret"] = "void" +defs["ImVector_char_reserve"][1]["signature"] = "(int)" +defs["ImVector_char_reserve"][1]["stname"] = "ImVector_char" +defs["ImVector_char_reserve"][1]["templatedgen"] = true +defs["ImVector_char_reserve"]["(int)"] = defs["ImVector_char_reserve"][1] +defs["ImVector_char_resize"] = {} +defs["ImVector_char_resize"][1] = {} +defs["ImVector_char_resize"][1]["args"] = "(ImVector_char* self,int new_size)" +defs["ImVector_char_resize"][1]["argsT"] = {} +defs["ImVector_char_resize"][1]["argsT"][1] = {} +defs["ImVector_char_resize"][1]["argsT"][1]["name"] = "self" +defs["ImVector_char_resize"][1]["argsT"][1]["type"] = "ImVector_char*" +defs["ImVector_char_resize"][1]["argsT"][2] = {} +defs["ImVector_char_resize"][1]["argsT"][2]["name"] = "new_size" +defs["ImVector_char_resize"][1]["argsT"][2]["type"] = "int" +defs["ImVector_char_resize"][1]["call_args"] = "(new_size)" +defs["ImVector_char_resize"][1]["cimguiname"] = "ImVector_char_resize" +defs["ImVector_char_resize"][1]["defaults"] = {} +defs["ImVector_char_resize"][1]["funcname"] = "resize" +defs["ImVector_char_resize"][1]["ov_cimguiname"] = "ImVector_char_resize" +defs["ImVector_char_resize"][1]["ret"] = "void" +defs["ImVector_char_resize"][1]["signature"] = "(int)" +defs["ImVector_char_resize"][1]["stname"] = "ImVector_char" +defs["ImVector_char_resize"][1]["templatedgen"] = true +defs["ImVector_char_resize"][2] = {} +defs["ImVector_char_resize"][2]["args"] = "(ImVector_char* self,int new_size,const char v)" +defs["ImVector_char_resize"][2]["argsT"] = {} +defs["ImVector_char_resize"][2]["argsT"][1] = {} +defs["ImVector_char_resize"][2]["argsT"][1]["name"] = "self" +defs["ImVector_char_resize"][2]["argsT"][1]["type"] = "ImVector_char*" +defs["ImVector_char_resize"][2]["argsT"][2] = {} +defs["ImVector_char_resize"][2]["argsT"][2]["name"] = "new_size" +defs["ImVector_char_resize"][2]["argsT"][2]["type"] = "int" +defs["ImVector_char_resize"][2]["argsT"][3] = {} +defs["ImVector_char_resize"][2]["argsT"][3]["name"] = "v" +defs["ImVector_char_resize"][2]["argsT"][3]["type"] = "const char" +defs["ImVector_char_resize"][2]["call_args"] = "(new_size,v)" +defs["ImVector_char_resize"][2]["cimguiname"] = "ImVector_char_resize" +defs["ImVector_char_resize"][2]["defaults"] = {} +defs["ImVector_char_resize"][2]["funcname"] = "resize" +defs["ImVector_char_resize"][2]["ov_cimguiname"] = "ImVector_char_resizeT" +defs["ImVector_char_resize"][2]["ret"] = "void" +defs["ImVector_char_resize"][2]["signature"] = "(int,const char)" +defs["ImVector_char_resize"][2]["stname"] = "ImVector_char" +defs["ImVector_char_resize"][2]["templatedgen"] = true +defs["ImVector_char_resize"]["(int)"] = defs["ImVector_char_resize"][1] +defs["ImVector_char_resize"]["(int,const char)"] = defs["ImVector_char_resize"][2] +defs["ImVector_char_size"] = {} +defs["ImVector_char_size"][1] = {} +defs["ImVector_char_size"][1]["args"] = "(const ImVector_char* self)" +defs["ImVector_char_size"][1]["argsT"] = {} +defs["ImVector_char_size"][1]["argsT"][1] = {} +defs["ImVector_char_size"][1]["argsT"][1]["name"] = "self" +defs["ImVector_char_size"][1]["argsT"][1]["type"] = "const ImVector_char*" +defs["ImVector_char_size"][1]["call_args"] = "()" +defs["ImVector_char_size"][1]["cimguiname"] = "ImVector_char_size" +defs["ImVector_char_size"][1]["defaults"] = {} +defs["ImVector_char_size"][1]["funcname"] = "size" +defs["ImVector_char_size"][1]["ov_cimguiname"] = "ImVector_char_size" +defs["ImVector_char_size"][1]["ret"] = "int" +defs["ImVector_char_size"][1]["signature"] = "()const" +defs["ImVector_char_size"][1]["stname"] = "ImVector_char" +defs["ImVector_char_size"][1]["templatedgen"] = true +defs["ImVector_char_size"]["()const"] = defs["ImVector_char_size"][1] +defs["ImVector_char_size_in_bytes"] = {} +defs["ImVector_char_size_in_bytes"][1] = {} +defs["ImVector_char_size_in_bytes"][1]["args"] = "(const ImVector_char* self)" +defs["ImVector_char_size_in_bytes"][1]["argsT"] = {} +defs["ImVector_char_size_in_bytes"][1]["argsT"][1] = {} +defs["ImVector_char_size_in_bytes"][1]["argsT"][1]["name"] = "self" +defs["ImVector_char_size_in_bytes"][1]["argsT"][1]["type"] = "const ImVector_char*" +defs["ImVector_char_size_in_bytes"][1]["call_args"] = "()" +defs["ImVector_char_size_in_bytes"][1]["cimguiname"] = "ImVector_char_size_in_bytes" +defs["ImVector_char_size_in_bytes"][1]["defaults"] = {} +defs["ImVector_char_size_in_bytes"][1]["funcname"] = "size_in_bytes" +defs["ImVector_char_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_char_size_in_bytes" +defs["ImVector_char_size_in_bytes"][1]["ret"] = "int" +defs["ImVector_char_size_in_bytes"][1]["signature"] = "()const" +defs["ImVector_char_size_in_bytes"][1]["stname"] = "ImVector_char" +defs["ImVector_char_size_in_bytes"][1]["templatedgen"] = true +defs["ImVector_char_size_in_bytes"]["()const"] = defs["ImVector_char_size_in_bytes"][1] +defs["ImVector_char_swap"] = {} +defs["ImVector_char_swap"][1] = {} +defs["ImVector_char_swap"][1]["args"] = "(ImVector_char* self,ImVector_char rhs)" +defs["ImVector_char_swap"][1]["argsT"] = {} +defs["ImVector_char_swap"][1]["argsT"][1] = {} +defs["ImVector_char_swap"][1]["argsT"][1]["name"] = "self" +defs["ImVector_char_swap"][1]["argsT"][1]["type"] = "ImVector_char*" +defs["ImVector_char_swap"][1]["argsT"][2] = {} +defs["ImVector_char_swap"][1]["argsT"][2]["name"] = "rhs" +defs["ImVector_char_swap"][1]["argsT"][2]["type"] = "ImVector_char&" +defs["ImVector_char_swap"][1]["call_args"] = "(rhs)" +defs["ImVector_char_swap"][1]["cimguiname"] = "ImVector_char_swap" +defs["ImVector_char_swap"][1]["defaults"] = {} +defs["ImVector_char_swap"][1]["funcname"] = "swap" +defs["ImVector_char_swap"][1]["ov_cimguiname"] = "ImVector_char_swap" +defs["ImVector_char_swap"][1]["ret"] = "void" +defs["ImVector_char_swap"][1]["signature"] = "(ImVector)" +defs["ImVector_char_swap"][1]["stname"] = "ImVector_char" +defs["ImVector_char_swap"][1]["templatedgen"] = true +defs["ImVector_char_swap"]["(ImVector)"] = defs["ImVector_char_swap"][1] defs["ImVector_clear"] = {} defs["ImVector_clear"][1] = {} defs["ImVector_clear"][1]["args"] = "(ImVector* self)" @@ -4792,10 +13059,10 @@ defs["ImVector_contains"][1]["defaults"] = {} defs["ImVector_contains"][1]["funcname"] = "contains" defs["ImVector_contains"][1]["ov_cimguiname"] = "ImVector_contains" defs["ImVector_contains"][1]["ret"] = "bool" -defs["ImVector_contains"][1]["signature"] = "(const T)" +defs["ImVector_contains"][1]["signature"] = "(const T)const" defs["ImVector_contains"][1]["stname"] = "ImVector" defs["ImVector_contains"][1]["templated"] = true -defs["ImVector_contains"]["(const T)"] = defs["ImVector_contains"][1] +defs["ImVector_contains"]["(const T)const"] = defs["ImVector_contains"][1] defs["ImVector_destroy"] = {} defs["ImVector_destroy"][1] = {} defs["ImVector_destroy"][1]["args"] = "(ImVector* self)" @@ -4811,6 +13078,7 @@ defs["ImVector_destroy"][1]["ov_cimguiname"] = "ImVector_destroy" defs["ImVector_destroy"][1]["ret"] = "void" defs["ImVector_destroy"][1]["signature"] = "(ImVector*)" defs["ImVector_destroy"][1]["stname"] = "ImVector" +defs["ImVector_destroy"][1]["templated"] = true defs["ImVector_destroy"]["(ImVector*)"] = defs["ImVector_destroy"][1] defs["ImVector_empty"] = {} defs["ImVector_empty"][1] = {} @@ -4827,10 +13095,10 @@ defs["ImVector_empty"][1]["defaults"] = {} defs["ImVector_empty"][1]["funcname"] = "empty" defs["ImVector_empty"][1]["ov_cimguiname"] = "ImVector_empty" defs["ImVector_empty"][1]["ret"] = "bool" -defs["ImVector_empty"][1]["signature"] = "()" +defs["ImVector_empty"][1]["signature"] = "()const" defs["ImVector_empty"][1]["stname"] = "ImVector" defs["ImVector_empty"][1]["templated"] = true -defs["ImVector_empty"]["()"] = defs["ImVector_empty"][1] +defs["ImVector_empty"]["()const"] = defs["ImVector_empty"][1] defs["ImVector_end"] = {} defs["ImVector_end"][1] = {} defs["ImVector_end"][1]["args"] = "(ImVector* self)" @@ -4861,12 +13129,13 @@ defs["ImVector_end"][2]["cimguiname"] = "ImVector_end" defs["ImVector_end"][2]["comment"] = "" defs["ImVector_end"][2]["defaults"] = {} defs["ImVector_end"][2]["funcname"] = "end" -defs["ImVector_end"][2]["ov_cimguiname"] = "ImVector_end" +defs["ImVector_end"][2]["ov_cimguiname"] = "ImVector_end_const" defs["ImVector_end"][2]["ret"] = "const T*" -defs["ImVector_end"][2]["signature"] = "()" +defs["ImVector_end"][2]["signature"] = "()const" defs["ImVector_end"][2]["stname"] = "ImVector" defs["ImVector_end"][2]["templated"] = true -defs["ImVector_end"]["()"] = defs["ImVector_end"][2] +defs["ImVector_end"]["()"] = defs["ImVector_end"][1] +defs["ImVector_end"]["()const"] = defs["ImVector_end"][2] defs["ImVector_erase"] = {} defs["ImVector_erase"][1] = {} defs["ImVector_erase"][1]["args"] = "(ImVector* self,const T* it)" @@ -4935,6 +13204,557 @@ defs["ImVector_erase_unsorted"][1]["signature"] = "(const T*)" defs["ImVector_erase_unsorted"][1]["stname"] = "ImVector" defs["ImVector_erase_unsorted"][1]["templated"] = true defs["ImVector_erase_unsorted"]["(const T*)"] = defs["ImVector_erase_unsorted"][1] +defs["ImVector_float_ImVector_float"] = {} +defs["ImVector_float_ImVector_float"][1] = {} +defs["ImVector_float_ImVector_float"][1]["args"] = "()" +defs["ImVector_float_ImVector_float"][1]["argsT"] = {} +defs["ImVector_float_ImVector_float"][1]["call_args"] = "()" +defs["ImVector_float_ImVector_float"][1]["cimguiname"] = "ImVector_float_ImVector_float" +defs["ImVector_float_ImVector_float"][1]["constructor"] = true +defs["ImVector_float_ImVector_float"][1]["defaults"] = {} +defs["ImVector_float_ImVector_float"][1]["funcname"] = "ImVector_float" +defs["ImVector_float_ImVector_float"][1]["ov_cimguiname"] = "ImVector_float_ImVector_float" +defs["ImVector_float_ImVector_float"][1]["signature"] = "()" +defs["ImVector_float_ImVector_float"][1]["stname"] = "ImVector_float" +defs["ImVector_float_ImVector_float"][1]["templatedgen"] = true +defs["ImVector_float_ImVector_float"][2] = {} +defs["ImVector_float_ImVector_float"][2]["args"] = "(const ImVector_float src)" +defs["ImVector_float_ImVector_float"][2]["argsT"] = {} +defs["ImVector_float_ImVector_float"][2]["argsT"][1] = {} +defs["ImVector_float_ImVector_float"][2]["argsT"][1]["name"] = "src" +defs["ImVector_float_ImVector_float"][2]["argsT"][1]["type"] = "const ImVector_float" +defs["ImVector_float_ImVector_float"][2]["call_args"] = "(src)" +defs["ImVector_float_ImVector_float"][2]["cimguiname"] = "ImVector_float_ImVector_float" +defs["ImVector_float_ImVector_float"][2]["constructor"] = true +defs["ImVector_float_ImVector_float"][2]["defaults"] = {} +defs["ImVector_float_ImVector_float"][2]["funcname"] = "ImVector_float" +defs["ImVector_float_ImVector_float"][2]["ov_cimguiname"] = "ImVector_float_ImVector_floatVector" +defs["ImVector_float_ImVector_float"][2]["signature"] = "(const ImVector)" +defs["ImVector_float_ImVector_float"][2]["stname"] = "ImVector_float" +defs["ImVector_float_ImVector_float"][2]["templatedgen"] = true +defs["ImVector_float_ImVector_float"]["()"] = defs["ImVector_float_ImVector_float"][1] +defs["ImVector_float_ImVector_float"]["(const ImVector)"] = defs["ImVector_float_ImVector_float"][2] +defs["ImVector_float__grow_capacity"] = {} +defs["ImVector_float__grow_capacity"][1] = {} +defs["ImVector_float__grow_capacity"][1]["args"] = "(const ImVector_float* self,int sz)" +defs["ImVector_float__grow_capacity"][1]["argsT"] = {} +defs["ImVector_float__grow_capacity"][1]["argsT"][1] = {} +defs["ImVector_float__grow_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_float__grow_capacity"][1]["argsT"][1]["type"] = "const ImVector_float*" +defs["ImVector_float__grow_capacity"][1]["argsT"][2] = {} +defs["ImVector_float__grow_capacity"][1]["argsT"][2]["name"] = "sz" +defs["ImVector_float__grow_capacity"][1]["argsT"][2]["type"] = "int" +defs["ImVector_float__grow_capacity"][1]["call_args"] = "(sz)" +defs["ImVector_float__grow_capacity"][1]["cimguiname"] = "ImVector_float__grow_capacity" +defs["ImVector_float__grow_capacity"][1]["defaults"] = {} +defs["ImVector_float__grow_capacity"][1]["funcname"] = "_grow_capacity" +defs["ImVector_float__grow_capacity"][1]["ov_cimguiname"] = "ImVector_float__grow_capacity" +defs["ImVector_float__grow_capacity"][1]["ret"] = "int" +defs["ImVector_float__grow_capacity"][1]["signature"] = "(int)const" +defs["ImVector_float__grow_capacity"][1]["stname"] = "ImVector_float" +defs["ImVector_float__grow_capacity"][1]["templatedgen"] = true +defs["ImVector_float__grow_capacity"]["(int)const"] = defs["ImVector_float__grow_capacity"][1] +defs["ImVector_float_back"] = {} +defs["ImVector_float_back"][1] = {} +defs["ImVector_float_back"][1]["args"] = "(ImVector_float* self)" +defs["ImVector_float_back"][1]["argsT"] = {} +defs["ImVector_float_back"][1]["argsT"][1] = {} +defs["ImVector_float_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_float_back"][1]["argsT"][1]["type"] = "ImVector_float*" +defs["ImVector_float_back"][1]["call_args"] = "()" +defs["ImVector_float_back"][1]["cimguiname"] = "ImVector_float_back" +defs["ImVector_float_back"][1]["defaults"] = {} +defs["ImVector_float_back"][1]["funcname"] = "back" +defs["ImVector_float_back"][1]["ov_cimguiname"] = "ImVector_float_back" +defs["ImVector_float_back"][1]["ret"] = "float*" +defs["ImVector_float_back"][1]["retref"] = "&" +defs["ImVector_float_back"][1]["signature"] = "()" +defs["ImVector_float_back"][1]["stname"] = "ImVector_float" +defs["ImVector_float_back"][1]["templatedgen"] = true +defs["ImVector_float_back"][2] = {} +defs["ImVector_float_back"][2]["args"] = "(const ImVector_float* self)" +defs["ImVector_float_back"][2]["argsT"] = {} +defs["ImVector_float_back"][2]["argsT"][1] = {} +defs["ImVector_float_back"][2]["argsT"][1]["name"] = "self" +defs["ImVector_float_back"][2]["argsT"][1]["type"] = "const ImVector_float*" +defs["ImVector_float_back"][2]["call_args"] = "()" +defs["ImVector_float_back"][2]["cimguiname"] = "ImVector_float_back" +defs["ImVector_float_back"][2]["defaults"] = {} +defs["ImVector_float_back"][2]["funcname"] = "back" +defs["ImVector_float_back"][2]["ov_cimguiname"] = "ImVector_float_back_const" +defs["ImVector_float_back"][2]["ret"] = "float const *" +defs["ImVector_float_back"][2]["retref"] = "&" +defs["ImVector_float_back"][2]["signature"] = "()const" +defs["ImVector_float_back"][2]["stname"] = "ImVector_float" +defs["ImVector_float_back"][2]["templatedgen"] = true +defs["ImVector_float_back"]["()"] = defs["ImVector_float_back"][1] +defs["ImVector_float_back"]["()const"] = defs["ImVector_float_back"][2] +defs["ImVector_float_begin"] = {} +defs["ImVector_float_begin"][1] = {} +defs["ImVector_float_begin"][1]["args"] = "(ImVector_float* self)" +defs["ImVector_float_begin"][1]["argsT"] = {} +defs["ImVector_float_begin"][1]["argsT"][1] = {} +defs["ImVector_float_begin"][1]["argsT"][1]["name"] = "self" +defs["ImVector_float_begin"][1]["argsT"][1]["type"] = "ImVector_float*" +defs["ImVector_float_begin"][1]["call_args"] = "()" +defs["ImVector_float_begin"][1]["cimguiname"] = "ImVector_float_begin" +defs["ImVector_float_begin"][1]["defaults"] = {} +defs["ImVector_float_begin"][1]["funcname"] = "begin" +defs["ImVector_float_begin"][1]["ov_cimguiname"] = "ImVector_float_begin" +defs["ImVector_float_begin"][1]["ret"] = "float*" +defs["ImVector_float_begin"][1]["signature"] = "()" +defs["ImVector_float_begin"][1]["stname"] = "ImVector_float" +defs["ImVector_float_begin"][1]["templatedgen"] = true +defs["ImVector_float_begin"][2] = {} +defs["ImVector_float_begin"][2]["args"] = "(const ImVector_float* self)" +defs["ImVector_float_begin"][2]["argsT"] = {} +defs["ImVector_float_begin"][2]["argsT"][1] = {} +defs["ImVector_float_begin"][2]["argsT"][1]["name"] = "self" +defs["ImVector_float_begin"][2]["argsT"][1]["type"] = "const ImVector_float*" +defs["ImVector_float_begin"][2]["call_args"] = "()" +defs["ImVector_float_begin"][2]["cimguiname"] = "ImVector_float_begin" +defs["ImVector_float_begin"][2]["defaults"] = {} +defs["ImVector_float_begin"][2]["funcname"] = "begin" +defs["ImVector_float_begin"][2]["ov_cimguiname"] = "ImVector_float_begin_const" +defs["ImVector_float_begin"][2]["ret"] = "float const *" +defs["ImVector_float_begin"][2]["signature"] = "()const" +defs["ImVector_float_begin"][2]["stname"] = "ImVector_float" +defs["ImVector_float_begin"][2]["templatedgen"] = true +defs["ImVector_float_begin"]["()"] = defs["ImVector_float_begin"][1] +defs["ImVector_float_begin"]["()const"] = defs["ImVector_float_begin"][2] +defs["ImVector_float_capacity"] = {} +defs["ImVector_float_capacity"][1] = {} +defs["ImVector_float_capacity"][1]["args"] = "(const ImVector_float* self)" +defs["ImVector_float_capacity"][1]["argsT"] = {} +defs["ImVector_float_capacity"][1]["argsT"][1] = {} +defs["ImVector_float_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_float_capacity"][1]["argsT"][1]["type"] = "const ImVector_float*" +defs["ImVector_float_capacity"][1]["call_args"] = "()" +defs["ImVector_float_capacity"][1]["cimguiname"] = "ImVector_float_capacity" +defs["ImVector_float_capacity"][1]["defaults"] = {} +defs["ImVector_float_capacity"][1]["funcname"] = "capacity" +defs["ImVector_float_capacity"][1]["ov_cimguiname"] = "ImVector_float_capacity" +defs["ImVector_float_capacity"][1]["ret"] = "int" +defs["ImVector_float_capacity"][1]["signature"] = "()const" +defs["ImVector_float_capacity"][1]["stname"] = "ImVector_float" +defs["ImVector_float_capacity"][1]["templatedgen"] = true +defs["ImVector_float_capacity"]["()const"] = defs["ImVector_float_capacity"][1] +defs["ImVector_float_clear"] = {} +defs["ImVector_float_clear"][1] = {} +defs["ImVector_float_clear"][1]["args"] = "(ImVector_float* self)" +defs["ImVector_float_clear"][1]["argsT"] = {} +defs["ImVector_float_clear"][1]["argsT"][1] = {} +defs["ImVector_float_clear"][1]["argsT"][1]["name"] = "self" +defs["ImVector_float_clear"][1]["argsT"][1]["type"] = "ImVector_float*" +defs["ImVector_float_clear"][1]["call_args"] = "()" +defs["ImVector_float_clear"][1]["cimguiname"] = "ImVector_float_clear" +defs["ImVector_float_clear"][1]["defaults"] = {} +defs["ImVector_float_clear"][1]["funcname"] = "clear" +defs["ImVector_float_clear"][1]["ov_cimguiname"] = "ImVector_float_clear" +defs["ImVector_float_clear"][1]["ret"] = "void" +defs["ImVector_float_clear"][1]["signature"] = "()" +defs["ImVector_float_clear"][1]["stname"] = "ImVector_float" +defs["ImVector_float_clear"][1]["templatedgen"] = true +defs["ImVector_float_clear"]["()"] = defs["ImVector_float_clear"][1] +defs["ImVector_float_contains"] = {} +defs["ImVector_float_contains"][1] = {} +defs["ImVector_float_contains"][1]["args"] = "(const ImVector_float* self,const float v)" +defs["ImVector_float_contains"][1]["argsT"] = {} +defs["ImVector_float_contains"][1]["argsT"][1] = {} +defs["ImVector_float_contains"][1]["argsT"][1]["name"] = "self" +defs["ImVector_float_contains"][1]["argsT"][1]["type"] = "const ImVector_float*" +defs["ImVector_float_contains"][1]["argsT"][2] = {} +defs["ImVector_float_contains"][1]["argsT"][2]["name"] = "v" +defs["ImVector_float_contains"][1]["argsT"][2]["type"] = "const float" +defs["ImVector_float_contains"][1]["call_args"] = "(v)" +defs["ImVector_float_contains"][1]["cimguiname"] = "ImVector_float_contains" +defs["ImVector_float_contains"][1]["defaults"] = {} +defs["ImVector_float_contains"][1]["funcname"] = "contains" +defs["ImVector_float_contains"][1]["ov_cimguiname"] = "ImVector_float_contains" +defs["ImVector_float_contains"][1]["ret"] = "bool" +defs["ImVector_float_contains"][1]["signature"] = "(const float)const" +defs["ImVector_float_contains"][1]["stname"] = "ImVector_float" +defs["ImVector_float_contains"][1]["templatedgen"] = true +defs["ImVector_float_contains"]["(const float)const"] = defs["ImVector_float_contains"][1] +defs["ImVector_float_destroy"] = {} +defs["ImVector_float_destroy"][1] = {} +defs["ImVector_float_destroy"][1]["args"] = "(ImVector_float* self)" +defs["ImVector_float_destroy"][1]["argsT"] = {} +defs["ImVector_float_destroy"][1]["argsT"][1] = {} +defs["ImVector_float_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImVector_float_destroy"][1]["argsT"][1]["type"] = "ImVector_float*" +defs["ImVector_float_destroy"][1]["call_args"] = "(self)" +defs["ImVector_float_destroy"][1]["cimguiname"] = "ImVector_float_destroy" +defs["ImVector_float_destroy"][1]["defaults"] = {} +defs["ImVector_float_destroy"][1]["destructor"] = true +defs["ImVector_float_destroy"][1]["ov_cimguiname"] = "ImVector_float_destroy" +defs["ImVector_float_destroy"][1]["ret"] = "void" +defs["ImVector_float_destroy"][1]["signature"] = "(ImVector_float*)" +defs["ImVector_float_destroy"][1]["stname"] = "ImVector_float" +defs["ImVector_float_destroy"]["(ImVector_float*)"] = defs["ImVector_float_destroy"][1] +defs["ImVector_float_empty"] = {} +defs["ImVector_float_empty"][1] = {} +defs["ImVector_float_empty"][1]["args"] = "(const ImVector_float* self)" +defs["ImVector_float_empty"][1]["argsT"] = {} +defs["ImVector_float_empty"][1]["argsT"][1] = {} +defs["ImVector_float_empty"][1]["argsT"][1]["name"] = "self" +defs["ImVector_float_empty"][1]["argsT"][1]["type"] = "const ImVector_float*" +defs["ImVector_float_empty"][1]["call_args"] = "()" +defs["ImVector_float_empty"][1]["cimguiname"] = "ImVector_float_empty" +defs["ImVector_float_empty"][1]["defaults"] = {} +defs["ImVector_float_empty"][1]["funcname"] = "empty" +defs["ImVector_float_empty"][1]["ov_cimguiname"] = "ImVector_float_empty" +defs["ImVector_float_empty"][1]["ret"] = "bool" +defs["ImVector_float_empty"][1]["signature"] = "()const" +defs["ImVector_float_empty"][1]["stname"] = "ImVector_float" +defs["ImVector_float_empty"][1]["templatedgen"] = true +defs["ImVector_float_empty"]["()const"] = defs["ImVector_float_empty"][1] +defs["ImVector_float_end"] = {} +defs["ImVector_float_end"][1] = {} +defs["ImVector_float_end"][1]["args"] = "(ImVector_float* self)" +defs["ImVector_float_end"][1]["argsT"] = {} +defs["ImVector_float_end"][1]["argsT"][1] = {} +defs["ImVector_float_end"][1]["argsT"][1]["name"] = "self" +defs["ImVector_float_end"][1]["argsT"][1]["type"] = "ImVector_float*" +defs["ImVector_float_end"][1]["call_args"] = "()" +defs["ImVector_float_end"][1]["cimguiname"] = "ImVector_float_end" +defs["ImVector_float_end"][1]["defaults"] = {} +defs["ImVector_float_end"][1]["funcname"] = "end" +defs["ImVector_float_end"][1]["ov_cimguiname"] = "ImVector_float_end" +defs["ImVector_float_end"][1]["ret"] = "float*" +defs["ImVector_float_end"][1]["signature"] = "()" +defs["ImVector_float_end"][1]["stname"] = "ImVector_float" +defs["ImVector_float_end"][1]["templatedgen"] = true +defs["ImVector_float_end"][2] = {} +defs["ImVector_float_end"][2]["args"] = "(const ImVector_float* self)" +defs["ImVector_float_end"][2]["argsT"] = {} +defs["ImVector_float_end"][2]["argsT"][1] = {} +defs["ImVector_float_end"][2]["argsT"][1]["name"] = "self" +defs["ImVector_float_end"][2]["argsT"][1]["type"] = "const ImVector_float*" +defs["ImVector_float_end"][2]["call_args"] = "()" +defs["ImVector_float_end"][2]["cimguiname"] = "ImVector_float_end" +defs["ImVector_float_end"][2]["defaults"] = {} +defs["ImVector_float_end"][2]["funcname"] = "end" +defs["ImVector_float_end"][2]["ov_cimguiname"] = "ImVector_float_end_const" +defs["ImVector_float_end"][2]["ret"] = "float const *" +defs["ImVector_float_end"][2]["signature"] = "()const" +defs["ImVector_float_end"][2]["stname"] = "ImVector_float" +defs["ImVector_float_end"][2]["templatedgen"] = true +defs["ImVector_float_end"]["()"] = defs["ImVector_float_end"][1] +defs["ImVector_float_end"]["()const"] = defs["ImVector_float_end"][2] +defs["ImVector_float_erase"] = {} +defs["ImVector_float_erase"][1] = {} +defs["ImVector_float_erase"][1]["args"] = "(ImVector_float* self,float const * it)" +defs["ImVector_float_erase"][1]["argsT"] = {} +defs["ImVector_float_erase"][1]["argsT"][1] = {} +defs["ImVector_float_erase"][1]["argsT"][1]["name"] = "self" +defs["ImVector_float_erase"][1]["argsT"][1]["type"] = "ImVector_float*" +defs["ImVector_float_erase"][1]["argsT"][2] = {} +defs["ImVector_float_erase"][1]["argsT"][2]["name"] = "it" +defs["ImVector_float_erase"][1]["argsT"][2]["type"] = "float const *" +defs["ImVector_float_erase"][1]["call_args"] = "(it)" +defs["ImVector_float_erase"][1]["cimguiname"] = "ImVector_float_erase" +defs["ImVector_float_erase"][1]["defaults"] = {} +defs["ImVector_float_erase"][1]["funcname"] = "erase" +defs["ImVector_float_erase"][1]["ov_cimguiname"] = "ImVector_float_erase" +defs["ImVector_float_erase"][1]["ret"] = "float*" +defs["ImVector_float_erase"][1]["signature"] = "(const float*)" +defs["ImVector_float_erase"][1]["stname"] = "ImVector_float" +defs["ImVector_float_erase"][1]["templatedgen"] = true +defs["ImVector_float_erase"][2] = {} +defs["ImVector_float_erase"][2]["args"] = "(ImVector_float* self,float const * it,float const * it_last)" +defs["ImVector_float_erase"][2]["argsT"] = {} +defs["ImVector_float_erase"][2]["argsT"][1] = {} +defs["ImVector_float_erase"][2]["argsT"][1]["name"] = "self" +defs["ImVector_float_erase"][2]["argsT"][1]["type"] = "ImVector_float*" +defs["ImVector_float_erase"][2]["argsT"][2] = {} +defs["ImVector_float_erase"][2]["argsT"][2]["name"] = "it" +defs["ImVector_float_erase"][2]["argsT"][2]["type"] = "float const *" +defs["ImVector_float_erase"][2]["argsT"][3] = {} +defs["ImVector_float_erase"][2]["argsT"][3]["name"] = "it_last" +defs["ImVector_float_erase"][2]["argsT"][3]["type"] = "float const *" +defs["ImVector_float_erase"][2]["call_args"] = "(it,it_last)" +defs["ImVector_float_erase"][2]["cimguiname"] = "ImVector_float_erase" +defs["ImVector_float_erase"][2]["defaults"] = {} +defs["ImVector_float_erase"][2]["funcname"] = "erase" +defs["ImVector_float_erase"][2]["ov_cimguiname"] = "ImVector_float_eraseTPtr" +defs["ImVector_float_erase"][2]["ret"] = "float*" +defs["ImVector_float_erase"][2]["signature"] = "(const float*,const float*)" +defs["ImVector_float_erase"][2]["stname"] = "ImVector_float" +defs["ImVector_float_erase"][2]["templatedgen"] = true +defs["ImVector_float_erase"]["(const float*)"] = defs["ImVector_float_erase"][1] +defs["ImVector_float_erase"]["(const float*,const float*)"] = defs["ImVector_float_erase"][2] +defs["ImVector_float_erase_unsorted"] = {} +defs["ImVector_float_erase_unsorted"][1] = {} +defs["ImVector_float_erase_unsorted"][1]["args"] = "(ImVector_float* self,float const * it)" +defs["ImVector_float_erase_unsorted"][1]["argsT"] = {} +defs["ImVector_float_erase_unsorted"][1]["argsT"][1] = {} +defs["ImVector_float_erase_unsorted"][1]["argsT"][1]["name"] = "self" +defs["ImVector_float_erase_unsorted"][1]["argsT"][1]["type"] = "ImVector_float*" +defs["ImVector_float_erase_unsorted"][1]["argsT"][2] = {} +defs["ImVector_float_erase_unsorted"][1]["argsT"][2]["name"] = "it" +defs["ImVector_float_erase_unsorted"][1]["argsT"][2]["type"] = "float const *" +defs["ImVector_float_erase_unsorted"][1]["call_args"] = "(it)" +defs["ImVector_float_erase_unsorted"][1]["cimguiname"] = "ImVector_float_erase_unsorted" +defs["ImVector_float_erase_unsorted"][1]["defaults"] = {} +defs["ImVector_float_erase_unsorted"][1]["funcname"] = "erase_unsorted" +defs["ImVector_float_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_float_erase_unsorted" +defs["ImVector_float_erase_unsorted"][1]["ret"] = "float*" +defs["ImVector_float_erase_unsorted"][1]["signature"] = "(const float*)" +defs["ImVector_float_erase_unsorted"][1]["stname"] = "ImVector_float" +defs["ImVector_float_erase_unsorted"][1]["templatedgen"] = true +defs["ImVector_float_erase_unsorted"]["(const float*)"] = defs["ImVector_float_erase_unsorted"][1] +defs["ImVector_float_front"] = {} +defs["ImVector_float_front"][1] = {} +defs["ImVector_float_front"][1]["args"] = "(ImVector_float* self)" +defs["ImVector_float_front"][1]["argsT"] = {} +defs["ImVector_float_front"][1]["argsT"][1] = {} +defs["ImVector_float_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_float_front"][1]["argsT"][1]["type"] = "ImVector_float*" +defs["ImVector_float_front"][1]["call_args"] = "()" +defs["ImVector_float_front"][1]["cimguiname"] = "ImVector_float_front" +defs["ImVector_float_front"][1]["defaults"] = {} +defs["ImVector_float_front"][1]["funcname"] = "front" +defs["ImVector_float_front"][1]["ov_cimguiname"] = "ImVector_float_front" +defs["ImVector_float_front"][1]["ret"] = "float*" +defs["ImVector_float_front"][1]["retref"] = "&" +defs["ImVector_float_front"][1]["signature"] = "()" +defs["ImVector_float_front"][1]["stname"] = "ImVector_float" +defs["ImVector_float_front"][1]["templatedgen"] = true +defs["ImVector_float_front"][2] = {} +defs["ImVector_float_front"][2]["args"] = "(const ImVector_float* self)" +defs["ImVector_float_front"][2]["argsT"] = {} +defs["ImVector_float_front"][2]["argsT"][1] = {} +defs["ImVector_float_front"][2]["argsT"][1]["name"] = "self" +defs["ImVector_float_front"][2]["argsT"][1]["type"] = "const ImVector_float*" +defs["ImVector_float_front"][2]["call_args"] = "()" +defs["ImVector_float_front"][2]["cimguiname"] = "ImVector_float_front" +defs["ImVector_float_front"][2]["defaults"] = {} +defs["ImVector_float_front"][2]["funcname"] = "front" +defs["ImVector_float_front"][2]["ov_cimguiname"] = "ImVector_float_front_const" +defs["ImVector_float_front"][2]["ret"] = "float const *" +defs["ImVector_float_front"][2]["retref"] = "&" +defs["ImVector_float_front"][2]["signature"] = "()const" +defs["ImVector_float_front"][2]["stname"] = "ImVector_float" +defs["ImVector_float_front"][2]["templatedgen"] = true +defs["ImVector_float_front"]["()"] = defs["ImVector_float_front"][1] +defs["ImVector_float_front"]["()const"] = defs["ImVector_float_front"][2] +defs["ImVector_float_index_from_ptr"] = {} +defs["ImVector_float_index_from_ptr"][1] = {} +defs["ImVector_float_index_from_ptr"][1]["args"] = "(const ImVector_float* self,float const * it)" +defs["ImVector_float_index_from_ptr"][1]["argsT"] = {} +defs["ImVector_float_index_from_ptr"][1]["argsT"][1] = {} +defs["ImVector_float_index_from_ptr"][1]["argsT"][1]["name"] = "self" +defs["ImVector_float_index_from_ptr"][1]["argsT"][1]["type"] = "const ImVector_float*" +defs["ImVector_float_index_from_ptr"][1]["argsT"][2] = {} +defs["ImVector_float_index_from_ptr"][1]["argsT"][2]["name"] = "it" +defs["ImVector_float_index_from_ptr"][1]["argsT"][2]["type"] = "float const *" +defs["ImVector_float_index_from_ptr"][1]["call_args"] = "(it)" +defs["ImVector_float_index_from_ptr"][1]["cimguiname"] = "ImVector_float_index_from_ptr" +defs["ImVector_float_index_from_ptr"][1]["defaults"] = {} +defs["ImVector_float_index_from_ptr"][1]["funcname"] = "index_from_ptr" +defs["ImVector_float_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_float_index_from_ptr" +defs["ImVector_float_index_from_ptr"][1]["ret"] = "int" +defs["ImVector_float_index_from_ptr"][1]["signature"] = "(const float*)const" +defs["ImVector_float_index_from_ptr"][1]["stname"] = "ImVector_float" +defs["ImVector_float_index_from_ptr"][1]["templatedgen"] = true +defs["ImVector_float_index_from_ptr"]["(const float*)const"] = defs["ImVector_float_index_from_ptr"][1] +defs["ImVector_float_insert"] = {} +defs["ImVector_float_insert"][1] = {} +defs["ImVector_float_insert"][1]["args"] = "(ImVector_float* self,float const * it,const float v)" +defs["ImVector_float_insert"][1]["argsT"] = {} +defs["ImVector_float_insert"][1]["argsT"][1] = {} +defs["ImVector_float_insert"][1]["argsT"][1]["name"] = "self" +defs["ImVector_float_insert"][1]["argsT"][1]["type"] = "ImVector_float*" +defs["ImVector_float_insert"][1]["argsT"][2] = {} +defs["ImVector_float_insert"][1]["argsT"][2]["name"] = "it" +defs["ImVector_float_insert"][1]["argsT"][2]["type"] = "float const *" +defs["ImVector_float_insert"][1]["argsT"][3] = {} +defs["ImVector_float_insert"][1]["argsT"][3]["name"] = "v" +defs["ImVector_float_insert"][1]["argsT"][3]["type"] = "const float" +defs["ImVector_float_insert"][1]["call_args"] = "(it,v)" +defs["ImVector_float_insert"][1]["cimguiname"] = "ImVector_float_insert" +defs["ImVector_float_insert"][1]["defaults"] = {} +defs["ImVector_float_insert"][1]["funcname"] = "insert" +defs["ImVector_float_insert"][1]["ov_cimguiname"] = "ImVector_float_insert" +defs["ImVector_float_insert"][1]["ret"] = "float*" +defs["ImVector_float_insert"][1]["signature"] = "(const float*,const float)" +defs["ImVector_float_insert"][1]["stname"] = "ImVector_float" +defs["ImVector_float_insert"][1]["templatedgen"] = true +defs["ImVector_float_insert"]["(const float*,const float)"] = defs["ImVector_float_insert"][1] +defs["ImVector_float_pop_back"] = {} +defs["ImVector_float_pop_back"][1] = {} +defs["ImVector_float_pop_back"][1]["args"] = "(ImVector_float* self)" +defs["ImVector_float_pop_back"][1]["argsT"] = {} +defs["ImVector_float_pop_back"][1]["argsT"][1] = {} +defs["ImVector_float_pop_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_float_pop_back"][1]["argsT"][1]["type"] = "ImVector_float*" +defs["ImVector_float_pop_back"][1]["call_args"] = "()" +defs["ImVector_float_pop_back"][1]["cimguiname"] = "ImVector_float_pop_back" +defs["ImVector_float_pop_back"][1]["defaults"] = {} +defs["ImVector_float_pop_back"][1]["funcname"] = "pop_back" +defs["ImVector_float_pop_back"][1]["ov_cimguiname"] = "ImVector_float_pop_back" +defs["ImVector_float_pop_back"][1]["ret"] = "void" +defs["ImVector_float_pop_back"][1]["signature"] = "()" +defs["ImVector_float_pop_back"][1]["stname"] = "ImVector_float" +defs["ImVector_float_pop_back"][1]["templatedgen"] = true +defs["ImVector_float_pop_back"]["()"] = defs["ImVector_float_pop_back"][1] +defs["ImVector_float_push_back"] = {} +defs["ImVector_float_push_back"][1] = {} +defs["ImVector_float_push_back"][1]["args"] = "(ImVector_float* self,const float v)" +defs["ImVector_float_push_back"][1]["argsT"] = {} +defs["ImVector_float_push_back"][1]["argsT"][1] = {} +defs["ImVector_float_push_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_float_push_back"][1]["argsT"][1]["type"] = "ImVector_float*" +defs["ImVector_float_push_back"][1]["argsT"][2] = {} +defs["ImVector_float_push_back"][1]["argsT"][2]["name"] = "v" +defs["ImVector_float_push_back"][1]["argsT"][2]["type"] = "const float" +defs["ImVector_float_push_back"][1]["call_args"] = "(v)" +defs["ImVector_float_push_back"][1]["cimguiname"] = "ImVector_float_push_back" +defs["ImVector_float_push_back"][1]["defaults"] = {} +defs["ImVector_float_push_back"][1]["funcname"] = "push_back" +defs["ImVector_float_push_back"][1]["ov_cimguiname"] = "ImVector_float_push_back" +defs["ImVector_float_push_back"][1]["ret"] = "void" +defs["ImVector_float_push_back"][1]["signature"] = "(const float)" +defs["ImVector_float_push_back"][1]["stname"] = "ImVector_float" +defs["ImVector_float_push_back"][1]["templatedgen"] = true +defs["ImVector_float_push_back"]["(const float)"] = defs["ImVector_float_push_back"][1] +defs["ImVector_float_push_front"] = {} +defs["ImVector_float_push_front"][1] = {} +defs["ImVector_float_push_front"][1]["args"] = "(ImVector_float* self,const float v)" +defs["ImVector_float_push_front"][1]["argsT"] = {} +defs["ImVector_float_push_front"][1]["argsT"][1] = {} +defs["ImVector_float_push_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_float_push_front"][1]["argsT"][1]["type"] = "ImVector_float*" +defs["ImVector_float_push_front"][1]["argsT"][2] = {} +defs["ImVector_float_push_front"][1]["argsT"][2]["name"] = "v" +defs["ImVector_float_push_front"][1]["argsT"][2]["type"] = "const float" +defs["ImVector_float_push_front"][1]["call_args"] = "(v)" +defs["ImVector_float_push_front"][1]["cimguiname"] = "ImVector_float_push_front" +defs["ImVector_float_push_front"][1]["defaults"] = {} +defs["ImVector_float_push_front"][1]["funcname"] = "push_front" +defs["ImVector_float_push_front"][1]["ov_cimguiname"] = "ImVector_float_push_front" +defs["ImVector_float_push_front"][1]["ret"] = "void" +defs["ImVector_float_push_front"][1]["signature"] = "(const float)" +defs["ImVector_float_push_front"][1]["stname"] = "ImVector_float" +defs["ImVector_float_push_front"][1]["templatedgen"] = true +defs["ImVector_float_push_front"]["(const float)"] = defs["ImVector_float_push_front"][1] +defs["ImVector_float_reserve"] = {} +defs["ImVector_float_reserve"][1] = {} +defs["ImVector_float_reserve"][1]["args"] = "(ImVector_float* self,int new_capacity)" +defs["ImVector_float_reserve"][1]["argsT"] = {} +defs["ImVector_float_reserve"][1]["argsT"][1] = {} +defs["ImVector_float_reserve"][1]["argsT"][1]["name"] = "self" +defs["ImVector_float_reserve"][1]["argsT"][1]["type"] = "ImVector_float*" +defs["ImVector_float_reserve"][1]["argsT"][2] = {} +defs["ImVector_float_reserve"][1]["argsT"][2]["name"] = "new_capacity" +defs["ImVector_float_reserve"][1]["argsT"][2]["type"] = "int" +defs["ImVector_float_reserve"][1]["call_args"] = "(new_capacity)" +defs["ImVector_float_reserve"][1]["cimguiname"] = "ImVector_float_reserve" +defs["ImVector_float_reserve"][1]["defaults"] = {} +defs["ImVector_float_reserve"][1]["funcname"] = "reserve" +defs["ImVector_float_reserve"][1]["ov_cimguiname"] = "ImVector_float_reserve" +defs["ImVector_float_reserve"][1]["ret"] = "void" +defs["ImVector_float_reserve"][1]["signature"] = "(int)" +defs["ImVector_float_reserve"][1]["stname"] = "ImVector_float" +defs["ImVector_float_reserve"][1]["templatedgen"] = true +defs["ImVector_float_reserve"]["(int)"] = defs["ImVector_float_reserve"][1] +defs["ImVector_float_resize"] = {} +defs["ImVector_float_resize"][1] = {} +defs["ImVector_float_resize"][1]["args"] = "(ImVector_float* self,int new_size)" +defs["ImVector_float_resize"][1]["argsT"] = {} +defs["ImVector_float_resize"][1]["argsT"][1] = {} +defs["ImVector_float_resize"][1]["argsT"][1]["name"] = "self" +defs["ImVector_float_resize"][1]["argsT"][1]["type"] = "ImVector_float*" +defs["ImVector_float_resize"][1]["argsT"][2] = {} +defs["ImVector_float_resize"][1]["argsT"][2]["name"] = "new_size" +defs["ImVector_float_resize"][1]["argsT"][2]["type"] = "int" +defs["ImVector_float_resize"][1]["call_args"] = "(new_size)" +defs["ImVector_float_resize"][1]["cimguiname"] = "ImVector_float_resize" +defs["ImVector_float_resize"][1]["defaults"] = {} +defs["ImVector_float_resize"][1]["funcname"] = "resize" +defs["ImVector_float_resize"][1]["ov_cimguiname"] = "ImVector_float_resize" +defs["ImVector_float_resize"][1]["ret"] = "void" +defs["ImVector_float_resize"][1]["signature"] = "(int)" +defs["ImVector_float_resize"][1]["stname"] = "ImVector_float" +defs["ImVector_float_resize"][1]["templatedgen"] = true +defs["ImVector_float_resize"][2] = {} +defs["ImVector_float_resize"][2]["args"] = "(ImVector_float* self,int new_size,const float v)" +defs["ImVector_float_resize"][2]["argsT"] = {} +defs["ImVector_float_resize"][2]["argsT"][1] = {} +defs["ImVector_float_resize"][2]["argsT"][1]["name"] = "self" +defs["ImVector_float_resize"][2]["argsT"][1]["type"] = "ImVector_float*" +defs["ImVector_float_resize"][2]["argsT"][2] = {} +defs["ImVector_float_resize"][2]["argsT"][2]["name"] = "new_size" +defs["ImVector_float_resize"][2]["argsT"][2]["type"] = "int" +defs["ImVector_float_resize"][2]["argsT"][3] = {} +defs["ImVector_float_resize"][2]["argsT"][3]["name"] = "v" +defs["ImVector_float_resize"][2]["argsT"][3]["type"] = "const float" +defs["ImVector_float_resize"][2]["call_args"] = "(new_size,v)" +defs["ImVector_float_resize"][2]["cimguiname"] = "ImVector_float_resize" +defs["ImVector_float_resize"][2]["defaults"] = {} +defs["ImVector_float_resize"][2]["funcname"] = "resize" +defs["ImVector_float_resize"][2]["ov_cimguiname"] = "ImVector_float_resizeT" +defs["ImVector_float_resize"][2]["ret"] = "void" +defs["ImVector_float_resize"][2]["signature"] = "(int,const float)" +defs["ImVector_float_resize"][2]["stname"] = "ImVector_float" +defs["ImVector_float_resize"][2]["templatedgen"] = true +defs["ImVector_float_resize"]["(int)"] = defs["ImVector_float_resize"][1] +defs["ImVector_float_resize"]["(int,const float)"] = defs["ImVector_float_resize"][2] +defs["ImVector_float_size"] = {} +defs["ImVector_float_size"][1] = {} +defs["ImVector_float_size"][1]["args"] = "(const ImVector_float* self)" +defs["ImVector_float_size"][1]["argsT"] = {} +defs["ImVector_float_size"][1]["argsT"][1] = {} +defs["ImVector_float_size"][1]["argsT"][1]["name"] = "self" +defs["ImVector_float_size"][1]["argsT"][1]["type"] = "const ImVector_float*" +defs["ImVector_float_size"][1]["call_args"] = "()" +defs["ImVector_float_size"][1]["cimguiname"] = "ImVector_float_size" +defs["ImVector_float_size"][1]["defaults"] = {} +defs["ImVector_float_size"][1]["funcname"] = "size" +defs["ImVector_float_size"][1]["ov_cimguiname"] = "ImVector_float_size" +defs["ImVector_float_size"][1]["ret"] = "int" +defs["ImVector_float_size"][1]["signature"] = "()const" +defs["ImVector_float_size"][1]["stname"] = "ImVector_float" +defs["ImVector_float_size"][1]["templatedgen"] = true +defs["ImVector_float_size"]["()const"] = defs["ImVector_float_size"][1] +defs["ImVector_float_size_in_bytes"] = {} +defs["ImVector_float_size_in_bytes"][1] = {} +defs["ImVector_float_size_in_bytes"][1]["args"] = "(const ImVector_float* self)" +defs["ImVector_float_size_in_bytes"][1]["argsT"] = {} +defs["ImVector_float_size_in_bytes"][1]["argsT"][1] = {} +defs["ImVector_float_size_in_bytes"][1]["argsT"][1]["name"] = "self" +defs["ImVector_float_size_in_bytes"][1]["argsT"][1]["type"] = "const ImVector_float*" +defs["ImVector_float_size_in_bytes"][1]["call_args"] = "()" +defs["ImVector_float_size_in_bytes"][1]["cimguiname"] = "ImVector_float_size_in_bytes" +defs["ImVector_float_size_in_bytes"][1]["defaults"] = {} +defs["ImVector_float_size_in_bytes"][1]["funcname"] = "size_in_bytes" +defs["ImVector_float_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_float_size_in_bytes" +defs["ImVector_float_size_in_bytes"][1]["ret"] = "int" +defs["ImVector_float_size_in_bytes"][1]["signature"] = "()const" +defs["ImVector_float_size_in_bytes"][1]["stname"] = "ImVector_float" +defs["ImVector_float_size_in_bytes"][1]["templatedgen"] = true +defs["ImVector_float_size_in_bytes"]["()const"] = defs["ImVector_float_size_in_bytes"][1] +defs["ImVector_float_swap"] = {} +defs["ImVector_float_swap"][1] = {} +defs["ImVector_float_swap"][1]["args"] = "(ImVector_float* self,ImVector_float rhs)" +defs["ImVector_float_swap"][1]["argsT"] = {} +defs["ImVector_float_swap"][1]["argsT"][1] = {} +defs["ImVector_float_swap"][1]["argsT"][1]["name"] = "self" +defs["ImVector_float_swap"][1]["argsT"][1]["type"] = "ImVector_float*" +defs["ImVector_float_swap"][1]["argsT"][2] = {} +defs["ImVector_float_swap"][1]["argsT"][2]["name"] = "rhs" +defs["ImVector_float_swap"][1]["argsT"][2]["type"] = "ImVector_float&" +defs["ImVector_float_swap"][1]["call_args"] = "(rhs)" +defs["ImVector_float_swap"][1]["cimguiname"] = "ImVector_float_swap" +defs["ImVector_float_swap"][1]["defaults"] = {} +defs["ImVector_float_swap"][1]["funcname"] = "swap" +defs["ImVector_float_swap"][1]["ov_cimguiname"] = "ImVector_float_swap" +defs["ImVector_float_swap"][1]["ret"] = "void" +defs["ImVector_float_swap"][1]["signature"] = "(ImVector)" +defs["ImVector_float_swap"][1]["stname"] = "ImVector_float" +defs["ImVector_float_swap"][1]["templatedgen"] = true +defs["ImVector_float_swap"]["(ImVector)"] = defs["ImVector_float_swap"][1] defs["ImVector_front"] = {} defs["ImVector_front"][1] = {} defs["ImVector_front"][1]["args"] = "(ImVector* self)" @@ -4966,13 +13786,14 @@ defs["ImVector_front"][2]["cimguiname"] = "ImVector_front" defs["ImVector_front"][2]["comment"] = "" defs["ImVector_front"][2]["defaults"] = {} defs["ImVector_front"][2]["funcname"] = "front" -defs["ImVector_front"][2]["ov_cimguiname"] = "ImVector_front" +defs["ImVector_front"][2]["ov_cimguiname"] = "ImVector_front_const" defs["ImVector_front"][2]["ret"] = "const T*" defs["ImVector_front"][2]["retref"] = "&" -defs["ImVector_front"][2]["signature"] = "()" +defs["ImVector_front"][2]["signature"] = "()const" defs["ImVector_front"][2]["stname"] = "ImVector" defs["ImVector_front"][2]["templated"] = true -defs["ImVector_front"]["()"] = defs["ImVector_front"][2] +defs["ImVector_front"]["()"] = defs["ImVector_front"][1] +defs["ImVector_front"]["()const"] = defs["ImVector_front"][2] defs["ImVector_index_from_ptr"] = {} defs["ImVector_index_from_ptr"][1] = {} defs["ImVector_index_from_ptr"][1]["args"] = "(ImVector* self,const T* it)" @@ -4991,10 +13812,10 @@ defs["ImVector_index_from_ptr"][1]["defaults"] = {} defs["ImVector_index_from_ptr"][1]["funcname"] = "index_from_ptr" defs["ImVector_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_index_from_ptr" defs["ImVector_index_from_ptr"][1]["ret"] = "int" -defs["ImVector_index_from_ptr"][1]["signature"] = "(const T*)" +defs["ImVector_index_from_ptr"][1]["signature"] = "(const T*)const" defs["ImVector_index_from_ptr"][1]["stname"] = "ImVector" defs["ImVector_index_from_ptr"][1]["templated"] = true -defs["ImVector_index_from_ptr"]["(const T*)"] = defs["ImVector_index_from_ptr"][1] +defs["ImVector_index_from_ptr"]["(const T*)const"] = defs["ImVector_index_from_ptr"][1] defs["ImVector_insert"] = {} defs["ImVector_insert"][1] = {} defs["ImVector_insert"][1]["args"] = "(ImVector* self,const T* it,const T v)" @@ -5020,6 +13841,557 @@ defs["ImVector_insert"][1]["signature"] = "(const T*,const T)" defs["ImVector_insert"][1]["stname"] = "ImVector" defs["ImVector_insert"][1]["templated"] = true defs["ImVector_insert"]["(const T*,const T)"] = defs["ImVector_insert"][1] +defs["ImVector_int_ImVector_int"] = {} +defs["ImVector_int_ImVector_int"][1] = {} +defs["ImVector_int_ImVector_int"][1]["args"] = "()" +defs["ImVector_int_ImVector_int"][1]["argsT"] = {} +defs["ImVector_int_ImVector_int"][1]["call_args"] = "()" +defs["ImVector_int_ImVector_int"][1]["cimguiname"] = "ImVector_int_ImVector_int" +defs["ImVector_int_ImVector_int"][1]["constructor"] = true +defs["ImVector_int_ImVector_int"][1]["defaults"] = {} +defs["ImVector_int_ImVector_int"][1]["funcname"] = "ImVector_int" +defs["ImVector_int_ImVector_int"][1]["ov_cimguiname"] = "ImVector_int_ImVector_int" +defs["ImVector_int_ImVector_int"][1]["signature"] = "()" +defs["ImVector_int_ImVector_int"][1]["stname"] = "ImVector_int" +defs["ImVector_int_ImVector_int"][1]["templatedgen"] = true +defs["ImVector_int_ImVector_int"][2] = {} +defs["ImVector_int_ImVector_int"][2]["args"] = "(const ImVector_int src)" +defs["ImVector_int_ImVector_int"][2]["argsT"] = {} +defs["ImVector_int_ImVector_int"][2]["argsT"][1] = {} +defs["ImVector_int_ImVector_int"][2]["argsT"][1]["name"] = "src" +defs["ImVector_int_ImVector_int"][2]["argsT"][1]["type"] = "const ImVector_int" +defs["ImVector_int_ImVector_int"][2]["call_args"] = "(src)" +defs["ImVector_int_ImVector_int"][2]["cimguiname"] = "ImVector_int_ImVector_int" +defs["ImVector_int_ImVector_int"][2]["constructor"] = true +defs["ImVector_int_ImVector_int"][2]["defaults"] = {} +defs["ImVector_int_ImVector_int"][2]["funcname"] = "ImVector_int" +defs["ImVector_int_ImVector_int"][2]["ov_cimguiname"] = "ImVector_int_ImVector_intVector" +defs["ImVector_int_ImVector_int"][2]["signature"] = "(const ImVector)" +defs["ImVector_int_ImVector_int"][2]["stname"] = "ImVector_int" +defs["ImVector_int_ImVector_int"][2]["templatedgen"] = true +defs["ImVector_int_ImVector_int"]["()"] = defs["ImVector_int_ImVector_int"][1] +defs["ImVector_int_ImVector_int"]["(const ImVector)"] = defs["ImVector_int_ImVector_int"][2] +defs["ImVector_int__grow_capacity"] = {} +defs["ImVector_int__grow_capacity"][1] = {} +defs["ImVector_int__grow_capacity"][1]["args"] = "(const ImVector_int* self,int sz)" +defs["ImVector_int__grow_capacity"][1]["argsT"] = {} +defs["ImVector_int__grow_capacity"][1]["argsT"][1] = {} +defs["ImVector_int__grow_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_int__grow_capacity"][1]["argsT"][1]["type"] = "const ImVector_int*" +defs["ImVector_int__grow_capacity"][1]["argsT"][2] = {} +defs["ImVector_int__grow_capacity"][1]["argsT"][2]["name"] = "sz" +defs["ImVector_int__grow_capacity"][1]["argsT"][2]["type"] = "int" +defs["ImVector_int__grow_capacity"][1]["call_args"] = "(sz)" +defs["ImVector_int__grow_capacity"][1]["cimguiname"] = "ImVector_int__grow_capacity" +defs["ImVector_int__grow_capacity"][1]["defaults"] = {} +defs["ImVector_int__grow_capacity"][1]["funcname"] = "_grow_capacity" +defs["ImVector_int__grow_capacity"][1]["ov_cimguiname"] = "ImVector_int__grow_capacity" +defs["ImVector_int__grow_capacity"][1]["ret"] = "int" +defs["ImVector_int__grow_capacity"][1]["signature"] = "(int)const" +defs["ImVector_int__grow_capacity"][1]["stname"] = "ImVector_int" +defs["ImVector_int__grow_capacity"][1]["templatedgen"] = true +defs["ImVector_int__grow_capacity"]["(int)const"] = defs["ImVector_int__grow_capacity"][1] +defs["ImVector_int_back"] = {} +defs["ImVector_int_back"][1] = {} +defs["ImVector_int_back"][1]["args"] = "(ImVector_int* self)" +defs["ImVector_int_back"][1]["argsT"] = {} +defs["ImVector_int_back"][1]["argsT"][1] = {} +defs["ImVector_int_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_int_back"][1]["argsT"][1]["type"] = "ImVector_int*" +defs["ImVector_int_back"][1]["call_args"] = "()" +defs["ImVector_int_back"][1]["cimguiname"] = "ImVector_int_back" +defs["ImVector_int_back"][1]["defaults"] = {} +defs["ImVector_int_back"][1]["funcname"] = "back" +defs["ImVector_int_back"][1]["ov_cimguiname"] = "ImVector_int_back" +defs["ImVector_int_back"][1]["ret"] = "int*" +defs["ImVector_int_back"][1]["retref"] = "&" +defs["ImVector_int_back"][1]["signature"] = "()" +defs["ImVector_int_back"][1]["stname"] = "ImVector_int" +defs["ImVector_int_back"][1]["templatedgen"] = true +defs["ImVector_int_back"][2] = {} +defs["ImVector_int_back"][2]["args"] = "(const ImVector_int* self)" +defs["ImVector_int_back"][2]["argsT"] = {} +defs["ImVector_int_back"][2]["argsT"][1] = {} +defs["ImVector_int_back"][2]["argsT"][1]["name"] = "self" +defs["ImVector_int_back"][2]["argsT"][1]["type"] = "const ImVector_int*" +defs["ImVector_int_back"][2]["call_args"] = "()" +defs["ImVector_int_back"][2]["cimguiname"] = "ImVector_int_back" +defs["ImVector_int_back"][2]["defaults"] = {} +defs["ImVector_int_back"][2]["funcname"] = "back" +defs["ImVector_int_back"][2]["ov_cimguiname"] = "ImVector_int_back_const" +defs["ImVector_int_back"][2]["ret"] = "int const *" +defs["ImVector_int_back"][2]["retref"] = "&" +defs["ImVector_int_back"][2]["signature"] = "()const" +defs["ImVector_int_back"][2]["stname"] = "ImVector_int" +defs["ImVector_int_back"][2]["templatedgen"] = true +defs["ImVector_int_back"]["()"] = defs["ImVector_int_back"][1] +defs["ImVector_int_back"]["()const"] = defs["ImVector_int_back"][2] +defs["ImVector_int_begin"] = {} +defs["ImVector_int_begin"][1] = {} +defs["ImVector_int_begin"][1]["args"] = "(ImVector_int* self)" +defs["ImVector_int_begin"][1]["argsT"] = {} +defs["ImVector_int_begin"][1]["argsT"][1] = {} +defs["ImVector_int_begin"][1]["argsT"][1]["name"] = "self" +defs["ImVector_int_begin"][1]["argsT"][1]["type"] = "ImVector_int*" +defs["ImVector_int_begin"][1]["call_args"] = "()" +defs["ImVector_int_begin"][1]["cimguiname"] = "ImVector_int_begin" +defs["ImVector_int_begin"][1]["defaults"] = {} +defs["ImVector_int_begin"][1]["funcname"] = "begin" +defs["ImVector_int_begin"][1]["ov_cimguiname"] = "ImVector_int_begin" +defs["ImVector_int_begin"][1]["ret"] = "int*" +defs["ImVector_int_begin"][1]["signature"] = "()" +defs["ImVector_int_begin"][1]["stname"] = "ImVector_int" +defs["ImVector_int_begin"][1]["templatedgen"] = true +defs["ImVector_int_begin"][2] = {} +defs["ImVector_int_begin"][2]["args"] = "(const ImVector_int* self)" +defs["ImVector_int_begin"][2]["argsT"] = {} +defs["ImVector_int_begin"][2]["argsT"][1] = {} +defs["ImVector_int_begin"][2]["argsT"][1]["name"] = "self" +defs["ImVector_int_begin"][2]["argsT"][1]["type"] = "const ImVector_int*" +defs["ImVector_int_begin"][2]["call_args"] = "()" +defs["ImVector_int_begin"][2]["cimguiname"] = "ImVector_int_begin" +defs["ImVector_int_begin"][2]["defaults"] = {} +defs["ImVector_int_begin"][2]["funcname"] = "begin" +defs["ImVector_int_begin"][2]["ov_cimguiname"] = "ImVector_int_begin_const" +defs["ImVector_int_begin"][2]["ret"] = "int const *" +defs["ImVector_int_begin"][2]["signature"] = "()const" +defs["ImVector_int_begin"][2]["stname"] = "ImVector_int" +defs["ImVector_int_begin"][2]["templatedgen"] = true +defs["ImVector_int_begin"]["()"] = defs["ImVector_int_begin"][1] +defs["ImVector_int_begin"]["()const"] = defs["ImVector_int_begin"][2] +defs["ImVector_int_capacity"] = {} +defs["ImVector_int_capacity"][1] = {} +defs["ImVector_int_capacity"][1]["args"] = "(const ImVector_int* self)" +defs["ImVector_int_capacity"][1]["argsT"] = {} +defs["ImVector_int_capacity"][1]["argsT"][1] = {} +defs["ImVector_int_capacity"][1]["argsT"][1]["name"] = "self" +defs["ImVector_int_capacity"][1]["argsT"][1]["type"] = "const ImVector_int*" +defs["ImVector_int_capacity"][1]["call_args"] = "()" +defs["ImVector_int_capacity"][1]["cimguiname"] = "ImVector_int_capacity" +defs["ImVector_int_capacity"][1]["defaults"] = {} +defs["ImVector_int_capacity"][1]["funcname"] = "capacity" +defs["ImVector_int_capacity"][1]["ov_cimguiname"] = "ImVector_int_capacity" +defs["ImVector_int_capacity"][1]["ret"] = "int" +defs["ImVector_int_capacity"][1]["signature"] = "()const" +defs["ImVector_int_capacity"][1]["stname"] = "ImVector_int" +defs["ImVector_int_capacity"][1]["templatedgen"] = true +defs["ImVector_int_capacity"]["()const"] = defs["ImVector_int_capacity"][1] +defs["ImVector_int_clear"] = {} +defs["ImVector_int_clear"][1] = {} +defs["ImVector_int_clear"][1]["args"] = "(ImVector_int* self)" +defs["ImVector_int_clear"][1]["argsT"] = {} +defs["ImVector_int_clear"][1]["argsT"][1] = {} +defs["ImVector_int_clear"][1]["argsT"][1]["name"] = "self" +defs["ImVector_int_clear"][1]["argsT"][1]["type"] = "ImVector_int*" +defs["ImVector_int_clear"][1]["call_args"] = "()" +defs["ImVector_int_clear"][1]["cimguiname"] = "ImVector_int_clear" +defs["ImVector_int_clear"][1]["defaults"] = {} +defs["ImVector_int_clear"][1]["funcname"] = "clear" +defs["ImVector_int_clear"][1]["ov_cimguiname"] = "ImVector_int_clear" +defs["ImVector_int_clear"][1]["ret"] = "void" +defs["ImVector_int_clear"][1]["signature"] = "()" +defs["ImVector_int_clear"][1]["stname"] = "ImVector_int" +defs["ImVector_int_clear"][1]["templatedgen"] = true +defs["ImVector_int_clear"]["()"] = defs["ImVector_int_clear"][1] +defs["ImVector_int_contains"] = {} +defs["ImVector_int_contains"][1] = {} +defs["ImVector_int_contains"][1]["args"] = "(const ImVector_int* self,const int v)" +defs["ImVector_int_contains"][1]["argsT"] = {} +defs["ImVector_int_contains"][1]["argsT"][1] = {} +defs["ImVector_int_contains"][1]["argsT"][1]["name"] = "self" +defs["ImVector_int_contains"][1]["argsT"][1]["type"] = "const ImVector_int*" +defs["ImVector_int_contains"][1]["argsT"][2] = {} +defs["ImVector_int_contains"][1]["argsT"][2]["name"] = "v" +defs["ImVector_int_contains"][1]["argsT"][2]["type"] = "const int" +defs["ImVector_int_contains"][1]["call_args"] = "(v)" +defs["ImVector_int_contains"][1]["cimguiname"] = "ImVector_int_contains" +defs["ImVector_int_contains"][1]["defaults"] = {} +defs["ImVector_int_contains"][1]["funcname"] = "contains" +defs["ImVector_int_contains"][1]["ov_cimguiname"] = "ImVector_int_contains" +defs["ImVector_int_contains"][1]["ret"] = "bool" +defs["ImVector_int_contains"][1]["signature"] = "(const int)const" +defs["ImVector_int_contains"][1]["stname"] = "ImVector_int" +defs["ImVector_int_contains"][1]["templatedgen"] = true +defs["ImVector_int_contains"]["(const int)const"] = defs["ImVector_int_contains"][1] +defs["ImVector_int_destroy"] = {} +defs["ImVector_int_destroy"][1] = {} +defs["ImVector_int_destroy"][1]["args"] = "(ImVector_int* self)" +defs["ImVector_int_destroy"][1]["argsT"] = {} +defs["ImVector_int_destroy"][1]["argsT"][1] = {} +defs["ImVector_int_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImVector_int_destroy"][1]["argsT"][1]["type"] = "ImVector_int*" +defs["ImVector_int_destroy"][1]["call_args"] = "(self)" +defs["ImVector_int_destroy"][1]["cimguiname"] = "ImVector_int_destroy" +defs["ImVector_int_destroy"][1]["defaults"] = {} +defs["ImVector_int_destroy"][1]["destructor"] = true +defs["ImVector_int_destroy"][1]["ov_cimguiname"] = "ImVector_int_destroy" +defs["ImVector_int_destroy"][1]["ret"] = "void" +defs["ImVector_int_destroy"][1]["signature"] = "(ImVector_int*)" +defs["ImVector_int_destroy"][1]["stname"] = "ImVector_int" +defs["ImVector_int_destroy"]["(ImVector_int*)"] = defs["ImVector_int_destroy"][1] +defs["ImVector_int_empty"] = {} +defs["ImVector_int_empty"][1] = {} +defs["ImVector_int_empty"][1]["args"] = "(const ImVector_int* self)" +defs["ImVector_int_empty"][1]["argsT"] = {} +defs["ImVector_int_empty"][1]["argsT"][1] = {} +defs["ImVector_int_empty"][1]["argsT"][1]["name"] = "self" +defs["ImVector_int_empty"][1]["argsT"][1]["type"] = "const ImVector_int*" +defs["ImVector_int_empty"][1]["call_args"] = "()" +defs["ImVector_int_empty"][1]["cimguiname"] = "ImVector_int_empty" +defs["ImVector_int_empty"][1]["defaults"] = {} +defs["ImVector_int_empty"][1]["funcname"] = "empty" +defs["ImVector_int_empty"][1]["ov_cimguiname"] = "ImVector_int_empty" +defs["ImVector_int_empty"][1]["ret"] = "bool" +defs["ImVector_int_empty"][1]["signature"] = "()const" +defs["ImVector_int_empty"][1]["stname"] = "ImVector_int" +defs["ImVector_int_empty"][1]["templatedgen"] = true +defs["ImVector_int_empty"]["()const"] = defs["ImVector_int_empty"][1] +defs["ImVector_int_end"] = {} +defs["ImVector_int_end"][1] = {} +defs["ImVector_int_end"][1]["args"] = "(ImVector_int* self)" +defs["ImVector_int_end"][1]["argsT"] = {} +defs["ImVector_int_end"][1]["argsT"][1] = {} +defs["ImVector_int_end"][1]["argsT"][1]["name"] = "self" +defs["ImVector_int_end"][1]["argsT"][1]["type"] = "ImVector_int*" +defs["ImVector_int_end"][1]["call_args"] = "()" +defs["ImVector_int_end"][1]["cimguiname"] = "ImVector_int_end" +defs["ImVector_int_end"][1]["defaults"] = {} +defs["ImVector_int_end"][1]["funcname"] = "end" +defs["ImVector_int_end"][1]["ov_cimguiname"] = "ImVector_int_end" +defs["ImVector_int_end"][1]["ret"] = "int*" +defs["ImVector_int_end"][1]["signature"] = "()" +defs["ImVector_int_end"][1]["stname"] = "ImVector_int" +defs["ImVector_int_end"][1]["templatedgen"] = true +defs["ImVector_int_end"][2] = {} +defs["ImVector_int_end"][2]["args"] = "(const ImVector_int* self)" +defs["ImVector_int_end"][2]["argsT"] = {} +defs["ImVector_int_end"][2]["argsT"][1] = {} +defs["ImVector_int_end"][2]["argsT"][1]["name"] = "self" +defs["ImVector_int_end"][2]["argsT"][1]["type"] = "const ImVector_int*" +defs["ImVector_int_end"][2]["call_args"] = "()" +defs["ImVector_int_end"][2]["cimguiname"] = "ImVector_int_end" +defs["ImVector_int_end"][2]["defaults"] = {} +defs["ImVector_int_end"][2]["funcname"] = "end" +defs["ImVector_int_end"][2]["ov_cimguiname"] = "ImVector_int_end_const" +defs["ImVector_int_end"][2]["ret"] = "int const *" +defs["ImVector_int_end"][2]["signature"] = "()const" +defs["ImVector_int_end"][2]["stname"] = "ImVector_int" +defs["ImVector_int_end"][2]["templatedgen"] = true +defs["ImVector_int_end"]["()"] = defs["ImVector_int_end"][1] +defs["ImVector_int_end"]["()const"] = defs["ImVector_int_end"][2] +defs["ImVector_int_erase"] = {} +defs["ImVector_int_erase"][1] = {} +defs["ImVector_int_erase"][1]["args"] = "(ImVector_int* self,int const * it)" +defs["ImVector_int_erase"][1]["argsT"] = {} +defs["ImVector_int_erase"][1]["argsT"][1] = {} +defs["ImVector_int_erase"][1]["argsT"][1]["name"] = "self" +defs["ImVector_int_erase"][1]["argsT"][1]["type"] = "ImVector_int*" +defs["ImVector_int_erase"][1]["argsT"][2] = {} +defs["ImVector_int_erase"][1]["argsT"][2]["name"] = "it" +defs["ImVector_int_erase"][1]["argsT"][2]["type"] = "int const *" +defs["ImVector_int_erase"][1]["call_args"] = "(it)" +defs["ImVector_int_erase"][1]["cimguiname"] = "ImVector_int_erase" +defs["ImVector_int_erase"][1]["defaults"] = {} +defs["ImVector_int_erase"][1]["funcname"] = "erase" +defs["ImVector_int_erase"][1]["ov_cimguiname"] = "ImVector_int_erase" +defs["ImVector_int_erase"][1]["ret"] = "int*" +defs["ImVector_int_erase"][1]["signature"] = "(const int*)" +defs["ImVector_int_erase"][1]["stname"] = "ImVector_int" +defs["ImVector_int_erase"][1]["templatedgen"] = true +defs["ImVector_int_erase"][2] = {} +defs["ImVector_int_erase"][2]["args"] = "(ImVector_int* self,int const * it,int const * it_last)" +defs["ImVector_int_erase"][2]["argsT"] = {} +defs["ImVector_int_erase"][2]["argsT"][1] = {} +defs["ImVector_int_erase"][2]["argsT"][1]["name"] = "self" +defs["ImVector_int_erase"][2]["argsT"][1]["type"] = "ImVector_int*" +defs["ImVector_int_erase"][2]["argsT"][2] = {} +defs["ImVector_int_erase"][2]["argsT"][2]["name"] = "it" +defs["ImVector_int_erase"][2]["argsT"][2]["type"] = "int const *" +defs["ImVector_int_erase"][2]["argsT"][3] = {} +defs["ImVector_int_erase"][2]["argsT"][3]["name"] = "it_last" +defs["ImVector_int_erase"][2]["argsT"][3]["type"] = "int const *" +defs["ImVector_int_erase"][2]["call_args"] = "(it,it_last)" +defs["ImVector_int_erase"][2]["cimguiname"] = "ImVector_int_erase" +defs["ImVector_int_erase"][2]["defaults"] = {} +defs["ImVector_int_erase"][2]["funcname"] = "erase" +defs["ImVector_int_erase"][2]["ov_cimguiname"] = "ImVector_int_eraseTPtr" +defs["ImVector_int_erase"][2]["ret"] = "int*" +defs["ImVector_int_erase"][2]["signature"] = "(const int*,const int*)" +defs["ImVector_int_erase"][2]["stname"] = "ImVector_int" +defs["ImVector_int_erase"][2]["templatedgen"] = true +defs["ImVector_int_erase"]["(const int*)"] = defs["ImVector_int_erase"][1] +defs["ImVector_int_erase"]["(const int*,const int*)"] = defs["ImVector_int_erase"][2] +defs["ImVector_int_erase_unsorted"] = {} +defs["ImVector_int_erase_unsorted"][1] = {} +defs["ImVector_int_erase_unsorted"][1]["args"] = "(ImVector_int* self,int const * it)" +defs["ImVector_int_erase_unsorted"][1]["argsT"] = {} +defs["ImVector_int_erase_unsorted"][1]["argsT"][1] = {} +defs["ImVector_int_erase_unsorted"][1]["argsT"][1]["name"] = "self" +defs["ImVector_int_erase_unsorted"][1]["argsT"][1]["type"] = "ImVector_int*" +defs["ImVector_int_erase_unsorted"][1]["argsT"][2] = {} +defs["ImVector_int_erase_unsorted"][1]["argsT"][2]["name"] = "it" +defs["ImVector_int_erase_unsorted"][1]["argsT"][2]["type"] = "int const *" +defs["ImVector_int_erase_unsorted"][1]["call_args"] = "(it)" +defs["ImVector_int_erase_unsorted"][1]["cimguiname"] = "ImVector_int_erase_unsorted" +defs["ImVector_int_erase_unsorted"][1]["defaults"] = {} +defs["ImVector_int_erase_unsorted"][1]["funcname"] = "erase_unsorted" +defs["ImVector_int_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_int_erase_unsorted" +defs["ImVector_int_erase_unsorted"][1]["ret"] = "int*" +defs["ImVector_int_erase_unsorted"][1]["signature"] = "(const int*)" +defs["ImVector_int_erase_unsorted"][1]["stname"] = "ImVector_int" +defs["ImVector_int_erase_unsorted"][1]["templatedgen"] = true +defs["ImVector_int_erase_unsorted"]["(const int*)"] = defs["ImVector_int_erase_unsorted"][1] +defs["ImVector_int_front"] = {} +defs["ImVector_int_front"][1] = {} +defs["ImVector_int_front"][1]["args"] = "(ImVector_int* self)" +defs["ImVector_int_front"][1]["argsT"] = {} +defs["ImVector_int_front"][1]["argsT"][1] = {} +defs["ImVector_int_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_int_front"][1]["argsT"][1]["type"] = "ImVector_int*" +defs["ImVector_int_front"][1]["call_args"] = "()" +defs["ImVector_int_front"][1]["cimguiname"] = "ImVector_int_front" +defs["ImVector_int_front"][1]["defaults"] = {} +defs["ImVector_int_front"][1]["funcname"] = "front" +defs["ImVector_int_front"][1]["ov_cimguiname"] = "ImVector_int_front" +defs["ImVector_int_front"][1]["ret"] = "int*" +defs["ImVector_int_front"][1]["retref"] = "&" +defs["ImVector_int_front"][1]["signature"] = "()" +defs["ImVector_int_front"][1]["stname"] = "ImVector_int" +defs["ImVector_int_front"][1]["templatedgen"] = true +defs["ImVector_int_front"][2] = {} +defs["ImVector_int_front"][2]["args"] = "(const ImVector_int* self)" +defs["ImVector_int_front"][2]["argsT"] = {} +defs["ImVector_int_front"][2]["argsT"][1] = {} +defs["ImVector_int_front"][2]["argsT"][1]["name"] = "self" +defs["ImVector_int_front"][2]["argsT"][1]["type"] = "const ImVector_int*" +defs["ImVector_int_front"][2]["call_args"] = "()" +defs["ImVector_int_front"][2]["cimguiname"] = "ImVector_int_front" +defs["ImVector_int_front"][2]["defaults"] = {} +defs["ImVector_int_front"][2]["funcname"] = "front" +defs["ImVector_int_front"][2]["ov_cimguiname"] = "ImVector_int_front_const" +defs["ImVector_int_front"][2]["ret"] = "int const *" +defs["ImVector_int_front"][2]["retref"] = "&" +defs["ImVector_int_front"][2]["signature"] = "()const" +defs["ImVector_int_front"][2]["stname"] = "ImVector_int" +defs["ImVector_int_front"][2]["templatedgen"] = true +defs["ImVector_int_front"]["()"] = defs["ImVector_int_front"][1] +defs["ImVector_int_front"]["()const"] = defs["ImVector_int_front"][2] +defs["ImVector_int_index_from_ptr"] = {} +defs["ImVector_int_index_from_ptr"][1] = {} +defs["ImVector_int_index_from_ptr"][1]["args"] = "(const ImVector_int* self,int const * it)" +defs["ImVector_int_index_from_ptr"][1]["argsT"] = {} +defs["ImVector_int_index_from_ptr"][1]["argsT"][1] = {} +defs["ImVector_int_index_from_ptr"][1]["argsT"][1]["name"] = "self" +defs["ImVector_int_index_from_ptr"][1]["argsT"][1]["type"] = "const ImVector_int*" +defs["ImVector_int_index_from_ptr"][1]["argsT"][2] = {} +defs["ImVector_int_index_from_ptr"][1]["argsT"][2]["name"] = "it" +defs["ImVector_int_index_from_ptr"][1]["argsT"][2]["type"] = "int const *" +defs["ImVector_int_index_from_ptr"][1]["call_args"] = "(it)" +defs["ImVector_int_index_from_ptr"][1]["cimguiname"] = "ImVector_int_index_from_ptr" +defs["ImVector_int_index_from_ptr"][1]["defaults"] = {} +defs["ImVector_int_index_from_ptr"][1]["funcname"] = "index_from_ptr" +defs["ImVector_int_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_int_index_from_ptr" +defs["ImVector_int_index_from_ptr"][1]["ret"] = "int" +defs["ImVector_int_index_from_ptr"][1]["signature"] = "(const int*)const" +defs["ImVector_int_index_from_ptr"][1]["stname"] = "ImVector_int" +defs["ImVector_int_index_from_ptr"][1]["templatedgen"] = true +defs["ImVector_int_index_from_ptr"]["(const int*)const"] = defs["ImVector_int_index_from_ptr"][1] +defs["ImVector_int_insert"] = {} +defs["ImVector_int_insert"][1] = {} +defs["ImVector_int_insert"][1]["args"] = "(ImVector_int* self,int const * it,const int v)" +defs["ImVector_int_insert"][1]["argsT"] = {} +defs["ImVector_int_insert"][1]["argsT"][1] = {} +defs["ImVector_int_insert"][1]["argsT"][1]["name"] = "self" +defs["ImVector_int_insert"][1]["argsT"][1]["type"] = "ImVector_int*" +defs["ImVector_int_insert"][1]["argsT"][2] = {} +defs["ImVector_int_insert"][1]["argsT"][2]["name"] = "it" +defs["ImVector_int_insert"][1]["argsT"][2]["type"] = "int const *" +defs["ImVector_int_insert"][1]["argsT"][3] = {} +defs["ImVector_int_insert"][1]["argsT"][3]["name"] = "v" +defs["ImVector_int_insert"][1]["argsT"][3]["type"] = "const int" +defs["ImVector_int_insert"][1]["call_args"] = "(it,v)" +defs["ImVector_int_insert"][1]["cimguiname"] = "ImVector_int_insert" +defs["ImVector_int_insert"][1]["defaults"] = {} +defs["ImVector_int_insert"][1]["funcname"] = "insert" +defs["ImVector_int_insert"][1]["ov_cimguiname"] = "ImVector_int_insert" +defs["ImVector_int_insert"][1]["ret"] = "int*" +defs["ImVector_int_insert"][1]["signature"] = "(const int*,const int)" +defs["ImVector_int_insert"][1]["stname"] = "ImVector_int" +defs["ImVector_int_insert"][1]["templatedgen"] = true +defs["ImVector_int_insert"]["(const int*,const int)"] = defs["ImVector_int_insert"][1] +defs["ImVector_int_pop_back"] = {} +defs["ImVector_int_pop_back"][1] = {} +defs["ImVector_int_pop_back"][1]["args"] = "(ImVector_int* self)" +defs["ImVector_int_pop_back"][1]["argsT"] = {} +defs["ImVector_int_pop_back"][1]["argsT"][1] = {} +defs["ImVector_int_pop_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_int_pop_back"][1]["argsT"][1]["type"] = "ImVector_int*" +defs["ImVector_int_pop_back"][1]["call_args"] = "()" +defs["ImVector_int_pop_back"][1]["cimguiname"] = "ImVector_int_pop_back" +defs["ImVector_int_pop_back"][1]["defaults"] = {} +defs["ImVector_int_pop_back"][1]["funcname"] = "pop_back" +defs["ImVector_int_pop_back"][1]["ov_cimguiname"] = "ImVector_int_pop_back" +defs["ImVector_int_pop_back"][1]["ret"] = "void" +defs["ImVector_int_pop_back"][1]["signature"] = "()" +defs["ImVector_int_pop_back"][1]["stname"] = "ImVector_int" +defs["ImVector_int_pop_back"][1]["templatedgen"] = true +defs["ImVector_int_pop_back"]["()"] = defs["ImVector_int_pop_back"][1] +defs["ImVector_int_push_back"] = {} +defs["ImVector_int_push_back"][1] = {} +defs["ImVector_int_push_back"][1]["args"] = "(ImVector_int* self,const int v)" +defs["ImVector_int_push_back"][1]["argsT"] = {} +defs["ImVector_int_push_back"][1]["argsT"][1] = {} +defs["ImVector_int_push_back"][1]["argsT"][1]["name"] = "self" +defs["ImVector_int_push_back"][1]["argsT"][1]["type"] = "ImVector_int*" +defs["ImVector_int_push_back"][1]["argsT"][2] = {} +defs["ImVector_int_push_back"][1]["argsT"][2]["name"] = "v" +defs["ImVector_int_push_back"][1]["argsT"][2]["type"] = "const int" +defs["ImVector_int_push_back"][1]["call_args"] = "(v)" +defs["ImVector_int_push_back"][1]["cimguiname"] = "ImVector_int_push_back" +defs["ImVector_int_push_back"][1]["defaults"] = {} +defs["ImVector_int_push_back"][1]["funcname"] = "push_back" +defs["ImVector_int_push_back"][1]["ov_cimguiname"] = "ImVector_int_push_back" +defs["ImVector_int_push_back"][1]["ret"] = "void" +defs["ImVector_int_push_back"][1]["signature"] = "(const int)" +defs["ImVector_int_push_back"][1]["stname"] = "ImVector_int" +defs["ImVector_int_push_back"][1]["templatedgen"] = true +defs["ImVector_int_push_back"]["(const int)"] = defs["ImVector_int_push_back"][1] +defs["ImVector_int_push_front"] = {} +defs["ImVector_int_push_front"][1] = {} +defs["ImVector_int_push_front"][1]["args"] = "(ImVector_int* self,const int v)" +defs["ImVector_int_push_front"][1]["argsT"] = {} +defs["ImVector_int_push_front"][1]["argsT"][1] = {} +defs["ImVector_int_push_front"][1]["argsT"][1]["name"] = "self" +defs["ImVector_int_push_front"][1]["argsT"][1]["type"] = "ImVector_int*" +defs["ImVector_int_push_front"][1]["argsT"][2] = {} +defs["ImVector_int_push_front"][1]["argsT"][2]["name"] = "v" +defs["ImVector_int_push_front"][1]["argsT"][2]["type"] = "const int" +defs["ImVector_int_push_front"][1]["call_args"] = "(v)" +defs["ImVector_int_push_front"][1]["cimguiname"] = "ImVector_int_push_front" +defs["ImVector_int_push_front"][1]["defaults"] = {} +defs["ImVector_int_push_front"][1]["funcname"] = "push_front" +defs["ImVector_int_push_front"][1]["ov_cimguiname"] = "ImVector_int_push_front" +defs["ImVector_int_push_front"][1]["ret"] = "void" +defs["ImVector_int_push_front"][1]["signature"] = "(const int)" +defs["ImVector_int_push_front"][1]["stname"] = "ImVector_int" +defs["ImVector_int_push_front"][1]["templatedgen"] = true +defs["ImVector_int_push_front"]["(const int)"] = defs["ImVector_int_push_front"][1] +defs["ImVector_int_reserve"] = {} +defs["ImVector_int_reserve"][1] = {} +defs["ImVector_int_reserve"][1]["args"] = "(ImVector_int* self,int new_capacity)" +defs["ImVector_int_reserve"][1]["argsT"] = {} +defs["ImVector_int_reserve"][1]["argsT"][1] = {} +defs["ImVector_int_reserve"][1]["argsT"][1]["name"] = "self" +defs["ImVector_int_reserve"][1]["argsT"][1]["type"] = "ImVector_int*" +defs["ImVector_int_reserve"][1]["argsT"][2] = {} +defs["ImVector_int_reserve"][1]["argsT"][2]["name"] = "new_capacity" +defs["ImVector_int_reserve"][1]["argsT"][2]["type"] = "int" +defs["ImVector_int_reserve"][1]["call_args"] = "(new_capacity)" +defs["ImVector_int_reserve"][1]["cimguiname"] = "ImVector_int_reserve" +defs["ImVector_int_reserve"][1]["defaults"] = {} +defs["ImVector_int_reserve"][1]["funcname"] = "reserve" +defs["ImVector_int_reserve"][1]["ov_cimguiname"] = "ImVector_int_reserve" +defs["ImVector_int_reserve"][1]["ret"] = "void" +defs["ImVector_int_reserve"][1]["signature"] = "(int)" +defs["ImVector_int_reserve"][1]["stname"] = "ImVector_int" +defs["ImVector_int_reserve"][1]["templatedgen"] = true +defs["ImVector_int_reserve"]["(int)"] = defs["ImVector_int_reserve"][1] +defs["ImVector_int_resize"] = {} +defs["ImVector_int_resize"][1] = {} +defs["ImVector_int_resize"][1]["args"] = "(ImVector_int* self,int new_size)" +defs["ImVector_int_resize"][1]["argsT"] = {} +defs["ImVector_int_resize"][1]["argsT"][1] = {} +defs["ImVector_int_resize"][1]["argsT"][1]["name"] = "self" +defs["ImVector_int_resize"][1]["argsT"][1]["type"] = "ImVector_int*" +defs["ImVector_int_resize"][1]["argsT"][2] = {} +defs["ImVector_int_resize"][1]["argsT"][2]["name"] = "new_size" +defs["ImVector_int_resize"][1]["argsT"][2]["type"] = "int" +defs["ImVector_int_resize"][1]["call_args"] = "(new_size)" +defs["ImVector_int_resize"][1]["cimguiname"] = "ImVector_int_resize" +defs["ImVector_int_resize"][1]["defaults"] = {} +defs["ImVector_int_resize"][1]["funcname"] = "resize" +defs["ImVector_int_resize"][1]["ov_cimguiname"] = "ImVector_int_resize" +defs["ImVector_int_resize"][1]["ret"] = "void" +defs["ImVector_int_resize"][1]["signature"] = "(int)" +defs["ImVector_int_resize"][1]["stname"] = "ImVector_int" +defs["ImVector_int_resize"][1]["templatedgen"] = true +defs["ImVector_int_resize"][2] = {} +defs["ImVector_int_resize"][2]["args"] = "(ImVector_int* self,int new_size,const int v)" +defs["ImVector_int_resize"][2]["argsT"] = {} +defs["ImVector_int_resize"][2]["argsT"][1] = {} +defs["ImVector_int_resize"][2]["argsT"][1]["name"] = "self" +defs["ImVector_int_resize"][2]["argsT"][1]["type"] = "ImVector_int*" +defs["ImVector_int_resize"][2]["argsT"][2] = {} +defs["ImVector_int_resize"][2]["argsT"][2]["name"] = "new_size" +defs["ImVector_int_resize"][2]["argsT"][2]["type"] = "int" +defs["ImVector_int_resize"][2]["argsT"][3] = {} +defs["ImVector_int_resize"][2]["argsT"][3]["name"] = "v" +defs["ImVector_int_resize"][2]["argsT"][3]["type"] = "const int" +defs["ImVector_int_resize"][2]["call_args"] = "(new_size,v)" +defs["ImVector_int_resize"][2]["cimguiname"] = "ImVector_int_resize" +defs["ImVector_int_resize"][2]["defaults"] = {} +defs["ImVector_int_resize"][2]["funcname"] = "resize" +defs["ImVector_int_resize"][2]["ov_cimguiname"] = "ImVector_int_resizeT" +defs["ImVector_int_resize"][2]["ret"] = "void" +defs["ImVector_int_resize"][2]["signature"] = "(int,const int)" +defs["ImVector_int_resize"][2]["stname"] = "ImVector_int" +defs["ImVector_int_resize"][2]["templatedgen"] = true +defs["ImVector_int_resize"]["(int)"] = defs["ImVector_int_resize"][1] +defs["ImVector_int_resize"]["(int,const int)"] = defs["ImVector_int_resize"][2] +defs["ImVector_int_size"] = {} +defs["ImVector_int_size"][1] = {} +defs["ImVector_int_size"][1]["args"] = "(const ImVector_int* self)" +defs["ImVector_int_size"][1]["argsT"] = {} +defs["ImVector_int_size"][1]["argsT"][1] = {} +defs["ImVector_int_size"][1]["argsT"][1]["name"] = "self" +defs["ImVector_int_size"][1]["argsT"][1]["type"] = "const ImVector_int*" +defs["ImVector_int_size"][1]["call_args"] = "()" +defs["ImVector_int_size"][1]["cimguiname"] = "ImVector_int_size" +defs["ImVector_int_size"][1]["defaults"] = {} +defs["ImVector_int_size"][1]["funcname"] = "size" +defs["ImVector_int_size"][1]["ov_cimguiname"] = "ImVector_int_size" +defs["ImVector_int_size"][1]["ret"] = "int" +defs["ImVector_int_size"][1]["signature"] = "()const" +defs["ImVector_int_size"][1]["stname"] = "ImVector_int" +defs["ImVector_int_size"][1]["templatedgen"] = true +defs["ImVector_int_size"]["()const"] = defs["ImVector_int_size"][1] +defs["ImVector_int_size_in_bytes"] = {} +defs["ImVector_int_size_in_bytes"][1] = {} +defs["ImVector_int_size_in_bytes"][1]["args"] = "(const ImVector_int* self)" +defs["ImVector_int_size_in_bytes"][1]["argsT"] = {} +defs["ImVector_int_size_in_bytes"][1]["argsT"][1] = {} +defs["ImVector_int_size_in_bytes"][1]["argsT"][1]["name"] = "self" +defs["ImVector_int_size_in_bytes"][1]["argsT"][1]["type"] = "const ImVector_int*" +defs["ImVector_int_size_in_bytes"][1]["call_args"] = "()" +defs["ImVector_int_size_in_bytes"][1]["cimguiname"] = "ImVector_int_size_in_bytes" +defs["ImVector_int_size_in_bytes"][1]["defaults"] = {} +defs["ImVector_int_size_in_bytes"][1]["funcname"] = "size_in_bytes" +defs["ImVector_int_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_int_size_in_bytes" +defs["ImVector_int_size_in_bytes"][1]["ret"] = "int" +defs["ImVector_int_size_in_bytes"][1]["signature"] = "()const" +defs["ImVector_int_size_in_bytes"][1]["stname"] = "ImVector_int" +defs["ImVector_int_size_in_bytes"][1]["templatedgen"] = true +defs["ImVector_int_size_in_bytes"]["()const"] = defs["ImVector_int_size_in_bytes"][1] +defs["ImVector_int_swap"] = {} +defs["ImVector_int_swap"][1] = {} +defs["ImVector_int_swap"][1]["args"] = "(ImVector_int* self,ImVector_int rhs)" +defs["ImVector_int_swap"][1]["argsT"] = {} +defs["ImVector_int_swap"][1]["argsT"][1] = {} +defs["ImVector_int_swap"][1]["argsT"][1]["name"] = "self" +defs["ImVector_int_swap"][1]["argsT"][1]["type"] = "ImVector_int*" +defs["ImVector_int_swap"][1]["argsT"][2] = {} +defs["ImVector_int_swap"][1]["argsT"][2]["name"] = "rhs" +defs["ImVector_int_swap"][1]["argsT"][2]["type"] = "ImVector_int&" +defs["ImVector_int_swap"][1]["call_args"] = "(rhs)" +defs["ImVector_int_swap"][1]["cimguiname"] = "ImVector_int_swap" +defs["ImVector_int_swap"][1]["defaults"] = {} +defs["ImVector_int_swap"][1]["funcname"] = "swap" +defs["ImVector_int_swap"][1]["ov_cimguiname"] = "ImVector_int_swap" +defs["ImVector_int_swap"][1]["ret"] = "void" +defs["ImVector_int_swap"][1]["signature"] = "(ImVector)" +defs["ImVector_int_swap"][1]["stname"] = "ImVector_int" +defs["ImVector_int_swap"][1]["templatedgen"] = true +defs["ImVector_int_swap"]["(ImVector)"] = defs["ImVector_int_swap"][1] defs["ImVector_pop_back"] = {} defs["ImVector_pop_back"][1] = {} defs["ImVector_pop_back"][1]["args"] = "(ImVector* self)" @@ -5166,10 +14538,10 @@ defs["ImVector_size"][1]["defaults"] = {} defs["ImVector_size"][1]["funcname"] = "size" defs["ImVector_size"][1]["ov_cimguiname"] = "ImVector_size" defs["ImVector_size"][1]["ret"] = "int" -defs["ImVector_size"][1]["signature"] = "()" +defs["ImVector_size"][1]["signature"] = "()const" defs["ImVector_size"][1]["stname"] = "ImVector" defs["ImVector_size"][1]["templated"] = true -defs["ImVector_size"]["()"] = defs["ImVector_size"][1] +defs["ImVector_size"]["()const"] = defs["ImVector_size"][1] defs["ImVector_size_in_bytes"] = {} defs["ImVector_size_in_bytes"][1] = {} defs["ImVector_size_in_bytes"][1]["args"] = "(ImVector* self)" @@ -5185,20 +14557,20 @@ defs["ImVector_size_in_bytes"][1]["defaults"] = {} defs["ImVector_size_in_bytes"][1]["funcname"] = "size_in_bytes" defs["ImVector_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_size_in_bytes" defs["ImVector_size_in_bytes"][1]["ret"] = "int" -defs["ImVector_size_in_bytes"][1]["signature"] = "()" +defs["ImVector_size_in_bytes"][1]["signature"] = "()const" defs["ImVector_size_in_bytes"][1]["stname"] = "ImVector" defs["ImVector_size_in_bytes"][1]["templated"] = true -defs["ImVector_size_in_bytes"]["()"] = defs["ImVector_size_in_bytes"][1] +defs["ImVector_size_in_bytes"]["()const"] = defs["ImVector_size_in_bytes"][1] defs["ImVector_swap"] = {} defs["ImVector_swap"][1] = {} -defs["ImVector_swap"][1]["args"] = "(ImVector* self,ImVector_ rhs)" +defs["ImVector_swap"][1]["args"] = "(ImVector* self,ImVector rhs)" defs["ImVector_swap"][1]["argsT"] = {} defs["ImVector_swap"][1]["argsT"][1] = {} defs["ImVector_swap"][1]["argsT"][1]["name"] = "self" defs["ImVector_swap"][1]["argsT"][1]["type"] = "ImVector*" defs["ImVector_swap"][1]["argsT"][2] = {} defs["ImVector_swap"][1]["argsT"][2]["name"] = "rhs" -defs["ImVector_swap"][1]["argsT"][2]["type"] = "ImVector_&" +defs["ImVector_swap"][1]["argsT"][2]["type"] = "ImVector&" defs["ImVector_swap"][1]["argsoriginal"] = "(ImVector& rhs)" defs["ImVector_swap"][1]["call_args"] = "(rhs)" defs["ImVector_swap"][1]["cimguiname"] = "ImVector_swap" @@ -5207,10 +14579,10 @@ defs["ImVector_swap"][1]["defaults"] = {} defs["ImVector_swap"][1]["funcname"] = "swap" defs["ImVector_swap"][1]["ov_cimguiname"] = "ImVector_swap" defs["ImVector_swap"][1]["ret"] = "void" -defs["ImVector_swap"][1]["signature"] = "(ImVector_)" +defs["ImVector_swap"][1]["signature"] = "(ImVector)" defs["ImVector_swap"][1]["stname"] = "ImVector" defs["ImVector_swap"][1]["templated"] = true -defs["ImVector_swap"]["(ImVector_)"] = defs["ImVector_swap"][1] +defs["ImVector_swap"]["(ImVector)"] = defs["ImVector_swap"][1] defs["Pair_Pair"] = {} defs["Pair_Pair"][1] = {} defs["Pair_Pair"][1]["args"] = "(ImGuiID _key,int _val_i)" @@ -5338,9 +14710,9 @@ defs["TextRange_begin"][1]["defaults"] = {} defs["TextRange_begin"][1]["funcname"] = "begin" defs["TextRange_begin"][1]["ov_cimguiname"] = "TextRange_begin" defs["TextRange_begin"][1]["ret"] = "const char*" -defs["TextRange_begin"][1]["signature"] = "()" +defs["TextRange_begin"][1]["signature"] = "()const" defs["TextRange_begin"][1]["stname"] = "TextRange" -defs["TextRange_begin"]["()"] = defs["TextRange_begin"][1] +defs["TextRange_begin"]["()const"] = defs["TextRange_begin"][1] defs["TextRange_destroy"] = {} defs["TextRange_destroy"][1] = {} defs["TextRange_destroy"][1]["args"] = "(TextRange* self)" @@ -5372,9 +14744,9 @@ defs["TextRange_empty"][1]["defaults"] = {} defs["TextRange_empty"][1]["funcname"] = "empty" defs["TextRange_empty"][1]["ov_cimguiname"] = "TextRange_empty" defs["TextRange_empty"][1]["ret"] = "bool" -defs["TextRange_empty"][1]["signature"] = "()" +defs["TextRange_empty"][1]["signature"] = "()const" defs["TextRange_empty"][1]["stname"] = "TextRange" -defs["TextRange_empty"]["()"] = defs["TextRange_empty"][1] +defs["TextRange_empty"]["()const"] = defs["TextRange_empty"][1] defs["TextRange_end"] = {} defs["TextRange_end"][1] = {} defs["TextRange_end"][1]["args"] = "(TextRange* self)" @@ -5390,9 +14762,9 @@ defs["TextRange_end"][1]["defaults"] = {} defs["TextRange_end"][1]["funcname"] = "end" defs["TextRange_end"][1]["ov_cimguiname"] = "TextRange_end" defs["TextRange_end"][1]["ret"] = "const char*" -defs["TextRange_end"][1]["signature"] = "()" +defs["TextRange_end"][1]["signature"] = "()const" defs["TextRange_end"][1]["stname"] = "TextRange" -defs["TextRange_end"]["()"] = defs["TextRange_end"][1] +defs["TextRange_end"]["()const"] = defs["TextRange_end"][1] defs["TextRange_split"] = {} defs["TextRange_split"][1] = {} defs["TextRange_split"][1]["args"] = "(TextRange* self,char separator,ImVector_TextRange* out)" @@ -5414,9 +14786,9 @@ defs["TextRange_split"][1]["defaults"] = {} defs["TextRange_split"][1]["funcname"] = "split" defs["TextRange_split"][1]["ov_cimguiname"] = "TextRange_split" defs["TextRange_split"][1]["ret"] = "void" -defs["TextRange_split"][1]["signature"] = "(char,ImVector_TextRange*)" +defs["TextRange_split"][1]["signature"] = "(char,ImVector_TextRange*)const" defs["TextRange_split"][1]["stname"] = "TextRange" -defs["TextRange_split"]["(char,ImVector_TextRange*)"] = defs["TextRange_split"][1] +defs["TextRange_split"]["(char,ImVector_TextRange*)const"] = defs["TextRange_split"][1] defs["igAcceptDragDropPayload"] = {} defs["igAcceptDragDropPayload"][1] = {} defs["igAcceptDragDropPayload"][1]["args"] = "(const char* type,ImGuiDragDropFlags flags)" diff --git a/generator/output/overloads.txt b/generator/output/overloads.txt index 6d3cf24..e51c895 100644 --- a/generator/output/overloads.txt +++ b/generator/output/overloads.txt @@ -22,7 +22,7 @@ igPushStyleVar 2 2 void igPushStyleVarVec2 (ImGuiStyleVar,const ImVec2) ImVector_end 2 1 T* ImVector_end () -2 const T* ImVector_end () +2 const T* ImVector_end_const ()const igIsRectVisible 2 1 bool igIsRectVisible (const ImVec2) 2 bool igIsRectVisibleVec2 (const ImVec2,const ImVec2) @@ -37,7 +37,7 @@ igPushStyleColor 2 2 void igPushStyleColor (ImGuiCol,const ImVec4) ImVector_ImVector 2 1 nil ImVector_ImVector () -2 nil ImVector_ImVectorVector_ (const ImVector_) +2 nil ImVector_ImVectorVector (const ImVector) igSetWindowCollapsed 2 1 void igSetWindowCollapsedBool (bool,ImGuiCond) 2 void igSetWindowCollapsedStr (const char*,bool,ImGuiCond) @@ -49,7 +49,7 @@ ImVec2_ImVec2 2 2 nil ImVec2_ImVec2Float (float,float) ImVector_back 2 1 T* ImVector_back () -2 const T* ImVector_back () +2 const T* ImVector_back_const ()const igPlotHistogram 2 1 void igPlotHistogramFloatPtr (const char*,const float*,int,int,const char*,float,float,ImVec2,int) 2 void igPlotHistogramFnPtr (const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2) @@ -65,7 +65,7 @@ ImDrawList_AddText 2 2 void ImDrawList_AddTextFontPtr (const ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*) ImVector_begin 2 1 T* ImVector_begin () -2 const T* ImVector_begin () +2 const T* ImVector_begin_const ()const igBeginChild 2 1 bool igBeginChild (const char*,const ImVec2,bool,ImGuiWindowFlags) 2 bool igBeginChildID (ImGuiID,const ImVec2,bool,ImGuiWindowFlags) @@ -92,7 +92,7 @@ ImVector_resize 2 2 void ImVector_resizeT (int,const T) ImVector_front 2 1 T* ImVector_front () -2 const T* ImVector_front () +2 const T* ImVector_front_const ()const ImColor_ImColor 5 1 nil ImColor_ImColor () 2 nil ImColor_ImColorInt (int,int,int,int) From 6c9a018705665f386c13084011894b20122e575b Mon Sep 17 00:00:00 2001 From: sonoro1234 Date: Thu, 14 Feb 2019 20:15:33 +0100 Subject: [PATCH 06/12] drop ImVector:contains() for not applicable types --- cimgui.cpp | 52 ----- cimgui.h | 13 -- generator/cpp2ffi.lua | 1 - generator/generator2.lua | 22 +- generator/output/cimgui.cpp | 52 ----- generator/output/cimgui.h | 13 -- generator/output/definitions.json | 338 ------------------------------ generator/output/definitions.lua | 282 ------------------------- 8 files changed, 20 insertions(+), 753 deletions(-) diff --git a/cimgui.cpp b/cimgui.cpp index 6bfee89..21c9a00 100644 --- a/cimgui.cpp +++ b/cimgui.cpp @@ -4343,66 +4343,14 @@ CIMGUI_API bool ImVector_ImWchar_contains(const ImVector_ImWchar* self,const ImW { return self->contains(v); } -CIMGUI_API bool ImVector_ImFontConfig_contains(const ImVector_ImFontConfig* self,const ImFontConfig v) -{ - return self->contains(v); -} -CIMGUI_API bool ImVector_ImFontGlyph_contains(const ImVector_ImFontGlyph* self,const ImFontGlyph v) -{ - return self->contains(v); -} -CIMGUI_API bool ImVector_TextRange_contains(const ImVector_TextRange* self,const TextRange v) -{ - return self->contains(v); -} -CIMGUI_API bool ImVector_CustomRect_contains(const ImVector_CustomRect* self,const CustomRect v) -{ - return self->contains(v); -} -CIMGUI_API bool ImVector_ImDrawChannel_contains(const ImVector_ImDrawChannel* self,const ImDrawChannel v) -{ - return self->contains(v); -} CIMGUI_API bool ImVector_char_contains(const ImVector_char* self,const char v) { return self->contains(v); } -CIMGUI_API bool ImVector_ImTextureID_contains(const ImVector_ImTextureID* self,const ImTextureID v) -{ - return self->contains(v); -} -CIMGUI_API bool ImVector_ImDrawVert_contains(const ImVector_ImDrawVert* self,const ImDrawVert v) -{ - return self->contains(v); -} CIMGUI_API bool ImVector_int_contains(const ImVector_int* self,const int v) { return self->contains(v); } -CIMGUI_API bool ImVector_Pair_contains(const ImVector_Pair* self,const Pair v) -{ - return self->contains(v); -} -CIMGUI_API bool ImVector_ImFontPtr_contains(const ImVector_ImFontPtr* self,ImFont* const v) -{ - return self->contains(v); -} -CIMGUI_API bool ImVector_ImVec4_contains(const ImVector_ImVec4* self,const ImVec4 v) -{ - return self->contains(v); -} -CIMGUI_API bool ImVector_ImDrawCmd_contains(const ImVector_ImDrawCmd* self,const ImDrawCmd v) -{ - return self->contains(v); -} -CIMGUI_API bool ImVector_ImDrawIdx_contains(const ImVector_ImDrawIdx* self,const ImDrawIdx v) -{ - return self->contains(v); -} -CIMGUI_API bool ImVector_ImVec2_contains(const ImVector_ImVec2* self,const ImVec2 v) -{ - return self->contains(v); -} CIMGUI_API int ImVector_float_index_from_ptr(const ImVector_float* self,float const * it) { return self->index_from_ptr(it); diff --git a/cimgui.h b/cimgui.h index 895ea05..e4c188e 100644 --- a/cimgui.h +++ b/cimgui.h @@ -1970,21 +1970,8 @@ CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_insert(ImVector_ImDrawIdx* self,ImDrawI CIMGUI_API ImVec2* ImVector_ImVec2_insert(ImVector_ImVec2* self,ImVec2 const * it,const ImVec2 v); CIMGUI_API bool ImVector_float_contains(const ImVector_float* self,const float v); CIMGUI_API bool ImVector_ImWchar_contains(const ImVector_ImWchar* self,const ImWchar v); -CIMGUI_API bool ImVector_ImFontConfig_contains(const ImVector_ImFontConfig* self,const ImFontConfig v); -CIMGUI_API bool ImVector_ImFontGlyph_contains(const ImVector_ImFontGlyph* self,const ImFontGlyph v); -CIMGUI_API bool ImVector_TextRange_contains(const ImVector_TextRange* self,const TextRange v); -CIMGUI_API bool ImVector_CustomRect_contains(const ImVector_CustomRect* self,const CustomRect v); -CIMGUI_API bool ImVector_ImDrawChannel_contains(const ImVector_ImDrawChannel* self,const ImDrawChannel v); CIMGUI_API bool ImVector_char_contains(const ImVector_char* self,const char v); -CIMGUI_API bool ImVector_ImTextureID_contains(const ImVector_ImTextureID* self,const ImTextureID v); -CIMGUI_API bool ImVector_ImDrawVert_contains(const ImVector_ImDrawVert* self,const ImDrawVert v); CIMGUI_API bool ImVector_int_contains(const ImVector_int* self,const int v); -CIMGUI_API bool ImVector_Pair_contains(const ImVector_Pair* self,const Pair v); -CIMGUI_API bool ImVector_ImFontPtr_contains(const ImVector_ImFontPtr* self,ImFont* const v); -CIMGUI_API bool ImVector_ImVec4_contains(const ImVector_ImVec4* self,const ImVec4 v); -CIMGUI_API bool ImVector_ImDrawCmd_contains(const ImVector_ImDrawCmd* self,const ImDrawCmd v); -CIMGUI_API bool ImVector_ImDrawIdx_contains(const ImVector_ImDrawIdx* self,const ImDrawIdx v); -CIMGUI_API bool ImVector_ImVec2_contains(const ImVector_ImVec2* self,const ImVec2 v); CIMGUI_API int ImVector_float_index_from_ptr(const ImVector_float* self,float const * it); CIMGUI_API int ImVector_ImWchar_index_from_ptr(const ImVector_ImWchar* self,ImWchar const * it); CIMGUI_API int ImVector_ImFontConfig_index_from_ptr(const ImVector_ImFontConfig* self,ImFontConfig const * it); diff --git a/generator/cpp2ffi.lua b/generator/cpp2ffi.lua index 2255619..4362010 100644 --- a/generator/cpp2ffi.lua +++ b/generator/cpp2ffi.lua @@ -1096,7 +1096,6 @@ function M.Parser() for tname,tnamestr in pairs(templates) do --local tnamestr = typetoStr(tname) local stname = defT.stname .. "_" .. tnamestr - local templ_stname = defT.stname .. "_" .. typename local cimguiname = t.cimguiname:gsub(defT.stname,stname) local ov_cimguiname = defT.ov_cimguiname:gsub(defT.stname,stname) local signature = defT.signature:gsub(typename, tname) diff --git a/generator/generator2.lua b/generator/generator2.lua index 1ff6804..3e19bdf 100644 --- a/generator/generator2.lua +++ b/generator/generator2.lua @@ -444,8 +444,26 @@ local function generate_templates(code,templates) end --generate cimgui.cpp cimgui.h local function cimgui_generation(parser) -cpp2ffi.prtable(parser.templates) -cpp2ffi.prtable(parser.typenames) + cpp2ffi.prtable(parser.templates) + cpp2ffi.prtable(parser.typenames) + --clean ImVector:contains() for not applicable types + local clean_f = {} + for k,v in pairs(parser.defsT) do + if k:match"ImVector" and k:match"contains" then + --cpp2ffi.prtable(k,v) + local stname = v[1].stname + if not(stname:match"float" or stname:match"int" or stname:match"char") then + parser.defsT[k] = nil + for i,t in ipairs(parser.funcdefs) do + if t.cimguiname == k then + table.remove(parser.funcdefs, i) + break + end + end + end + end + end + -------------------------------------------------- local hstrfile = read_data"./cimgui_template.h" local outpre,outpost = parser:gen_structs_and_enums() diff --git a/generator/output/cimgui.cpp b/generator/output/cimgui.cpp index 6bfee89..21c9a00 100644 --- a/generator/output/cimgui.cpp +++ b/generator/output/cimgui.cpp @@ -4343,66 +4343,14 @@ CIMGUI_API bool ImVector_ImWchar_contains(const ImVector_ImWchar* self,const ImW { return self->contains(v); } -CIMGUI_API bool ImVector_ImFontConfig_contains(const ImVector_ImFontConfig* self,const ImFontConfig v) -{ - return self->contains(v); -} -CIMGUI_API bool ImVector_ImFontGlyph_contains(const ImVector_ImFontGlyph* self,const ImFontGlyph v) -{ - return self->contains(v); -} -CIMGUI_API bool ImVector_TextRange_contains(const ImVector_TextRange* self,const TextRange v) -{ - return self->contains(v); -} -CIMGUI_API bool ImVector_CustomRect_contains(const ImVector_CustomRect* self,const CustomRect v) -{ - return self->contains(v); -} -CIMGUI_API bool ImVector_ImDrawChannel_contains(const ImVector_ImDrawChannel* self,const ImDrawChannel v) -{ - return self->contains(v); -} CIMGUI_API bool ImVector_char_contains(const ImVector_char* self,const char v) { return self->contains(v); } -CIMGUI_API bool ImVector_ImTextureID_contains(const ImVector_ImTextureID* self,const ImTextureID v) -{ - return self->contains(v); -} -CIMGUI_API bool ImVector_ImDrawVert_contains(const ImVector_ImDrawVert* self,const ImDrawVert v) -{ - return self->contains(v); -} CIMGUI_API bool ImVector_int_contains(const ImVector_int* self,const int v) { return self->contains(v); } -CIMGUI_API bool ImVector_Pair_contains(const ImVector_Pair* self,const Pair v) -{ - return self->contains(v); -} -CIMGUI_API bool ImVector_ImFontPtr_contains(const ImVector_ImFontPtr* self,ImFont* const v) -{ - return self->contains(v); -} -CIMGUI_API bool ImVector_ImVec4_contains(const ImVector_ImVec4* self,const ImVec4 v) -{ - return self->contains(v); -} -CIMGUI_API bool ImVector_ImDrawCmd_contains(const ImVector_ImDrawCmd* self,const ImDrawCmd v) -{ - return self->contains(v); -} -CIMGUI_API bool ImVector_ImDrawIdx_contains(const ImVector_ImDrawIdx* self,const ImDrawIdx v) -{ - return self->contains(v); -} -CIMGUI_API bool ImVector_ImVec2_contains(const ImVector_ImVec2* self,const ImVec2 v) -{ - return self->contains(v); -} CIMGUI_API int ImVector_float_index_from_ptr(const ImVector_float* self,float const * it) { return self->index_from_ptr(it); diff --git a/generator/output/cimgui.h b/generator/output/cimgui.h index 895ea05..e4c188e 100644 --- a/generator/output/cimgui.h +++ b/generator/output/cimgui.h @@ -1970,21 +1970,8 @@ CIMGUI_API ImDrawIdx* ImVector_ImDrawIdx_insert(ImVector_ImDrawIdx* self,ImDrawI CIMGUI_API ImVec2* ImVector_ImVec2_insert(ImVector_ImVec2* self,ImVec2 const * it,const ImVec2 v); CIMGUI_API bool ImVector_float_contains(const ImVector_float* self,const float v); CIMGUI_API bool ImVector_ImWchar_contains(const ImVector_ImWchar* self,const ImWchar v); -CIMGUI_API bool ImVector_ImFontConfig_contains(const ImVector_ImFontConfig* self,const ImFontConfig v); -CIMGUI_API bool ImVector_ImFontGlyph_contains(const ImVector_ImFontGlyph* self,const ImFontGlyph v); -CIMGUI_API bool ImVector_TextRange_contains(const ImVector_TextRange* self,const TextRange v); -CIMGUI_API bool ImVector_CustomRect_contains(const ImVector_CustomRect* self,const CustomRect v); -CIMGUI_API bool ImVector_ImDrawChannel_contains(const ImVector_ImDrawChannel* self,const ImDrawChannel v); CIMGUI_API bool ImVector_char_contains(const ImVector_char* self,const char v); -CIMGUI_API bool ImVector_ImTextureID_contains(const ImVector_ImTextureID* self,const ImTextureID v); -CIMGUI_API bool ImVector_ImDrawVert_contains(const ImVector_ImDrawVert* self,const ImDrawVert v); CIMGUI_API bool ImVector_int_contains(const ImVector_int* self,const int v); -CIMGUI_API bool ImVector_Pair_contains(const ImVector_Pair* self,const Pair v); -CIMGUI_API bool ImVector_ImFontPtr_contains(const ImVector_ImFontPtr* self,ImFont* const v); -CIMGUI_API bool ImVector_ImVec4_contains(const ImVector_ImVec4* self,const ImVec4 v); -CIMGUI_API bool ImVector_ImDrawCmd_contains(const ImVector_ImDrawCmd* self,const ImDrawCmd v); -CIMGUI_API bool ImVector_ImDrawIdx_contains(const ImVector_ImDrawIdx* self,const ImDrawIdx v); -CIMGUI_API bool ImVector_ImVec2_contains(const ImVector_ImVec2* self,const ImVec2 v); CIMGUI_API int ImVector_float_index_from_ptr(const ImVector_float* self,float const * it); CIMGUI_API int ImVector_ImWchar_index_from_ptr(const ImVector_ImWchar* self,ImWchar const * it); CIMGUI_API int ImVector_ImFontConfig_index_from_ptr(const ImVector_ImFontConfig* self,ImFontConfig const * it); diff --git a/generator/output/definitions.json b/generator/output/definitions.json index 484216a..62c2c42 100644 --- a/generator/output/definitions.json +++ b/generator/output/definitions.json @@ -5733,30 +5733,6 @@ "templatedgen": true } ], - "ImVector_CustomRect_contains": [ - { - "args": "(const ImVector_CustomRect* self,const CustomRect v)", - "argsT": [ - { - "name": "self", - "type": "const ImVector_CustomRect*" - }, - { - "name": "v", - "type": "const CustomRect" - } - ], - "call_args": "(v)", - "cimguiname": "ImVector_CustomRect_contains", - "defaults": [], - "funcname": "contains", - "ov_cimguiname": "ImVector_CustomRect_contains", - "ret": "bool", - "signature": "(const CustomRect)const", - "stname": "ImVector_CustomRect", - "templatedgen": true - } - ], "ImVector_CustomRect_destroy": [ { "args": "(ImVector_CustomRect* self)", @@ -6381,30 +6357,6 @@ "templatedgen": true } ], - "ImVector_ImDrawChannel_contains": [ - { - "args": "(const ImVector_ImDrawChannel* self,const ImDrawChannel v)", - "argsT": [ - { - "name": "self", - "type": "const ImVector_ImDrawChannel*" - }, - { - "name": "v", - "type": "const ImDrawChannel" - } - ], - "call_args": "(v)", - "cimguiname": "ImVector_ImDrawChannel_contains", - "defaults": [], - "funcname": "contains", - "ov_cimguiname": "ImVector_ImDrawChannel_contains", - "ret": "bool", - "signature": "(const ImDrawChannel)const", - "stname": "ImVector_ImDrawChannel", - "templatedgen": true - } - ], "ImVector_ImDrawChannel_destroy": [ { "args": "(ImVector_ImDrawChannel* self)", @@ -7029,30 +6981,6 @@ "templatedgen": true } ], - "ImVector_ImDrawCmd_contains": [ - { - "args": "(const ImVector_ImDrawCmd* self,const ImDrawCmd v)", - "argsT": [ - { - "name": "self", - "type": "const ImVector_ImDrawCmd*" - }, - { - "name": "v", - "type": "const ImDrawCmd" - } - ], - "call_args": "(v)", - "cimguiname": "ImVector_ImDrawCmd_contains", - "defaults": [], - "funcname": "contains", - "ov_cimguiname": "ImVector_ImDrawCmd_contains", - "ret": "bool", - "signature": "(const ImDrawCmd)const", - "stname": "ImVector_ImDrawCmd", - "templatedgen": true - } - ], "ImVector_ImDrawCmd_destroy": [ { "args": "(ImVector_ImDrawCmd* self)", @@ -7677,30 +7605,6 @@ "templatedgen": true } ], - "ImVector_ImDrawIdx_contains": [ - { - "args": "(const ImVector_ImDrawIdx* self,const ImDrawIdx v)", - "argsT": [ - { - "name": "self", - "type": "const ImVector_ImDrawIdx*" - }, - { - "name": "v", - "type": "const ImDrawIdx" - } - ], - "call_args": "(v)", - "cimguiname": "ImVector_ImDrawIdx_contains", - "defaults": [], - "funcname": "contains", - "ov_cimguiname": "ImVector_ImDrawIdx_contains", - "ret": "bool", - "signature": "(const ImDrawIdx)const", - "stname": "ImVector_ImDrawIdx", - "templatedgen": true - } - ], "ImVector_ImDrawIdx_destroy": [ { "args": "(ImVector_ImDrawIdx* self)", @@ -8325,30 +8229,6 @@ "templatedgen": true } ], - "ImVector_ImDrawVert_contains": [ - { - "args": "(const ImVector_ImDrawVert* self,const ImDrawVert v)", - "argsT": [ - { - "name": "self", - "type": "const ImVector_ImDrawVert*" - }, - { - "name": "v", - "type": "const ImDrawVert" - } - ], - "call_args": "(v)", - "cimguiname": "ImVector_ImDrawVert_contains", - "defaults": [], - "funcname": "contains", - "ov_cimguiname": "ImVector_ImDrawVert_contains", - "ret": "bool", - "signature": "(const ImDrawVert)const", - "stname": "ImVector_ImDrawVert", - "templatedgen": true - } - ], "ImVector_ImDrawVert_destroy": [ { "args": "(ImVector_ImDrawVert* self)", @@ -8973,30 +8853,6 @@ "templatedgen": true } ], - "ImVector_ImFontConfig_contains": [ - { - "args": "(const ImVector_ImFontConfig* self,const ImFontConfig v)", - "argsT": [ - { - "name": "self", - "type": "const ImVector_ImFontConfig*" - }, - { - "name": "v", - "type": "const ImFontConfig" - } - ], - "call_args": "(v)", - "cimguiname": "ImVector_ImFontConfig_contains", - "defaults": [], - "funcname": "contains", - "ov_cimguiname": "ImVector_ImFontConfig_contains", - "ret": "bool", - "signature": "(const ImFontConfig)const", - "stname": "ImVector_ImFontConfig", - "templatedgen": true - } - ], "ImVector_ImFontConfig_destroy": [ { "args": "(ImVector_ImFontConfig* self)", @@ -9621,30 +9477,6 @@ "templatedgen": true } ], - "ImVector_ImFontGlyph_contains": [ - { - "args": "(const ImVector_ImFontGlyph* self,const ImFontGlyph v)", - "argsT": [ - { - "name": "self", - "type": "const ImVector_ImFontGlyph*" - }, - { - "name": "v", - "type": "const ImFontGlyph" - } - ], - "call_args": "(v)", - "cimguiname": "ImVector_ImFontGlyph_contains", - "defaults": [], - "funcname": "contains", - "ov_cimguiname": "ImVector_ImFontGlyph_contains", - "ret": "bool", - "signature": "(const ImFontGlyph)const", - "stname": "ImVector_ImFontGlyph", - "templatedgen": true - } - ], "ImVector_ImFontGlyph_destroy": [ { "args": "(ImVector_ImFontGlyph* self)", @@ -10269,30 +10101,6 @@ "templatedgen": true } ], - "ImVector_ImFontPtr_contains": [ - { - "args": "(const ImVector_ImFontPtr* self,ImFont* const v)", - "argsT": [ - { - "name": "self", - "type": "const ImVector_ImFontPtr*" - }, - { - "name": "v", - "type": "ImFont* const " - } - ], - "call_args": "(v)", - "cimguiname": "ImVector_ImFontPtr_contains", - "defaults": [], - "funcname": "contains", - "ov_cimguiname": "ImVector_ImFontPtr_contains", - "ret": "bool", - "signature": "(const ImFont*)const", - "stname": "ImVector_ImFontPtr", - "templatedgen": true - } - ], "ImVector_ImFontPtr_destroy": [ { "args": "(ImVector_ImFontPtr* self)", @@ -10917,30 +10725,6 @@ "templatedgen": true } ], - "ImVector_ImTextureID_contains": [ - { - "args": "(const ImVector_ImTextureID* self,const ImTextureID v)", - "argsT": [ - { - "name": "self", - "type": "const ImVector_ImTextureID*" - }, - { - "name": "v", - "type": "const ImTextureID" - } - ], - "call_args": "(v)", - "cimguiname": "ImVector_ImTextureID_contains", - "defaults": [], - "funcname": "contains", - "ov_cimguiname": "ImVector_ImTextureID_contains", - "ret": "bool", - "signature": "(const ImTextureID)const", - "stname": "ImVector_ImTextureID", - "templatedgen": true - } - ], "ImVector_ImTextureID_destroy": [ { "args": "(ImVector_ImTextureID* self)", @@ -11565,30 +11349,6 @@ "templatedgen": true } ], - "ImVector_ImVec2_contains": [ - { - "args": "(const ImVector_ImVec2* self,const ImVec2 v)", - "argsT": [ - { - "name": "self", - "type": "const ImVector_ImVec2*" - }, - { - "name": "v", - "type": "const ImVec2" - } - ], - "call_args": "(v)", - "cimguiname": "ImVector_ImVec2_contains", - "defaults": [], - "funcname": "contains", - "ov_cimguiname": "ImVector_ImVec2_contains", - "ret": "bool", - "signature": "(const ImVec2)const", - "stname": "ImVector_ImVec2", - "templatedgen": true - } - ], "ImVector_ImVec2_destroy": [ { "args": "(ImVector_ImVec2* self)", @@ -12213,30 +11973,6 @@ "templatedgen": true } ], - "ImVector_ImVec4_contains": [ - { - "args": "(const ImVector_ImVec4* self,const ImVec4 v)", - "argsT": [ - { - "name": "self", - "type": "const ImVector_ImVec4*" - }, - { - "name": "v", - "type": "const ImVec4" - } - ], - "call_args": "(v)", - "cimguiname": "ImVector_ImVec4_contains", - "defaults": [], - "funcname": "contains", - "ov_cimguiname": "ImVector_ImVec4_contains", - "ret": "bool", - "signature": "(const ImVec4)const", - "stname": "ImVector_ImVec4", - "templatedgen": true - } - ], "ImVector_ImVec4_destroy": [ { "args": "(ImVector_ImVec4* self)", @@ -13546,30 +13282,6 @@ "templatedgen": true } ], - "ImVector_Pair_contains": [ - { - "args": "(const ImVector_Pair* self,const Pair v)", - "argsT": [ - { - "name": "self", - "type": "const ImVector_Pair*" - }, - { - "name": "v", - "type": "const Pair" - } - ], - "call_args": "(v)", - "cimguiname": "ImVector_Pair_contains", - "defaults": [], - "funcname": "contains", - "ov_cimguiname": "ImVector_Pair_contains", - "ret": "bool", - "signature": "(const Pair)const", - "stname": "ImVector_Pair", - "templatedgen": true - } - ], "ImVector_Pair_destroy": [ { "args": "(ImVector_Pair* self)", @@ -14194,30 +13906,6 @@ "templatedgen": true } ], - "ImVector_TextRange_contains": [ - { - "args": "(const ImVector_TextRange* self,const TextRange v)", - "argsT": [ - { - "name": "self", - "type": "const ImVector_TextRange*" - }, - { - "name": "v", - "type": "const TextRange" - } - ], - "call_args": "(v)", - "cimguiname": "ImVector_TextRange_contains", - "defaults": [], - "funcname": "contains", - "ov_cimguiname": "ImVector_TextRange_contains", - "ret": "bool", - "signature": "(const TextRange)const", - "stname": "ImVector_TextRange", - "templatedgen": true - } - ], "ImVector_TextRange_destroy": [ { "args": "(ImVector_TextRange* self)", @@ -15471,32 +15159,6 @@ "templated": true } ], - "ImVector_contains": [ - { - "args": "(ImVector* self,const T v)", - "argsT": [ - { - "name": "self", - "type": "ImVector*" - }, - { - "name": "v", - "type": "const T" - } - ], - "argsoriginal": "(const T& v)", - "call_args": "(v)", - "cimguiname": "ImVector_contains", - "comment": "", - "defaults": [], - "funcname": "contains", - "ov_cimguiname": "ImVector_contains", - "ret": "bool", - "signature": "(const T)const", - "stname": "ImVector", - "templated": true - } - ], "ImVector_destroy": [ { "args": "(ImVector* self)", diff --git a/generator/output/definitions.lua b/generator/output/definitions.lua index fb8063d..d192cd4 100644 --- a/generator/output/definitions.lua +++ b/generator/output/definitions.lua @@ -4758,26 +4758,6 @@ defs["ImVector_CustomRect_clear"][1]["signature"] = "()" defs["ImVector_CustomRect_clear"][1]["stname"] = "ImVector_CustomRect" defs["ImVector_CustomRect_clear"][1]["templatedgen"] = true defs["ImVector_CustomRect_clear"]["()"] = defs["ImVector_CustomRect_clear"][1] -defs["ImVector_CustomRect_contains"] = {} -defs["ImVector_CustomRect_contains"][1] = {} -defs["ImVector_CustomRect_contains"][1]["args"] = "(const ImVector_CustomRect* self,const CustomRect v)" -defs["ImVector_CustomRect_contains"][1]["argsT"] = {} -defs["ImVector_CustomRect_contains"][1]["argsT"][1] = {} -defs["ImVector_CustomRect_contains"][1]["argsT"][1]["name"] = "self" -defs["ImVector_CustomRect_contains"][1]["argsT"][1]["type"] = "const ImVector_CustomRect*" -defs["ImVector_CustomRect_contains"][1]["argsT"][2] = {} -defs["ImVector_CustomRect_contains"][1]["argsT"][2]["name"] = "v" -defs["ImVector_CustomRect_contains"][1]["argsT"][2]["type"] = "const CustomRect" -defs["ImVector_CustomRect_contains"][1]["call_args"] = "(v)" -defs["ImVector_CustomRect_contains"][1]["cimguiname"] = "ImVector_CustomRect_contains" -defs["ImVector_CustomRect_contains"][1]["defaults"] = {} -defs["ImVector_CustomRect_contains"][1]["funcname"] = "contains" -defs["ImVector_CustomRect_contains"][1]["ov_cimguiname"] = "ImVector_CustomRect_contains" -defs["ImVector_CustomRect_contains"][1]["ret"] = "bool" -defs["ImVector_CustomRect_contains"][1]["signature"] = "(const CustomRect)const" -defs["ImVector_CustomRect_contains"][1]["stname"] = "ImVector_CustomRect" -defs["ImVector_CustomRect_contains"][1]["templatedgen"] = true -defs["ImVector_CustomRect_contains"]["(const CustomRect)const"] = defs["ImVector_CustomRect_contains"][1] defs["ImVector_CustomRect_destroy"] = {} defs["ImVector_CustomRect_destroy"][1] = {} defs["ImVector_CustomRect_destroy"][1]["args"] = "(ImVector_CustomRect* self)" @@ -5309,26 +5289,6 @@ defs["ImVector_ImDrawChannel_clear"][1]["signature"] = "()" defs["ImVector_ImDrawChannel_clear"][1]["stname"] = "ImVector_ImDrawChannel" defs["ImVector_ImDrawChannel_clear"][1]["templatedgen"] = true defs["ImVector_ImDrawChannel_clear"]["()"] = defs["ImVector_ImDrawChannel_clear"][1] -defs["ImVector_ImDrawChannel_contains"] = {} -defs["ImVector_ImDrawChannel_contains"][1] = {} -defs["ImVector_ImDrawChannel_contains"][1]["args"] = "(const ImVector_ImDrawChannel* self,const ImDrawChannel v)" -defs["ImVector_ImDrawChannel_contains"][1]["argsT"] = {} -defs["ImVector_ImDrawChannel_contains"][1]["argsT"][1] = {} -defs["ImVector_ImDrawChannel_contains"][1]["argsT"][1]["name"] = "self" -defs["ImVector_ImDrawChannel_contains"][1]["argsT"][1]["type"] = "const ImVector_ImDrawChannel*" -defs["ImVector_ImDrawChannel_contains"][1]["argsT"][2] = {} -defs["ImVector_ImDrawChannel_contains"][1]["argsT"][2]["name"] = "v" -defs["ImVector_ImDrawChannel_contains"][1]["argsT"][2]["type"] = "const ImDrawChannel" -defs["ImVector_ImDrawChannel_contains"][1]["call_args"] = "(v)" -defs["ImVector_ImDrawChannel_contains"][1]["cimguiname"] = "ImVector_ImDrawChannel_contains" -defs["ImVector_ImDrawChannel_contains"][1]["defaults"] = {} -defs["ImVector_ImDrawChannel_contains"][1]["funcname"] = "contains" -defs["ImVector_ImDrawChannel_contains"][1]["ov_cimguiname"] = "ImVector_ImDrawChannel_contains" -defs["ImVector_ImDrawChannel_contains"][1]["ret"] = "bool" -defs["ImVector_ImDrawChannel_contains"][1]["signature"] = "(const ImDrawChannel)const" -defs["ImVector_ImDrawChannel_contains"][1]["stname"] = "ImVector_ImDrawChannel" -defs["ImVector_ImDrawChannel_contains"][1]["templatedgen"] = true -defs["ImVector_ImDrawChannel_contains"]["(const ImDrawChannel)const"] = defs["ImVector_ImDrawChannel_contains"][1] defs["ImVector_ImDrawChannel_destroy"] = {} defs["ImVector_ImDrawChannel_destroy"][1] = {} defs["ImVector_ImDrawChannel_destroy"][1]["args"] = "(ImVector_ImDrawChannel* self)" @@ -5860,26 +5820,6 @@ defs["ImVector_ImDrawCmd_clear"][1]["signature"] = "()" defs["ImVector_ImDrawCmd_clear"][1]["stname"] = "ImVector_ImDrawCmd" defs["ImVector_ImDrawCmd_clear"][1]["templatedgen"] = true defs["ImVector_ImDrawCmd_clear"]["()"] = defs["ImVector_ImDrawCmd_clear"][1] -defs["ImVector_ImDrawCmd_contains"] = {} -defs["ImVector_ImDrawCmd_contains"][1] = {} -defs["ImVector_ImDrawCmd_contains"][1]["args"] = "(const ImVector_ImDrawCmd* self,const ImDrawCmd v)" -defs["ImVector_ImDrawCmd_contains"][1]["argsT"] = {} -defs["ImVector_ImDrawCmd_contains"][1]["argsT"][1] = {} -defs["ImVector_ImDrawCmd_contains"][1]["argsT"][1]["name"] = "self" -defs["ImVector_ImDrawCmd_contains"][1]["argsT"][1]["type"] = "const ImVector_ImDrawCmd*" -defs["ImVector_ImDrawCmd_contains"][1]["argsT"][2] = {} -defs["ImVector_ImDrawCmd_contains"][1]["argsT"][2]["name"] = "v" -defs["ImVector_ImDrawCmd_contains"][1]["argsT"][2]["type"] = "const ImDrawCmd" -defs["ImVector_ImDrawCmd_contains"][1]["call_args"] = "(v)" -defs["ImVector_ImDrawCmd_contains"][1]["cimguiname"] = "ImVector_ImDrawCmd_contains" -defs["ImVector_ImDrawCmd_contains"][1]["defaults"] = {} -defs["ImVector_ImDrawCmd_contains"][1]["funcname"] = "contains" -defs["ImVector_ImDrawCmd_contains"][1]["ov_cimguiname"] = "ImVector_ImDrawCmd_contains" -defs["ImVector_ImDrawCmd_contains"][1]["ret"] = "bool" -defs["ImVector_ImDrawCmd_contains"][1]["signature"] = "(const ImDrawCmd)const" -defs["ImVector_ImDrawCmd_contains"][1]["stname"] = "ImVector_ImDrawCmd" -defs["ImVector_ImDrawCmd_contains"][1]["templatedgen"] = true -defs["ImVector_ImDrawCmd_contains"]["(const ImDrawCmd)const"] = defs["ImVector_ImDrawCmd_contains"][1] defs["ImVector_ImDrawCmd_destroy"] = {} defs["ImVector_ImDrawCmd_destroy"][1] = {} defs["ImVector_ImDrawCmd_destroy"][1]["args"] = "(ImVector_ImDrawCmd* self)" @@ -6411,26 +6351,6 @@ defs["ImVector_ImDrawIdx_clear"][1]["signature"] = "()" defs["ImVector_ImDrawIdx_clear"][1]["stname"] = "ImVector_ImDrawIdx" defs["ImVector_ImDrawIdx_clear"][1]["templatedgen"] = true defs["ImVector_ImDrawIdx_clear"]["()"] = defs["ImVector_ImDrawIdx_clear"][1] -defs["ImVector_ImDrawIdx_contains"] = {} -defs["ImVector_ImDrawIdx_contains"][1] = {} -defs["ImVector_ImDrawIdx_contains"][1]["args"] = "(const ImVector_ImDrawIdx* self,const ImDrawIdx v)" -defs["ImVector_ImDrawIdx_contains"][1]["argsT"] = {} -defs["ImVector_ImDrawIdx_contains"][1]["argsT"][1] = {} -defs["ImVector_ImDrawIdx_contains"][1]["argsT"][1]["name"] = "self" -defs["ImVector_ImDrawIdx_contains"][1]["argsT"][1]["type"] = "const ImVector_ImDrawIdx*" -defs["ImVector_ImDrawIdx_contains"][1]["argsT"][2] = {} -defs["ImVector_ImDrawIdx_contains"][1]["argsT"][2]["name"] = "v" -defs["ImVector_ImDrawIdx_contains"][1]["argsT"][2]["type"] = "const ImDrawIdx" -defs["ImVector_ImDrawIdx_contains"][1]["call_args"] = "(v)" -defs["ImVector_ImDrawIdx_contains"][1]["cimguiname"] = "ImVector_ImDrawIdx_contains" -defs["ImVector_ImDrawIdx_contains"][1]["defaults"] = {} -defs["ImVector_ImDrawIdx_contains"][1]["funcname"] = "contains" -defs["ImVector_ImDrawIdx_contains"][1]["ov_cimguiname"] = "ImVector_ImDrawIdx_contains" -defs["ImVector_ImDrawIdx_contains"][1]["ret"] = "bool" -defs["ImVector_ImDrawIdx_contains"][1]["signature"] = "(const ImDrawIdx)const" -defs["ImVector_ImDrawIdx_contains"][1]["stname"] = "ImVector_ImDrawIdx" -defs["ImVector_ImDrawIdx_contains"][1]["templatedgen"] = true -defs["ImVector_ImDrawIdx_contains"]["(const ImDrawIdx)const"] = defs["ImVector_ImDrawIdx_contains"][1] defs["ImVector_ImDrawIdx_destroy"] = {} defs["ImVector_ImDrawIdx_destroy"][1] = {} defs["ImVector_ImDrawIdx_destroy"][1]["args"] = "(ImVector_ImDrawIdx* self)" @@ -6962,26 +6882,6 @@ defs["ImVector_ImDrawVert_clear"][1]["signature"] = "()" defs["ImVector_ImDrawVert_clear"][1]["stname"] = "ImVector_ImDrawVert" defs["ImVector_ImDrawVert_clear"][1]["templatedgen"] = true defs["ImVector_ImDrawVert_clear"]["()"] = defs["ImVector_ImDrawVert_clear"][1] -defs["ImVector_ImDrawVert_contains"] = {} -defs["ImVector_ImDrawVert_contains"][1] = {} -defs["ImVector_ImDrawVert_contains"][1]["args"] = "(const ImVector_ImDrawVert* self,const ImDrawVert v)" -defs["ImVector_ImDrawVert_contains"][1]["argsT"] = {} -defs["ImVector_ImDrawVert_contains"][1]["argsT"][1] = {} -defs["ImVector_ImDrawVert_contains"][1]["argsT"][1]["name"] = "self" -defs["ImVector_ImDrawVert_contains"][1]["argsT"][1]["type"] = "const ImVector_ImDrawVert*" -defs["ImVector_ImDrawVert_contains"][1]["argsT"][2] = {} -defs["ImVector_ImDrawVert_contains"][1]["argsT"][2]["name"] = "v" -defs["ImVector_ImDrawVert_contains"][1]["argsT"][2]["type"] = "const ImDrawVert" -defs["ImVector_ImDrawVert_contains"][1]["call_args"] = "(v)" -defs["ImVector_ImDrawVert_contains"][1]["cimguiname"] = "ImVector_ImDrawVert_contains" -defs["ImVector_ImDrawVert_contains"][1]["defaults"] = {} -defs["ImVector_ImDrawVert_contains"][1]["funcname"] = "contains" -defs["ImVector_ImDrawVert_contains"][1]["ov_cimguiname"] = "ImVector_ImDrawVert_contains" -defs["ImVector_ImDrawVert_contains"][1]["ret"] = "bool" -defs["ImVector_ImDrawVert_contains"][1]["signature"] = "(const ImDrawVert)const" -defs["ImVector_ImDrawVert_contains"][1]["stname"] = "ImVector_ImDrawVert" -defs["ImVector_ImDrawVert_contains"][1]["templatedgen"] = true -defs["ImVector_ImDrawVert_contains"]["(const ImDrawVert)const"] = defs["ImVector_ImDrawVert_contains"][1] defs["ImVector_ImDrawVert_destroy"] = {} defs["ImVector_ImDrawVert_destroy"][1] = {} defs["ImVector_ImDrawVert_destroy"][1]["args"] = "(ImVector_ImDrawVert* self)" @@ -7513,26 +7413,6 @@ defs["ImVector_ImFontConfig_clear"][1]["signature"] = "()" defs["ImVector_ImFontConfig_clear"][1]["stname"] = "ImVector_ImFontConfig" defs["ImVector_ImFontConfig_clear"][1]["templatedgen"] = true defs["ImVector_ImFontConfig_clear"]["()"] = defs["ImVector_ImFontConfig_clear"][1] -defs["ImVector_ImFontConfig_contains"] = {} -defs["ImVector_ImFontConfig_contains"][1] = {} -defs["ImVector_ImFontConfig_contains"][1]["args"] = "(const ImVector_ImFontConfig* self,const ImFontConfig v)" -defs["ImVector_ImFontConfig_contains"][1]["argsT"] = {} -defs["ImVector_ImFontConfig_contains"][1]["argsT"][1] = {} -defs["ImVector_ImFontConfig_contains"][1]["argsT"][1]["name"] = "self" -defs["ImVector_ImFontConfig_contains"][1]["argsT"][1]["type"] = "const ImVector_ImFontConfig*" -defs["ImVector_ImFontConfig_contains"][1]["argsT"][2] = {} -defs["ImVector_ImFontConfig_contains"][1]["argsT"][2]["name"] = "v" -defs["ImVector_ImFontConfig_contains"][1]["argsT"][2]["type"] = "const ImFontConfig" -defs["ImVector_ImFontConfig_contains"][1]["call_args"] = "(v)" -defs["ImVector_ImFontConfig_contains"][1]["cimguiname"] = "ImVector_ImFontConfig_contains" -defs["ImVector_ImFontConfig_contains"][1]["defaults"] = {} -defs["ImVector_ImFontConfig_contains"][1]["funcname"] = "contains" -defs["ImVector_ImFontConfig_contains"][1]["ov_cimguiname"] = "ImVector_ImFontConfig_contains" -defs["ImVector_ImFontConfig_contains"][1]["ret"] = "bool" -defs["ImVector_ImFontConfig_contains"][1]["signature"] = "(const ImFontConfig)const" -defs["ImVector_ImFontConfig_contains"][1]["stname"] = "ImVector_ImFontConfig" -defs["ImVector_ImFontConfig_contains"][1]["templatedgen"] = true -defs["ImVector_ImFontConfig_contains"]["(const ImFontConfig)const"] = defs["ImVector_ImFontConfig_contains"][1] defs["ImVector_ImFontConfig_destroy"] = {} defs["ImVector_ImFontConfig_destroy"][1] = {} defs["ImVector_ImFontConfig_destroy"][1]["args"] = "(ImVector_ImFontConfig* self)" @@ -8064,26 +7944,6 @@ defs["ImVector_ImFontGlyph_clear"][1]["signature"] = "()" defs["ImVector_ImFontGlyph_clear"][1]["stname"] = "ImVector_ImFontGlyph" defs["ImVector_ImFontGlyph_clear"][1]["templatedgen"] = true defs["ImVector_ImFontGlyph_clear"]["()"] = defs["ImVector_ImFontGlyph_clear"][1] -defs["ImVector_ImFontGlyph_contains"] = {} -defs["ImVector_ImFontGlyph_contains"][1] = {} -defs["ImVector_ImFontGlyph_contains"][1]["args"] = "(const ImVector_ImFontGlyph* self,const ImFontGlyph v)" -defs["ImVector_ImFontGlyph_contains"][1]["argsT"] = {} -defs["ImVector_ImFontGlyph_contains"][1]["argsT"][1] = {} -defs["ImVector_ImFontGlyph_contains"][1]["argsT"][1]["name"] = "self" -defs["ImVector_ImFontGlyph_contains"][1]["argsT"][1]["type"] = "const ImVector_ImFontGlyph*" -defs["ImVector_ImFontGlyph_contains"][1]["argsT"][2] = {} -defs["ImVector_ImFontGlyph_contains"][1]["argsT"][2]["name"] = "v" -defs["ImVector_ImFontGlyph_contains"][1]["argsT"][2]["type"] = "const ImFontGlyph" -defs["ImVector_ImFontGlyph_contains"][1]["call_args"] = "(v)" -defs["ImVector_ImFontGlyph_contains"][1]["cimguiname"] = "ImVector_ImFontGlyph_contains" -defs["ImVector_ImFontGlyph_contains"][1]["defaults"] = {} -defs["ImVector_ImFontGlyph_contains"][1]["funcname"] = "contains" -defs["ImVector_ImFontGlyph_contains"][1]["ov_cimguiname"] = "ImVector_ImFontGlyph_contains" -defs["ImVector_ImFontGlyph_contains"][1]["ret"] = "bool" -defs["ImVector_ImFontGlyph_contains"][1]["signature"] = "(const ImFontGlyph)const" -defs["ImVector_ImFontGlyph_contains"][1]["stname"] = "ImVector_ImFontGlyph" -defs["ImVector_ImFontGlyph_contains"][1]["templatedgen"] = true -defs["ImVector_ImFontGlyph_contains"]["(const ImFontGlyph)const"] = defs["ImVector_ImFontGlyph_contains"][1] defs["ImVector_ImFontGlyph_destroy"] = {} defs["ImVector_ImFontGlyph_destroy"][1] = {} defs["ImVector_ImFontGlyph_destroy"][1]["args"] = "(ImVector_ImFontGlyph* self)" @@ -8615,26 +8475,6 @@ defs["ImVector_ImFontPtr_clear"][1]["signature"] = "()" defs["ImVector_ImFontPtr_clear"][1]["stname"] = "ImVector_ImFontPtr" defs["ImVector_ImFontPtr_clear"][1]["templatedgen"] = true defs["ImVector_ImFontPtr_clear"]["()"] = defs["ImVector_ImFontPtr_clear"][1] -defs["ImVector_ImFontPtr_contains"] = {} -defs["ImVector_ImFontPtr_contains"][1] = {} -defs["ImVector_ImFontPtr_contains"][1]["args"] = "(const ImVector_ImFontPtr* self,ImFont* const v)" -defs["ImVector_ImFontPtr_contains"][1]["argsT"] = {} -defs["ImVector_ImFontPtr_contains"][1]["argsT"][1] = {} -defs["ImVector_ImFontPtr_contains"][1]["argsT"][1]["name"] = "self" -defs["ImVector_ImFontPtr_contains"][1]["argsT"][1]["type"] = "const ImVector_ImFontPtr*" -defs["ImVector_ImFontPtr_contains"][1]["argsT"][2] = {} -defs["ImVector_ImFontPtr_contains"][1]["argsT"][2]["name"] = "v" -defs["ImVector_ImFontPtr_contains"][1]["argsT"][2]["type"] = "ImFont* const " -defs["ImVector_ImFontPtr_contains"][1]["call_args"] = "(v)" -defs["ImVector_ImFontPtr_contains"][1]["cimguiname"] = "ImVector_ImFontPtr_contains" -defs["ImVector_ImFontPtr_contains"][1]["defaults"] = {} -defs["ImVector_ImFontPtr_contains"][1]["funcname"] = "contains" -defs["ImVector_ImFontPtr_contains"][1]["ov_cimguiname"] = "ImVector_ImFontPtr_contains" -defs["ImVector_ImFontPtr_contains"][1]["ret"] = "bool" -defs["ImVector_ImFontPtr_contains"][1]["signature"] = "(const ImFont*)const" -defs["ImVector_ImFontPtr_contains"][1]["stname"] = "ImVector_ImFontPtr" -defs["ImVector_ImFontPtr_contains"][1]["templatedgen"] = true -defs["ImVector_ImFontPtr_contains"]["(const ImFont*)const"] = defs["ImVector_ImFontPtr_contains"][1] defs["ImVector_ImFontPtr_destroy"] = {} defs["ImVector_ImFontPtr_destroy"][1] = {} defs["ImVector_ImFontPtr_destroy"][1]["args"] = "(ImVector_ImFontPtr* self)" @@ -9166,26 +9006,6 @@ defs["ImVector_ImTextureID_clear"][1]["signature"] = "()" defs["ImVector_ImTextureID_clear"][1]["stname"] = "ImVector_ImTextureID" defs["ImVector_ImTextureID_clear"][1]["templatedgen"] = true defs["ImVector_ImTextureID_clear"]["()"] = defs["ImVector_ImTextureID_clear"][1] -defs["ImVector_ImTextureID_contains"] = {} -defs["ImVector_ImTextureID_contains"][1] = {} -defs["ImVector_ImTextureID_contains"][1]["args"] = "(const ImVector_ImTextureID* self,const ImTextureID v)" -defs["ImVector_ImTextureID_contains"][1]["argsT"] = {} -defs["ImVector_ImTextureID_contains"][1]["argsT"][1] = {} -defs["ImVector_ImTextureID_contains"][1]["argsT"][1]["name"] = "self" -defs["ImVector_ImTextureID_contains"][1]["argsT"][1]["type"] = "const ImVector_ImTextureID*" -defs["ImVector_ImTextureID_contains"][1]["argsT"][2] = {} -defs["ImVector_ImTextureID_contains"][1]["argsT"][2]["name"] = "v" -defs["ImVector_ImTextureID_contains"][1]["argsT"][2]["type"] = "const ImTextureID" -defs["ImVector_ImTextureID_contains"][1]["call_args"] = "(v)" -defs["ImVector_ImTextureID_contains"][1]["cimguiname"] = "ImVector_ImTextureID_contains" -defs["ImVector_ImTextureID_contains"][1]["defaults"] = {} -defs["ImVector_ImTextureID_contains"][1]["funcname"] = "contains" -defs["ImVector_ImTextureID_contains"][1]["ov_cimguiname"] = "ImVector_ImTextureID_contains" -defs["ImVector_ImTextureID_contains"][1]["ret"] = "bool" -defs["ImVector_ImTextureID_contains"][1]["signature"] = "(const ImTextureID)const" -defs["ImVector_ImTextureID_contains"][1]["stname"] = "ImVector_ImTextureID" -defs["ImVector_ImTextureID_contains"][1]["templatedgen"] = true -defs["ImVector_ImTextureID_contains"]["(const ImTextureID)const"] = defs["ImVector_ImTextureID_contains"][1] defs["ImVector_ImTextureID_destroy"] = {} defs["ImVector_ImTextureID_destroy"][1] = {} defs["ImVector_ImTextureID_destroy"][1]["args"] = "(ImVector_ImTextureID* self)" @@ -9717,26 +9537,6 @@ defs["ImVector_ImVec2_clear"][1]["signature"] = "()" defs["ImVector_ImVec2_clear"][1]["stname"] = "ImVector_ImVec2" defs["ImVector_ImVec2_clear"][1]["templatedgen"] = true defs["ImVector_ImVec2_clear"]["()"] = defs["ImVector_ImVec2_clear"][1] -defs["ImVector_ImVec2_contains"] = {} -defs["ImVector_ImVec2_contains"][1] = {} -defs["ImVector_ImVec2_contains"][1]["args"] = "(const ImVector_ImVec2* self,const ImVec2 v)" -defs["ImVector_ImVec2_contains"][1]["argsT"] = {} -defs["ImVector_ImVec2_contains"][1]["argsT"][1] = {} -defs["ImVector_ImVec2_contains"][1]["argsT"][1]["name"] = "self" -defs["ImVector_ImVec2_contains"][1]["argsT"][1]["type"] = "const ImVector_ImVec2*" -defs["ImVector_ImVec2_contains"][1]["argsT"][2] = {} -defs["ImVector_ImVec2_contains"][1]["argsT"][2]["name"] = "v" -defs["ImVector_ImVec2_contains"][1]["argsT"][2]["type"] = "const ImVec2" -defs["ImVector_ImVec2_contains"][1]["call_args"] = "(v)" -defs["ImVector_ImVec2_contains"][1]["cimguiname"] = "ImVector_ImVec2_contains" -defs["ImVector_ImVec2_contains"][1]["defaults"] = {} -defs["ImVector_ImVec2_contains"][1]["funcname"] = "contains" -defs["ImVector_ImVec2_contains"][1]["ov_cimguiname"] = "ImVector_ImVec2_contains" -defs["ImVector_ImVec2_contains"][1]["ret"] = "bool" -defs["ImVector_ImVec2_contains"][1]["signature"] = "(const ImVec2)const" -defs["ImVector_ImVec2_contains"][1]["stname"] = "ImVector_ImVec2" -defs["ImVector_ImVec2_contains"][1]["templatedgen"] = true -defs["ImVector_ImVec2_contains"]["(const ImVec2)const"] = defs["ImVector_ImVec2_contains"][1] defs["ImVector_ImVec2_destroy"] = {} defs["ImVector_ImVec2_destroy"][1] = {} defs["ImVector_ImVec2_destroy"][1]["args"] = "(ImVector_ImVec2* self)" @@ -10268,26 +10068,6 @@ defs["ImVector_ImVec4_clear"][1]["signature"] = "()" defs["ImVector_ImVec4_clear"][1]["stname"] = "ImVector_ImVec4" defs["ImVector_ImVec4_clear"][1]["templatedgen"] = true defs["ImVector_ImVec4_clear"]["()"] = defs["ImVector_ImVec4_clear"][1] -defs["ImVector_ImVec4_contains"] = {} -defs["ImVector_ImVec4_contains"][1] = {} -defs["ImVector_ImVec4_contains"][1]["args"] = "(const ImVector_ImVec4* self,const ImVec4 v)" -defs["ImVector_ImVec4_contains"][1]["argsT"] = {} -defs["ImVector_ImVec4_contains"][1]["argsT"][1] = {} -defs["ImVector_ImVec4_contains"][1]["argsT"][1]["name"] = "self" -defs["ImVector_ImVec4_contains"][1]["argsT"][1]["type"] = "const ImVector_ImVec4*" -defs["ImVector_ImVec4_contains"][1]["argsT"][2] = {} -defs["ImVector_ImVec4_contains"][1]["argsT"][2]["name"] = "v" -defs["ImVector_ImVec4_contains"][1]["argsT"][2]["type"] = "const ImVec4" -defs["ImVector_ImVec4_contains"][1]["call_args"] = "(v)" -defs["ImVector_ImVec4_contains"][1]["cimguiname"] = "ImVector_ImVec4_contains" -defs["ImVector_ImVec4_contains"][1]["defaults"] = {} -defs["ImVector_ImVec4_contains"][1]["funcname"] = "contains" -defs["ImVector_ImVec4_contains"][1]["ov_cimguiname"] = "ImVector_ImVec4_contains" -defs["ImVector_ImVec4_contains"][1]["ret"] = "bool" -defs["ImVector_ImVec4_contains"][1]["signature"] = "(const ImVec4)const" -defs["ImVector_ImVec4_contains"][1]["stname"] = "ImVector_ImVec4" -defs["ImVector_ImVec4_contains"][1]["templatedgen"] = true -defs["ImVector_ImVec4_contains"]["(const ImVec4)const"] = defs["ImVector_ImVec4_contains"][1] defs["ImVector_ImVec4_destroy"] = {} defs["ImVector_ImVec4_destroy"][1] = {} defs["ImVector_ImVec4_destroy"][1]["args"] = "(ImVector_ImVec4* self)" @@ -11404,26 +11184,6 @@ defs["ImVector_Pair_clear"][1]["signature"] = "()" defs["ImVector_Pair_clear"][1]["stname"] = "ImVector_Pair" defs["ImVector_Pair_clear"][1]["templatedgen"] = true defs["ImVector_Pair_clear"]["()"] = defs["ImVector_Pair_clear"][1] -defs["ImVector_Pair_contains"] = {} -defs["ImVector_Pair_contains"][1] = {} -defs["ImVector_Pair_contains"][1]["args"] = "(const ImVector_Pair* self,const Pair v)" -defs["ImVector_Pair_contains"][1]["argsT"] = {} -defs["ImVector_Pair_contains"][1]["argsT"][1] = {} -defs["ImVector_Pair_contains"][1]["argsT"][1]["name"] = "self" -defs["ImVector_Pair_contains"][1]["argsT"][1]["type"] = "const ImVector_Pair*" -defs["ImVector_Pair_contains"][1]["argsT"][2] = {} -defs["ImVector_Pair_contains"][1]["argsT"][2]["name"] = "v" -defs["ImVector_Pair_contains"][1]["argsT"][2]["type"] = "const Pair" -defs["ImVector_Pair_contains"][1]["call_args"] = "(v)" -defs["ImVector_Pair_contains"][1]["cimguiname"] = "ImVector_Pair_contains" -defs["ImVector_Pair_contains"][1]["defaults"] = {} -defs["ImVector_Pair_contains"][1]["funcname"] = "contains" -defs["ImVector_Pair_contains"][1]["ov_cimguiname"] = "ImVector_Pair_contains" -defs["ImVector_Pair_contains"][1]["ret"] = "bool" -defs["ImVector_Pair_contains"][1]["signature"] = "(const Pair)const" -defs["ImVector_Pair_contains"][1]["stname"] = "ImVector_Pair" -defs["ImVector_Pair_contains"][1]["templatedgen"] = true -defs["ImVector_Pair_contains"]["(const Pair)const"] = defs["ImVector_Pair_contains"][1] defs["ImVector_Pair_destroy"] = {} defs["ImVector_Pair_destroy"][1] = {} defs["ImVector_Pair_destroy"][1]["args"] = "(ImVector_Pair* self)" @@ -11955,26 +11715,6 @@ defs["ImVector_TextRange_clear"][1]["signature"] = "()" defs["ImVector_TextRange_clear"][1]["stname"] = "ImVector_TextRange" defs["ImVector_TextRange_clear"][1]["templatedgen"] = true defs["ImVector_TextRange_clear"]["()"] = defs["ImVector_TextRange_clear"][1] -defs["ImVector_TextRange_contains"] = {} -defs["ImVector_TextRange_contains"][1] = {} -defs["ImVector_TextRange_contains"][1]["args"] = "(const ImVector_TextRange* self,const TextRange v)" -defs["ImVector_TextRange_contains"][1]["argsT"] = {} -defs["ImVector_TextRange_contains"][1]["argsT"][1] = {} -defs["ImVector_TextRange_contains"][1]["argsT"][1]["name"] = "self" -defs["ImVector_TextRange_contains"][1]["argsT"][1]["type"] = "const ImVector_TextRange*" -defs["ImVector_TextRange_contains"][1]["argsT"][2] = {} -defs["ImVector_TextRange_contains"][1]["argsT"][2]["name"] = "v" -defs["ImVector_TextRange_contains"][1]["argsT"][2]["type"] = "const TextRange" -defs["ImVector_TextRange_contains"][1]["call_args"] = "(v)" -defs["ImVector_TextRange_contains"][1]["cimguiname"] = "ImVector_TextRange_contains" -defs["ImVector_TextRange_contains"][1]["defaults"] = {} -defs["ImVector_TextRange_contains"][1]["funcname"] = "contains" -defs["ImVector_TextRange_contains"][1]["ov_cimguiname"] = "ImVector_TextRange_contains" -defs["ImVector_TextRange_contains"][1]["ret"] = "bool" -defs["ImVector_TextRange_contains"][1]["signature"] = "(const TextRange)const" -defs["ImVector_TextRange_contains"][1]["stname"] = "ImVector_TextRange" -defs["ImVector_TextRange_contains"][1]["templatedgen"] = true -defs["ImVector_TextRange_contains"]["(const TextRange)const"] = defs["ImVector_TextRange_contains"][1] defs["ImVector_TextRange_destroy"] = {} defs["ImVector_TextRange_destroy"][1] = {} defs["ImVector_TextRange_destroy"][1]["args"] = "(ImVector_TextRange* self)" @@ -13041,28 +12781,6 @@ defs["ImVector_clear"][1]["signature"] = "()" defs["ImVector_clear"][1]["stname"] = "ImVector" defs["ImVector_clear"][1]["templated"] = true defs["ImVector_clear"]["()"] = defs["ImVector_clear"][1] -defs["ImVector_contains"] = {} -defs["ImVector_contains"][1] = {} -defs["ImVector_contains"][1]["args"] = "(ImVector* self,const T v)" -defs["ImVector_contains"][1]["argsT"] = {} -defs["ImVector_contains"][1]["argsT"][1] = {} -defs["ImVector_contains"][1]["argsT"][1]["name"] = "self" -defs["ImVector_contains"][1]["argsT"][1]["type"] = "ImVector*" -defs["ImVector_contains"][1]["argsT"][2] = {} -defs["ImVector_contains"][1]["argsT"][2]["name"] = "v" -defs["ImVector_contains"][1]["argsT"][2]["type"] = "const T" -defs["ImVector_contains"][1]["argsoriginal"] = "(const T& v)" -defs["ImVector_contains"][1]["call_args"] = "(v)" -defs["ImVector_contains"][1]["cimguiname"] = "ImVector_contains" -defs["ImVector_contains"][1]["comment"] = "" -defs["ImVector_contains"][1]["defaults"] = {} -defs["ImVector_contains"][1]["funcname"] = "contains" -defs["ImVector_contains"][1]["ov_cimguiname"] = "ImVector_contains" -defs["ImVector_contains"][1]["ret"] = "bool" -defs["ImVector_contains"][1]["signature"] = "(const T)const" -defs["ImVector_contains"][1]["stname"] = "ImVector" -defs["ImVector_contains"][1]["templated"] = true -defs["ImVector_contains"]["(const T)const"] = defs["ImVector_contains"][1] defs["ImVector_destroy"] = {} defs["ImVector_destroy"][1] = {} defs["ImVector_destroy"][1]["args"] = "(ImVector* self)" From 498f9802d1f1a941013607404a470405c46cd0bb Mon Sep 17 00:00:00 2001 From: sonoro1234 Date: Fri, 15 Feb 2019 11:17:51 +0100 Subject: [PATCH 07/12] update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bc76b10..55c441e 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ This is a thin c-api wrapper programmatically generated for the excellent C++ immediate mode gui [Dear ImGui](https://github.com/ocornut/imgui). -All functions are programmatically wrapped except `ImVector` constructors and destructors. (Unless someone find a use case for them)(Now they exist for `ImVector_ImWchar`) +All imgui.h functions are programmatically wrapped. Generated files are: `cimgui.cpp`, `cimgui.h` for C compilation. Also for helping in bindings creation, `definitions.lua` with function definition information and `structs_and_enums.lua`. This library is intended as a intermediate layer to be able to use Dear ImGui from other languages that can interface with C (like D - see [D-binding](https://github.com/Extrawurst/DerelictImgui)) From e125f405e3d662236a7429c86e3438f781fad5c0 Mon Sep 17 00:00:00 2001 From: sonoro1234 Date: Fri, 15 Feb 2019 12:10:52 +0100 Subject: [PATCH 08/12] more README.md update --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 55c441e..a8bf3f7 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,7 @@ Notes: * ov_cimguiname : the overloaded cimgui name (if absent it would be taken from cimguiname) * cimguiname : the name without overloading (this should be used if there is not ov_cimguiname) * ret : the return type + * retref : is setted if original return type is a reference. (will be a pointer in cimgui) * argsT : an array of collections (each one with type: argument type and name: the argument name) * args : a string of argsT concatenated and separated by commas * call_args : a string with the argument names separated by commas for calling imgui function @@ -53,7 +54,9 @@ Notes: * manual : will be true if this function is hand-written (not generated) * isvararg : is setted if some argument is a vararg * constructor : is setted if the function is a constructor for a class - * destructor : is setted if the functions is a destructor for a class + * destructor : is setted if the function is a destructor for a class + * templated : is setted if the function belongs to a templated class (ImVector) + * templatedgen: is setted if the function belongs to a struct generated from template (ImVector_ImWchar) * nonUDT : if present can be 1 or 2 (explained meaning in usage) if return type was a user defined type ### structs_and_enums description * Is is a collection with two items: From d331453422e260df28f1d5eb21c0379a5471d44e Mon Sep 17 00:00:00 2001 From: sonoro1234 Date: Fri, 15 Feb 2019 12:24:06 +0100 Subject: [PATCH 09/12] correct issue #88 (Pair union member) --- generator/generator2.lua | 7 ++++++- generator/output/structs_and_enums.json | 4 ++-- generator/output/structs_and_enums.lua | 4 ++-- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/generator/generator2.lua b/generator/generator2.lua index 3e19bdf..2c18d4c 100644 --- a/generator/generator2.lua +++ b/generator/generator2.lua @@ -446,7 +446,7 @@ end local function cimgui_generation(parser) cpp2ffi.prtable(parser.templates) cpp2ffi.prtable(parser.typenames) - --clean ImVector:contains() for not applicable types + -- clean ImVector:contains() for not applicable types local clean_f = {} for k,v in pairs(parser.defsT) do if k:match"ImVector" and k:match"contains" then @@ -463,6 +463,7 @@ local function cimgui_generation(parser) end end end + -------------------------------------------------- local hstrfile = read_data"./cimgui_template.h" @@ -556,6 +557,10 @@ save_data("./output/definitions.lua",serializeTableF(parser1.defsT)) ----------save struct and enums lua table in structs_and_enums.lua for using in bindings local structs_and_enums_table = parser1:gen_structs_and_enums_table() +--correct Pair union member +structs_and_enums_table["structs"]["Pair"][2]["name"] = "" +structs_and_enums_table["structs"]["Pair"][2]["type"] = structs_and_enums_table["structs"]["Pair"][2]["type"] .. "}" +----------------------- save_data("./output/structs_and_enums.lua",serializeTableF(structs_and_enums_table)) save_data("./output/typedefs_dict.lua",serializeTableF(parser1.typedefs_dict)) diff --git a/generator/output/structs_and_enums.json b/generator/output/structs_and_enums.json index a843bd1..11816e8 100644 --- a/generator/output/structs_and_enums.json +++ b/generator/output/structs_and_enums.json @@ -2745,8 +2745,8 @@ "type": "ImGuiID" }, { - "name": "}", - "type": "union { int val_i; float val_f; void* val_p;" + "name": "", + "type": "union { int val_i; float val_f; void* val_p;}" } ], "TextRange": [ diff --git a/generator/output/structs_and_enums.lua b/generator/output/structs_and_enums.lua index 1add2b6..c4e7b6d 100644 --- a/generator/output/structs_and_enums.lua +++ b/generator/output/structs_and_enums.lua @@ -2125,8 +2125,8 @@ defs["structs"]["Pair"][1] = {} defs["structs"]["Pair"][1]["name"] = "key" defs["structs"]["Pair"][1]["type"] = "ImGuiID" defs["structs"]["Pair"][2] = {} -defs["structs"]["Pair"][2]["name"] = "}" -defs["structs"]["Pair"][2]["type"] = "union { int val_i; float val_f; void* val_p;" +defs["structs"]["Pair"][2]["name"] = "" +defs["structs"]["Pair"][2]["type"] = "union { int val_i; float val_f; void* val_p;}" defs["structs"]["TextRange"] = {} defs["structs"]["TextRange"][1] = {} defs["structs"]["TextRange"][1]["name"] = "b" From 186ebd8f06cd45f5eb927753696f30a89b449a91 Mon Sep 17 00:00:00 2001 From: sonoro1234 Date: Fri, 15 Feb 2019 16:54:23 +0100 Subject: [PATCH 10/12] drop comments and update README.md for top level functions --- README.md | 2 +- generator/cpp2ffi.lua | 10 +- generator/output/definitions.json | 597 ------------------------- generator/output/definitions.lua | 597 ------------------------- generator/output/impl_definitions.json | 29 -- generator/output/impl_definitions.lua | 29 -- 6 files changed, 6 insertions(+), 1258 deletions(-) diff --git a/README.md b/README.md index a8bf3f7..1e39e37 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ Notes: ### definitions description * It is a collection in which key is the cimgui name that would result without overloadings and the value is an array of overloadings (may be only one overloading) * Each overloading is a collection. Some relevant keys and values are: - * stname : the name of the struct the function belongs to (may be ImGui if it is top level in ImGui namespace) + * stname : the name of the struct the function belongs to (will be "" if it is top level in ImGui namespace) * ov_cimguiname : the overloaded cimgui name (if absent it would be taken from cimguiname) * cimguiname : the name without overloading (this should be used if there is not ov_cimguiname) * ret : the return type diff --git a/generator/cpp2ffi.lua b/generator/cpp2ffi.lua index 4362010..9d1a52d 100644 --- a/generator/cpp2ffi.lua +++ b/generator/cpp2ffi.lua @@ -458,7 +458,7 @@ local function parseFunction(self,stname,lineorig,namespace) end local cimguiname = self.getCname(stname,funcname) - table.insert(self.funcdefs,{stname=stname,funcname=funcname,args=args,argsc=argscsinpars,signature=signature,cimguiname=cimguiname,call_args=call_args,ret =ret,comment=comment}) + table.insert(self.funcdefs,{stname=stname,funcname=funcname,args=args,argsc=argscsinpars,signature=signature,cimguiname=cimguiname,call_args=call_args,ret =ret}) local defsT = self.defsT defsT[cimguiname] = defsT[cimguiname] or {} table.insert(defsT[cimguiname],{}) @@ -480,7 +480,7 @@ local function parseFunction(self,stname,lineorig,namespace) defT.call_args = call_args defT.isvararg = signature:match("%.%.%.%)$") defT.location = locat - defT.comment = "" --comment + --defT.comment = "" --comment defT.argsT = argsArr if self.get_manuals(defT) then defT.manual = true @@ -553,7 +553,7 @@ local function ADDnonUDT(FP) defT2.retref = nil defsT[t.cimguiname][#defsT[t.cimguiname] + 1] = defT2 defsT[t.cimguiname][t.signature.."nonUDT"] = defT2 - table.insert(newcdefs,{stname=t.stname,funcname=t.funcname,args=args,argsc=argscsinpars,signature=t.signature.."nonUDT",cimguiname=t.cimguiname,call_args=call_args,ret =t.ret,comment=comment}) + table.insert(newcdefs,{stname=t.stname,funcname=t.funcname,args=args,argsc=argscsinpars,signature=t.signature.."nonUDT",cimguiname=t.cimguiname,call_args=call_args,ret =t.ret}) --converting to Simple type---------------------------------------------------- local defT3 = {} --first strings @@ -574,7 +574,7 @@ local function ADDnonUDT(FP) defT3.retref = nil defsT[t.cimguiname][#defsT[t.cimguiname] + 1] = defT3 defsT[t.cimguiname][t.signature.."nonUDT2"] = defT3 - table.insert(newcdefs,{stname=t.stname,funcname=t.funcname,args=args,argsc=argscsinpars,signature=t.signature.."nonUDT2",cimguiname=t.cimguiname,call_args=call_args,ret =t.ret,comment=comment}) + table.insert(newcdefs,{stname=t.stname,funcname=t.funcname,args=args,argsc=argscsinpars,signature=t.signature.."nonUDT2",cimguiname=t.cimguiname,call_args=call_args,ret =t.ret}) end end --end @@ -1159,7 +1159,7 @@ function M.Parser() defsT[cimguiname] = defsT[cimguiname] or {} defsT[cimguiname][#defsT[cimguiname] + 1] = defTnew defsT[cimguiname][signature] = defTnew - table.insert(newcdefs,{stname=stname,funcname=t.funcname,args=args,argsc=argscsinpars,signature=signature,cimguiname=cimguiname,call_args=call_args,ret =t.ret,comment=comment}) + table.insert(newcdefs,{stname=stname,funcname=t.funcname,args=args,argsc=argscsinpars,signature=signature,cimguiname=cimguiname,call_args=call_args,ret =t.ret}) end end -- templated end --cimguiname diff --git a/generator/output/definitions.json b/generator/output/definitions.json index 62c2c42..65e081b 100644 --- a/generator/output/definitions.json +++ b/generator/output/definitions.json @@ -6,7 +6,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "CustomRect_CustomRect", - "comment": "", "constructor": true, "defaults": [], "funcname": "CustomRect", @@ -27,7 +26,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "CustomRect_IsPacked", - "comment": "", "defaults": [], "funcname": "IsPacked", "ov_cimguiname": "CustomRect_IsPacked", @@ -83,7 +81,6 @@ "argsoriginal": "(float h,float s,float v,float a=1.0f)", "call_args": "(h,s,v,a)", "cimguiname": "ImColor_HSV", - "comment": "", "defaults": { "a": "1.0f" }, @@ -124,7 +121,6 @@ "argsoriginal": "(float h,float s,float v,float a=1.0f)", "call_args": "(h,s,v,a)", "cimguiname": "ImColor_HSV", - "comment": "", "defaults": { "a": "1.0f" }, @@ -162,7 +158,6 @@ "argsoriginal": "(float h,float s,float v,float a=1.0f)", "call_args": "(h,s,v,a)", "cimguiname": "ImColor_HSV", - "comment": "", "defaults": { "a": "1.0f" }, @@ -182,7 +177,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImColor_ImColor", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImColor", @@ -213,7 +207,6 @@ "argsoriginal": "(int r,int g,int b,int a=255)", "call_args": "(r,g,b,a)", "cimguiname": "ImColor_ImColor", - "comment": "", "constructor": true, "defaults": { "a": "255" @@ -234,7 +227,6 @@ "argsoriginal": "(ImU32 rgba)", "call_args": "(rgba)", "cimguiname": "ImColor_ImColor", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImColor", @@ -265,7 +257,6 @@ "argsoriginal": "(float r,float g,float b,float a=1.0f)", "call_args": "(r,g,b,a)", "cimguiname": "ImColor_ImColor", - "comment": "", "constructor": true, "defaults": { "a": "1.0f" @@ -286,7 +277,6 @@ "argsoriginal": "(const ImVec4& col)", "call_args": "(col)", "cimguiname": "ImColor_ImColor", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImColor", @@ -323,7 +313,6 @@ "argsoriginal": "(float h,float s,float v,float a=1.0f)", "call_args": "(h,s,v,a)", "cimguiname": "ImColor_SetHSV", - "comment": "", "defaults": { "a": "1.0f" }, @@ -360,7 +349,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawCmd_ImDrawCmd", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImDrawCmd", @@ -400,7 +388,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawData_Clear", - "comment": "", "defaults": [], "funcname": "Clear", "ov_cimguiname": "ImDrawData_Clear", @@ -421,7 +408,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawData_DeIndexAllBuffers", - "comment": "", "defaults": [], "funcname": "DeIndexAllBuffers", "ov_cimguiname": "ImDrawData_DeIndexAllBuffers", @@ -437,7 +423,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawData_ImDrawData", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImDrawData", @@ -462,7 +447,6 @@ "argsoriginal": "(const ImVec2& sc)", "call_args": "(sc)", "cimguiname": "ImDrawData_ScaleClipRects", - "comment": "", "defaults": [], "funcname": "ScaleClipRects", "ov_cimguiname": "ImDrawData_ScaleClipRects", @@ -530,7 +514,6 @@ "argsoriginal": "(const ImVec2& pos0,const ImVec2& cp0,const ImVec2& cp1,const ImVec2& pos1,ImU32 col,float thickness,int num_segments=0)", "call_args": "(pos0,cp0,cp1,pos1,col,thickness,num_segments)", "cimguiname": "ImDrawList_AddBezierCurve", - "comment": "", "defaults": { "num_segments": "0" }, @@ -561,7 +544,6 @@ "argsoriginal": "(ImDrawCallback callback,void* callback_data)", "call_args": "(callback,callback_data)", "cimguiname": "ImDrawList_AddCallback", - "comment": "", "defaults": [], "funcname": "AddCallback", "ov_cimguiname": "ImDrawList_AddCallback", @@ -602,7 +584,6 @@ "argsoriginal": "(const ImVec2& centre,float radius,ImU32 col,int num_segments=12,float thickness=1.0f)", "call_args": "(centre,radius,col,num_segments,thickness)", "cimguiname": "ImDrawList_AddCircle", - "comment": "", "defaults": { "num_segments": "12", "thickness": "1.0f" @@ -642,7 +623,6 @@ "argsoriginal": "(const ImVec2& centre,float radius,ImU32 col,int num_segments=12)", "call_args": "(centre,radius,col,num_segments)", "cimguiname": "ImDrawList_AddCircleFilled", - "comment": "", "defaults": { "num_segments": "12" }, @@ -677,7 +657,6 @@ "argsoriginal": "(const ImVec2* points,const int num_points,ImU32 col)", "call_args": "(points,num_points,col)", "cimguiname": "ImDrawList_AddConvexPolyFilled", - "comment": "", "defaults": [], "funcname": "AddConvexPolyFilled", "ov_cimguiname": "ImDrawList_AddConvexPolyFilled", @@ -698,7 +677,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_AddDrawCmd", - "comment": "", "defaults": [], "funcname": "AddDrawCmd", "ov_cimguiname": "ImDrawList_AddDrawCmd", @@ -743,7 +721,6 @@ "argsoriginal": "(ImTextureID user_texture_id,const ImVec2& a,const ImVec2& b,const ImVec2& uv_a=ImVec2(0,0),const ImVec2& uv_b=ImVec2(1,1),ImU32 col=0xFFFFFFFF)", "call_args": "(user_texture_id,a,b,uv_a,uv_b,col)", "cimguiname": "ImDrawList_AddImage", - "comment": "", "defaults": { "col": "0xFFFFFFFF", "uv_a": "ImVec2(0,0)", @@ -808,7 +785,6 @@ "argsoriginal": "(ImTextureID user_texture_id,const ImVec2& a,const ImVec2& b,const ImVec2& c,const ImVec2& d,const ImVec2& uv_a=ImVec2(0,0),const ImVec2& uv_b=ImVec2(1,0),const ImVec2& uv_c=ImVec2(1,1),const ImVec2& uv_d=ImVec2(0,1),ImU32 col=0xFFFFFFFF)", "call_args": "(user_texture_id,a,b,c,d,uv_a,uv_b,uv_c,uv_d,col)", "cimguiname": "ImDrawList_AddImageQuad", - "comment": "", "defaults": { "col": "0xFFFFFFFF", "uv_a": "ImVec2(0,0)", @@ -867,7 +843,6 @@ "argsoriginal": "(ImTextureID user_texture_id,const ImVec2& a,const ImVec2& b,const ImVec2& uv_a,const ImVec2& uv_b,ImU32 col,float rounding,int rounding_corners=ImDrawCornerFlags_All)", "call_args": "(user_texture_id,a,b,uv_a,uv_b,col,rounding,rounding_corners)", "cimguiname": "ImDrawList_AddImageRounded", - "comment": "", "defaults": { "rounding_corners": "ImDrawCornerFlags_All" }, @@ -906,7 +881,6 @@ "argsoriginal": "(const ImVec2& a,const ImVec2& b,ImU32 col,float thickness=1.0f)", "call_args": "(a,b,col,thickness)", "cimguiname": "ImDrawList_AddLine", - "comment": "", "defaults": { "thickness": "1.0f" }, @@ -949,7 +923,6 @@ "argsoriginal": "(const ImVec2* points,const int num_points,ImU32 col,bool closed,float thickness)", "call_args": "(points,num_points,col,closed,thickness)", "cimguiname": "ImDrawList_AddPolyline", - "comment": "", "defaults": [], "funcname": "AddPolyline", "ov_cimguiname": "ImDrawList_AddPolyline", @@ -994,7 +967,6 @@ "argsoriginal": "(const ImVec2& a,const ImVec2& b,const ImVec2& c,const ImVec2& d,ImU32 col,float thickness=1.0f)", "call_args": "(a,b,c,d,col,thickness)", "cimguiname": "ImDrawList_AddQuad", - "comment": "", "defaults": { "thickness": "1.0f" }, @@ -1037,7 +1009,6 @@ "argsoriginal": "(const ImVec2& a,const ImVec2& b,const ImVec2& c,const ImVec2& d,ImU32 col)", "call_args": "(a,b,c,d,col)", "cimguiname": "ImDrawList_AddQuadFilled", - "comment": "", "defaults": [], "funcname": "AddQuadFilled", "ov_cimguiname": "ImDrawList_AddQuadFilled", @@ -1082,7 +1053,6 @@ "argsoriginal": "(const ImVec2& a,const ImVec2& b,ImU32 col,float rounding=0.0f,int rounding_corners_flags=ImDrawCornerFlags_All,float thickness=1.0f)", "call_args": "(a,b,col,rounding,rounding_corners_flags,thickness)", "cimguiname": "ImDrawList_AddRect", - "comment": "", "defaults": { "rounding": "0.0f", "rounding_corners_flags": "ImDrawCornerFlags_All", @@ -1127,7 +1097,6 @@ "argsoriginal": "(const ImVec2& a,const ImVec2& b,ImU32 col,float rounding=0.0f,int rounding_corners_flags=ImDrawCornerFlags_All)", "call_args": "(a,b,col,rounding,rounding_corners_flags)", "cimguiname": "ImDrawList_AddRectFilled", - "comment": "", "defaults": { "rounding": "0.0f", "rounding_corners_flags": "ImDrawCornerFlags_All" @@ -1175,7 +1144,6 @@ "argsoriginal": "(const ImVec2& a,const ImVec2& b,ImU32 col_upr_left,ImU32 col_upr_right,ImU32 col_bot_right,ImU32 col_bot_left)", "call_args": "(a,b,col_upr_left,col_upr_right,col_bot_right,col_bot_left)", "cimguiname": "ImDrawList_AddRectFilledMultiColor", - "comment": "", "defaults": [], "funcname": "AddRectFilledMultiColor", "ov_cimguiname": "ImDrawList_AddRectFilledMultiColor", @@ -1212,7 +1180,6 @@ "argsoriginal": "(const ImVec2& pos,ImU32 col,const char* text_begin,const char* text_end=((void*)0))", "call_args": "(pos,col,text_begin,text_end)", "cimguiname": "ImDrawList_AddText", - "comment": "", "defaults": { "text_end": "((void*)0)" }, @@ -1265,7 +1232,6 @@ "argsoriginal": "(const ImFont* font,float font_size,const ImVec2& pos,ImU32 col,const char* text_begin,const char* text_end=((void*)0),float wrap_width=0.0f,const ImVec4* cpu_fine_clip_rect=((void*)0))", "call_args": "(font,font_size,pos,col,text_begin,text_end,wrap_width,cpu_fine_clip_rect)", "cimguiname": "ImDrawList_AddText", - "comment": "", "defaults": { "cpu_fine_clip_rect": "((void*)0)", "text_end": "((void*)0)", @@ -1310,7 +1276,6 @@ "argsoriginal": "(const ImVec2& a,const ImVec2& b,const ImVec2& c,ImU32 col,float thickness=1.0f)", "call_args": "(a,b,c,col,thickness)", "cimguiname": "ImDrawList_AddTriangle", - "comment": "", "defaults": { "thickness": "1.0f" }, @@ -1349,7 +1314,6 @@ "argsoriginal": "(const ImVec2& a,const ImVec2& b,const ImVec2& c,ImU32 col)", "call_args": "(a,b,c,col)", "cimguiname": "ImDrawList_AddTriangleFilled", - "comment": "", "defaults": [], "funcname": "AddTriangleFilled", "ov_cimguiname": "ImDrawList_AddTriangleFilled", @@ -1370,7 +1334,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_ChannelsMerge", - "comment": "", "defaults": [], "funcname": "ChannelsMerge", "ov_cimguiname": "ImDrawList_ChannelsMerge", @@ -1395,7 +1358,6 @@ "argsoriginal": "(int channel_index)", "call_args": "(channel_index)", "cimguiname": "ImDrawList_ChannelsSetCurrent", - "comment": "", "defaults": [], "funcname": "ChannelsSetCurrent", "ov_cimguiname": "ImDrawList_ChannelsSetCurrent", @@ -1420,7 +1382,6 @@ "argsoriginal": "(int channels_count)", "call_args": "(channels_count)", "cimguiname": "ImDrawList_ChannelsSplit", - "comment": "", "defaults": [], "funcname": "ChannelsSplit", "ov_cimguiname": "ImDrawList_ChannelsSplit", @@ -1441,7 +1402,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_Clear", - "comment": "", "defaults": [], "funcname": "Clear", "ov_cimguiname": "ImDrawList_Clear", @@ -1462,7 +1422,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_ClearFreeMemory", - "comment": "", "defaults": [], "funcname": "ClearFreeMemory", "ov_cimguiname": "ImDrawList_ClearFreeMemory", @@ -1483,7 +1442,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_CloneOutput", - "comment": "", "defaults": [], "funcname": "CloneOutput", "ov_cimguiname": "ImDrawList_CloneOutput", @@ -1504,7 +1462,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_GetClipRectMax", - "comment": "", "defaults": [], "funcname": "GetClipRectMax", "ov_cimguiname": "ImDrawList_GetClipRectMax", @@ -1527,7 +1484,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_GetClipRectMax", - "comment": "", "defaults": [], "funcname": "GetClipRectMax", "nonUDT": 1, @@ -1547,7 +1503,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_GetClipRectMax", - "comment": "", "defaults": [], "funcname": "GetClipRectMax", "nonUDT": 2, @@ -1570,7 +1525,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_GetClipRectMin", - "comment": "", "defaults": [], "funcname": "GetClipRectMin", "ov_cimguiname": "ImDrawList_GetClipRectMin", @@ -1593,7 +1547,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_GetClipRectMin", - "comment": "", "defaults": [], "funcname": "GetClipRectMin", "nonUDT": 1, @@ -1613,7 +1566,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_GetClipRectMin", - "comment": "", "defaults": [], "funcname": "GetClipRectMin", "nonUDT": 2, @@ -1636,7 +1588,6 @@ "argsoriginal": "(const ImDrawListSharedData* shared_data)", "call_args": "(shared_data)", "cimguiname": "ImDrawList_ImDrawList", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImDrawList", @@ -1677,7 +1628,6 @@ "argsoriginal": "(const ImVec2& centre,float radius,float a_min,float a_max,int num_segments=10)", "call_args": "(centre,radius,a_min,a_max,num_segments)", "cimguiname": "ImDrawList_PathArcTo", - "comment": "", "defaults": { "num_segments": "10" }, @@ -1716,7 +1666,6 @@ "argsoriginal": "(const ImVec2& centre,float radius,int a_min_of_12,int a_max_of_12)", "call_args": "(centre,radius,a_min_of_12,a_max_of_12)", "cimguiname": "ImDrawList_PathArcToFast", - "comment": "", "defaults": [], "funcname": "PathArcToFast", "ov_cimguiname": "ImDrawList_PathArcToFast", @@ -1753,7 +1702,6 @@ "argsoriginal": "(const ImVec2& p1,const ImVec2& p2,const ImVec2& p3,int num_segments=0)", "call_args": "(p1,p2,p3,num_segments)", "cimguiname": "ImDrawList_PathBezierCurveTo", - "comment": "", "defaults": { "num_segments": "0" }, @@ -1776,7 +1724,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_PathClear", - "comment": "", "defaults": [], "funcname": "PathClear", "ov_cimguiname": "ImDrawList_PathClear", @@ -1801,7 +1748,6 @@ "argsoriginal": "(ImU32 col)", "call_args": "(col)", "cimguiname": "ImDrawList_PathFillConvex", - "comment": "", "defaults": [], "funcname": "PathFillConvex", "ov_cimguiname": "ImDrawList_PathFillConvex", @@ -1826,7 +1772,6 @@ "argsoriginal": "(const ImVec2& pos)", "call_args": "(pos)", "cimguiname": "ImDrawList_PathLineTo", - "comment": "", "defaults": [], "funcname": "PathLineTo", "ov_cimguiname": "ImDrawList_PathLineTo", @@ -1851,7 +1796,6 @@ "argsoriginal": "(const ImVec2& pos)", "call_args": "(pos)", "cimguiname": "ImDrawList_PathLineToMergeDuplicate", - "comment": "", "defaults": [], "funcname": "PathLineToMergeDuplicate", "ov_cimguiname": "ImDrawList_PathLineToMergeDuplicate", @@ -1888,7 +1832,6 @@ "argsoriginal": "(const ImVec2& rect_min,const ImVec2& rect_max,float rounding=0.0f,int rounding_corners_flags=ImDrawCornerFlags_All)", "call_args": "(rect_min,rect_max,rounding,rounding_corners_flags)", "cimguiname": "ImDrawList_PathRect", - "comment": "", "defaults": { "rounding": "0.0f", "rounding_corners_flags": "ImDrawCornerFlags_All" @@ -1924,7 +1867,6 @@ "argsoriginal": "(ImU32 col,bool closed,float thickness=1.0f)", "call_args": "(col,closed,thickness)", "cimguiname": "ImDrawList_PathStroke", - "comment": "", "defaults": { "thickness": "1.0f" }, @@ -1947,7 +1889,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_PopClipRect", - "comment": "", "defaults": [], "funcname": "PopClipRect", "ov_cimguiname": "ImDrawList_PopClipRect", @@ -1968,7 +1909,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_PopTextureID", - "comment": "", "defaults": [], "funcname": "PopTextureID", "ov_cimguiname": "ImDrawList_PopTextureID", @@ -2025,7 +1965,6 @@ "argsoriginal": "(const ImVec2& a,const ImVec2& b,const ImVec2& c,const ImVec2& d,const ImVec2& uv_a,const ImVec2& uv_b,const ImVec2& uv_c,const ImVec2& uv_d,ImU32 col)", "call_args": "(a,b,c,d,uv_a,uv_b,uv_c,uv_d,col)", "cimguiname": "ImDrawList_PrimQuadUV", - "comment": "", "defaults": [], "funcname": "PrimQuadUV", "ov_cimguiname": "ImDrawList_PrimQuadUV", @@ -2058,7 +1997,6 @@ "argsoriginal": "(const ImVec2& a,const ImVec2& b,ImU32 col)", "call_args": "(a,b,col)", "cimguiname": "ImDrawList_PrimRect", - "comment": "", "defaults": [], "funcname": "PrimRect", "ov_cimguiname": "ImDrawList_PrimRect", @@ -2099,7 +2037,6 @@ "argsoriginal": "(const ImVec2& a,const ImVec2& b,const ImVec2& uv_a,const ImVec2& uv_b,ImU32 col)", "call_args": "(a,b,uv_a,uv_b,col)", "cimguiname": "ImDrawList_PrimRectUV", - "comment": "", "defaults": [], "funcname": "PrimRectUV", "ov_cimguiname": "ImDrawList_PrimRectUV", @@ -2128,7 +2065,6 @@ "argsoriginal": "(int idx_count,int vtx_count)", "call_args": "(idx_count,vtx_count)", "cimguiname": "ImDrawList_PrimReserve", - "comment": "", "defaults": [], "funcname": "PrimReserve", "ov_cimguiname": "ImDrawList_PrimReserve", @@ -2161,7 +2097,6 @@ "argsoriginal": "(const ImVec2& pos,const ImVec2& uv,ImU32 col)", "call_args": "(pos,uv,col)", "cimguiname": "ImDrawList_PrimVtx", - "comment": "", "defaults": [], "funcname": "PrimVtx", "ov_cimguiname": "ImDrawList_PrimVtx", @@ -2186,7 +2121,6 @@ "argsoriginal": "(ImDrawIdx idx)", "call_args": "(idx)", "cimguiname": "ImDrawList_PrimWriteIdx", - "comment": "", "defaults": [], "funcname": "PrimWriteIdx", "ov_cimguiname": "ImDrawList_PrimWriteIdx", @@ -2219,7 +2153,6 @@ "argsoriginal": "(const ImVec2& pos,const ImVec2& uv,ImU32 col)", "call_args": "(pos,uv,col)", "cimguiname": "ImDrawList_PrimWriteVtx", - "comment": "", "defaults": [], "funcname": "PrimWriteVtx", "ov_cimguiname": "ImDrawList_PrimWriteVtx", @@ -2252,7 +2185,6 @@ "argsoriginal": "(ImVec2 clip_rect_min,ImVec2 clip_rect_max,bool intersect_with_current_clip_rect=false)", "call_args": "(clip_rect_min,clip_rect_max,intersect_with_current_clip_rect)", "cimguiname": "ImDrawList_PushClipRect", - "comment": "", "defaults": { "intersect_with_current_clip_rect": "false" }, @@ -2275,7 +2207,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_PushClipRectFullScreen", - "comment": "", "defaults": [], "funcname": "PushClipRectFullScreen", "ov_cimguiname": "ImDrawList_PushClipRectFullScreen", @@ -2300,7 +2231,6 @@ "argsoriginal": "(ImTextureID texture_id)", "call_args": "(texture_id)", "cimguiname": "ImDrawList_PushTextureID", - "comment": "", "defaults": [], "funcname": "PushTextureID", "ov_cimguiname": "ImDrawList_PushTextureID", @@ -2321,7 +2251,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_UpdateClipRect", - "comment": "", "defaults": [], "funcname": "UpdateClipRect", "ov_cimguiname": "ImDrawList_UpdateClipRect", @@ -2342,7 +2271,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_UpdateTextureID", - "comment": "", "defaults": [], "funcname": "UpdateTextureID", "ov_cimguiname": "ImDrawList_UpdateTextureID", @@ -2406,7 +2334,6 @@ "argsoriginal": "(ImFont* font,ImWchar id,int width,int height,float advance_x,const ImVec2& offset=ImVec2(0,0))", "call_args": "(font,id,width,height,advance_x,offset)", "cimguiname": "ImFontAtlas_AddCustomRectFontGlyph", - "comment": "", "defaults": { "offset": "ImVec2(0,0)" }, @@ -2441,7 +2368,6 @@ "argsoriginal": "(unsigned int id,int width,int height)", "call_args": "(id,width,height)", "cimguiname": "ImFontAtlas_AddCustomRectRegular", - "comment": "", "defaults": [], "funcname": "AddCustomRectRegular", "ov_cimguiname": "ImFontAtlas_AddCustomRectRegular", @@ -2466,7 +2392,6 @@ "argsoriginal": "(const ImFontConfig* font_cfg)", "call_args": "(font_cfg)", "cimguiname": "ImFontAtlas_AddFont", - "comment": "", "defaults": [], "funcname": "AddFont", "ov_cimguiname": "ImFontAtlas_AddFont", @@ -2491,7 +2416,6 @@ "argsoriginal": "(const ImFontConfig* font_cfg=((void*)0))", "call_args": "(font_cfg)", "cimguiname": "ImFontAtlas_AddFontDefault", - "comment": "", "defaults": { "font_cfg": "((void*)0)" }, @@ -2530,7 +2454,6 @@ "argsoriginal": "(const char* filename,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", "call_args": "(filename,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromFileTTF", - "comment": "", "defaults": { "font_cfg": "((void*)0)", "glyph_ranges": "((void*)0)" @@ -2570,7 +2493,6 @@ "argsoriginal": "(const char* compressed_font_data_base85,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", "call_args": "(compressed_font_data_base85,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF", - "comment": "", "defaults": { "font_cfg": "((void*)0)", "glyph_ranges": "((void*)0)" @@ -2614,7 +2536,6 @@ "argsoriginal": "(const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", "call_args": "(compressed_font_data,compressed_font_size,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedTTF", - "comment": "", "defaults": { "font_cfg": "((void*)0)", "glyph_ranges": "((void*)0)" @@ -2658,7 +2579,6 @@ "argsoriginal": "(void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", "call_args": "(font_data,font_size,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromMemoryTTF", - "comment": "", "defaults": { "font_cfg": "((void*)0)", "glyph_ranges": "((void*)0)" @@ -2682,7 +2602,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_Build", - "comment": "", "defaults": [], "funcname": "Build", "ov_cimguiname": "ImFontAtlas_Build", @@ -2715,7 +2634,6 @@ "argsoriginal": "(const CustomRect* rect,ImVec2* out_uv_min,ImVec2* out_uv_max)", "call_args": "(rect,out_uv_min,out_uv_max)", "cimguiname": "ImFontAtlas_CalcCustomRectUV", - "comment": "", "defaults": [], "funcname": "CalcCustomRectUV", "ov_cimguiname": "ImFontAtlas_CalcCustomRectUV", @@ -2736,7 +2654,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_Clear", - "comment": "", "defaults": [], "funcname": "Clear", "ov_cimguiname": "ImFontAtlas_Clear", @@ -2757,7 +2674,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_ClearFonts", - "comment": "", "defaults": [], "funcname": "ClearFonts", "ov_cimguiname": "ImFontAtlas_ClearFonts", @@ -2778,7 +2694,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_ClearInputData", - "comment": "", "defaults": [], "funcname": "ClearInputData", "ov_cimguiname": "ImFontAtlas_ClearInputData", @@ -2799,7 +2714,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_ClearTexData", - "comment": "", "defaults": [], "funcname": "ClearTexData", "ov_cimguiname": "ImFontAtlas_ClearTexData", @@ -2824,7 +2738,6 @@ "argsoriginal": "(int index)", "call_args": "(index)", "cimguiname": "ImFontAtlas_GetCustomRectByIndex", - "comment": "", "defaults": [], "funcname": "GetCustomRectByIndex", "ov_cimguiname": "ImFontAtlas_GetCustomRectByIndex", @@ -2845,7 +2758,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", - "comment": "", "defaults": [], "funcname": "GetGlyphRangesChineseFull", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", @@ -2866,7 +2778,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", - "comment": "", "defaults": [], "funcname": "GetGlyphRangesChineseSimplifiedCommon", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", @@ -2887,7 +2798,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", - "comment": "", "defaults": [], "funcname": "GetGlyphRangesCyrillic", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", @@ -2908,7 +2818,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesDefault", - "comment": "", "defaults": [], "funcname": "GetGlyphRangesDefault", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesDefault", @@ -2929,7 +2838,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", - "comment": "", "defaults": [], "funcname": "GetGlyphRangesJapanese", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", @@ -2950,7 +2858,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesKorean", - "comment": "", "defaults": [], "funcname": "GetGlyphRangesKorean", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesKorean", @@ -2971,7 +2878,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesThai", - "comment": "", "defaults": [], "funcname": "GetGlyphRangesThai", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesThai", @@ -3012,7 +2918,6 @@ "argsoriginal": "(ImGuiMouseCursor cursor,ImVec2* out_offset,ImVec2* out_size,ImVec2 out_uv_border[2],ImVec2 out_uv_fill[2])", "call_args": "(cursor,out_offset,out_size,out_uv_border,out_uv_fill)", "cimguiname": "ImFontAtlas_GetMouseCursorTexData", - "comment": "", "defaults": [], "funcname": "GetMouseCursorTexData", "ov_cimguiname": "ImFontAtlas_GetMouseCursorTexData", @@ -3049,7 +2954,6 @@ "argsoriginal": "(unsigned char** out_pixels,int* out_width,int* out_height,int* out_bytes_per_pixel=((void*)0))", "call_args": "(out_pixels,out_width,out_height,out_bytes_per_pixel)", "cimguiname": "ImFontAtlas_GetTexDataAsAlpha8", - "comment": "", "defaults": { "out_bytes_per_pixel": "((void*)0)" }, @@ -3088,7 +2992,6 @@ "argsoriginal": "(unsigned char** out_pixels,int* out_width,int* out_height,int* out_bytes_per_pixel=((void*)0))", "call_args": "(out_pixels,out_width,out_height,out_bytes_per_pixel)", "cimguiname": "ImFontAtlas_GetTexDataAsRGBA32", - "comment": "", "defaults": { "out_bytes_per_pixel": "((void*)0)" }, @@ -3106,7 +3009,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_ImFontAtlas", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImFontAtlas", @@ -3127,7 +3029,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_IsBuilt", - "comment": "", "defaults": [], "funcname": "IsBuilt", "ov_cimguiname": "ImFontAtlas_IsBuilt", @@ -3152,7 +3053,6 @@ "argsoriginal": "(ImTextureID id)", "call_args": "(id)", "cimguiname": "ImFontAtlas_SetTexID", - "comment": "", "defaults": [], "funcname": "SetTexID", "ov_cimguiname": "ImFontAtlas_SetTexID", @@ -3187,7 +3087,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontConfig_ImFontConfig", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImFontConfig", @@ -3231,7 +3130,6 @@ "argsoriginal": "(ImWchar c)", "call_args": "(c)", "cimguiname": "ImFontGlyphRangesBuilder_AddChar", - "comment": "", "defaults": [], "funcname": "AddChar", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddChar", @@ -3256,7 +3154,6 @@ "argsoriginal": "(const ImWchar* ranges)", "call_args": "(ranges)", "cimguiname": "ImFontGlyphRangesBuilder_AddRanges", - "comment": "", "defaults": [], "funcname": "AddRanges", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddRanges", @@ -3285,7 +3182,6 @@ "argsoriginal": "(const char* text,const char* text_end=((void*)0))", "call_args": "(text,text_end)", "cimguiname": "ImFontGlyphRangesBuilder_AddText", - "comment": "", "defaults": { "text_end": "((void*)0)" }, @@ -3312,7 +3208,6 @@ "argsoriginal": "(ImVector* out_ranges)", "call_args": "(out_ranges)", "cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", - "comment": "", "defaults": [], "funcname": "BuildRanges", "ov_cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", @@ -3337,7 +3232,6 @@ "argsoriginal": "(int n)", "call_args": "(n)", "cimguiname": "ImFontGlyphRangesBuilder_GetBit", - "comment": "", "defaults": [], "funcname": "GetBit", "ov_cimguiname": "ImFontGlyphRangesBuilder_GetBit", @@ -3353,7 +3247,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImFontGlyphRangesBuilder", @@ -3378,7 +3271,6 @@ "argsoriginal": "(int n)", "call_args": "(n)", "cimguiname": "ImFontGlyphRangesBuilder_SetBit", - "comment": "", "defaults": [], "funcname": "SetBit", "ov_cimguiname": "ImFontGlyphRangesBuilder_SetBit", @@ -3458,7 +3350,6 @@ "argsoriginal": "(ImWchar c,float x0,float y0,float x1,float y1,float u0,float v0,float u1,float v1,float advance_x)", "call_args": "(c,x0,y0,x1,y1,u0,v0,u1,v1,advance_x)", "cimguiname": "ImFont_AddGlyph", - "comment": "", "defaults": [], "funcname": "AddGlyph", "ov_cimguiname": "ImFont_AddGlyph", @@ -3491,7 +3382,6 @@ "argsoriginal": "(ImWchar dst,ImWchar src,bool overwrite_dst=true)", "call_args": "(dst,src,overwrite_dst)", "cimguiname": "ImFont_AddRemapChar", - "comment": "", "defaults": { "overwrite_dst": "true" }, @@ -3514,7 +3404,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFont_BuildLookupTable", - "comment": "", "defaults": [], "funcname": "BuildLookupTable", "ov_cimguiname": "ImFont_BuildLookupTable", @@ -3559,7 +3448,6 @@ "argsoriginal": "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void*)0),const char** remaining=((void*)0))", "call_args": "(size,max_width,wrap_width,text_begin,text_end,remaining)", "cimguiname": "ImFont_CalcTextSizeA", - "comment": "", "defaults": { "remaining": "((void*)0)", "text_end": "((void*)0)" @@ -3609,7 +3497,6 @@ "argsoriginal": "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void*)0),const char** remaining=((void*)0))", "call_args": "(size,max_width,wrap_width,text_begin,text_end,remaining)", "cimguiname": "ImFont_CalcTextSizeA", - "comment": "", "defaults": { "remaining": "((void*)0)", "text_end": "((void*)0)" @@ -3656,7 +3543,6 @@ "argsoriginal": "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void*)0),const char** remaining=((void*)0))", "call_args": "(size,max_width,wrap_width,text_begin,text_end,remaining)", "cimguiname": "ImFont_CalcTextSizeA", - "comment": "", "defaults": { "remaining": "((void*)0)", "text_end": "((void*)0)" @@ -3698,7 +3584,6 @@ "argsoriginal": "(float scale,const char* text,const char* text_end,float wrap_width)", "call_args": "(scale,text,text_end,wrap_width)", "cimguiname": "ImFont_CalcWordWrapPositionA", - "comment": "", "defaults": [], "funcname": "CalcWordWrapPositionA", "ov_cimguiname": "ImFont_CalcWordWrapPositionA", @@ -3719,7 +3604,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFont_ClearOutputData", - "comment": "", "defaults": [], "funcname": "ClearOutputData", "ov_cimguiname": "ImFont_ClearOutputData", @@ -3744,7 +3628,6 @@ "argsoriginal": "(ImWchar c)", "call_args": "(c)", "cimguiname": "ImFont_FindGlyph", - "comment": "", "defaults": [], "funcname": "FindGlyph", "ov_cimguiname": "ImFont_FindGlyph", @@ -3769,7 +3652,6 @@ "argsoriginal": "(ImWchar c)", "call_args": "(c)", "cimguiname": "ImFont_FindGlyphNoFallback", - "comment": "", "defaults": [], "funcname": "FindGlyphNoFallback", "ov_cimguiname": "ImFont_FindGlyphNoFallback", @@ -3794,7 +3676,6 @@ "argsoriginal": "(ImWchar c)", "call_args": "(c)", "cimguiname": "ImFont_GetCharAdvance", - "comment": "", "defaults": [], "funcname": "GetCharAdvance", "ov_cimguiname": "ImFont_GetCharAdvance", @@ -3815,7 +3696,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFont_GetDebugName", - "comment": "", "defaults": [], "funcname": "GetDebugName", "ov_cimguiname": "ImFont_GetDebugName", @@ -3840,7 +3720,6 @@ "argsoriginal": "(int new_size)", "call_args": "(new_size)", "cimguiname": "ImFont_GrowIndex", - "comment": "", "defaults": [], "funcname": "GrowIndex", "ov_cimguiname": "ImFont_GrowIndex", @@ -3856,7 +3735,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFont_ImFont", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImFont", @@ -3877,7 +3755,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFont_IsLoaded", - "comment": "", "defaults": [], "funcname": "IsLoaded", "ov_cimguiname": "ImFont_IsLoaded", @@ -3918,7 +3795,6 @@ "argsoriginal": "(ImDrawList* draw_list,float size,ImVec2 pos,ImU32 col,ImWchar c)", "call_args": "(draw_list,size,pos,col,c)", "cimguiname": "ImFont_RenderChar", - "comment": "", "defaults": [], "funcname": "RenderChar", "ov_cimguiname": "ImFont_RenderChar", @@ -3975,7 +3851,6 @@ "argsoriginal": "(ImDrawList* draw_list,float size,ImVec2 pos,ImU32 col,const ImVec4& clip_rect,const char* text_begin,const char* text_end,float wrap_width=0.0f,bool cpu_fine_clip=false)", "call_args": "(draw_list,size,pos,col,clip_rect,text_begin,text_end,wrap_width,cpu_fine_clip)", "cimguiname": "ImFont_RenderText", - "comment": "", "defaults": { "cpu_fine_clip": "false", "wrap_width": "0.0f" @@ -4003,7 +3878,6 @@ "argsoriginal": "(ImWchar c)", "call_args": "(c)", "cimguiname": "ImFont_SetFallbackChar", - "comment": "", "defaults": [], "funcname": "SetFallbackChar", "ov_cimguiname": "ImFont_SetFallbackChar", @@ -4047,7 +3921,6 @@ "argsoriginal": "(ImWchar c)", "call_args": "(c)", "cimguiname": "ImGuiIO_AddInputCharacter", - "comment": "", "defaults": [], "funcname": "AddInputCharacter", "ov_cimguiname": "ImGuiIO_AddInputCharacter", @@ -4072,7 +3945,6 @@ "argsoriginal": "(const char* str)", "call_args": "(str)", "cimguiname": "ImGuiIO_AddInputCharactersUTF8", - "comment": "", "defaults": [], "funcname": "AddInputCharactersUTF8", "ov_cimguiname": "ImGuiIO_AddInputCharactersUTF8", @@ -4093,7 +3965,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiIO_ClearInputCharacters", - "comment": "", "defaults": [], "funcname": "ClearInputCharacters", "ov_cimguiname": "ImGuiIO_ClearInputCharacters", @@ -4109,7 +3980,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiIO_ImGuiIO", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImGuiIO", @@ -4157,7 +4027,6 @@ "argsoriginal": "(int pos,int bytes_count)", "call_args": "(pos,bytes_count)", "cimguiname": "ImGuiInputTextCallbackData_DeleteChars", - "comment": "", "defaults": [], "funcname": "DeleteChars", "ov_cimguiname": "ImGuiInputTextCallbackData_DeleteChars", @@ -4178,7 +4047,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiInputTextCallbackData_HasSelection", - "comment": "", "defaults": [], "funcname": "HasSelection", "ov_cimguiname": "ImGuiInputTextCallbackData_HasSelection", @@ -4194,7 +4062,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImGuiInputTextCallbackData", @@ -4227,7 +4094,6 @@ "argsoriginal": "(int pos,const char* text,const char* text_end=((void*)0))", "call_args": "(pos,text,text_end)", "cimguiname": "ImGuiInputTextCallbackData_InsertChars", - "comment": "", "defaults": { "text_end": "((void*)0)" }, @@ -4277,7 +4143,6 @@ "argsoriginal": "(int items_count,float items_height=-1.0f)", "call_args": "(items_count,items_height)", "cimguiname": "ImGuiListClipper_Begin", - "comment": "", "defaults": { "items_height": "-1.0f" }, @@ -4300,7 +4165,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiListClipper_End", - "comment": "", "defaults": [], "funcname": "End", "ov_cimguiname": "ImGuiListClipper_End", @@ -4325,7 +4189,6 @@ "argsoriginal": "(int items_count=-1,float items_height=-1.0f)", "call_args": "(items_count,items_height)", "cimguiname": "ImGuiListClipper_ImGuiListClipper", - "comment": "", "constructor": true, "defaults": { "items_count": "-1", @@ -4349,7 +4212,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiListClipper_Step", - "comment": "", "defaults": [], "funcname": "Step", "ov_cimguiname": "ImGuiListClipper_Step", @@ -4384,7 +4246,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImGuiOnceUponAFrame", @@ -4424,7 +4285,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiPayload_Clear", - "comment": "", "defaults": [], "funcname": "Clear", "ov_cimguiname": "ImGuiPayload_Clear", @@ -4440,7 +4300,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiPayload_ImGuiPayload", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImGuiPayload", @@ -4465,7 +4324,6 @@ "argsoriginal": "(const char* type)", "call_args": "(type)", "cimguiname": "ImGuiPayload_IsDataType", - "comment": "", "defaults": [], "funcname": "IsDataType", "ov_cimguiname": "ImGuiPayload_IsDataType", @@ -4486,7 +4344,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiPayload_IsDelivery", - "comment": "", "defaults": [], "funcname": "IsDelivery", "ov_cimguiname": "ImGuiPayload_IsDelivery", @@ -4507,7 +4364,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiPayload_IsPreview", - "comment": "", "defaults": [], "funcname": "IsPreview", "ov_cimguiname": "ImGuiPayload_IsPreview", @@ -4547,7 +4403,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiStorage_BuildSortByKey", - "comment": "", "defaults": [], "funcname": "BuildSortByKey", "ov_cimguiname": "ImGuiStorage_BuildSortByKey", @@ -4568,7 +4423,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiStorage_Clear", - "comment": "", "defaults": [], "funcname": "Clear", "ov_cimguiname": "ImGuiStorage_Clear", @@ -4597,7 +4451,6 @@ "argsoriginal": "(ImGuiID key,bool default_val=false)", "call_args": "(key,default_val)", "cimguiname": "ImGuiStorage_GetBool", - "comment": "", "defaults": { "default_val": "false" }, @@ -4628,7 +4481,6 @@ "argsoriginal": "(ImGuiID key,bool default_val=false)", "call_args": "(key,default_val)", "cimguiname": "ImGuiStorage_GetBoolRef", - "comment": "", "defaults": { "default_val": "false" }, @@ -4659,7 +4511,6 @@ "argsoriginal": "(ImGuiID key,float default_val=0.0f)", "call_args": "(key,default_val)", "cimguiname": "ImGuiStorage_GetFloat", - "comment": "", "defaults": { "default_val": "0.0f" }, @@ -4690,7 +4541,6 @@ "argsoriginal": "(ImGuiID key,float default_val=0.0f)", "call_args": "(key,default_val)", "cimguiname": "ImGuiStorage_GetFloatRef", - "comment": "", "defaults": { "default_val": "0.0f" }, @@ -4721,7 +4571,6 @@ "argsoriginal": "(ImGuiID key,int default_val=0)", "call_args": "(key,default_val)", "cimguiname": "ImGuiStorage_GetInt", - "comment": "", "defaults": { "default_val": "0" }, @@ -4752,7 +4601,6 @@ "argsoriginal": "(ImGuiID key,int default_val=0)", "call_args": "(key,default_val)", "cimguiname": "ImGuiStorage_GetIntRef", - "comment": "", "defaults": { "default_val": "0" }, @@ -4779,7 +4627,6 @@ "argsoriginal": "(ImGuiID key)", "call_args": "(key)", "cimguiname": "ImGuiStorage_GetVoidPtr", - "comment": "", "defaults": [], "funcname": "GetVoidPtr", "ov_cimguiname": "ImGuiStorage_GetVoidPtr", @@ -4808,7 +4655,6 @@ "argsoriginal": "(ImGuiID key,void* default_val=((void*)0))", "call_args": "(key,default_val)", "cimguiname": "ImGuiStorage_GetVoidPtrRef", - "comment": "", "defaults": { "default_val": "((void*)0)" }, @@ -4835,7 +4681,6 @@ "argsoriginal": "(int val)", "call_args": "(val)", "cimguiname": "ImGuiStorage_SetAllInt", - "comment": "", "defaults": [], "funcname": "SetAllInt", "ov_cimguiname": "ImGuiStorage_SetAllInt", @@ -4864,7 +4709,6 @@ "argsoriginal": "(ImGuiID key,bool val)", "call_args": "(key,val)", "cimguiname": "ImGuiStorage_SetBool", - "comment": "", "defaults": [], "funcname": "SetBool", "ov_cimguiname": "ImGuiStorage_SetBool", @@ -4893,7 +4737,6 @@ "argsoriginal": "(ImGuiID key,float val)", "call_args": "(key,val)", "cimguiname": "ImGuiStorage_SetFloat", - "comment": "", "defaults": [], "funcname": "SetFloat", "ov_cimguiname": "ImGuiStorage_SetFloat", @@ -4922,7 +4765,6 @@ "argsoriginal": "(ImGuiID key,int val)", "call_args": "(key,val)", "cimguiname": "ImGuiStorage_SetInt", - "comment": "", "defaults": [], "funcname": "SetInt", "ov_cimguiname": "ImGuiStorage_SetInt", @@ -4951,7 +4793,6 @@ "argsoriginal": "(ImGuiID key,void* val)", "call_args": "(key,val)", "cimguiname": "ImGuiStorage_SetVoidPtr", - "comment": "", "defaults": [], "funcname": "SetVoidPtr", "ov_cimguiname": "ImGuiStorage_SetVoidPtr", @@ -4967,7 +4808,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiStyle_ImGuiStyle", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImGuiStyle", @@ -4992,7 +4832,6 @@ "argsoriginal": "(float scale_factor)", "call_args": "(scale_factor)", "cimguiname": "ImGuiStyle_ScaleAllSizes", - "comment": "", "defaults": [], "funcname": "ScaleAllSizes", "ov_cimguiname": "ImGuiStyle_ScaleAllSizes", @@ -5027,7 +4866,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextBuffer_ImGuiTextBuffer", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImGuiTextBuffer", @@ -5056,7 +4894,6 @@ "argsoriginal": "(const char* fmt,...)", "call_args": "(fmt,...)", "cimguiname": "ImGuiTextBuffer_appendf", - "comment": "", "defaults": [], "funcname": "appendf", "isvararg": "...)", @@ -5087,7 +4924,6 @@ "argsoriginal": "(const char* fmt,va_list args)", "call_args": "(fmt,args)", "cimguiname": "ImGuiTextBuffer_appendfv", - "comment": "", "defaults": [], "funcname": "appendfv", "ov_cimguiname": "ImGuiTextBuffer_appendfv", @@ -5108,7 +4944,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextBuffer_begin", - "comment": "", "defaults": [], "funcname": "begin", "ov_cimguiname": "ImGuiTextBuffer_begin", @@ -5129,7 +4964,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextBuffer_c_str", - "comment": "", "defaults": [], "funcname": "c_str", "ov_cimguiname": "ImGuiTextBuffer_c_str", @@ -5150,7 +4984,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextBuffer_clear", - "comment": "", "defaults": [], "funcname": "clear", "ov_cimguiname": "ImGuiTextBuffer_clear", @@ -5190,7 +5023,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextBuffer_empty", - "comment": "", "defaults": [], "funcname": "empty", "ov_cimguiname": "ImGuiTextBuffer_empty", @@ -5211,7 +5043,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextBuffer_end", - "comment": "", "defaults": [], "funcname": "end", "ov_cimguiname": "ImGuiTextBuffer_end", @@ -5236,7 +5067,6 @@ "argsoriginal": "(int capacity)", "call_args": "(capacity)", "cimguiname": "ImGuiTextBuffer_reserve", - "comment": "", "defaults": [], "funcname": "reserve", "ov_cimguiname": "ImGuiTextBuffer_reserve", @@ -5257,7 +5087,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextBuffer_size", - "comment": "", "defaults": [], "funcname": "size", "ov_cimguiname": "ImGuiTextBuffer_size", @@ -5278,7 +5107,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextFilter_Build", - "comment": "", "defaults": [], "funcname": "Build", "ov_cimguiname": "ImGuiTextFilter_Build", @@ -5299,7 +5127,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextFilter_Clear", - "comment": "", "defaults": [], "funcname": "Clear", "ov_cimguiname": "ImGuiTextFilter_Clear", @@ -5328,7 +5155,6 @@ "argsoriginal": "(const char* label=\"Filter(inc,-exc)\",float width=0.0f)", "call_args": "(label,width)", "cimguiname": "ImGuiTextFilter_Draw", - "comment": "", "defaults": { "label": "\"Filter(inc,-exc)\"", "width": "0.0f" @@ -5352,7 +5178,6 @@ "argsoriginal": "(const char* default_filter=\"\")", "call_args": "(default_filter)", "cimguiname": "ImGuiTextFilter_ImGuiTextFilter", - "comment": "", "constructor": true, "defaults": { "default_filter": "\"\"" @@ -5375,7 +5200,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextFilter_IsActive", - "comment": "", "defaults": [], "funcname": "IsActive", "ov_cimguiname": "ImGuiTextFilter_IsActive", @@ -5404,7 +5228,6 @@ "argsoriginal": "(const char* text,const char* text_end=((void*)0))", "call_args": "(text,text_end)", "cimguiname": "ImGuiTextFilter_PassFilter", - "comment": "", "defaults": { "text_end": "((void*)0)" }, @@ -5441,7 +5264,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVec2_ImVec2", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImVec2", @@ -5464,7 +5286,6 @@ "argsoriginal": "(float _x,float _y)", "call_args": "(_x,_y)", "cimguiname": "ImVec2_ImVec2", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImVec2", @@ -5499,7 +5320,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVec4_ImVec4", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImVec4", @@ -5530,7 +5350,6 @@ "argsoriginal": "(float _x,float _y,float _z,float _w)", "call_args": "(_x,_y,_z,_w)", "cimguiname": "ImVec4_ImVec4", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImVec4", @@ -12429,7 +12248,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_ImVector", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImVector", @@ -12449,7 +12267,6 @@ "argsoriginal": "(const ImVector& src)", "call_args": "(src)", "cimguiname": "ImVector_ImVector", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImVector", @@ -14371,7 +14188,6 @@ "argsoriginal": "(int sz)", "call_args": "(sz)", "cimguiname": "ImVector__grow_capacity", - "comment": "", "defaults": [], "funcname": "_grow_capacity", "ov_cimguiname": "ImVector__grow_capacity", @@ -14393,7 +14209,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_back", - "comment": "", "defaults": [], "funcname": "back", "ov_cimguiname": "ImVector_back", @@ -14414,7 +14229,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_back", - "comment": "", "defaults": [], "funcname": "back", "ov_cimguiname": "ImVector_back_const", @@ -14437,7 +14251,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_begin", - "comment": "", "defaults": [], "funcname": "begin", "ov_cimguiname": "ImVector_begin", @@ -14457,7 +14270,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_begin", - "comment": "", "defaults": [], "funcname": "begin", "ov_cimguiname": "ImVector_begin_const", @@ -14479,7 +14291,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_capacity", - "comment": "", "defaults": [], "funcname": "capacity", "ov_cimguiname": "ImVector_capacity", @@ -15149,7 +14960,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_clear", - "comment": "", "defaults": [], "funcname": "clear", "ov_cimguiname": "ImVector_clear", @@ -15191,7 +15001,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_empty", - "comment": "", "defaults": [], "funcname": "empty", "ov_cimguiname": "ImVector_empty", @@ -15213,7 +15022,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_end", - "comment": "", "defaults": [], "funcname": "end", "ov_cimguiname": "ImVector_end", @@ -15233,7 +15041,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_end", - "comment": "", "defaults": [], "funcname": "end", "ov_cimguiname": "ImVector_end_const", @@ -15259,7 +15066,6 @@ "argsoriginal": "(const T* it)", "call_args": "(it)", "cimguiname": "ImVector_erase", - "comment": "", "defaults": [], "funcname": "erase", "ov_cimguiname": "ImVector_erase", @@ -15287,7 +15093,6 @@ "argsoriginal": "(const T* it,const T* it_last)", "call_args": "(it,it_last)", "cimguiname": "ImVector_erase", - "comment": "", "defaults": [], "funcname": "erase", "ov_cimguiname": "ImVector_eraseTPtr", @@ -15313,7 +15118,6 @@ "argsoriginal": "(const T* it)", "call_args": "(it)", "cimguiname": "ImVector_erase_unsorted", - "comment": "", "defaults": [], "funcname": "erase_unsorted", "ov_cimguiname": "ImVector_erase_unsorted", @@ -15983,7 +15787,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_front", - "comment": "", "defaults": [], "funcname": "front", "ov_cimguiname": "ImVector_front", @@ -16004,7 +15807,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_front", - "comment": "", "defaults": [], "funcname": "front", "ov_cimguiname": "ImVector_front_const", @@ -16031,7 +15833,6 @@ "argsoriginal": "(const T* it)", "call_args": "(it)", "cimguiname": "ImVector_index_from_ptr", - "comment": "", "defaults": [], "funcname": "index_from_ptr", "ov_cimguiname": "ImVector_index_from_ptr", @@ -16061,7 +15862,6 @@ "argsoriginal": "(const T* it,const T& v)", "call_args": "(it,v)", "cimguiname": "ImVector_insert", - "comment": "", "defaults": [], "funcname": "insert", "ov_cimguiname": "ImVector_insert", @@ -16731,7 +16531,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_pop_back", - "comment": "", "defaults": [], "funcname": "pop_back", "ov_cimguiname": "ImVector_pop_back", @@ -16757,7 +16556,6 @@ "argsoriginal": "(const T& v)", "call_args": "(v)", "cimguiname": "ImVector_push_back", - "comment": "", "defaults": [], "funcname": "push_back", "ov_cimguiname": "ImVector_push_back", @@ -16783,7 +16581,6 @@ "argsoriginal": "(const T& v)", "call_args": "(v)", "cimguiname": "ImVector_push_front", - "comment": "", "defaults": [], "funcname": "push_front", "ov_cimguiname": "ImVector_push_front", @@ -16809,7 +16606,6 @@ "argsoriginal": "(int new_capacity)", "call_args": "(new_capacity)", "cimguiname": "ImVector_reserve", - "comment": "", "defaults": [], "funcname": "reserve", "ov_cimguiname": "ImVector_reserve", @@ -16835,7 +16631,6 @@ "argsoriginal": "(int new_size)", "call_args": "(new_size)", "cimguiname": "ImVector_resize", - "comment": "", "defaults": [], "funcname": "resize", "ov_cimguiname": "ImVector_resize", @@ -16863,7 +16658,6 @@ "argsoriginal": "(int new_size,const T& v)", "call_args": "(new_size,v)", "cimguiname": "ImVector_resize", - "comment": "", "defaults": [], "funcname": "resize", "ov_cimguiname": "ImVector_resizeT", @@ -16885,7 +16679,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_size", - "comment": "", "defaults": [], "funcname": "size", "ov_cimguiname": "ImVector_size", @@ -16907,7 +16700,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_size_in_bytes", - "comment": "", "defaults": [], "funcname": "size_in_bytes", "ov_cimguiname": "ImVector_size_in_bytes", @@ -16933,7 +16725,6 @@ "argsoriginal": "(ImVector& rhs)", "call_args": "(rhs)", "cimguiname": "ImVector_swap", - "comment": "", "defaults": [], "funcname": "swap", "ov_cimguiname": "ImVector_swap", @@ -16959,7 +16750,6 @@ "argsoriginal": "(ImGuiID _key,int _val_i)", "call_args": "(_key,_val_i)", "cimguiname": "Pair_Pair", - "comment": "", "constructor": true, "defaults": [], "funcname": "Pair", @@ -16982,7 +16772,6 @@ "argsoriginal": "(ImGuiID _key,float _val_f)", "call_args": "(_key,_val_f)", "cimguiname": "Pair_Pair", - "comment": "", "constructor": true, "defaults": [], "funcname": "Pair", @@ -17005,7 +16794,6 @@ "argsoriginal": "(ImGuiID _key,void* _val_p)", "call_args": "(_key,_val_p)", "cimguiname": "Pair_Pair", - "comment": "", "constructor": true, "defaults": [], "funcname": "Pair", @@ -17040,7 +16828,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "TextRange_TextRange", - "comment": "", "constructor": true, "defaults": [], "funcname": "TextRange", @@ -17063,7 +16850,6 @@ "argsoriginal": "(const char* _b,const char* _e)", "call_args": "(_b,_e)", "cimguiname": "TextRange_TextRange", - "comment": "", "constructor": true, "defaults": [], "funcname": "TextRange", @@ -17084,7 +16870,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "TextRange_begin", - "comment": "", "defaults": [], "funcname": "begin", "ov_cimguiname": "TextRange_begin", @@ -17124,7 +16909,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "TextRange_empty", - "comment": "", "defaults": [], "funcname": "empty", "ov_cimguiname": "TextRange_empty", @@ -17145,7 +16929,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "TextRange_end", - "comment": "", "defaults": [], "funcname": "end", "ov_cimguiname": "TextRange_end", @@ -17174,7 +16957,6 @@ "argsoriginal": "(char separator,ImVector* out)", "call_args": "(separator,out)", "cimguiname": "TextRange_split", - "comment": "", "defaults": [], "funcname": "split", "ov_cimguiname": "TextRange_split", @@ -17199,7 +16981,6 @@ "argsoriginal": "(const char* type,ImGuiDragDropFlags flags=0)", "call_args": "(type,flags)", "cimguiname": "igAcceptDragDropPayload", - "comment": "", "defaults": { "flags": "0" }, @@ -17218,7 +16999,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igAlignTextToFramePadding", - "comment": "", "defaults": [], "funcname": "AlignTextToFramePadding", "namespace": "ImGui", @@ -17244,7 +17024,6 @@ "argsoriginal": "(const char* str_id,ImGuiDir dir)", "call_args": "(str_id,dir)", "cimguiname": "igArrowButton", - "comment": "", "defaults": [], "funcname": "ArrowButton", "namespace": "ImGui", @@ -17274,7 +17053,6 @@ "argsoriginal": "(const char* name,bool* p_open=((void*)0),ImGuiWindowFlags flags=0)", "call_args": "(name,p_open,flags)", "cimguiname": "igBegin", - "comment": "", "defaults": { "flags": "0", "p_open": "((void*)0)" @@ -17311,7 +17089,6 @@ "argsoriginal": "(const char* str_id,const ImVec2& size=ImVec2(0,0),bool border=false,ImGuiWindowFlags flags=0)", "call_args": "(str_id,size,border,flags)", "cimguiname": "igBeginChild", - "comment": "", "defaults": { "border": "false", "flags": "0", @@ -17347,7 +17124,6 @@ "argsoriginal": "(ImGuiID id,const ImVec2& size=ImVec2(0,0),bool border=false,ImGuiWindowFlags flags=0)", "call_args": "(id,size,border,flags)", "cimguiname": "igBeginChild", - "comment": "", "defaults": { "border": "false", "flags": "0", @@ -17381,7 +17157,6 @@ "argsoriginal": "(ImGuiID id,const ImVec2& size,ImGuiWindowFlags flags=0)", "call_args": "(id,size,flags)", "cimguiname": "igBeginChildFrame", - "comment": "", "defaults": { "flags": "0" }, @@ -17413,7 +17188,6 @@ "argsoriginal": "(const char* label,const char* preview_value,ImGuiComboFlags flags=0)", "call_args": "(label,preview_value,flags)", "cimguiname": "igBeginCombo", - "comment": "", "defaults": { "flags": "0" }, @@ -17437,7 +17211,6 @@ "argsoriginal": "(ImGuiDragDropFlags flags=0)", "call_args": "(flags)", "cimguiname": "igBeginDragDropSource", - "comment": "", "defaults": { "flags": "0" }, @@ -17456,7 +17229,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igBeginDragDropTarget", - "comment": "", "defaults": [], "funcname": "BeginDragDropTarget", "namespace": "ImGui", @@ -17473,7 +17245,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igBeginGroup", - "comment": "", "defaults": [], "funcname": "BeginGroup", "namespace": "ImGui", @@ -17490,7 +17261,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igBeginMainMenuBar", - "comment": "", "defaults": [], "funcname": "BeginMainMenuBar", "namespace": "ImGui", @@ -17516,7 +17286,6 @@ "argsoriginal": "(const char* label,bool enabled=true)", "call_args": "(label,enabled)", "cimguiname": "igBeginMenu", - "comment": "", "defaults": { "enabled": "true" }, @@ -17535,7 +17304,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igBeginMenuBar", - "comment": "", "defaults": [], "funcname": "BeginMenuBar", "namespace": "ImGui", @@ -17561,7 +17329,6 @@ "argsoriginal": "(const char* str_id,ImGuiWindowFlags flags=0)", "call_args": "(str_id,flags)", "cimguiname": "igBeginPopup", - "comment": "", "defaults": { "flags": "0" }, @@ -17589,7 +17356,6 @@ "argsoriginal": "(const char* str_id=((void*)0),int mouse_button=1)", "call_args": "(str_id,mouse_button)", "cimguiname": "igBeginPopupContextItem", - "comment": "", "defaults": { "mouse_button": "1", "str_id": "((void*)0)" @@ -17618,7 +17384,6 @@ "argsoriginal": "(const char* str_id=((void*)0),int mouse_button=1)", "call_args": "(str_id,mouse_button)", "cimguiname": "igBeginPopupContextVoid", - "comment": "", "defaults": { "mouse_button": "1", "str_id": "((void*)0)" @@ -17651,7 +17416,6 @@ "argsoriginal": "(const char* str_id=((void*)0),int mouse_button=1,bool also_over_items=true)", "call_args": "(str_id,mouse_button,also_over_items)", "cimguiname": "igBeginPopupContextWindow", - "comment": "", "defaults": { "also_over_items": "true", "mouse_button": "1", @@ -17685,7 +17449,6 @@ "argsoriginal": "(const char* name,bool* p_open=((void*)0),ImGuiWindowFlags flags=0)", "call_args": "(name,p_open,flags)", "cimguiname": "igBeginPopupModal", - "comment": "", "defaults": { "flags": "0", "p_open": "((void*)0)" @@ -17714,7 +17477,6 @@ "argsoriginal": "(const char* str_id,ImGuiTabBarFlags flags=0)", "call_args": "(str_id,flags)", "cimguiname": "igBeginTabBar", - "comment": "", "defaults": { "flags": "0" }, @@ -17746,7 +17508,6 @@ "argsoriginal": "(const char* label,bool* p_open=((void*)0),ImGuiTabItemFlags flags=0)", "call_args": "(label,p_open,flags)", "cimguiname": "igBeginTabItem", - "comment": "", "defaults": { "flags": "0", "p_open": "((void*)0)" @@ -17766,7 +17527,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igBeginTooltip", - "comment": "", "defaults": [], "funcname": "BeginTooltip", "namespace": "ImGui", @@ -17783,7 +17543,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igBullet", - "comment": "", "defaults": [], "funcname": "Bullet", "namespace": "ImGui", @@ -17809,7 +17568,6 @@ "argsoriginal": "(const char* fmt,...)", "call_args": "(fmt,...)", "cimguiname": "igBulletText", - "comment": "", "defaults": [], "funcname": "BulletText", "isvararg": "...)", @@ -17836,7 +17594,6 @@ "argsoriginal": "(const char* fmt,va_list args)", "call_args": "(fmt,args)", "cimguiname": "igBulletTextV", - "comment": "", "defaults": [], "funcname": "BulletTextV", "namespace": "ImGui", @@ -17862,7 +17619,6 @@ "argsoriginal": "(const char* label,const ImVec2& size=ImVec2(0,0))", "call_args": "(label,size)", "cimguiname": "igButton", - "comment": "", "defaults": { "size": "ImVec2(0,0)" }, @@ -17881,7 +17637,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igCalcItemWidth", - "comment": "", "defaults": [], "funcname": "CalcItemWidth", "namespace": "ImGui", @@ -17915,7 +17670,6 @@ "argsoriginal": "(int items_count,float items_height,int* out_items_display_start,int* out_items_display_end)", "call_args": "(items_count,items_height,out_items_display_start,out_items_display_end)", "cimguiname": "igCalcListClipping", - "comment": "", "defaults": [], "funcname": "CalcListClipping", "namespace": "ImGui", @@ -17949,7 +17703,6 @@ "argsoriginal": "(const char* text,const char* text_end=((void*)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)", "call_args": "(text,text_end,hide_text_after_double_hash,wrap_width)", "cimguiname": "igCalcTextSize", - "comment": "", "defaults": { "hide_text_after_double_hash": "false", "text_end": "((void*)0)", @@ -17989,7 +17742,6 @@ "argsoriginal": "(const char* text,const char* text_end=((void*)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)", "call_args": "(text,text_end,hide_text_after_double_hash,wrap_width)", "cimguiname": "igCalcTextSize", - "comment": "", "defaults": { "hide_text_after_double_hash": "false", "text_end": "((void*)0)", @@ -18026,7 +17778,6 @@ "argsoriginal": "(const char* text,const char* text_end=((void*)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)", "call_args": "(text,text_end,hide_text_after_double_hash,wrap_width)", "cimguiname": "igCalcTextSize", - "comment": "", "defaults": { "hide_text_after_double_hash": "false", "text_end": "((void*)0)", @@ -18054,7 +17805,6 @@ "argsoriginal": "(bool want_capture_keyboard_value=true)", "call_args": "(want_capture_keyboard_value)", "cimguiname": "igCaptureKeyboardFromApp", - "comment": "", "defaults": { "want_capture_keyboard_value": "true" }, @@ -18078,7 +17828,6 @@ "argsoriginal": "(bool want_capture_mouse_value=true)", "call_args": "(want_capture_mouse_value)", "cimguiname": "igCaptureMouseFromApp", - "comment": "", "defaults": { "want_capture_mouse_value": "true" }, @@ -18106,7 +17855,6 @@ "argsoriginal": "(const char* label,bool* v)", "call_args": "(label,v)", "cimguiname": "igCheckbox", - "comment": "", "defaults": [], "funcname": "Checkbox", "namespace": "ImGui", @@ -18136,7 +17884,6 @@ "argsoriginal": "(const char* label,unsigned int* flags,unsigned int flags_value)", "call_args": "(label,flags,flags_value)", "cimguiname": "igCheckboxFlags", - "comment": "", "defaults": [], "funcname": "CheckboxFlags", "namespace": "ImGui", @@ -18153,7 +17900,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igCloseCurrentPopup", - "comment": "", "defaults": [], "funcname": "CloseCurrentPopup", "namespace": "ImGui", @@ -18179,7 +17925,6 @@ "argsoriginal": "(const char* label,ImGuiTreeNodeFlags flags=0)", "call_args": "(label,flags)", "cimguiname": "igCollapsingHeader", - "comment": "", "defaults": { "flags": "0" }, @@ -18209,7 +17954,6 @@ "argsoriginal": "(const char* label,bool* p_open,ImGuiTreeNodeFlags flags=0)", "call_args": "(label,p_open,flags)", "cimguiname": "igCollapsingHeader", - "comment": "", "defaults": { "flags": "0" }, @@ -18245,7 +17989,6 @@ "argsoriginal": "(const char* desc_id,const ImVec4& col,ImGuiColorEditFlags flags=0,ImVec2 size=ImVec2(0,0))", "call_args": "(desc_id,col,flags,size)", "cimguiname": "igColorButton", - "comment": "", "defaults": { "flags": "0", "size": "ImVec2(0,0)" @@ -18270,7 +18013,6 @@ "argsoriginal": "(const ImVec4& in)", "call_args": "(in)", "cimguiname": "igColorConvertFloat4ToU32", - "comment": "", "defaults": [], "funcname": "ColorConvertFloat4ToU32", "namespace": "ImGui", @@ -18312,7 +18054,6 @@ "argsoriginal": "(float h,float s,float v,float& out_r,float& out_g,float& out_b)", "call_args": "(h,s,v,out_r,out_g,out_b)", "cimguiname": "igColorConvertHSVtoRGB", - "comment": "", "defaults": [], "funcname": "ColorConvertHSVtoRGB", "manual": true, @@ -18355,7 +18096,6 @@ "argsoriginal": "(float r,float g,float b,float& out_h,float& out_s,float& out_v)", "call_args": "(r,g,b,out_h,out_s,out_v)", "cimguiname": "igColorConvertRGBtoHSV", - "comment": "", "defaults": [], "funcname": "ColorConvertRGBtoHSV", "manual": true, @@ -18378,7 +18118,6 @@ "argsoriginal": "(ImU32 in)", "call_args": "(in)", "cimguiname": "igColorConvertU32ToFloat4", - "comment": "", "defaults": [], "funcname": "ColorConvertU32ToFloat4", "namespace": "ImGui", @@ -18402,7 +18141,6 @@ "argsoriginal": "(ImU32 in)", "call_args": "(in)", "cimguiname": "igColorConvertU32ToFloat4", - "comment": "", "defaults": [], "funcname": "ColorConvertU32ToFloat4", "namespace": "ImGui", @@ -18423,7 +18161,6 @@ "argsoriginal": "(ImU32 in)", "call_args": "(in)", "cimguiname": "igColorConvertU32ToFloat4", - "comment": "", "defaults": [], "funcname": "ColorConvertU32ToFloat4", "namespace": "ImGui", @@ -18455,7 +18192,6 @@ "argsoriginal": "(const char* label,float col[3],ImGuiColorEditFlags flags=0)", "call_args": "(label,col,flags)", "cimguiname": "igColorEdit3", - "comment": "", "defaults": { "flags": "0" }, @@ -18487,7 +18223,6 @@ "argsoriginal": "(const char* label,float col[4],ImGuiColorEditFlags flags=0)", "call_args": "(label,col,flags)", "cimguiname": "igColorEdit4", - "comment": "", "defaults": { "flags": "0" }, @@ -18519,7 +18254,6 @@ "argsoriginal": "(const char* label,float col[3],ImGuiColorEditFlags flags=0)", "call_args": "(label,col,flags)", "cimguiname": "igColorPicker3", - "comment": "", "defaults": { "flags": "0" }, @@ -18555,7 +18289,6 @@ "argsoriginal": "(const char* label,float col[4],ImGuiColorEditFlags flags=0,const float* ref_col=((void*)0))", "call_args": "(label,col,flags,ref_col)", "cimguiname": "igColorPicker4", - "comment": "", "defaults": { "flags": "0", "ref_col": "((void*)0)" @@ -18588,7 +18321,6 @@ "argsoriginal": "(int count=1,const char* id=((void*)0),bool border=true)", "call_args": "(count,id,border)", "cimguiname": "igColumns", - "comment": "", "defaults": { "border": "true", "count": "1", @@ -18630,7 +18362,6 @@ "argsoriginal": "(const char* label,int* current_item,const char* const items[],int items_count,int popup_max_height_in_items=-1)", "call_args": "(label,current_item,items,items_count,popup_max_height_in_items)", "cimguiname": "igCombo", - "comment": "", "defaults": { "popup_max_height_in_items": "-1" }, @@ -18664,7 +18395,6 @@ "argsoriginal": "(const char* label,int* current_item,const char* items_separated_by_zeros,int popup_max_height_in_items=-1)", "call_args": "(label,current_item,items_separated_by_zeros,popup_max_height_in_items)", "cimguiname": "igCombo", - "comment": "", "defaults": { "popup_max_height_in_items": "-1" }, @@ -18708,7 +18438,6 @@ "argsoriginal": "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items=-1)", "call_args": "(label,current_item,items_getter,data,items_count,popup_max_height_in_items)", "cimguiname": "igCombo", - "comment": "", "defaults": { "popup_max_height_in_items": "-1" }, @@ -18732,7 +18461,6 @@ "argsoriginal": "(ImFontAtlas* shared_font_atlas=((void*)0))", "call_args": "(shared_font_atlas)", "cimguiname": "igCreateContext", - "comment": "", "defaults": { "shared_font_atlas": "((void*)0)" }, @@ -18776,7 +18504,6 @@ "argsoriginal": "(const char* version_str,size_t sz_io,size_t sz_style,size_t sz_vec2,size_t sz_vec4,size_t sz_drawvert)", "call_args": "(version_str,sz_io,sz_style,sz_vec2,sz_vec4,sz_drawvert)", "cimguiname": "igDebugCheckVersionAndDataLayout", - "comment": "", "defaults": [], "funcname": "DebugCheckVersionAndDataLayout", "namespace": "ImGui", @@ -18798,7 +18525,6 @@ "argsoriginal": "(ImGuiContext* ctx=((void*)0))", "call_args": "(ctx)", "cimguiname": "igDestroyContext", - "comment": "", "defaults": { "ctx": "((void*)0)" }, @@ -18846,7 +18572,6 @@ "argsoriginal": "(const char* label,float* v,float v_speed=1.0f,float v_min=0.0f,float v_max=0.0f,const char* format=\"%.3f\",float power=1.0f)", "call_args": "(label,v,v_speed,v_min,v_max,format,power)", "cimguiname": "igDragFloat", - "comment": "", "defaults": { "format": "\"%.3f\"", "power": "1.0f", @@ -18898,7 +18623,6 @@ "argsoriginal": "(const char* label,float v[2],float v_speed=1.0f,float v_min=0.0f,float v_max=0.0f,const char* format=\"%.3f\",float power=1.0f)", "call_args": "(label,v,v_speed,v_min,v_max,format,power)", "cimguiname": "igDragFloat2", - "comment": "", "defaults": { "format": "\"%.3f\"", "power": "1.0f", @@ -18950,7 +18674,6 @@ "argsoriginal": "(const char* label,float v[3],float v_speed=1.0f,float v_min=0.0f,float v_max=0.0f,const char* format=\"%.3f\",float power=1.0f)", "call_args": "(label,v,v_speed,v_min,v_max,format,power)", "cimguiname": "igDragFloat3", - "comment": "", "defaults": { "format": "\"%.3f\"", "power": "1.0f", @@ -19002,7 +18725,6 @@ "argsoriginal": "(const char* label,float v[4],float v_speed=1.0f,float v_min=0.0f,float v_max=0.0f,const char* format=\"%.3f\",float power=1.0f)", "call_args": "(label,v,v_speed,v_min,v_max,format,power)", "cimguiname": "igDragFloat4", - "comment": "", "defaults": { "format": "\"%.3f\"", "power": "1.0f", @@ -19062,7 +18784,6 @@ "argsoriginal": "(const char* label,float* v_current_min,float* v_current_max,float v_speed=1.0f,float v_min=0.0f,float v_max=0.0f,const char* format=\"%.3f\",const char* format_max=((void*)0),float power=1.0f)", "call_args": "(label,v_current_min,v_current_max,v_speed,v_min,v_max,format,format_max,power)", "cimguiname": "igDragFloatRange2", - "comment": "", "defaults": { "format": "\"%.3f\"", "format_max": "((void*)0)", @@ -19111,7 +18832,6 @@ "argsoriginal": "(const char* label,int* v,float v_speed=1.0f,int v_min=0,int v_max=0,const char* format=\"%d\")", "call_args": "(label,v,v_speed,v_min,v_max,format)", "cimguiname": "igDragInt", - "comment": "", "defaults": { "format": "\"%d\"", "v_max": "0", @@ -19158,7 +18878,6 @@ "argsoriginal": "(const char* label,int v[2],float v_speed=1.0f,int v_min=0,int v_max=0,const char* format=\"%d\")", "call_args": "(label,v,v_speed,v_min,v_max,format)", "cimguiname": "igDragInt2", - "comment": "", "defaults": { "format": "\"%d\"", "v_max": "0", @@ -19205,7 +18924,6 @@ "argsoriginal": "(const char* label,int v[3],float v_speed=1.0f,int v_min=0,int v_max=0,const char* format=\"%d\")", "call_args": "(label,v,v_speed,v_min,v_max,format)", "cimguiname": "igDragInt3", - "comment": "", "defaults": { "format": "\"%d\"", "v_max": "0", @@ -19252,7 +18970,6 @@ "argsoriginal": "(const char* label,int v[4],float v_speed=1.0f,int v_min=0,int v_max=0,const char* format=\"%d\")", "call_args": "(label,v,v_speed,v_min,v_max,format)", "cimguiname": "igDragInt4", - "comment": "", "defaults": { "format": "\"%d\"", "v_max": "0", @@ -19307,7 +19024,6 @@ "argsoriginal": "(const char* label,int* v_current_min,int* v_current_max,float v_speed=1.0f,int v_min=0,int v_max=0,const char* format=\"%d\",const char* format_max=((void*)0))", "call_args": "(label,v_current_min,v_current_max,v_speed,v_min,v_max,format,format_max)", "cimguiname": "igDragIntRange2", - "comment": "", "defaults": { "format": "\"%d\"", "format_max": "((void*)0)", @@ -19363,7 +19079,6 @@ "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,float v_speed,const void* v_min=((void*)0),const void* v_max=((void*)0),const char* format=((void*)0),float power=1.0f)", "call_args": "(label,data_type,v,v_speed,v_min,v_max,format,power)", "cimguiname": "igDragScalar", - "comment": "", "defaults": { "format": "((void*)0)", "power": "1.0f", @@ -19422,7 +19137,6 @@ "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,int components,float v_speed,const void* v_min=((void*)0),const void* v_max=((void*)0),const char* format=((void*)0),float power=1.0f)", "call_args": "(label,data_type,v,components,v_speed,v_min,v_max,format,power)", "cimguiname": "igDragScalarN", - "comment": "", "defaults": { "format": "((void*)0)", "power": "1.0f", @@ -19449,7 +19163,6 @@ "argsoriginal": "(const ImVec2& size)", "call_args": "(size)", "cimguiname": "igDummy", - "comment": "", "defaults": [], "funcname": "Dummy", "namespace": "ImGui", @@ -19466,7 +19179,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEnd", - "comment": "", "defaults": [], "funcname": "End", "namespace": "ImGui", @@ -19483,7 +19195,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndChild", - "comment": "", "defaults": [], "funcname": "EndChild", "namespace": "ImGui", @@ -19500,7 +19211,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndChildFrame", - "comment": "", "defaults": [], "funcname": "EndChildFrame", "namespace": "ImGui", @@ -19517,7 +19227,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndCombo", - "comment": "", "defaults": [], "funcname": "EndCombo", "namespace": "ImGui", @@ -19534,7 +19243,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndDragDropSource", - "comment": "", "defaults": [], "funcname": "EndDragDropSource", "namespace": "ImGui", @@ -19551,7 +19259,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndDragDropTarget", - "comment": "", "defaults": [], "funcname": "EndDragDropTarget", "namespace": "ImGui", @@ -19568,7 +19275,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndFrame", - "comment": "", "defaults": [], "funcname": "EndFrame", "namespace": "ImGui", @@ -19585,7 +19291,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndGroup", - "comment": "", "defaults": [], "funcname": "EndGroup", "namespace": "ImGui", @@ -19602,7 +19307,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndMainMenuBar", - "comment": "", "defaults": [], "funcname": "EndMainMenuBar", "namespace": "ImGui", @@ -19619,7 +19323,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndMenu", - "comment": "", "defaults": [], "funcname": "EndMenu", "namespace": "ImGui", @@ -19636,7 +19339,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndMenuBar", - "comment": "", "defaults": [], "funcname": "EndMenuBar", "namespace": "ImGui", @@ -19653,7 +19355,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndPopup", - "comment": "", "defaults": [], "funcname": "EndPopup", "namespace": "ImGui", @@ -19670,7 +19371,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndTabBar", - "comment": "", "defaults": [], "funcname": "EndTabBar", "namespace": "ImGui", @@ -19687,7 +19387,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndTabItem", - "comment": "", "defaults": [], "funcname": "EndTabItem", "namespace": "ImGui", @@ -19704,7 +19403,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndTooltip", - "comment": "", "defaults": [], "funcname": "EndTooltip", "namespace": "ImGui", @@ -19721,7 +19419,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetClipboardText", - "comment": "", "defaults": [], "funcname": "GetClipboardText", "namespace": "ImGui", @@ -19747,7 +19444,6 @@ "argsoriginal": "(ImGuiCol idx,float alpha_mul=1.0f)", "call_args": "(idx,alpha_mul)", "cimguiname": "igGetColorU32", - "comment": "", "defaults": { "alpha_mul": "1.0f" }, @@ -19769,7 +19465,6 @@ "argsoriginal": "(const ImVec4& col)", "call_args": "(col)", "cimguiname": "igGetColorU32", - "comment": "", "defaults": [], "funcname": "GetColorU32", "namespace": "ImGui", @@ -19789,7 +19484,6 @@ "argsoriginal": "(ImU32 col)", "call_args": "(col)", "cimguiname": "igGetColorU32", - "comment": "", "defaults": [], "funcname": "GetColorU32", "namespace": "ImGui", @@ -19806,7 +19500,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetColumnIndex", - "comment": "", "defaults": [], "funcname": "GetColumnIndex", "namespace": "ImGui", @@ -19828,7 +19521,6 @@ "argsoriginal": "(int column_index=-1)", "call_args": "(column_index)", "cimguiname": "igGetColumnOffset", - "comment": "", "defaults": { "column_index": "-1" }, @@ -19852,7 +19544,6 @@ "argsoriginal": "(int column_index=-1)", "call_args": "(column_index)", "cimguiname": "igGetColumnWidth", - "comment": "", "defaults": { "column_index": "-1" }, @@ -19871,7 +19562,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetColumnsCount", - "comment": "", "defaults": [], "funcname": "GetColumnsCount", "namespace": "ImGui", @@ -19888,7 +19578,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetContentRegionAvail", - "comment": "", "defaults": [], "funcname": "GetContentRegionAvail", "namespace": "ImGui", @@ -19908,7 +19597,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetContentRegionAvail", - "comment": "", "defaults": [], "funcname": "GetContentRegionAvail", "namespace": "ImGui", @@ -19924,7 +19612,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetContentRegionAvail", - "comment": "", "defaults": [], "funcname": "GetContentRegionAvail", "namespace": "ImGui", @@ -19943,7 +19630,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetContentRegionAvailWidth", - "comment": "", "defaults": [], "funcname": "GetContentRegionAvailWidth", "namespace": "ImGui", @@ -19960,7 +19646,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetContentRegionMax", - "comment": "", "defaults": [], "funcname": "GetContentRegionMax", "namespace": "ImGui", @@ -19980,7 +19665,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetContentRegionMax", - "comment": "", "defaults": [], "funcname": "GetContentRegionMax", "namespace": "ImGui", @@ -19996,7 +19680,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetContentRegionMax", - "comment": "", "defaults": [], "funcname": "GetContentRegionMax", "namespace": "ImGui", @@ -20015,7 +19698,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCurrentContext", - "comment": "", "defaults": [], "funcname": "GetCurrentContext", "namespace": "ImGui", @@ -20032,7 +19714,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorPos", - "comment": "", "defaults": [], "funcname": "GetCursorPos", "namespace": "ImGui", @@ -20052,7 +19733,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorPos", - "comment": "", "defaults": [], "funcname": "GetCursorPos", "namespace": "ImGui", @@ -20068,7 +19748,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorPos", - "comment": "", "defaults": [], "funcname": "GetCursorPos", "namespace": "ImGui", @@ -20087,7 +19766,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorPosX", - "comment": "", "defaults": [], "funcname": "GetCursorPosX", "namespace": "ImGui", @@ -20104,7 +19782,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorPosY", - "comment": "", "defaults": [], "funcname": "GetCursorPosY", "namespace": "ImGui", @@ -20121,7 +19798,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorScreenPos", - "comment": "", "defaults": [], "funcname": "GetCursorScreenPos", "namespace": "ImGui", @@ -20141,7 +19817,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorScreenPos", - "comment": "", "defaults": [], "funcname": "GetCursorScreenPos", "namespace": "ImGui", @@ -20157,7 +19832,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorScreenPos", - "comment": "", "defaults": [], "funcname": "GetCursorScreenPos", "namespace": "ImGui", @@ -20176,7 +19850,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorStartPos", - "comment": "", "defaults": [], "funcname": "GetCursorStartPos", "namespace": "ImGui", @@ -20196,7 +19869,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorStartPos", - "comment": "", "defaults": [], "funcname": "GetCursorStartPos", "namespace": "ImGui", @@ -20212,7 +19884,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorStartPos", - "comment": "", "defaults": [], "funcname": "GetCursorStartPos", "namespace": "ImGui", @@ -20231,7 +19902,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetDragDropPayload", - "comment": "", "defaults": [], "funcname": "GetDragDropPayload", "namespace": "ImGui", @@ -20248,7 +19918,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetDrawData", - "comment": "", "defaults": [], "funcname": "GetDrawData", "namespace": "ImGui", @@ -20265,7 +19934,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetDrawListSharedData", - "comment": "", "defaults": [], "funcname": "GetDrawListSharedData", "namespace": "ImGui", @@ -20282,7 +19950,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFont", - "comment": "", "defaults": [], "funcname": "GetFont", "namespace": "ImGui", @@ -20299,7 +19966,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFontSize", - "comment": "", "defaults": [], "funcname": "GetFontSize", "namespace": "ImGui", @@ -20316,7 +19982,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFontTexUvWhitePixel", - "comment": "", "defaults": [], "funcname": "GetFontTexUvWhitePixel", "namespace": "ImGui", @@ -20336,7 +20001,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFontTexUvWhitePixel", - "comment": "", "defaults": [], "funcname": "GetFontTexUvWhitePixel", "namespace": "ImGui", @@ -20352,7 +20016,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFontTexUvWhitePixel", - "comment": "", "defaults": [], "funcname": "GetFontTexUvWhitePixel", "namespace": "ImGui", @@ -20371,7 +20034,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFrameCount", - "comment": "", "defaults": [], "funcname": "GetFrameCount", "namespace": "ImGui", @@ -20388,7 +20050,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFrameHeight", - "comment": "", "defaults": [], "funcname": "GetFrameHeight", "namespace": "ImGui", @@ -20405,7 +20066,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFrameHeightWithSpacing", - "comment": "", "defaults": [], "funcname": "GetFrameHeightWithSpacing", "namespace": "ImGui", @@ -20427,7 +20087,6 @@ "argsoriginal": "(const char* str_id)", "call_args": "(str_id)", "cimguiname": "igGetID", - "comment": "", "defaults": [], "funcname": "GetID", "namespace": "ImGui", @@ -20451,7 +20110,6 @@ "argsoriginal": "(const char* str_id_begin,const char* str_id_end)", "call_args": "(str_id_begin,str_id_end)", "cimguiname": "igGetID", - "comment": "", "defaults": [], "funcname": "GetID", "namespace": "ImGui", @@ -20471,7 +20129,6 @@ "argsoriginal": "(const void* ptr_id)", "call_args": "(ptr_id)", "cimguiname": "igGetID", - "comment": "", "defaults": [], "funcname": "GetID", "namespace": "ImGui", @@ -20488,7 +20145,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetIO", - "comment": "", "defaults": [], "funcname": "GetIO", "namespace": "ImGui", @@ -20506,7 +20162,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetItemRectMax", - "comment": "", "defaults": [], "funcname": "GetItemRectMax", "namespace": "ImGui", @@ -20526,7 +20181,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetItemRectMax", - "comment": "", "defaults": [], "funcname": "GetItemRectMax", "namespace": "ImGui", @@ -20542,7 +20196,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetItemRectMax", - "comment": "", "defaults": [], "funcname": "GetItemRectMax", "namespace": "ImGui", @@ -20561,7 +20214,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetItemRectMin", - "comment": "", "defaults": [], "funcname": "GetItemRectMin", "namespace": "ImGui", @@ -20581,7 +20233,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetItemRectMin", - "comment": "", "defaults": [], "funcname": "GetItemRectMin", "namespace": "ImGui", @@ -20597,7 +20248,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetItemRectMin", - "comment": "", "defaults": [], "funcname": "GetItemRectMin", "namespace": "ImGui", @@ -20616,7 +20266,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetItemRectSize", - "comment": "", "defaults": [], "funcname": "GetItemRectSize", "namespace": "ImGui", @@ -20636,7 +20285,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetItemRectSize", - "comment": "", "defaults": [], "funcname": "GetItemRectSize", "namespace": "ImGui", @@ -20652,7 +20300,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetItemRectSize", - "comment": "", "defaults": [], "funcname": "GetItemRectSize", "namespace": "ImGui", @@ -20676,7 +20323,6 @@ "argsoriginal": "(ImGuiKey imgui_key)", "call_args": "(imgui_key)", "cimguiname": "igGetKeyIndex", - "comment": "", "defaults": [], "funcname": "GetKeyIndex", "namespace": "ImGui", @@ -20706,7 +20352,6 @@ "argsoriginal": "(int key_index,float repeat_delay,float rate)", "call_args": "(key_index,repeat_delay,rate)", "cimguiname": "igGetKeyPressedAmount", - "comment": "", "defaults": [], "funcname": "GetKeyPressedAmount", "namespace": "ImGui", @@ -20723,7 +20368,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetMouseCursor", - "comment": "", "defaults": [], "funcname": "GetMouseCursor", "namespace": "ImGui", @@ -20749,7 +20393,6 @@ "argsoriginal": "(int button=0,float lock_threshold=-1.0f)", "call_args": "(button,lock_threshold)", "cimguiname": "igGetMouseDragDelta", - "comment": "", "defaults": { "button": "0", "lock_threshold": "-1.0f" @@ -20780,7 +20423,6 @@ "argsoriginal": "(int button=0,float lock_threshold=-1.0f)", "call_args": "(button,lock_threshold)", "cimguiname": "igGetMouseDragDelta", - "comment": "", "defaults": { "button": "0", "lock_threshold": "-1.0f" @@ -20808,7 +20450,6 @@ "argsoriginal": "(int button=0,float lock_threshold=-1.0f)", "call_args": "(button,lock_threshold)", "cimguiname": "igGetMouseDragDelta", - "comment": "", "defaults": { "button": "0", "lock_threshold": "-1.0f" @@ -20830,7 +20471,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetMousePos", - "comment": "", "defaults": [], "funcname": "GetMousePos", "namespace": "ImGui", @@ -20850,7 +20490,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetMousePos", - "comment": "", "defaults": [], "funcname": "GetMousePos", "namespace": "ImGui", @@ -20866,7 +20505,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetMousePos", - "comment": "", "defaults": [], "funcname": "GetMousePos", "namespace": "ImGui", @@ -20885,7 +20523,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetMousePosOnOpeningCurrentPopup", - "comment": "", "defaults": [], "funcname": "GetMousePosOnOpeningCurrentPopup", "namespace": "ImGui", @@ -20905,7 +20542,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetMousePosOnOpeningCurrentPopup", - "comment": "", "defaults": [], "funcname": "GetMousePosOnOpeningCurrentPopup", "namespace": "ImGui", @@ -20921,7 +20557,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetMousePosOnOpeningCurrentPopup", - "comment": "", "defaults": [], "funcname": "GetMousePosOnOpeningCurrentPopup", "namespace": "ImGui", @@ -20940,7 +20575,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetOverlayDrawList", - "comment": "", "defaults": [], "funcname": "GetOverlayDrawList", "namespace": "ImGui", @@ -20957,7 +20591,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetScrollMaxX", - "comment": "", "defaults": [], "funcname": "GetScrollMaxX", "namespace": "ImGui", @@ -20974,7 +20607,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetScrollMaxY", - "comment": "", "defaults": [], "funcname": "GetScrollMaxY", "namespace": "ImGui", @@ -20991,7 +20623,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetScrollX", - "comment": "", "defaults": [], "funcname": "GetScrollX", "namespace": "ImGui", @@ -21008,7 +20639,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetScrollY", - "comment": "", "defaults": [], "funcname": "GetScrollY", "namespace": "ImGui", @@ -21025,7 +20655,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetStateStorage", - "comment": "", "defaults": [], "funcname": "GetStateStorage", "namespace": "ImGui", @@ -21042,7 +20671,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetStyle", - "comment": "", "defaults": [], "funcname": "GetStyle", "namespace": "ImGui", @@ -21065,7 +20693,6 @@ "argsoriginal": "(ImGuiCol idx)", "call_args": "(idx)", "cimguiname": "igGetStyleColorName", - "comment": "", "defaults": [], "funcname": "GetStyleColorName", "namespace": "ImGui", @@ -21087,7 +20714,6 @@ "argsoriginal": "(ImGuiCol idx)", "call_args": "(idx)", "cimguiname": "igGetStyleColorVec4", - "comment": "", "defaults": [], "funcname": "GetStyleColorVec4", "namespace": "ImGui", @@ -21105,7 +20731,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetTextLineHeight", - "comment": "", "defaults": [], "funcname": "GetTextLineHeight", "namespace": "ImGui", @@ -21122,7 +20747,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetTextLineHeightWithSpacing", - "comment": "", "defaults": [], "funcname": "GetTextLineHeightWithSpacing", "namespace": "ImGui", @@ -21139,7 +20763,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetTime", - "comment": "", "defaults": [], "funcname": "GetTime", "namespace": "ImGui", @@ -21156,7 +20779,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetTreeNodeToLabelSpacing", - "comment": "", "defaults": [], "funcname": "GetTreeNodeToLabelSpacing", "namespace": "ImGui", @@ -21173,7 +20795,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetVersion", - "comment": "", "defaults": [], "funcname": "GetVersion", "namespace": "ImGui", @@ -21190,7 +20811,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowContentRegionMax", - "comment": "", "defaults": [], "funcname": "GetWindowContentRegionMax", "namespace": "ImGui", @@ -21210,7 +20830,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowContentRegionMax", - "comment": "", "defaults": [], "funcname": "GetWindowContentRegionMax", "namespace": "ImGui", @@ -21226,7 +20845,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowContentRegionMax", - "comment": "", "defaults": [], "funcname": "GetWindowContentRegionMax", "namespace": "ImGui", @@ -21245,7 +20863,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowContentRegionMin", - "comment": "", "defaults": [], "funcname": "GetWindowContentRegionMin", "namespace": "ImGui", @@ -21265,7 +20882,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowContentRegionMin", - "comment": "", "defaults": [], "funcname": "GetWindowContentRegionMin", "namespace": "ImGui", @@ -21281,7 +20897,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowContentRegionMin", - "comment": "", "defaults": [], "funcname": "GetWindowContentRegionMin", "namespace": "ImGui", @@ -21300,7 +20915,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowContentRegionWidth", - "comment": "", "defaults": [], "funcname": "GetWindowContentRegionWidth", "namespace": "ImGui", @@ -21317,7 +20931,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowDrawList", - "comment": "", "defaults": [], "funcname": "GetWindowDrawList", "namespace": "ImGui", @@ -21334,7 +20947,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowHeight", - "comment": "", "defaults": [], "funcname": "GetWindowHeight", "namespace": "ImGui", @@ -21351,7 +20963,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowPos", - "comment": "", "defaults": [], "funcname": "GetWindowPos", "namespace": "ImGui", @@ -21371,7 +20982,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowPos", - "comment": "", "defaults": [], "funcname": "GetWindowPos", "namespace": "ImGui", @@ -21387,7 +20997,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowPos", - "comment": "", "defaults": [], "funcname": "GetWindowPos", "namespace": "ImGui", @@ -21406,7 +21015,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowSize", - "comment": "", "defaults": [], "funcname": "GetWindowSize", "namespace": "ImGui", @@ -21426,7 +21034,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowSize", - "comment": "", "defaults": [], "funcname": "GetWindowSize", "namespace": "ImGui", @@ -21442,7 +21049,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowSize", - "comment": "", "defaults": [], "funcname": "GetWindowSize", "namespace": "ImGui", @@ -21461,7 +21067,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowWidth", - "comment": "", "defaults": [], "funcname": "GetWindowWidth", "namespace": "ImGui", @@ -21503,7 +21108,6 @@ "argsoriginal": "(ImTextureID user_texture_id,const ImVec2& size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& tint_col=ImVec4(1,1,1,1),const ImVec4& border_col=ImVec4(0,0,0,0))", "call_args": "(user_texture_id,size,uv0,uv1,tint_col,border_col)", "cimguiname": "igImage", - "comment": "", "defaults": { "border_col": "ImVec4(0,0,0,0)", "tint_col": "ImVec4(1,1,1,1)", @@ -21554,7 +21158,6 @@ "argsoriginal": "(ImTextureID user_texture_id,const ImVec2& size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),int frame_padding=-1,const ImVec4& bg_col=ImVec4(0,0,0,0),const ImVec4& tint_col=ImVec4(1,1,1,1))", "call_args": "(user_texture_id,size,uv0,uv1,frame_padding,bg_col,tint_col)", "cimguiname": "igImageButton", - "comment": "", "defaults": { "bg_col": "ImVec4(0,0,0,0)", "frame_padding": "-1", @@ -21582,7 +21185,6 @@ "argsoriginal": "(float indent_w=0.0f)", "call_args": "(indent_w)", "cimguiname": "igIndent", - "comment": "", "defaults": { "indent_w": "0.0f" }, @@ -21626,7 +21228,6 @@ "argsoriginal": "(const char* label,double* v,double step=0.0,double step_fast=0.0,const char* format=\"%.6f\",ImGuiInputTextFlags flags=0)", "call_args": "(label,v,step,step_fast,format,flags)", "cimguiname": "igInputDouble", - "comment": "", "defaults": { "flags": "0", "format": "\"%.6f\"", @@ -21673,7 +21274,6 @@ "argsoriginal": "(const char* label,float* v,float step=0.0f,float step_fast=0.0f,const char* format=\"%.3f\",ImGuiInputTextFlags flags=0)", "call_args": "(label,v,step,step_fast,format,flags)", "cimguiname": "igInputFloat", - "comment": "", "defaults": { "flags": "0", "format": "\"%.3f\"", @@ -21712,7 +21312,6 @@ "argsoriginal": "(const char* label,float v[2],const char* format=\"%.3f\",ImGuiInputTextFlags flags=0)", "call_args": "(label,v,format,flags)", "cimguiname": "igInputFloat2", - "comment": "", "defaults": { "flags": "0", "format": "\"%.3f\"" @@ -21749,7 +21348,6 @@ "argsoriginal": "(const char* label,float v[3],const char* format=\"%.3f\",ImGuiInputTextFlags flags=0)", "call_args": "(label,v,format,flags)", "cimguiname": "igInputFloat3", - "comment": "", "defaults": { "flags": "0", "format": "\"%.3f\"" @@ -21786,7 +21384,6 @@ "argsoriginal": "(const char* label,float v[4],const char* format=\"%.3f\",ImGuiInputTextFlags flags=0)", "call_args": "(label,v,format,flags)", "cimguiname": "igInputFloat4", - "comment": "", "defaults": { "flags": "0", "format": "\"%.3f\"" @@ -21827,7 +21424,6 @@ "argsoriginal": "(const char* label,int* v,int step=1,int step_fast=100,ImGuiInputTextFlags flags=0)", "call_args": "(label,v,step,step_fast,flags)", "cimguiname": "igInputInt", - "comment": "", "defaults": { "flags": "0", "step": "1", @@ -21861,7 +21457,6 @@ "argsoriginal": "(const char* label,int v[2],ImGuiInputTextFlags flags=0)", "call_args": "(label,v,flags)", "cimguiname": "igInputInt2", - "comment": "", "defaults": { "flags": "0" }, @@ -21893,7 +21488,6 @@ "argsoriginal": "(const char* label,int v[3],ImGuiInputTextFlags flags=0)", "call_args": "(label,v,flags)", "cimguiname": "igInputInt3", - "comment": "", "defaults": { "flags": "0" }, @@ -21925,7 +21519,6 @@ "argsoriginal": "(const char* label,int v[4],ImGuiInputTextFlags flags=0)", "call_args": "(label,v,flags)", "cimguiname": "igInputInt4", - "comment": "", "defaults": { "flags": "0" }, @@ -21973,7 +21566,6 @@ "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,const void* step=((void*)0),const void* step_fast=((void*)0),const char* format=((void*)0),ImGuiInputTextFlags flags=0)", "call_args": "(label,data_type,v,step,step_fast,format,flags)", "cimguiname": "igInputScalar", - "comment": "", "defaults": { "flags": "0", "format": "((void*)0)", @@ -22028,7 +21620,6 @@ "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,int components,const void* step=((void*)0),const void* step_fast=((void*)0),const char* format=((void*)0),ImGuiInputTextFlags flags=0)", "call_args": "(label,data_type,v,components,step,step_fast,format,flags)", "cimguiname": "igInputScalarN", - "comment": "", "defaults": { "flags": "0", "format": "((void*)0)", @@ -22075,7 +21666,6 @@ "argsoriginal": "(const char* label,char* buf,size_t buf_size,ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void*)0),void* user_data=((void*)0))", "call_args": "(label,buf,buf_size,flags,callback,user_data)", "cimguiname": "igInputText", - "comment": "", "defaults": { "callback": "((void*)0)", "flags": "0", @@ -22125,7 +21715,6 @@ "argsoriginal": "(const char* label,char* buf,size_t buf_size,const ImVec2& size=ImVec2(0,0),ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void*)0),void* user_data=((void*)0))", "call_args": "(label,buf,buf_size,size,flags,callback,user_data)", "cimguiname": "igInputTextMultiline", - "comment": "", "defaults": { "callback": "((void*)0)", "flags": "0", @@ -22156,7 +21745,6 @@ "argsoriginal": "(const char* str_id,const ImVec2& size)", "call_args": "(str_id,size)", "cimguiname": "igInvisibleButton", - "comment": "", "defaults": [], "funcname": "InvisibleButton", "namespace": "ImGui", @@ -22173,7 +21761,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsAnyItemActive", - "comment": "", "defaults": [], "funcname": "IsAnyItemActive", "namespace": "ImGui", @@ -22190,7 +21777,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsAnyItemFocused", - "comment": "", "defaults": [], "funcname": "IsAnyItemFocused", "namespace": "ImGui", @@ -22207,7 +21793,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsAnyItemHovered", - "comment": "", "defaults": [], "funcname": "IsAnyItemHovered", "namespace": "ImGui", @@ -22224,7 +21809,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsAnyMouseDown", - "comment": "", "defaults": [], "funcname": "IsAnyMouseDown", "namespace": "ImGui", @@ -22241,7 +21825,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsItemActive", - "comment": "", "defaults": [], "funcname": "IsItemActive", "namespace": "ImGui", @@ -22263,7 +21846,6 @@ "argsoriginal": "(int mouse_button=0)", "call_args": "(mouse_button)", "cimguiname": "igIsItemClicked", - "comment": "", "defaults": { "mouse_button": "0" }, @@ -22282,7 +21864,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsItemDeactivated", - "comment": "", "defaults": [], "funcname": "IsItemDeactivated", "namespace": "ImGui", @@ -22299,7 +21880,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsItemDeactivatedAfterEdit", - "comment": "", "defaults": [], "funcname": "IsItemDeactivatedAfterEdit", "namespace": "ImGui", @@ -22316,7 +21896,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsItemEdited", - "comment": "", "defaults": [], "funcname": "IsItemEdited", "namespace": "ImGui", @@ -22333,7 +21912,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsItemFocused", - "comment": "", "defaults": [], "funcname": "IsItemFocused", "namespace": "ImGui", @@ -22355,7 +21933,6 @@ "argsoriginal": "(ImGuiHoveredFlags flags=0)", "call_args": "(flags)", "cimguiname": "igIsItemHovered", - "comment": "", "defaults": { "flags": "0" }, @@ -22374,7 +21951,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsItemVisible", - "comment": "", "defaults": [], "funcname": "IsItemVisible", "namespace": "ImGui", @@ -22396,7 +21972,6 @@ "argsoriginal": "(int user_key_index)", "call_args": "(user_key_index)", "cimguiname": "igIsKeyDown", - "comment": "", "defaults": [], "funcname": "IsKeyDown", "namespace": "ImGui", @@ -22422,7 +21997,6 @@ "argsoriginal": "(int user_key_index,bool repeat=true)", "call_args": "(user_key_index,repeat)", "cimguiname": "igIsKeyPressed", - "comment": "", "defaults": { "repeat": "true" }, @@ -22446,7 +22020,6 @@ "argsoriginal": "(int user_key_index)", "call_args": "(user_key_index)", "cimguiname": "igIsKeyReleased", - "comment": "", "defaults": [], "funcname": "IsKeyReleased", "namespace": "ImGui", @@ -22472,7 +22045,6 @@ "argsoriginal": "(int button,bool repeat=false)", "call_args": "(button,repeat)", "cimguiname": "igIsMouseClicked", - "comment": "", "defaults": { "repeat": "false" }, @@ -22496,7 +22068,6 @@ "argsoriginal": "(int button)", "call_args": "(button)", "cimguiname": "igIsMouseDoubleClicked", - "comment": "", "defaults": [], "funcname": "IsMouseDoubleClicked", "namespace": "ImGui", @@ -22518,7 +22089,6 @@ "argsoriginal": "(int button)", "call_args": "(button)", "cimguiname": "igIsMouseDown", - "comment": "", "defaults": [], "funcname": "IsMouseDown", "namespace": "ImGui", @@ -22544,7 +22114,6 @@ "argsoriginal": "(int button=0,float lock_threshold=-1.0f)", "call_args": "(button,lock_threshold)", "cimguiname": "igIsMouseDragging", - "comment": "", "defaults": { "button": "0", "lock_threshold": "-1.0f" @@ -22577,7 +22146,6 @@ "argsoriginal": "(const ImVec2& r_min,const ImVec2& r_max,bool clip=true)", "call_args": "(r_min,r_max,clip)", "cimguiname": "igIsMouseHoveringRect", - "comment": "", "defaults": { "clip": "true" }, @@ -22601,7 +22169,6 @@ "argsoriginal": "(const ImVec2* mouse_pos=((void*)0))", "call_args": "(mouse_pos)", "cimguiname": "igIsMousePosValid", - "comment": "", "defaults": { "mouse_pos": "((void*)0)" }, @@ -22625,7 +22192,6 @@ "argsoriginal": "(int button)", "call_args": "(button)", "cimguiname": "igIsMouseReleased", - "comment": "", "defaults": [], "funcname": "IsMouseReleased", "namespace": "ImGui", @@ -22647,7 +22213,6 @@ "argsoriginal": "(const char* str_id)", "call_args": "(str_id)", "cimguiname": "igIsPopupOpen", - "comment": "", "defaults": [], "funcname": "IsPopupOpen", "namespace": "ImGui", @@ -22669,7 +22234,6 @@ "argsoriginal": "(const ImVec2& size)", "call_args": "(size)", "cimguiname": "igIsRectVisible", - "comment": "", "defaults": [], "funcname": "IsRectVisible", "namespace": "ImGui", @@ -22693,7 +22257,6 @@ "argsoriginal": "(const ImVec2& rect_min,const ImVec2& rect_max)", "call_args": "(rect_min,rect_max)", "cimguiname": "igIsRectVisible", - "comment": "", "defaults": [], "funcname": "IsRectVisible", "namespace": "ImGui", @@ -22710,7 +22273,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsWindowAppearing", - "comment": "", "defaults": [], "funcname": "IsWindowAppearing", "namespace": "ImGui", @@ -22727,7 +22289,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsWindowCollapsed", - "comment": "", "defaults": [], "funcname": "IsWindowCollapsed", "namespace": "ImGui", @@ -22749,7 +22310,6 @@ "argsoriginal": "(ImGuiFocusedFlags flags=0)", "call_args": "(flags)", "cimguiname": "igIsWindowFocused", - "comment": "", "defaults": { "flags": "0" }, @@ -22773,7 +22333,6 @@ "argsoriginal": "(ImGuiHoveredFlags flags=0)", "call_args": "(flags)", "cimguiname": "igIsWindowHovered", - "comment": "", "defaults": { "flags": "0" }, @@ -22805,7 +22364,6 @@ "argsoriginal": "(const char* label,const char* fmt,...)", "call_args": "(label,fmt,...)", "cimguiname": "igLabelText", - "comment": "", "defaults": [], "funcname": "LabelText", "isvararg": "...)", @@ -22836,7 +22394,6 @@ "argsoriginal": "(const char* label,const char* fmt,va_list args)", "call_args": "(label,fmt,args)", "cimguiname": "igLabelTextV", - "comment": "", "defaults": [], "funcname": "LabelTextV", "namespace": "ImGui", @@ -22874,7 +22431,6 @@ "argsoriginal": "(const char* label,int* current_item,const char* const items[],int items_count,int height_in_items=-1)", "call_args": "(label,current_item,items,items_count,height_in_items)", "cimguiname": "igListBox", - "comment": "", "defaults": { "height_in_items": "-1" }, @@ -22918,7 +22474,6 @@ "argsoriginal": "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items=-1)", "call_args": "(label,current_item,items_getter,data,items_count,height_in_items)", "cimguiname": "igListBox", - "comment": "", "defaults": { "height_in_items": "-1" }, @@ -22937,7 +22492,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igListBoxFooter", - "comment": "", "defaults": [], "funcname": "ListBoxFooter", "namespace": "ImGui", @@ -22963,7 +22517,6 @@ "argsoriginal": "(const char* label,const ImVec2& size=ImVec2(0,0))", "call_args": "(label,size)", "cimguiname": "igListBoxHeader", - "comment": "", "defaults": { "size": "ImVec2(0,0)" }, @@ -22993,7 +22546,6 @@ "argsoriginal": "(const char* label,int items_count,int height_in_items=-1)", "call_args": "(label,items_count,height_in_items)", "cimguiname": "igListBoxHeader", - "comment": "", "defaults": { "height_in_items": "-1" }, @@ -23017,7 +22569,6 @@ "argsoriginal": "(const char* ini_filename)", "call_args": "(ini_filename)", "cimguiname": "igLoadIniSettingsFromDisk", - "comment": "", "defaults": [], "funcname": "LoadIniSettingsFromDisk", "namespace": "ImGui", @@ -23043,7 +22594,6 @@ "argsoriginal": "(const char* ini_data,size_t ini_size=0)", "call_args": "(ini_data,ini_size)", "cimguiname": "igLoadIniSettingsFromMemory", - "comment": "", "defaults": { "ini_size": "0" }, @@ -23062,7 +22612,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igLogButtons", - "comment": "", "defaults": [], "funcname": "LogButtons", "namespace": "ImGui", @@ -23079,7 +22628,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igLogFinish", - "comment": "", "defaults": [], "funcname": "LogFinish", "namespace": "ImGui", @@ -23105,7 +22653,6 @@ "argsoriginal": "(const char* fmt,...)", "call_args": "(fmt,...)", "cimguiname": "igLogText", - "comment": "", "defaults": [], "funcname": "LogText", "isvararg": "...)", @@ -23129,7 +22676,6 @@ "argsoriginal": "(int max_depth=-1)", "call_args": "(max_depth)", "cimguiname": "igLogToClipboard", - "comment": "", "defaults": { "max_depth": "-1" }, @@ -23157,7 +22703,6 @@ "argsoriginal": "(int max_depth=-1,const char* filename=((void*)0))", "call_args": "(max_depth,filename)", "cimguiname": "igLogToFile", - "comment": "", "defaults": { "filename": "((void*)0)", "max_depth": "-1" @@ -23182,7 +22727,6 @@ "argsoriginal": "(int max_depth=-1)", "call_args": "(max_depth)", "cimguiname": "igLogToTTY", - "comment": "", "defaults": { "max_depth": "-1" }, @@ -23206,7 +22750,6 @@ "argsoriginal": "(size_t size)", "call_args": "(size)", "cimguiname": "igMemAlloc", - "comment": "", "defaults": [], "funcname": "MemAlloc", "namespace": "ImGui", @@ -23228,7 +22771,6 @@ "argsoriginal": "(void* ptr)", "call_args": "(ptr)", "cimguiname": "igMemFree", - "comment": "", "defaults": [], "funcname": "MemFree", "namespace": "ImGui", @@ -23262,7 +22804,6 @@ "argsoriginal": "(const char* label,const char* shortcut=((void*)0),bool selected=false,bool enabled=true)", "call_args": "(label,shortcut,selected,enabled)", "cimguiname": "igMenuItem", - "comment": "", "defaults": { "enabled": "true", "selected": "false", @@ -23298,7 +22839,6 @@ "argsoriginal": "(const char* label,const char* shortcut,bool* p_selected,bool enabled=true)", "call_args": "(label,shortcut,p_selected,enabled)", "cimguiname": "igMenuItem", - "comment": "", "defaults": { "enabled": "true" }, @@ -23317,7 +22857,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igNewFrame", - "comment": "", "defaults": [], "funcname": "NewFrame", "namespace": "ImGui", @@ -23334,7 +22873,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igNewLine", - "comment": "", "defaults": [], "funcname": "NewLine", "namespace": "ImGui", @@ -23351,7 +22889,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igNextColumn", - "comment": "", "defaults": [], "funcname": "NextColumn", "namespace": "ImGui", @@ -23373,7 +22910,6 @@ "argsoriginal": "(const char* str_id)", "call_args": "(str_id)", "cimguiname": "igOpenPopup", - "comment": "", "defaults": [], "funcname": "OpenPopup", "namespace": "ImGui", @@ -23399,7 +22935,6 @@ "argsoriginal": "(const char* str_id=((void*)0),int mouse_button=1)", "call_args": "(str_id,mouse_button)", "cimguiname": "igOpenPopupOnItemClick", - "comment": "", "defaults": { "mouse_button": "1", "str_id": "((void*)0)" @@ -23456,7 +22991,6 @@ "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", "call_args": "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)", "cimguiname": "igPlotHistogram", - "comment": "", "defaults": { "graph_size": "ImVec2(0,0)", "overlay_text": "((void*)0)", @@ -23517,7 +23051,6 @@ "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0))", "call_args": "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)", "cimguiname": "igPlotHistogram", - "comment": "", "defaults": { "graph_size": "ImVec2(0,0)", "overlay_text": "((void*)0)", @@ -23577,7 +23110,6 @@ "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", "call_args": "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)", "cimguiname": "igPlotLines", - "comment": "", "defaults": { "graph_size": "ImVec2(0,0)", "overlay_text": "((void*)0)", @@ -23638,7 +23170,6 @@ "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0))", "call_args": "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)", "cimguiname": "igPlotLines", - "comment": "", "defaults": { "graph_size": "ImVec2(0,0)", "overlay_text": "((void*)0)", @@ -23661,7 +23192,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopAllowKeyboardFocus", - "comment": "", "defaults": [], "funcname": "PopAllowKeyboardFocus", "namespace": "ImGui", @@ -23678,7 +23208,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopButtonRepeat", - "comment": "", "defaults": [], "funcname": "PopButtonRepeat", "namespace": "ImGui", @@ -23695,7 +23224,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopClipRect", - "comment": "", "defaults": [], "funcname": "PopClipRect", "namespace": "ImGui", @@ -23712,7 +23240,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopFont", - "comment": "", "defaults": [], "funcname": "PopFont", "namespace": "ImGui", @@ -23729,7 +23256,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopID", - "comment": "", "defaults": [], "funcname": "PopID", "namespace": "ImGui", @@ -23746,7 +23272,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopItemWidth", - "comment": "", "defaults": [], "funcname": "PopItemWidth", "namespace": "ImGui", @@ -23768,7 +23293,6 @@ "argsoriginal": "(int count=1)", "call_args": "(count)", "cimguiname": "igPopStyleColor", - "comment": "", "defaults": { "count": "1" }, @@ -23792,7 +23316,6 @@ "argsoriginal": "(int count=1)", "call_args": "(count)", "cimguiname": "igPopStyleVar", - "comment": "", "defaults": { "count": "1" }, @@ -23811,7 +23334,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopTextWrapPos", - "comment": "", "defaults": [], "funcname": "PopTextWrapPos", "namespace": "ImGui", @@ -23841,7 +23363,6 @@ "argsoriginal": "(float fraction,const ImVec2& size_arg=ImVec2(-1,0),const char* overlay=((void*)0))", "call_args": "(fraction,size_arg,overlay)", "cimguiname": "igProgressBar", - "comment": "", "defaults": { "overlay": "((void*)0)", "size_arg": "ImVec2(-1,0)" @@ -23866,7 +23387,6 @@ "argsoriginal": "(bool allow_keyboard_focus)", "call_args": "(allow_keyboard_focus)", "cimguiname": "igPushAllowKeyboardFocus", - "comment": "", "defaults": [], "funcname": "PushAllowKeyboardFocus", "namespace": "ImGui", @@ -23888,7 +23408,6 @@ "argsoriginal": "(bool repeat)", "call_args": "(repeat)", "cimguiname": "igPushButtonRepeat", - "comment": "", "defaults": [], "funcname": "PushButtonRepeat", "namespace": "ImGui", @@ -23918,7 +23437,6 @@ "argsoriginal": "(const ImVec2& clip_rect_min,const ImVec2& clip_rect_max,bool intersect_with_current_clip_rect)", "call_args": "(clip_rect_min,clip_rect_max,intersect_with_current_clip_rect)", "cimguiname": "igPushClipRect", - "comment": "", "defaults": [], "funcname": "PushClipRect", "namespace": "ImGui", @@ -23940,7 +23458,6 @@ "argsoriginal": "(ImFont* font)", "call_args": "(font)", "cimguiname": "igPushFont", - "comment": "", "defaults": [], "funcname": "PushFont", "namespace": "ImGui", @@ -23962,7 +23479,6 @@ "argsoriginal": "(const char* str_id)", "call_args": "(str_id)", "cimguiname": "igPushID", - "comment": "", "defaults": [], "funcname": "PushID", "namespace": "ImGui", @@ -23986,7 +23502,6 @@ "argsoriginal": "(const char* str_id_begin,const char* str_id_end)", "call_args": "(str_id_begin,str_id_end)", "cimguiname": "igPushID", - "comment": "", "defaults": [], "funcname": "PushID", "namespace": "ImGui", @@ -24006,7 +23521,6 @@ "argsoriginal": "(const void* ptr_id)", "call_args": "(ptr_id)", "cimguiname": "igPushID", - "comment": "", "defaults": [], "funcname": "PushID", "namespace": "ImGui", @@ -24026,7 +23540,6 @@ "argsoriginal": "(int int_id)", "call_args": "(int_id)", "cimguiname": "igPushID", - "comment": "", "defaults": [], "funcname": "PushID", "namespace": "ImGui", @@ -24048,7 +23561,6 @@ "argsoriginal": "(float item_width)", "call_args": "(item_width)", "cimguiname": "igPushItemWidth", - "comment": "", "defaults": [], "funcname": "PushItemWidth", "namespace": "ImGui", @@ -24074,7 +23586,6 @@ "argsoriginal": "(ImGuiCol idx,ImU32 col)", "call_args": "(idx,col)", "cimguiname": "igPushStyleColor", - "comment": "", "defaults": [], "funcname": "PushStyleColor", "namespace": "ImGui", @@ -24098,7 +23609,6 @@ "argsoriginal": "(ImGuiCol idx,const ImVec4& col)", "call_args": "(idx,col)", "cimguiname": "igPushStyleColor", - "comment": "", "defaults": [], "funcname": "PushStyleColor", "namespace": "ImGui", @@ -24124,7 +23634,6 @@ "argsoriginal": "(ImGuiStyleVar idx,float val)", "call_args": "(idx,val)", "cimguiname": "igPushStyleVar", - "comment": "", "defaults": [], "funcname": "PushStyleVar", "namespace": "ImGui", @@ -24148,7 +23657,6 @@ "argsoriginal": "(ImGuiStyleVar idx,const ImVec2& val)", "call_args": "(idx,val)", "cimguiname": "igPushStyleVar", - "comment": "", "defaults": [], "funcname": "PushStyleVar", "namespace": "ImGui", @@ -24170,7 +23678,6 @@ "argsoriginal": "(float wrap_local_pos_x=0.0f)", "call_args": "(wrap_local_pos_x)", "cimguiname": "igPushTextWrapPos", - "comment": "", "defaults": { "wrap_local_pos_x": "0.0f" }, @@ -24198,7 +23705,6 @@ "argsoriginal": "(const char* label,bool active)", "call_args": "(label,active)", "cimguiname": "igRadioButton", - "comment": "", "defaults": [], "funcname": "RadioButton", "namespace": "ImGui", @@ -24226,7 +23732,6 @@ "argsoriginal": "(const char* label,int* v,int v_button)", "call_args": "(label,v,v_button)", "cimguiname": "igRadioButton", - "comment": "", "defaults": [], "funcname": "RadioButton", "namespace": "ImGui", @@ -24243,7 +23748,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igRender", - "comment": "", "defaults": [], "funcname": "Render", "namespace": "ImGui", @@ -24265,7 +23769,6 @@ "argsoriginal": "(int button=0)", "call_args": "(button)", "cimguiname": "igResetMouseDragDelta", - "comment": "", "defaults": { "button": "0" }, @@ -24293,7 +23796,6 @@ "argsoriginal": "(float local_pos_x=0.0f,float spacing_w=-1.0f)", "call_args": "(local_pos_x,spacing_w)", "cimguiname": "igSameLine", - "comment": "", "defaults": { "local_pos_x": "0.0f", "spacing_w": "-1.0f" @@ -24318,7 +23820,6 @@ "argsoriginal": "(const char* ini_filename)", "call_args": "(ini_filename)", "cimguiname": "igSaveIniSettingsToDisk", - "comment": "", "defaults": [], "funcname": "SaveIniSettingsToDisk", "namespace": "ImGui", @@ -24340,7 +23841,6 @@ "argsoriginal": "(size_t* out_ini_size=((void*)0))", "call_args": "(out_ini_size)", "cimguiname": "igSaveIniSettingsToMemory", - "comment": "", "defaults": { "out_ini_size": "((void*)0)" }, @@ -24376,7 +23876,6 @@ "argsoriginal": "(const char* label,bool selected=false,ImGuiSelectableFlags flags=0,const ImVec2& size=ImVec2(0,0))", "call_args": "(label,selected,flags,size)", "cimguiname": "igSelectable", - "comment": "", "defaults": { "flags": "0", "selected": "false", @@ -24412,7 +23911,6 @@ "argsoriginal": "(const char* label,bool* p_selected,ImGuiSelectableFlags flags=0,const ImVec2& size=ImVec2(0,0))", "call_args": "(label,p_selected,flags,size)", "cimguiname": "igSelectable", - "comment": "", "defaults": { "flags": "0", "size": "ImVec2(0,0)" @@ -24432,7 +23930,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igSeparator", - "comment": "", "defaults": [], "funcname": "Separator", "namespace": "ImGui", @@ -24466,7 +23963,6 @@ "argsoriginal": "(void*(*alloc_func)(size_t sz,void* user_data),void(*free_func)(void* ptr,void* user_data),void* user_data=((void*)0))", "call_args": "(alloc_func,free_func,user_data)", "cimguiname": "igSetAllocatorFunctions", - "comment": "", "defaults": { "user_data": "((void*)0)" }, @@ -24490,7 +23986,6 @@ "argsoriginal": "(const char* text)", "call_args": "(text)", "cimguiname": "igSetClipboardText", - "comment": "", "defaults": [], "funcname": "SetClipboardText", "namespace": "ImGui", @@ -24512,7 +24007,6 @@ "argsoriginal": "(ImGuiColorEditFlags flags)", "call_args": "(flags)", "cimguiname": "igSetColorEditOptions", - "comment": "", "defaults": [], "funcname": "SetColorEditOptions", "namespace": "ImGui", @@ -24538,7 +24032,6 @@ "argsoriginal": "(int column_index,float offset_x)", "call_args": "(column_index,offset_x)", "cimguiname": "igSetColumnOffset", - "comment": "", "defaults": [], "funcname": "SetColumnOffset", "namespace": "ImGui", @@ -24564,7 +24057,6 @@ "argsoriginal": "(int column_index,float width)", "call_args": "(column_index,width)", "cimguiname": "igSetColumnWidth", - "comment": "", "defaults": [], "funcname": "SetColumnWidth", "namespace": "ImGui", @@ -24586,7 +24078,6 @@ "argsoriginal": "(ImGuiContext* ctx)", "call_args": "(ctx)", "cimguiname": "igSetCurrentContext", - "comment": "", "defaults": [], "funcname": "SetCurrentContext", "namespace": "ImGui", @@ -24608,7 +24099,6 @@ "argsoriginal": "(const ImVec2& local_pos)", "call_args": "(local_pos)", "cimguiname": "igSetCursorPos", - "comment": "", "defaults": [], "funcname": "SetCursorPos", "namespace": "ImGui", @@ -24630,7 +24120,6 @@ "argsoriginal": "(float local_x)", "call_args": "(local_x)", "cimguiname": "igSetCursorPosX", - "comment": "", "defaults": [], "funcname": "SetCursorPosX", "namespace": "ImGui", @@ -24652,7 +24141,6 @@ "argsoriginal": "(float local_y)", "call_args": "(local_y)", "cimguiname": "igSetCursorPosY", - "comment": "", "defaults": [], "funcname": "SetCursorPosY", "namespace": "ImGui", @@ -24674,7 +24162,6 @@ "argsoriginal": "(const ImVec2& pos)", "call_args": "(pos)", "cimguiname": "igSetCursorScreenPos", - "comment": "", "defaults": [], "funcname": "SetCursorScreenPos", "namespace": "ImGui", @@ -24708,7 +24195,6 @@ "argsoriginal": "(const char* type,const void* data,size_t size,ImGuiCond cond=0)", "call_args": "(type,data,size,cond)", "cimguiname": "igSetDragDropPayload", - "comment": "", "defaults": { "cond": "0" }, @@ -24727,7 +24213,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igSetItemAllowOverlap", - "comment": "", "defaults": [], "funcname": "SetItemAllowOverlap", "namespace": "ImGui", @@ -24744,7 +24229,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igSetItemDefaultFocus", - "comment": "", "defaults": [], "funcname": "SetItemDefaultFocus", "namespace": "ImGui", @@ -24766,7 +24250,6 @@ "argsoriginal": "(int offset=0)", "call_args": "(offset)", "cimguiname": "igSetKeyboardFocusHere", - "comment": "", "defaults": { "offset": "0" }, @@ -24790,7 +24273,6 @@ "argsoriginal": "(ImGuiMouseCursor type)", "call_args": "(type)", "cimguiname": "igSetMouseCursor", - "comment": "", "defaults": [], "funcname": "SetMouseCursor", "namespace": "ImGui", @@ -24816,7 +24298,6 @@ "argsoriginal": "(bool is_open,ImGuiCond cond=0)", "call_args": "(is_open,cond)", "cimguiname": "igSetNextTreeNodeOpen", - "comment": "", "defaults": { "cond": "0" }, @@ -24840,7 +24321,6 @@ "argsoriginal": "(float alpha)", "call_args": "(alpha)", "cimguiname": "igSetNextWindowBgAlpha", - "comment": "", "defaults": [], "funcname": "SetNextWindowBgAlpha", "namespace": "ImGui", @@ -24866,7 +24346,6 @@ "argsoriginal": "(bool collapsed,ImGuiCond cond=0)", "call_args": "(collapsed,cond)", "cimguiname": "igSetNextWindowCollapsed", - "comment": "", "defaults": { "cond": "0" }, @@ -24890,7 +24369,6 @@ "argsoriginal": "(const ImVec2& size)", "call_args": "(size)", "cimguiname": "igSetNextWindowContentSize", - "comment": "", "defaults": [], "funcname": "SetNextWindowContentSize", "namespace": "ImGui", @@ -24907,7 +24385,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igSetNextWindowFocus", - "comment": "", "defaults": [], "funcname": "SetNextWindowFocus", "namespace": "ImGui", @@ -24937,7 +24414,6 @@ "argsoriginal": "(const ImVec2& pos,ImGuiCond cond=0,const ImVec2& pivot=ImVec2(0,0))", "call_args": "(pos,cond,pivot)", "cimguiname": "igSetNextWindowPos", - "comment": "", "defaults": { "cond": "0", "pivot": "ImVec2(0,0)" @@ -24966,7 +24442,6 @@ "argsoriginal": "(const ImVec2& size,ImGuiCond cond=0)", "call_args": "(size,cond)", "cimguiname": "igSetNextWindowSize", - "comment": "", "defaults": { "cond": "0" }, @@ -25002,7 +24477,6 @@ "argsoriginal": "(const ImVec2& size_min,const ImVec2& size_max,ImGuiSizeCallback custom_callback=((void*)0),void* custom_callback_data=((void*)0))", "call_args": "(size_min,size_max,custom_callback,custom_callback_data)", "cimguiname": "igSetNextWindowSizeConstraints", - "comment": "", "defaults": { "custom_callback": "((void*)0)", "custom_callback_data": "((void*)0)" @@ -25031,7 +24505,6 @@ "argsoriginal": "(float local_y,float center_y_ratio=0.5f)", "call_args": "(local_y,center_y_ratio)", "cimguiname": "igSetScrollFromPosY", - "comment": "", "defaults": { "center_y_ratio": "0.5f" }, @@ -25055,7 +24528,6 @@ "argsoriginal": "(float center_y_ratio=0.5f)", "call_args": "(center_y_ratio)", "cimguiname": "igSetScrollHereY", - "comment": "", "defaults": { "center_y_ratio": "0.5f" }, @@ -25079,7 +24551,6 @@ "argsoriginal": "(float scroll_x)", "call_args": "(scroll_x)", "cimguiname": "igSetScrollX", - "comment": "", "defaults": [], "funcname": "SetScrollX", "namespace": "ImGui", @@ -25101,7 +24572,6 @@ "argsoriginal": "(float scroll_y)", "call_args": "(scroll_y)", "cimguiname": "igSetScrollY", - "comment": "", "defaults": [], "funcname": "SetScrollY", "namespace": "ImGui", @@ -25123,7 +24593,6 @@ "argsoriginal": "(ImGuiStorage* storage)", "call_args": "(storage)", "cimguiname": "igSetStateStorage", - "comment": "", "defaults": [], "funcname": "SetStateStorage", "namespace": "ImGui", @@ -25145,7 +24614,6 @@ "argsoriginal": "(const char* tab_or_docked_window_label)", "call_args": "(tab_or_docked_window_label)", "cimguiname": "igSetTabItemClosed", - "comment": "", "defaults": [], "funcname": "SetTabItemClosed", "namespace": "ImGui", @@ -25171,7 +24639,6 @@ "argsoriginal": "(const char* fmt,...)", "call_args": "(fmt,...)", "cimguiname": "igSetTooltip", - "comment": "", "defaults": [], "funcname": "SetTooltip", "isvararg": "...)", @@ -25198,7 +24665,6 @@ "argsoriginal": "(const char* fmt,va_list args)", "call_args": "(fmt,args)", "cimguiname": "igSetTooltipV", - "comment": "", "defaults": [], "funcname": "SetTooltipV", "namespace": "ImGui", @@ -25224,7 +24690,6 @@ "argsoriginal": "(bool collapsed,ImGuiCond cond=0)", "call_args": "(collapsed,cond)", "cimguiname": "igSetWindowCollapsed", - "comment": "", "defaults": { "cond": "0" }, @@ -25254,7 +24719,6 @@ "argsoriginal": "(const char* name,bool collapsed,ImGuiCond cond=0)", "call_args": "(name,collapsed,cond)", "cimguiname": "igSetWindowCollapsed", - "comment": "", "defaults": { "cond": "0" }, @@ -25273,7 +24737,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igSetWindowFocus", - "comment": "", "defaults": [], "funcname": "SetWindowFocus", "namespace": "ImGui", @@ -25293,7 +24756,6 @@ "argsoriginal": "(const char* name)", "call_args": "(name)", "cimguiname": "igSetWindowFocus", - "comment": "", "defaults": [], "funcname": "SetWindowFocus", "namespace": "ImGui", @@ -25315,7 +24777,6 @@ "argsoriginal": "(float scale)", "call_args": "(scale)", "cimguiname": "igSetWindowFontScale", - "comment": "", "defaults": [], "funcname": "SetWindowFontScale", "namespace": "ImGui", @@ -25341,7 +24802,6 @@ "argsoriginal": "(const ImVec2& pos,ImGuiCond cond=0)", "call_args": "(pos,cond)", "cimguiname": "igSetWindowPos", - "comment": "", "defaults": { "cond": "0" }, @@ -25371,7 +24831,6 @@ "argsoriginal": "(const char* name,const ImVec2& pos,ImGuiCond cond=0)", "call_args": "(name,pos,cond)", "cimguiname": "igSetWindowPos", - "comment": "", "defaults": { "cond": "0" }, @@ -25399,7 +24858,6 @@ "argsoriginal": "(const ImVec2& size,ImGuiCond cond=0)", "call_args": "(size,cond)", "cimguiname": "igSetWindowSize", - "comment": "", "defaults": { "cond": "0" }, @@ -25429,7 +24887,6 @@ "argsoriginal": "(const char* name,const ImVec2& size,ImGuiCond cond=0)", "call_args": "(name,size,cond)", "cimguiname": "igSetWindowSize", - "comment": "", "defaults": { "cond": "0" }, @@ -25453,7 +24910,6 @@ "argsoriginal": "(bool* p_open=((void*)0))", "call_args": "(p_open)", "cimguiname": "igShowAboutWindow", - "comment": "", "defaults": { "p_open": "((void*)0)" }, @@ -25477,7 +24933,6 @@ "argsoriginal": "(bool* p_open=((void*)0))", "call_args": "(p_open)", "cimguiname": "igShowDemoWindow", - "comment": "", "defaults": { "p_open": "((void*)0)" }, @@ -25501,7 +24956,6 @@ "argsoriginal": "(const char* label)", "call_args": "(label)", "cimguiname": "igShowFontSelector", - "comment": "", "defaults": [], "funcname": "ShowFontSelector", "namespace": "ImGui", @@ -25523,7 +24977,6 @@ "argsoriginal": "(bool* p_open=((void*)0))", "call_args": "(p_open)", "cimguiname": "igShowMetricsWindow", - "comment": "", "defaults": { "p_open": "((void*)0)" }, @@ -25547,7 +25000,6 @@ "argsoriginal": "(ImGuiStyle* ref=((void*)0))", "call_args": "(ref)", "cimguiname": "igShowStyleEditor", - "comment": "", "defaults": { "ref": "((void*)0)" }, @@ -25571,7 +25023,6 @@ "argsoriginal": "(const char* label)", "call_args": "(label)", "cimguiname": "igShowStyleSelector", - "comment": "", "defaults": [], "funcname": "ShowStyleSelector", "namespace": "ImGui", @@ -25588,7 +25039,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igShowUserGuide", - "comment": "", "defaults": [], "funcname": "ShowUserGuide", "namespace": "ImGui", @@ -25626,7 +25076,6 @@ "argsoriginal": "(const char* label,float* v_rad,float v_degrees_min=-360.0f,float v_degrees_max=+360.0f,const char* format=\"%.0f deg\")", "call_args": "(label,v_rad,v_degrees_min,v_degrees_max,format)", "cimguiname": "igSliderAngle", - "comment": "", "defaults": { "format": "\"%.0f deg\"", "v_degrees_max": "+360.0f", @@ -25672,7 +25121,6 @@ "argsoriginal": "(const char* label,float* v,float v_min,float v_max,const char* format=\"%.3f\",float power=1.0f)", "call_args": "(label,v,v_min,v_max,format,power)", "cimguiname": "igSliderFloat", - "comment": "", "defaults": { "format": "\"%.3f\"", "power": "1.0f" @@ -25717,7 +25165,6 @@ "argsoriginal": "(const char* label,float v[2],float v_min,float v_max,const char* format=\"%.3f\",float power=1.0f)", "call_args": "(label,v,v_min,v_max,format,power)", "cimguiname": "igSliderFloat2", - "comment": "", "defaults": { "format": "\"%.3f\"", "power": "1.0f" @@ -25762,7 +25209,6 @@ "argsoriginal": "(const char* label,float v[3],float v_min,float v_max,const char* format=\"%.3f\",float power=1.0f)", "call_args": "(label,v,v_min,v_max,format,power)", "cimguiname": "igSliderFloat3", - "comment": "", "defaults": { "format": "\"%.3f\"", "power": "1.0f" @@ -25807,7 +25253,6 @@ "argsoriginal": "(const char* label,float v[4],float v_min,float v_max,const char* format=\"%.3f\",float power=1.0f)", "call_args": "(label,v,v_min,v_max,format,power)", "cimguiname": "igSliderFloat4", - "comment": "", "defaults": { "format": "\"%.3f\"", "power": "1.0f" @@ -25848,7 +25293,6 @@ "argsoriginal": "(const char* label,int* v,int v_min,int v_max,const char* format=\"%d\")", "call_args": "(label,v,v_min,v_max,format)", "cimguiname": "igSliderInt", - "comment": "", "defaults": { "format": "\"%d\"" }, @@ -25888,7 +25332,6 @@ "argsoriginal": "(const char* label,int v[2],int v_min,int v_max,const char* format=\"%d\")", "call_args": "(label,v,v_min,v_max,format)", "cimguiname": "igSliderInt2", - "comment": "", "defaults": { "format": "\"%d\"" }, @@ -25928,7 +25371,6 @@ "argsoriginal": "(const char* label,int v[3],int v_min,int v_max,const char* format=\"%d\")", "call_args": "(label,v,v_min,v_max,format)", "cimguiname": "igSliderInt3", - "comment": "", "defaults": { "format": "\"%d\"" }, @@ -25968,7 +25410,6 @@ "argsoriginal": "(const char* label,int v[4],int v_min,int v_max,const char* format=\"%d\")", "call_args": "(label,v,v_min,v_max,format)", "cimguiname": "igSliderInt4", - "comment": "", "defaults": { "format": "\"%d\"" }, @@ -26016,7 +25457,6 @@ "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,const void* v_min,const void* v_max,const char* format=((void*)0),float power=1.0f)", "call_args": "(label,data_type,v,v_min,v_max,format,power)", "cimguiname": "igSliderScalar", - "comment": "", "defaults": { "format": "((void*)0)", "power": "1.0f" @@ -26069,7 +25509,6 @@ "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,int components,const void* v_min,const void* v_max,const char* format=((void*)0),float power=1.0f)", "call_args": "(label,data_type,v,components,v_min,v_max,format,power)", "cimguiname": "igSliderScalarN", - "comment": "", "defaults": { "format": "((void*)0)", "power": "1.0f" @@ -26094,7 +25533,6 @@ "argsoriginal": "(const char* label)", "call_args": "(label)", "cimguiname": "igSmallButton", - "comment": "", "defaults": [], "funcname": "SmallButton", "namespace": "ImGui", @@ -26111,7 +25549,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igSpacing", - "comment": "", "defaults": [], "funcname": "Spacing", "namespace": "ImGui", @@ -26133,7 +25570,6 @@ "argsoriginal": "(ImGuiStyle* dst=((void*)0))", "call_args": "(dst)", "cimguiname": "igStyleColorsClassic", - "comment": "", "defaults": { "dst": "((void*)0)" }, @@ -26157,7 +25593,6 @@ "argsoriginal": "(ImGuiStyle* dst=((void*)0))", "call_args": "(dst)", "cimguiname": "igStyleColorsDark", - "comment": "", "defaults": { "dst": "((void*)0)" }, @@ -26181,7 +25616,6 @@ "argsoriginal": "(ImGuiStyle* dst=((void*)0))", "call_args": "(dst)", "cimguiname": "igStyleColorsLight", - "comment": "", "defaults": { "dst": "((void*)0)" }, @@ -26209,7 +25643,6 @@ "argsoriginal": "(const char* fmt,...)", "call_args": "(fmt,...)", "cimguiname": "igText", - "comment": "", "defaults": [], "funcname": "Text", "isvararg": "...)", @@ -26240,7 +25673,6 @@ "argsoriginal": "(const ImVec4& col,const char* fmt,...)", "call_args": "(col,fmt,...)", "cimguiname": "igTextColored", - "comment": "", "defaults": [], "funcname": "TextColored", "isvararg": "...)", @@ -26271,7 +25703,6 @@ "argsoriginal": "(const ImVec4& col,const char* fmt,va_list args)", "call_args": "(col,fmt,args)", "cimguiname": "igTextColoredV", - "comment": "", "defaults": [], "funcname": "TextColoredV", "namespace": "ImGui", @@ -26297,7 +25728,6 @@ "argsoriginal": "(const char* fmt,...)", "call_args": "(fmt,...)", "cimguiname": "igTextDisabled", - "comment": "", "defaults": [], "funcname": "TextDisabled", "isvararg": "...)", @@ -26324,7 +25754,6 @@ "argsoriginal": "(const char* fmt,va_list args)", "call_args": "(fmt,args)", "cimguiname": "igTextDisabledV", - "comment": "", "defaults": [], "funcname": "TextDisabledV", "namespace": "ImGui", @@ -26350,7 +25779,6 @@ "argsoriginal": "(const char* text,const char* text_end=((void*)0))", "call_args": "(text,text_end)", "cimguiname": "igTextUnformatted", - "comment": "", "defaults": { "text_end": "((void*)0)" }, @@ -26378,7 +25806,6 @@ "argsoriginal": "(const char* fmt,va_list args)", "call_args": "(fmt,args)", "cimguiname": "igTextV", - "comment": "", "defaults": [], "funcname": "TextV", "namespace": "ImGui", @@ -26404,7 +25831,6 @@ "argsoriginal": "(const char* fmt,...)", "call_args": "(fmt,...)", "cimguiname": "igTextWrapped", - "comment": "", "defaults": [], "funcname": "TextWrapped", "isvararg": "...)", @@ -26431,7 +25857,6 @@ "argsoriginal": "(const char* fmt,va_list args)", "call_args": "(fmt,args)", "cimguiname": "igTextWrappedV", - "comment": "", "defaults": [], "funcname": "TextWrappedV", "namespace": "ImGui", @@ -26448,7 +25873,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igTreeAdvanceToLabelPos", - "comment": "", "defaults": [], "funcname": "TreeAdvanceToLabelPos", "namespace": "ImGui", @@ -26470,7 +25894,6 @@ "argsoriginal": "(const char* label)", "call_args": "(label)", "cimguiname": "igTreeNode", - "comment": "", "defaults": [], "funcname": "TreeNode", "namespace": "ImGui", @@ -26498,7 +25921,6 @@ "argsoriginal": "(const char* str_id,const char* fmt,...)", "call_args": "(str_id,fmt,...)", "cimguiname": "igTreeNode", - "comment": "", "defaults": [], "funcname": "TreeNode", "isvararg": "...)", @@ -26527,7 +25949,6 @@ "argsoriginal": "(const void* ptr_id,const char* fmt,...)", "call_args": "(ptr_id,fmt,...)", "cimguiname": "igTreeNode", - "comment": "", "defaults": [], "funcname": "TreeNode", "isvararg": "...)", @@ -26554,7 +25975,6 @@ "argsoriginal": "(const char* label,ImGuiTreeNodeFlags flags=0)", "call_args": "(label,flags)", "cimguiname": "igTreeNodeEx", - "comment": "", "defaults": { "flags": "0" }, @@ -26588,7 +26008,6 @@ "argsoriginal": "(const char* str_id,ImGuiTreeNodeFlags flags,const char* fmt,...)", "call_args": "(str_id,flags,fmt,...)", "cimguiname": "igTreeNodeEx", - "comment": "", "defaults": [], "funcname": "TreeNodeEx", "isvararg": "...)", @@ -26621,7 +26040,6 @@ "argsoriginal": "(const void* ptr_id,ImGuiTreeNodeFlags flags,const char* fmt,...)", "call_args": "(ptr_id,flags,fmt,...)", "cimguiname": "igTreeNodeEx", - "comment": "", "defaults": [], "funcname": "TreeNodeEx", "isvararg": "...)", @@ -26656,7 +26074,6 @@ "argsoriginal": "(const char* str_id,ImGuiTreeNodeFlags flags,const char* fmt,va_list args)", "call_args": "(str_id,flags,fmt,args)", "cimguiname": "igTreeNodeExV", - "comment": "", "defaults": [], "funcname": "TreeNodeExV", "namespace": "ImGui", @@ -26688,7 +26105,6 @@ "argsoriginal": "(const void* ptr_id,ImGuiTreeNodeFlags flags,const char* fmt,va_list args)", "call_args": "(ptr_id,flags,fmt,args)", "cimguiname": "igTreeNodeExV", - "comment": "", "defaults": [], "funcname": "TreeNodeExV", "namespace": "ImGui", @@ -26718,7 +26134,6 @@ "argsoriginal": "(const char* str_id,const char* fmt,va_list args)", "call_args": "(str_id,fmt,args)", "cimguiname": "igTreeNodeV", - "comment": "", "defaults": [], "funcname": "TreeNodeV", "namespace": "ImGui", @@ -26746,7 +26161,6 @@ "argsoriginal": "(const void* ptr_id,const char* fmt,va_list args)", "call_args": "(ptr_id,fmt,args)", "cimguiname": "igTreeNodeV", - "comment": "", "defaults": [], "funcname": "TreeNodeV", "namespace": "ImGui", @@ -26763,7 +26177,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igTreePop", - "comment": "", "defaults": [], "funcname": "TreePop", "namespace": "ImGui", @@ -26785,7 +26198,6 @@ "argsoriginal": "(const char* str_id)", "call_args": "(str_id)", "cimguiname": "igTreePush", - "comment": "", "defaults": [], "funcname": "TreePush", "namespace": "ImGui", @@ -26805,7 +26217,6 @@ "argsoriginal": "(const void* ptr_id=((void*)0))", "call_args": "(ptr_id)", "cimguiname": "igTreePush", - "comment": "", "defaults": { "ptr_id": "((void*)0)" }, @@ -26829,7 +26240,6 @@ "argsoriginal": "(float indent_w=0.0f)", "call_args": "(indent_w)", "cimguiname": "igUnindent", - "comment": "", "defaults": { "indent_w": "0.0f" }, @@ -26877,7 +26287,6 @@ "argsoriginal": "(const char* label,const ImVec2& size,float* v,float v_min,float v_max,const char* format=\"%.3f\",float power=1.0f)", "call_args": "(label,size,v,v_min,v_max,format,power)", "cimguiname": "igVSliderFloat", - "comment": "", "defaults": { "format": "\"%.3f\"", "power": "1.0f" @@ -26922,7 +26331,6 @@ "argsoriginal": "(const char* label,const ImVec2& size,int* v,int v_min,int v_max,const char* format=\"%d\")", "call_args": "(label,size,v,v_min,v_max,format)", "cimguiname": "igVSliderInt", - "comment": "", "defaults": { "format": "\"%d\"" }, @@ -26974,7 +26382,6 @@ "argsoriginal": "(const char* label,const ImVec2& size,ImGuiDataType data_type,void* v,const void* v_min,const void* v_max,const char* format=((void*)0),float power=1.0f)", "call_args": "(label,size,data_type,v,v_min,v_max,format,power)", "cimguiname": "igVSliderScalar", - "comment": "", "defaults": { "format": "((void*)0)", "power": "1.0f" @@ -27003,7 +26410,6 @@ "argsoriginal": "(const char* prefix,bool b)", "call_args": "(prefix,b)", "cimguiname": "igValue", - "comment": "", "defaults": [], "funcname": "Value", "namespace": "ImGui", @@ -27027,7 +26433,6 @@ "argsoriginal": "(const char* prefix,int v)", "call_args": "(prefix,v)", "cimguiname": "igValue", - "comment": "", "defaults": [], "funcname": "Value", "namespace": "ImGui", @@ -27051,7 +26456,6 @@ "argsoriginal": "(const char* prefix,unsigned int v)", "call_args": "(prefix,v)", "cimguiname": "igValue", - "comment": "", "defaults": [], "funcname": "Value", "namespace": "ImGui", @@ -27079,7 +26483,6 @@ "argsoriginal": "(const char* prefix,float v,const char* float_format=((void*)0))", "call_args": "(prefix,v,float_format)", "cimguiname": "igValue", - "comment": "", "defaults": { "float_format": "((void*)0)" }, diff --git a/generator/output/definitions.lua b/generator/output/definitions.lua index d192cd4..0b4caab 100644 --- a/generator/output/definitions.lua +++ b/generator/output/definitions.lua @@ -6,7 +6,6 @@ defs["CustomRect_CustomRect"][1]["argsT"] = {} defs["CustomRect_CustomRect"][1]["argsoriginal"] = "()" defs["CustomRect_CustomRect"][1]["call_args"] = "()" defs["CustomRect_CustomRect"][1]["cimguiname"] = "CustomRect_CustomRect" -defs["CustomRect_CustomRect"][1]["comment"] = "" defs["CustomRect_CustomRect"][1]["constructor"] = true defs["CustomRect_CustomRect"][1]["defaults"] = {} defs["CustomRect_CustomRect"][1]["funcname"] = "CustomRect" @@ -24,7 +23,6 @@ defs["CustomRect_IsPacked"][1]["argsT"][1]["type"] = "CustomRect*" defs["CustomRect_IsPacked"][1]["argsoriginal"] = "()" defs["CustomRect_IsPacked"][1]["call_args"] = "()" defs["CustomRect_IsPacked"][1]["cimguiname"] = "CustomRect_IsPacked" -defs["CustomRect_IsPacked"][1]["comment"] = "" defs["CustomRect_IsPacked"][1]["defaults"] = {} defs["CustomRect_IsPacked"][1]["funcname"] = "IsPacked" defs["CustomRect_IsPacked"][1]["ov_cimguiname"] = "CustomRect_IsPacked" @@ -70,7 +68,6 @@ defs["ImColor_HSV"][1]["argsT"][5]["type"] = "float" defs["ImColor_HSV"][1]["argsoriginal"] = "(float h,float s,float v,float a=1.0f)" defs["ImColor_HSV"][1]["call_args"] = "(h,s,v,a)" defs["ImColor_HSV"][1]["cimguiname"] = "ImColor_HSV" -defs["ImColor_HSV"][1]["comment"] = "" defs["ImColor_HSV"][1]["defaults"] = {} defs["ImColor_HSV"][1]["defaults"]["a"] = "1.0f" defs["ImColor_HSV"][1]["funcname"] = "HSV" @@ -102,7 +99,6 @@ defs["ImColor_HSV"][2]["argsT"][6]["type"] = "float" defs["ImColor_HSV"][2]["argsoriginal"] = "(float h,float s,float v,float a=1.0f)" defs["ImColor_HSV"][2]["call_args"] = "(h,s,v,a)" defs["ImColor_HSV"][2]["cimguiname"] = "ImColor_HSV" -defs["ImColor_HSV"][2]["comment"] = "" defs["ImColor_HSV"][2]["defaults"] = defs["ImColor_HSV"][1]["defaults"] defs["ImColor_HSV"][2]["funcname"] = "HSV" defs["ImColor_HSV"][2]["nonUDT"] = 1 @@ -131,7 +127,6 @@ defs["ImColor_HSV"][3]["argsT"][5]["type"] = "float" defs["ImColor_HSV"][3]["argsoriginal"] = "(float h,float s,float v,float a=1.0f)" defs["ImColor_HSV"][3]["call_args"] = "(h,s,v,a)" defs["ImColor_HSV"][3]["cimguiname"] = "ImColor_HSV" -defs["ImColor_HSV"][3]["comment"] = "" defs["ImColor_HSV"][3]["defaults"] = defs["ImColor_HSV"][1]["defaults"] defs["ImColor_HSV"][3]["funcname"] = "HSV" defs["ImColor_HSV"][3]["nonUDT"] = 2 @@ -150,7 +145,6 @@ defs["ImColor_ImColor"][1]["argsT"] = {} defs["ImColor_ImColor"][1]["argsoriginal"] = "()" defs["ImColor_ImColor"][1]["call_args"] = "()" defs["ImColor_ImColor"][1]["cimguiname"] = "ImColor_ImColor" -defs["ImColor_ImColor"][1]["comment"] = "" defs["ImColor_ImColor"][1]["constructor"] = true defs["ImColor_ImColor"][1]["defaults"] = {} defs["ImColor_ImColor"][1]["funcname"] = "ImColor" @@ -175,7 +169,6 @@ defs["ImColor_ImColor"][2]["argsT"][4]["type"] = "int" defs["ImColor_ImColor"][2]["argsoriginal"] = "(int r,int g,int b,int a=255)" defs["ImColor_ImColor"][2]["call_args"] = "(r,g,b,a)" defs["ImColor_ImColor"][2]["cimguiname"] = "ImColor_ImColor" -defs["ImColor_ImColor"][2]["comment"] = "" defs["ImColor_ImColor"][2]["constructor"] = true defs["ImColor_ImColor"][2]["defaults"] = {} defs["ImColor_ImColor"][2]["defaults"]["a"] = "255" @@ -192,7 +185,6 @@ defs["ImColor_ImColor"][3]["argsT"][1]["type"] = "ImU32" defs["ImColor_ImColor"][3]["argsoriginal"] = "(ImU32 rgba)" defs["ImColor_ImColor"][3]["call_args"] = "(rgba)" defs["ImColor_ImColor"][3]["cimguiname"] = "ImColor_ImColor" -defs["ImColor_ImColor"][3]["comment"] = "" defs["ImColor_ImColor"][3]["constructor"] = true defs["ImColor_ImColor"][3]["defaults"] = {} defs["ImColor_ImColor"][3]["funcname"] = "ImColor" @@ -217,7 +209,6 @@ defs["ImColor_ImColor"][4]["argsT"][4]["type"] = "float" defs["ImColor_ImColor"][4]["argsoriginal"] = "(float r,float g,float b,float a=1.0f)" defs["ImColor_ImColor"][4]["call_args"] = "(r,g,b,a)" defs["ImColor_ImColor"][4]["cimguiname"] = "ImColor_ImColor" -defs["ImColor_ImColor"][4]["comment"] = "" defs["ImColor_ImColor"][4]["constructor"] = true defs["ImColor_ImColor"][4]["defaults"] = {} defs["ImColor_ImColor"][4]["defaults"]["a"] = "1.0f" @@ -234,7 +225,6 @@ defs["ImColor_ImColor"][5]["argsT"][1]["type"] = "const ImVec4" defs["ImColor_ImColor"][5]["argsoriginal"] = "(const ImVec4& col)" defs["ImColor_ImColor"][5]["call_args"] = "(col)" defs["ImColor_ImColor"][5]["cimguiname"] = "ImColor_ImColor" -defs["ImColor_ImColor"][5]["comment"] = "" defs["ImColor_ImColor"][5]["constructor"] = true defs["ImColor_ImColor"][5]["defaults"] = {} defs["ImColor_ImColor"][5]["funcname"] = "ImColor" @@ -268,7 +258,6 @@ defs["ImColor_SetHSV"][1]["argsT"][5]["type"] = "float" defs["ImColor_SetHSV"][1]["argsoriginal"] = "(float h,float s,float v,float a=1.0f)" defs["ImColor_SetHSV"][1]["call_args"] = "(h,s,v,a)" defs["ImColor_SetHSV"][1]["cimguiname"] = "ImColor_SetHSV" -defs["ImColor_SetHSV"][1]["comment"] = "" defs["ImColor_SetHSV"][1]["defaults"] = {} defs["ImColor_SetHSV"][1]["defaults"]["a"] = "1.0f" defs["ImColor_SetHSV"][1]["funcname"] = "SetHSV" @@ -300,7 +289,6 @@ defs["ImDrawCmd_ImDrawCmd"][1]["argsT"] = {} defs["ImDrawCmd_ImDrawCmd"][1]["argsoriginal"] = "()" defs["ImDrawCmd_ImDrawCmd"][1]["call_args"] = "()" defs["ImDrawCmd_ImDrawCmd"][1]["cimguiname"] = "ImDrawCmd_ImDrawCmd" -defs["ImDrawCmd_ImDrawCmd"][1]["comment"] = "" defs["ImDrawCmd_ImDrawCmd"][1]["constructor"] = true defs["ImDrawCmd_ImDrawCmd"][1]["defaults"] = {} defs["ImDrawCmd_ImDrawCmd"][1]["funcname"] = "ImDrawCmd" @@ -334,7 +322,6 @@ defs["ImDrawData_Clear"][1]["argsT"][1]["type"] = "ImDrawData*" defs["ImDrawData_Clear"][1]["argsoriginal"] = "()" defs["ImDrawData_Clear"][1]["call_args"] = "()" defs["ImDrawData_Clear"][1]["cimguiname"] = "ImDrawData_Clear" -defs["ImDrawData_Clear"][1]["comment"] = "" defs["ImDrawData_Clear"][1]["defaults"] = {} defs["ImDrawData_Clear"][1]["funcname"] = "Clear" defs["ImDrawData_Clear"][1]["ov_cimguiname"] = "ImDrawData_Clear" @@ -352,7 +339,6 @@ defs["ImDrawData_DeIndexAllBuffers"][1]["argsT"][1]["type"] = "ImDrawData*" defs["ImDrawData_DeIndexAllBuffers"][1]["argsoriginal"] = "()" defs["ImDrawData_DeIndexAllBuffers"][1]["call_args"] = "()" defs["ImDrawData_DeIndexAllBuffers"][1]["cimguiname"] = "ImDrawData_DeIndexAllBuffers" -defs["ImDrawData_DeIndexAllBuffers"][1]["comment"] = "" defs["ImDrawData_DeIndexAllBuffers"][1]["defaults"] = {} defs["ImDrawData_DeIndexAllBuffers"][1]["funcname"] = "DeIndexAllBuffers" defs["ImDrawData_DeIndexAllBuffers"][1]["ov_cimguiname"] = "ImDrawData_DeIndexAllBuffers" @@ -367,7 +353,6 @@ defs["ImDrawData_ImDrawData"][1]["argsT"] = {} defs["ImDrawData_ImDrawData"][1]["argsoriginal"] = "()" defs["ImDrawData_ImDrawData"][1]["call_args"] = "()" defs["ImDrawData_ImDrawData"][1]["cimguiname"] = "ImDrawData_ImDrawData" -defs["ImDrawData_ImDrawData"][1]["comment"] = "" defs["ImDrawData_ImDrawData"][1]["constructor"] = true defs["ImDrawData_ImDrawData"][1]["defaults"] = {} defs["ImDrawData_ImDrawData"][1]["funcname"] = "ImDrawData" @@ -388,7 +373,6 @@ defs["ImDrawData_ScaleClipRects"][1]["argsT"][2]["type"] = "const ImVec2" defs["ImDrawData_ScaleClipRects"][1]["argsoriginal"] = "(const ImVec2& sc)" defs["ImDrawData_ScaleClipRects"][1]["call_args"] = "(sc)" defs["ImDrawData_ScaleClipRects"][1]["cimguiname"] = "ImDrawData_ScaleClipRects" -defs["ImDrawData_ScaleClipRects"][1]["comment"] = "" defs["ImDrawData_ScaleClipRects"][1]["defaults"] = {} defs["ImDrawData_ScaleClipRects"][1]["funcname"] = "ScaleClipRects" defs["ImDrawData_ScaleClipRects"][1]["ov_cimguiname"] = "ImDrawData_ScaleClipRects" @@ -443,7 +427,6 @@ defs["ImDrawList_AddBezierCurve"][1]["argsT"][8]["type"] = "int" defs["ImDrawList_AddBezierCurve"][1]["argsoriginal"] = "(const ImVec2& pos0,const ImVec2& cp0,const ImVec2& cp1,const ImVec2& pos1,ImU32 col,float thickness,int num_segments=0)" defs["ImDrawList_AddBezierCurve"][1]["call_args"] = "(pos0,cp0,cp1,pos1,col,thickness,num_segments)" defs["ImDrawList_AddBezierCurve"][1]["cimguiname"] = "ImDrawList_AddBezierCurve" -defs["ImDrawList_AddBezierCurve"][1]["comment"] = "" defs["ImDrawList_AddBezierCurve"][1]["defaults"] = {} defs["ImDrawList_AddBezierCurve"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddBezierCurve"][1]["funcname"] = "AddBezierCurve" @@ -468,7 +451,6 @@ defs["ImDrawList_AddCallback"][1]["argsT"][3]["type"] = "void*" defs["ImDrawList_AddCallback"][1]["argsoriginal"] = "(ImDrawCallback callback,void* callback_data)" defs["ImDrawList_AddCallback"][1]["call_args"] = "(callback,callback_data)" defs["ImDrawList_AddCallback"][1]["cimguiname"] = "ImDrawList_AddCallback" -defs["ImDrawList_AddCallback"][1]["comment"] = "" defs["ImDrawList_AddCallback"][1]["defaults"] = {} defs["ImDrawList_AddCallback"][1]["funcname"] = "AddCallback" defs["ImDrawList_AddCallback"][1]["ov_cimguiname"] = "ImDrawList_AddCallback" @@ -501,7 +483,6 @@ defs["ImDrawList_AddCircle"][1]["argsT"][6]["type"] = "float" defs["ImDrawList_AddCircle"][1]["argsoriginal"] = "(const ImVec2& centre,float radius,ImU32 col,int num_segments=12,float thickness=1.0f)" defs["ImDrawList_AddCircle"][1]["call_args"] = "(centre,radius,col,num_segments,thickness)" defs["ImDrawList_AddCircle"][1]["cimguiname"] = "ImDrawList_AddCircle" -defs["ImDrawList_AddCircle"][1]["comment"] = "" defs["ImDrawList_AddCircle"][1]["defaults"] = {} defs["ImDrawList_AddCircle"][1]["defaults"]["num_segments"] = "12" defs["ImDrawList_AddCircle"][1]["defaults"]["thickness"] = "1.0f" @@ -533,7 +514,6 @@ defs["ImDrawList_AddCircleFilled"][1]["argsT"][5]["type"] = "int" defs["ImDrawList_AddCircleFilled"][1]["argsoriginal"] = "(const ImVec2& centre,float radius,ImU32 col,int num_segments=12)" defs["ImDrawList_AddCircleFilled"][1]["call_args"] = "(centre,radius,col,num_segments)" defs["ImDrawList_AddCircleFilled"][1]["cimguiname"] = "ImDrawList_AddCircleFilled" -defs["ImDrawList_AddCircleFilled"][1]["comment"] = "" defs["ImDrawList_AddCircleFilled"][1]["defaults"] = {} defs["ImDrawList_AddCircleFilled"][1]["defaults"]["num_segments"] = "12" defs["ImDrawList_AddCircleFilled"][1]["funcname"] = "AddCircleFilled" @@ -561,7 +541,6 @@ defs["ImDrawList_AddConvexPolyFilled"][1]["argsT"][4]["type"] = "ImU32" defs["ImDrawList_AddConvexPolyFilled"][1]["argsoriginal"] = "(const ImVec2* points,const int num_points,ImU32 col)" defs["ImDrawList_AddConvexPolyFilled"][1]["call_args"] = "(points,num_points,col)" defs["ImDrawList_AddConvexPolyFilled"][1]["cimguiname"] = "ImDrawList_AddConvexPolyFilled" -defs["ImDrawList_AddConvexPolyFilled"][1]["comment"] = "" defs["ImDrawList_AddConvexPolyFilled"][1]["defaults"] = {} defs["ImDrawList_AddConvexPolyFilled"][1]["funcname"] = "AddConvexPolyFilled" defs["ImDrawList_AddConvexPolyFilled"][1]["ov_cimguiname"] = "ImDrawList_AddConvexPolyFilled" @@ -579,7 +558,6 @@ defs["ImDrawList_AddDrawCmd"][1]["argsT"][1]["type"] = "ImDrawList*" defs["ImDrawList_AddDrawCmd"][1]["argsoriginal"] = "()" defs["ImDrawList_AddDrawCmd"][1]["call_args"] = "()" defs["ImDrawList_AddDrawCmd"][1]["cimguiname"] = "ImDrawList_AddDrawCmd" -defs["ImDrawList_AddDrawCmd"][1]["comment"] = "" defs["ImDrawList_AddDrawCmd"][1]["defaults"] = {} defs["ImDrawList_AddDrawCmd"][1]["funcname"] = "AddDrawCmd" defs["ImDrawList_AddDrawCmd"][1]["ov_cimguiname"] = "ImDrawList_AddDrawCmd" @@ -615,7 +593,6 @@ defs["ImDrawList_AddImage"][1]["argsT"][7]["type"] = "ImU32" defs["ImDrawList_AddImage"][1]["argsoriginal"] = "(ImTextureID user_texture_id,const ImVec2& a,const ImVec2& b,const ImVec2& uv_a=ImVec2(0,0),const ImVec2& uv_b=ImVec2(1,1),ImU32 col=0xFFFFFFFF)" defs["ImDrawList_AddImage"][1]["call_args"] = "(user_texture_id,a,b,uv_a,uv_b,col)" defs["ImDrawList_AddImage"][1]["cimguiname"] = "ImDrawList_AddImage" -defs["ImDrawList_AddImage"][1]["comment"] = "" defs["ImDrawList_AddImage"][1]["defaults"] = {} defs["ImDrawList_AddImage"][1]["defaults"]["col"] = "0xFFFFFFFF" defs["ImDrawList_AddImage"][1]["defaults"]["uv_a"] = "ImVec2(0,0)" @@ -666,7 +643,6 @@ defs["ImDrawList_AddImageQuad"][1]["argsT"][11]["type"] = "ImU32" defs["ImDrawList_AddImageQuad"][1]["argsoriginal"] = "(ImTextureID user_texture_id,const ImVec2& a,const ImVec2& b,const ImVec2& c,const ImVec2& d,const ImVec2& uv_a=ImVec2(0,0),const ImVec2& uv_b=ImVec2(1,0),const ImVec2& uv_c=ImVec2(1,1),const ImVec2& uv_d=ImVec2(0,1),ImU32 col=0xFFFFFFFF)" defs["ImDrawList_AddImageQuad"][1]["call_args"] = "(user_texture_id,a,b,c,d,uv_a,uv_b,uv_c,uv_d,col)" defs["ImDrawList_AddImageQuad"][1]["cimguiname"] = "ImDrawList_AddImageQuad" -defs["ImDrawList_AddImageQuad"][1]["comment"] = "" defs["ImDrawList_AddImageQuad"][1]["defaults"] = {} defs["ImDrawList_AddImageQuad"][1]["defaults"]["col"] = "0xFFFFFFFF" defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv_a"] = "ImVec2(0,0)" @@ -713,7 +689,6 @@ defs["ImDrawList_AddImageRounded"][1]["argsT"][9]["type"] = "int" defs["ImDrawList_AddImageRounded"][1]["argsoriginal"] = "(ImTextureID user_texture_id,const ImVec2& a,const ImVec2& b,const ImVec2& uv_a,const ImVec2& uv_b,ImU32 col,float rounding,int rounding_corners=ImDrawCornerFlags_All)" defs["ImDrawList_AddImageRounded"][1]["call_args"] = "(user_texture_id,a,b,uv_a,uv_b,col,rounding,rounding_corners)" defs["ImDrawList_AddImageRounded"][1]["cimguiname"] = "ImDrawList_AddImageRounded" -defs["ImDrawList_AddImageRounded"][1]["comment"] = "" defs["ImDrawList_AddImageRounded"][1]["defaults"] = {} defs["ImDrawList_AddImageRounded"][1]["defaults"]["rounding_corners"] = "ImDrawCornerFlags_All" defs["ImDrawList_AddImageRounded"][1]["funcname"] = "AddImageRounded" @@ -744,7 +719,6 @@ defs["ImDrawList_AddLine"][1]["argsT"][5]["type"] = "float" defs["ImDrawList_AddLine"][1]["argsoriginal"] = "(const ImVec2& a,const ImVec2& b,ImU32 col,float thickness=1.0f)" defs["ImDrawList_AddLine"][1]["call_args"] = "(a,b,col,thickness)" defs["ImDrawList_AddLine"][1]["cimguiname"] = "ImDrawList_AddLine" -defs["ImDrawList_AddLine"][1]["comment"] = "" defs["ImDrawList_AddLine"][1]["defaults"] = {} defs["ImDrawList_AddLine"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddLine"][1]["funcname"] = "AddLine" @@ -778,7 +752,6 @@ defs["ImDrawList_AddPolyline"][1]["argsT"][6]["type"] = "float" defs["ImDrawList_AddPolyline"][1]["argsoriginal"] = "(const ImVec2* points,const int num_points,ImU32 col,bool closed,float thickness)" defs["ImDrawList_AddPolyline"][1]["call_args"] = "(points,num_points,col,closed,thickness)" defs["ImDrawList_AddPolyline"][1]["cimguiname"] = "ImDrawList_AddPolyline" -defs["ImDrawList_AddPolyline"][1]["comment"] = "" defs["ImDrawList_AddPolyline"][1]["defaults"] = {} defs["ImDrawList_AddPolyline"][1]["funcname"] = "AddPolyline" defs["ImDrawList_AddPolyline"][1]["ov_cimguiname"] = "ImDrawList_AddPolyline" @@ -814,7 +787,6 @@ defs["ImDrawList_AddQuad"][1]["argsT"][7]["type"] = "float" defs["ImDrawList_AddQuad"][1]["argsoriginal"] = "(const ImVec2& a,const ImVec2& b,const ImVec2& c,const ImVec2& d,ImU32 col,float thickness=1.0f)" defs["ImDrawList_AddQuad"][1]["call_args"] = "(a,b,c,d,col,thickness)" defs["ImDrawList_AddQuad"][1]["cimguiname"] = "ImDrawList_AddQuad" -defs["ImDrawList_AddQuad"][1]["comment"] = "" defs["ImDrawList_AddQuad"][1]["defaults"] = {} defs["ImDrawList_AddQuad"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddQuad"][1]["funcname"] = "AddQuad" @@ -848,7 +820,6 @@ defs["ImDrawList_AddQuadFilled"][1]["argsT"][6]["type"] = "ImU32" defs["ImDrawList_AddQuadFilled"][1]["argsoriginal"] = "(const ImVec2& a,const ImVec2& b,const ImVec2& c,const ImVec2& d,ImU32 col)" defs["ImDrawList_AddQuadFilled"][1]["call_args"] = "(a,b,c,d,col)" defs["ImDrawList_AddQuadFilled"][1]["cimguiname"] = "ImDrawList_AddQuadFilled" -defs["ImDrawList_AddQuadFilled"][1]["comment"] = "" defs["ImDrawList_AddQuadFilled"][1]["defaults"] = {} defs["ImDrawList_AddQuadFilled"][1]["funcname"] = "AddQuadFilled" defs["ImDrawList_AddQuadFilled"][1]["ov_cimguiname"] = "ImDrawList_AddQuadFilled" @@ -884,7 +855,6 @@ defs["ImDrawList_AddRect"][1]["argsT"][7]["type"] = "float" defs["ImDrawList_AddRect"][1]["argsoriginal"] = "(const ImVec2& a,const ImVec2& b,ImU32 col,float rounding=0.0f,int rounding_corners_flags=ImDrawCornerFlags_All,float thickness=1.0f)" defs["ImDrawList_AddRect"][1]["call_args"] = "(a,b,col,rounding,rounding_corners_flags,thickness)" defs["ImDrawList_AddRect"][1]["cimguiname"] = "ImDrawList_AddRect" -defs["ImDrawList_AddRect"][1]["comment"] = "" defs["ImDrawList_AddRect"][1]["defaults"] = {} defs["ImDrawList_AddRect"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_AddRect"][1]["defaults"]["rounding_corners_flags"] = "ImDrawCornerFlags_All" @@ -920,7 +890,6 @@ defs["ImDrawList_AddRectFilled"][1]["argsT"][6]["type"] = "int" defs["ImDrawList_AddRectFilled"][1]["argsoriginal"] = "(const ImVec2& a,const ImVec2& b,ImU32 col,float rounding=0.0f,int rounding_corners_flags=ImDrawCornerFlags_All)" defs["ImDrawList_AddRectFilled"][1]["call_args"] = "(a,b,col,rounding,rounding_corners_flags)" defs["ImDrawList_AddRectFilled"][1]["cimguiname"] = "ImDrawList_AddRectFilled" -defs["ImDrawList_AddRectFilled"][1]["comment"] = "" defs["ImDrawList_AddRectFilled"][1]["defaults"] = {} defs["ImDrawList_AddRectFilled"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_AddRectFilled"][1]["defaults"]["rounding_corners_flags"] = "ImDrawCornerFlags_All" @@ -958,7 +927,6 @@ defs["ImDrawList_AddRectFilledMultiColor"][1]["argsT"][7]["type"] = "ImU32" defs["ImDrawList_AddRectFilledMultiColor"][1]["argsoriginal"] = "(const ImVec2& a,const ImVec2& b,ImU32 col_upr_left,ImU32 col_upr_right,ImU32 col_bot_right,ImU32 col_bot_left)" defs["ImDrawList_AddRectFilledMultiColor"][1]["call_args"] = "(a,b,col_upr_left,col_upr_right,col_bot_right,col_bot_left)" defs["ImDrawList_AddRectFilledMultiColor"][1]["cimguiname"] = "ImDrawList_AddRectFilledMultiColor" -defs["ImDrawList_AddRectFilledMultiColor"][1]["comment"] = "" defs["ImDrawList_AddRectFilledMultiColor"][1]["defaults"] = {} defs["ImDrawList_AddRectFilledMultiColor"][1]["funcname"] = "AddRectFilledMultiColor" defs["ImDrawList_AddRectFilledMultiColor"][1]["ov_cimguiname"] = "ImDrawList_AddRectFilledMultiColor" @@ -988,7 +956,6 @@ defs["ImDrawList_AddText"][1]["argsT"][5]["type"] = "const char*" defs["ImDrawList_AddText"][1]["argsoriginal"] = "(const ImVec2& pos,ImU32 col,const char* text_begin,const char* text_end=((void*)0))" defs["ImDrawList_AddText"][1]["call_args"] = "(pos,col,text_begin,text_end)" defs["ImDrawList_AddText"][1]["cimguiname"] = "ImDrawList_AddText" -defs["ImDrawList_AddText"][1]["comment"] = "" defs["ImDrawList_AddText"][1]["defaults"] = {} defs["ImDrawList_AddText"][1]["defaults"]["text_end"] = "((void*)0)" defs["ImDrawList_AddText"][1]["funcname"] = "AddText" @@ -1029,7 +996,6 @@ defs["ImDrawList_AddText"][2]["argsT"][9]["type"] = "const ImVec4*" defs["ImDrawList_AddText"][2]["argsoriginal"] = "(const ImFont* font,float font_size,const ImVec2& pos,ImU32 col,const char* text_begin,const char* text_end=((void*)0),float wrap_width=0.0f,const ImVec4* cpu_fine_clip_rect=((void*)0))" defs["ImDrawList_AddText"][2]["call_args"] = "(font,font_size,pos,col,text_begin,text_end,wrap_width,cpu_fine_clip_rect)" defs["ImDrawList_AddText"][2]["cimguiname"] = "ImDrawList_AddText" -defs["ImDrawList_AddText"][2]["comment"] = "" defs["ImDrawList_AddText"][2]["defaults"] = {} defs["ImDrawList_AddText"][2]["defaults"]["cpu_fine_clip_rect"] = "((void*)0)" defs["ImDrawList_AddText"][2]["defaults"]["text_end"] = "((void*)0)" @@ -1066,7 +1032,6 @@ defs["ImDrawList_AddTriangle"][1]["argsT"][6]["type"] = "float" defs["ImDrawList_AddTriangle"][1]["argsoriginal"] = "(const ImVec2& a,const ImVec2& b,const ImVec2& c,ImU32 col,float thickness=1.0f)" defs["ImDrawList_AddTriangle"][1]["call_args"] = "(a,b,c,col,thickness)" defs["ImDrawList_AddTriangle"][1]["cimguiname"] = "ImDrawList_AddTriangle" -defs["ImDrawList_AddTriangle"][1]["comment"] = "" defs["ImDrawList_AddTriangle"][1]["defaults"] = {} defs["ImDrawList_AddTriangle"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddTriangle"][1]["funcname"] = "AddTriangle" @@ -1097,7 +1062,6 @@ defs["ImDrawList_AddTriangleFilled"][1]["argsT"][5]["type"] = "ImU32" defs["ImDrawList_AddTriangleFilled"][1]["argsoriginal"] = "(const ImVec2& a,const ImVec2& b,const ImVec2& c,ImU32 col)" defs["ImDrawList_AddTriangleFilled"][1]["call_args"] = "(a,b,c,col)" defs["ImDrawList_AddTriangleFilled"][1]["cimguiname"] = "ImDrawList_AddTriangleFilled" -defs["ImDrawList_AddTriangleFilled"][1]["comment"] = "" defs["ImDrawList_AddTriangleFilled"][1]["defaults"] = {} defs["ImDrawList_AddTriangleFilled"][1]["funcname"] = "AddTriangleFilled" defs["ImDrawList_AddTriangleFilled"][1]["ov_cimguiname"] = "ImDrawList_AddTriangleFilled" @@ -1115,7 +1079,6 @@ defs["ImDrawList_ChannelsMerge"][1]["argsT"][1]["type"] = "ImDrawList*" defs["ImDrawList_ChannelsMerge"][1]["argsoriginal"] = "()" defs["ImDrawList_ChannelsMerge"][1]["call_args"] = "()" defs["ImDrawList_ChannelsMerge"][1]["cimguiname"] = "ImDrawList_ChannelsMerge" -defs["ImDrawList_ChannelsMerge"][1]["comment"] = "" defs["ImDrawList_ChannelsMerge"][1]["defaults"] = {} defs["ImDrawList_ChannelsMerge"][1]["funcname"] = "ChannelsMerge" defs["ImDrawList_ChannelsMerge"][1]["ov_cimguiname"] = "ImDrawList_ChannelsMerge" @@ -1136,7 +1099,6 @@ defs["ImDrawList_ChannelsSetCurrent"][1]["argsT"][2]["type"] = "int" defs["ImDrawList_ChannelsSetCurrent"][1]["argsoriginal"] = "(int channel_index)" defs["ImDrawList_ChannelsSetCurrent"][1]["call_args"] = "(channel_index)" defs["ImDrawList_ChannelsSetCurrent"][1]["cimguiname"] = "ImDrawList_ChannelsSetCurrent" -defs["ImDrawList_ChannelsSetCurrent"][1]["comment"] = "" defs["ImDrawList_ChannelsSetCurrent"][1]["defaults"] = {} defs["ImDrawList_ChannelsSetCurrent"][1]["funcname"] = "ChannelsSetCurrent" defs["ImDrawList_ChannelsSetCurrent"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSetCurrent" @@ -1157,7 +1119,6 @@ defs["ImDrawList_ChannelsSplit"][1]["argsT"][2]["type"] = "int" defs["ImDrawList_ChannelsSplit"][1]["argsoriginal"] = "(int channels_count)" defs["ImDrawList_ChannelsSplit"][1]["call_args"] = "(channels_count)" defs["ImDrawList_ChannelsSplit"][1]["cimguiname"] = "ImDrawList_ChannelsSplit" -defs["ImDrawList_ChannelsSplit"][1]["comment"] = "" defs["ImDrawList_ChannelsSplit"][1]["defaults"] = {} defs["ImDrawList_ChannelsSplit"][1]["funcname"] = "ChannelsSplit" defs["ImDrawList_ChannelsSplit"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSplit" @@ -1175,7 +1136,6 @@ defs["ImDrawList_Clear"][1]["argsT"][1]["type"] = "ImDrawList*" defs["ImDrawList_Clear"][1]["argsoriginal"] = "()" defs["ImDrawList_Clear"][1]["call_args"] = "()" defs["ImDrawList_Clear"][1]["cimguiname"] = "ImDrawList_Clear" -defs["ImDrawList_Clear"][1]["comment"] = "" defs["ImDrawList_Clear"][1]["defaults"] = {} defs["ImDrawList_Clear"][1]["funcname"] = "Clear" defs["ImDrawList_Clear"][1]["ov_cimguiname"] = "ImDrawList_Clear" @@ -1193,7 +1153,6 @@ defs["ImDrawList_ClearFreeMemory"][1]["argsT"][1]["type"] = "ImDrawList*" defs["ImDrawList_ClearFreeMemory"][1]["argsoriginal"] = "()" defs["ImDrawList_ClearFreeMemory"][1]["call_args"] = "()" defs["ImDrawList_ClearFreeMemory"][1]["cimguiname"] = "ImDrawList_ClearFreeMemory" -defs["ImDrawList_ClearFreeMemory"][1]["comment"] = "" defs["ImDrawList_ClearFreeMemory"][1]["defaults"] = {} defs["ImDrawList_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" defs["ImDrawList_ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawList_ClearFreeMemory" @@ -1211,7 +1170,6 @@ defs["ImDrawList_CloneOutput"][1]["argsT"][1]["type"] = "ImDrawList*" defs["ImDrawList_CloneOutput"][1]["argsoriginal"] = "()" defs["ImDrawList_CloneOutput"][1]["call_args"] = "()" defs["ImDrawList_CloneOutput"][1]["cimguiname"] = "ImDrawList_CloneOutput" -defs["ImDrawList_CloneOutput"][1]["comment"] = "" defs["ImDrawList_CloneOutput"][1]["defaults"] = {} defs["ImDrawList_CloneOutput"][1]["funcname"] = "CloneOutput" defs["ImDrawList_CloneOutput"][1]["ov_cimguiname"] = "ImDrawList_CloneOutput" @@ -1229,7 +1187,6 @@ defs["ImDrawList_GetClipRectMax"][1]["argsT"][1]["type"] = "ImDrawList*" defs["ImDrawList_GetClipRectMax"][1]["argsoriginal"] = "()" defs["ImDrawList_GetClipRectMax"][1]["call_args"] = "()" defs["ImDrawList_GetClipRectMax"][1]["cimguiname"] = "ImDrawList_GetClipRectMax" -defs["ImDrawList_GetClipRectMax"][1]["comment"] = "" defs["ImDrawList_GetClipRectMax"][1]["defaults"] = {} defs["ImDrawList_GetClipRectMax"][1]["funcname"] = "GetClipRectMax" defs["ImDrawList_GetClipRectMax"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMax" @@ -1248,7 +1205,6 @@ defs["ImDrawList_GetClipRectMax"][2]["argsT"][2]["type"] = "ImDrawList*" defs["ImDrawList_GetClipRectMax"][2]["argsoriginal"] = "()" defs["ImDrawList_GetClipRectMax"][2]["call_args"] = "()" defs["ImDrawList_GetClipRectMax"][2]["cimguiname"] = "ImDrawList_GetClipRectMax" -defs["ImDrawList_GetClipRectMax"][2]["comment"] = "" defs["ImDrawList_GetClipRectMax"][2]["defaults"] = defs["ImDrawList_GetClipRectMax"][1]["defaults"] defs["ImDrawList_GetClipRectMax"][2]["funcname"] = "GetClipRectMax" defs["ImDrawList_GetClipRectMax"][2]["nonUDT"] = 1 @@ -1265,7 +1221,6 @@ defs["ImDrawList_GetClipRectMax"][3]["argsT"][1]["type"] = "ImDrawList*" defs["ImDrawList_GetClipRectMax"][3]["argsoriginal"] = "()" defs["ImDrawList_GetClipRectMax"][3]["call_args"] = "()" defs["ImDrawList_GetClipRectMax"][3]["cimguiname"] = "ImDrawList_GetClipRectMax" -defs["ImDrawList_GetClipRectMax"][3]["comment"] = "" defs["ImDrawList_GetClipRectMax"][3]["defaults"] = defs["ImDrawList_GetClipRectMax"][1]["defaults"] defs["ImDrawList_GetClipRectMax"][3]["funcname"] = "GetClipRectMax" defs["ImDrawList_GetClipRectMax"][3]["nonUDT"] = 2 @@ -1287,7 +1242,6 @@ defs["ImDrawList_GetClipRectMin"][1]["argsT"][1]["type"] = "ImDrawList*" defs["ImDrawList_GetClipRectMin"][1]["argsoriginal"] = "()" defs["ImDrawList_GetClipRectMin"][1]["call_args"] = "()" defs["ImDrawList_GetClipRectMin"][1]["cimguiname"] = "ImDrawList_GetClipRectMin" -defs["ImDrawList_GetClipRectMin"][1]["comment"] = "" defs["ImDrawList_GetClipRectMin"][1]["defaults"] = {} defs["ImDrawList_GetClipRectMin"][1]["funcname"] = "GetClipRectMin" defs["ImDrawList_GetClipRectMin"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMin" @@ -1306,7 +1260,6 @@ defs["ImDrawList_GetClipRectMin"][2]["argsT"][2]["type"] = "ImDrawList*" defs["ImDrawList_GetClipRectMin"][2]["argsoriginal"] = "()" defs["ImDrawList_GetClipRectMin"][2]["call_args"] = "()" defs["ImDrawList_GetClipRectMin"][2]["cimguiname"] = "ImDrawList_GetClipRectMin" -defs["ImDrawList_GetClipRectMin"][2]["comment"] = "" defs["ImDrawList_GetClipRectMin"][2]["defaults"] = defs["ImDrawList_GetClipRectMin"][1]["defaults"] defs["ImDrawList_GetClipRectMin"][2]["funcname"] = "GetClipRectMin" defs["ImDrawList_GetClipRectMin"][2]["nonUDT"] = 1 @@ -1323,7 +1276,6 @@ defs["ImDrawList_GetClipRectMin"][3]["argsT"][1]["type"] = "ImDrawList*" defs["ImDrawList_GetClipRectMin"][3]["argsoriginal"] = "()" defs["ImDrawList_GetClipRectMin"][3]["call_args"] = "()" defs["ImDrawList_GetClipRectMin"][3]["cimguiname"] = "ImDrawList_GetClipRectMin" -defs["ImDrawList_GetClipRectMin"][3]["comment"] = "" defs["ImDrawList_GetClipRectMin"][3]["defaults"] = defs["ImDrawList_GetClipRectMin"][1]["defaults"] defs["ImDrawList_GetClipRectMin"][3]["funcname"] = "GetClipRectMin" defs["ImDrawList_GetClipRectMin"][3]["nonUDT"] = 2 @@ -1345,7 +1297,6 @@ defs["ImDrawList_ImDrawList"][1]["argsT"][1]["type"] = "const ImDrawListSharedDa defs["ImDrawList_ImDrawList"][1]["argsoriginal"] = "(const ImDrawListSharedData* shared_data)" defs["ImDrawList_ImDrawList"][1]["call_args"] = "(shared_data)" defs["ImDrawList_ImDrawList"][1]["cimguiname"] = "ImDrawList_ImDrawList" -defs["ImDrawList_ImDrawList"][1]["comment"] = "" defs["ImDrawList_ImDrawList"][1]["constructor"] = true defs["ImDrawList_ImDrawList"][1]["defaults"] = {} defs["ImDrawList_ImDrawList"][1]["funcname"] = "ImDrawList" @@ -1378,7 +1329,6 @@ defs["ImDrawList_PathArcTo"][1]["argsT"][6]["type"] = "int" defs["ImDrawList_PathArcTo"][1]["argsoriginal"] = "(const ImVec2& centre,float radius,float a_min,float a_max,int num_segments=10)" defs["ImDrawList_PathArcTo"][1]["call_args"] = "(centre,radius,a_min,a_max,num_segments)" defs["ImDrawList_PathArcTo"][1]["cimguiname"] = "ImDrawList_PathArcTo" -defs["ImDrawList_PathArcTo"][1]["comment"] = "" defs["ImDrawList_PathArcTo"][1]["defaults"] = {} defs["ImDrawList_PathArcTo"][1]["defaults"]["num_segments"] = "10" defs["ImDrawList_PathArcTo"][1]["funcname"] = "PathArcTo" @@ -1409,7 +1359,6 @@ defs["ImDrawList_PathArcToFast"][1]["argsT"][5]["type"] = "int" defs["ImDrawList_PathArcToFast"][1]["argsoriginal"] = "(const ImVec2& centre,float radius,int a_min_of_12,int a_max_of_12)" defs["ImDrawList_PathArcToFast"][1]["call_args"] = "(centre,radius,a_min_of_12,a_max_of_12)" defs["ImDrawList_PathArcToFast"][1]["cimguiname"] = "ImDrawList_PathArcToFast" -defs["ImDrawList_PathArcToFast"][1]["comment"] = "" defs["ImDrawList_PathArcToFast"][1]["defaults"] = {} defs["ImDrawList_PathArcToFast"][1]["funcname"] = "PathArcToFast" defs["ImDrawList_PathArcToFast"][1]["ov_cimguiname"] = "ImDrawList_PathArcToFast" @@ -1439,7 +1388,6 @@ defs["ImDrawList_PathBezierCurveTo"][1]["argsT"][5]["type"] = "int" defs["ImDrawList_PathBezierCurveTo"][1]["argsoriginal"] = "(const ImVec2& p1,const ImVec2& p2,const ImVec2& p3,int num_segments=0)" defs["ImDrawList_PathBezierCurveTo"][1]["call_args"] = "(p1,p2,p3,num_segments)" defs["ImDrawList_PathBezierCurveTo"][1]["cimguiname"] = "ImDrawList_PathBezierCurveTo" -defs["ImDrawList_PathBezierCurveTo"][1]["comment"] = "" defs["ImDrawList_PathBezierCurveTo"][1]["defaults"] = {} defs["ImDrawList_PathBezierCurveTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathBezierCurveTo"][1]["funcname"] = "PathBezierCurveTo" @@ -1458,7 +1406,6 @@ defs["ImDrawList_PathClear"][1]["argsT"][1]["type"] = "ImDrawList*" defs["ImDrawList_PathClear"][1]["argsoriginal"] = "()" defs["ImDrawList_PathClear"][1]["call_args"] = "()" defs["ImDrawList_PathClear"][1]["cimguiname"] = "ImDrawList_PathClear" -defs["ImDrawList_PathClear"][1]["comment"] = "" defs["ImDrawList_PathClear"][1]["defaults"] = {} defs["ImDrawList_PathClear"][1]["funcname"] = "PathClear" defs["ImDrawList_PathClear"][1]["ov_cimguiname"] = "ImDrawList_PathClear" @@ -1479,7 +1426,6 @@ defs["ImDrawList_PathFillConvex"][1]["argsT"][2]["type"] = "ImU32" defs["ImDrawList_PathFillConvex"][1]["argsoriginal"] = "(ImU32 col)" defs["ImDrawList_PathFillConvex"][1]["call_args"] = "(col)" defs["ImDrawList_PathFillConvex"][1]["cimguiname"] = "ImDrawList_PathFillConvex" -defs["ImDrawList_PathFillConvex"][1]["comment"] = "" defs["ImDrawList_PathFillConvex"][1]["defaults"] = {} defs["ImDrawList_PathFillConvex"][1]["funcname"] = "PathFillConvex" defs["ImDrawList_PathFillConvex"][1]["ov_cimguiname"] = "ImDrawList_PathFillConvex" @@ -1500,7 +1446,6 @@ defs["ImDrawList_PathLineTo"][1]["argsT"][2]["type"] = "const ImVec2" defs["ImDrawList_PathLineTo"][1]["argsoriginal"] = "(const ImVec2& pos)" defs["ImDrawList_PathLineTo"][1]["call_args"] = "(pos)" defs["ImDrawList_PathLineTo"][1]["cimguiname"] = "ImDrawList_PathLineTo" -defs["ImDrawList_PathLineTo"][1]["comment"] = "" defs["ImDrawList_PathLineTo"][1]["defaults"] = {} defs["ImDrawList_PathLineTo"][1]["funcname"] = "PathLineTo" defs["ImDrawList_PathLineTo"][1]["ov_cimguiname"] = "ImDrawList_PathLineTo" @@ -1521,7 +1466,6 @@ defs["ImDrawList_PathLineToMergeDuplicate"][1]["argsT"][2]["type"] = "const ImVe defs["ImDrawList_PathLineToMergeDuplicate"][1]["argsoriginal"] = "(const ImVec2& pos)" defs["ImDrawList_PathLineToMergeDuplicate"][1]["call_args"] = "(pos)" defs["ImDrawList_PathLineToMergeDuplicate"][1]["cimguiname"] = "ImDrawList_PathLineToMergeDuplicate" -defs["ImDrawList_PathLineToMergeDuplicate"][1]["comment"] = "" defs["ImDrawList_PathLineToMergeDuplicate"][1]["defaults"] = {} defs["ImDrawList_PathLineToMergeDuplicate"][1]["funcname"] = "PathLineToMergeDuplicate" defs["ImDrawList_PathLineToMergeDuplicate"][1]["ov_cimguiname"] = "ImDrawList_PathLineToMergeDuplicate" @@ -1551,7 +1495,6 @@ defs["ImDrawList_PathRect"][1]["argsT"][5]["type"] = "int" defs["ImDrawList_PathRect"][1]["argsoriginal"] = "(const ImVec2& rect_min,const ImVec2& rect_max,float rounding=0.0f,int rounding_corners_flags=ImDrawCornerFlags_All)" defs["ImDrawList_PathRect"][1]["call_args"] = "(rect_min,rect_max,rounding,rounding_corners_flags)" defs["ImDrawList_PathRect"][1]["cimguiname"] = "ImDrawList_PathRect" -defs["ImDrawList_PathRect"][1]["comment"] = "" defs["ImDrawList_PathRect"][1]["defaults"] = {} defs["ImDrawList_PathRect"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_PathRect"][1]["defaults"]["rounding_corners_flags"] = "ImDrawCornerFlags_All" @@ -1580,7 +1523,6 @@ defs["ImDrawList_PathStroke"][1]["argsT"][4]["type"] = "float" defs["ImDrawList_PathStroke"][1]["argsoriginal"] = "(ImU32 col,bool closed,float thickness=1.0f)" defs["ImDrawList_PathStroke"][1]["call_args"] = "(col,closed,thickness)" defs["ImDrawList_PathStroke"][1]["cimguiname"] = "ImDrawList_PathStroke" -defs["ImDrawList_PathStroke"][1]["comment"] = "" defs["ImDrawList_PathStroke"][1]["defaults"] = {} defs["ImDrawList_PathStroke"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_PathStroke"][1]["funcname"] = "PathStroke" @@ -1599,7 +1541,6 @@ defs["ImDrawList_PopClipRect"][1]["argsT"][1]["type"] = "ImDrawList*" defs["ImDrawList_PopClipRect"][1]["argsoriginal"] = "()" defs["ImDrawList_PopClipRect"][1]["call_args"] = "()" defs["ImDrawList_PopClipRect"][1]["cimguiname"] = "ImDrawList_PopClipRect" -defs["ImDrawList_PopClipRect"][1]["comment"] = "" defs["ImDrawList_PopClipRect"][1]["defaults"] = {} defs["ImDrawList_PopClipRect"][1]["funcname"] = "PopClipRect" defs["ImDrawList_PopClipRect"][1]["ov_cimguiname"] = "ImDrawList_PopClipRect" @@ -1617,7 +1558,6 @@ defs["ImDrawList_PopTextureID"][1]["argsT"][1]["type"] = "ImDrawList*" defs["ImDrawList_PopTextureID"][1]["argsoriginal"] = "()" defs["ImDrawList_PopTextureID"][1]["call_args"] = "()" defs["ImDrawList_PopTextureID"][1]["cimguiname"] = "ImDrawList_PopTextureID" -defs["ImDrawList_PopTextureID"][1]["comment"] = "" defs["ImDrawList_PopTextureID"][1]["defaults"] = {} defs["ImDrawList_PopTextureID"][1]["funcname"] = "PopTextureID" defs["ImDrawList_PopTextureID"][1]["ov_cimguiname"] = "ImDrawList_PopTextureID" @@ -1662,7 +1602,6 @@ defs["ImDrawList_PrimQuadUV"][1]["argsT"][10]["type"] = "ImU32" defs["ImDrawList_PrimQuadUV"][1]["argsoriginal"] = "(const ImVec2& a,const ImVec2& b,const ImVec2& c,const ImVec2& d,const ImVec2& uv_a,const ImVec2& uv_b,const ImVec2& uv_c,const ImVec2& uv_d,ImU32 col)" defs["ImDrawList_PrimQuadUV"][1]["call_args"] = "(a,b,c,d,uv_a,uv_b,uv_c,uv_d,col)" defs["ImDrawList_PrimQuadUV"][1]["cimguiname"] = "ImDrawList_PrimQuadUV" -defs["ImDrawList_PrimQuadUV"][1]["comment"] = "" defs["ImDrawList_PrimQuadUV"][1]["defaults"] = {} defs["ImDrawList_PrimQuadUV"][1]["funcname"] = "PrimQuadUV" defs["ImDrawList_PrimQuadUV"][1]["ov_cimguiname"] = "ImDrawList_PrimQuadUV" @@ -1689,7 +1628,6 @@ defs["ImDrawList_PrimRect"][1]["argsT"][4]["type"] = "ImU32" defs["ImDrawList_PrimRect"][1]["argsoriginal"] = "(const ImVec2& a,const ImVec2& b,ImU32 col)" defs["ImDrawList_PrimRect"][1]["call_args"] = "(a,b,col)" defs["ImDrawList_PrimRect"][1]["cimguiname"] = "ImDrawList_PrimRect" -defs["ImDrawList_PrimRect"][1]["comment"] = "" defs["ImDrawList_PrimRect"][1]["defaults"] = {} defs["ImDrawList_PrimRect"][1]["funcname"] = "PrimRect" defs["ImDrawList_PrimRect"][1]["ov_cimguiname"] = "ImDrawList_PrimRect" @@ -1722,7 +1660,6 @@ defs["ImDrawList_PrimRectUV"][1]["argsT"][6]["type"] = "ImU32" defs["ImDrawList_PrimRectUV"][1]["argsoriginal"] = "(const ImVec2& a,const ImVec2& b,const ImVec2& uv_a,const ImVec2& uv_b,ImU32 col)" defs["ImDrawList_PrimRectUV"][1]["call_args"] = "(a,b,uv_a,uv_b,col)" defs["ImDrawList_PrimRectUV"][1]["cimguiname"] = "ImDrawList_PrimRectUV" -defs["ImDrawList_PrimRectUV"][1]["comment"] = "" defs["ImDrawList_PrimRectUV"][1]["defaults"] = {} defs["ImDrawList_PrimRectUV"][1]["funcname"] = "PrimRectUV" defs["ImDrawList_PrimRectUV"][1]["ov_cimguiname"] = "ImDrawList_PrimRectUV" @@ -1746,7 +1683,6 @@ defs["ImDrawList_PrimReserve"][1]["argsT"][3]["type"] = "int" defs["ImDrawList_PrimReserve"][1]["argsoriginal"] = "(int idx_count,int vtx_count)" defs["ImDrawList_PrimReserve"][1]["call_args"] = "(idx_count,vtx_count)" defs["ImDrawList_PrimReserve"][1]["cimguiname"] = "ImDrawList_PrimReserve" -defs["ImDrawList_PrimReserve"][1]["comment"] = "" defs["ImDrawList_PrimReserve"][1]["defaults"] = {} defs["ImDrawList_PrimReserve"][1]["funcname"] = "PrimReserve" defs["ImDrawList_PrimReserve"][1]["ov_cimguiname"] = "ImDrawList_PrimReserve" @@ -1773,7 +1709,6 @@ defs["ImDrawList_PrimVtx"][1]["argsT"][4]["type"] = "ImU32" defs["ImDrawList_PrimVtx"][1]["argsoriginal"] = "(const ImVec2& pos,const ImVec2& uv,ImU32 col)" defs["ImDrawList_PrimVtx"][1]["call_args"] = "(pos,uv,col)" defs["ImDrawList_PrimVtx"][1]["cimguiname"] = "ImDrawList_PrimVtx" -defs["ImDrawList_PrimVtx"][1]["comment"] = "" defs["ImDrawList_PrimVtx"][1]["defaults"] = {} defs["ImDrawList_PrimVtx"][1]["funcname"] = "PrimVtx" defs["ImDrawList_PrimVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimVtx" @@ -1794,7 +1729,6 @@ defs["ImDrawList_PrimWriteIdx"][1]["argsT"][2]["type"] = "ImDrawIdx" defs["ImDrawList_PrimWriteIdx"][1]["argsoriginal"] = "(ImDrawIdx idx)" defs["ImDrawList_PrimWriteIdx"][1]["call_args"] = "(idx)" defs["ImDrawList_PrimWriteIdx"][1]["cimguiname"] = "ImDrawList_PrimWriteIdx" -defs["ImDrawList_PrimWriteIdx"][1]["comment"] = "" defs["ImDrawList_PrimWriteIdx"][1]["defaults"] = {} defs["ImDrawList_PrimWriteIdx"][1]["funcname"] = "PrimWriteIdx" defs["ImDrawList_PrimWriteIdx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteIdx" @@ -1821,7 +1755,6 @@ defs["ImDrawList_PrimWriteVtx"][1]["argsT"][4]["type"] = "ImU32" defs["ImDrawList_PrimWriteVtx"][1]["argsoriginal"] = "(const ImVec2& pos,const ImVec2& uv,ImU32 col)" defs["ImDrawList_PrimWriteVtx"][1]["call_args"] = "(pos,uv,col)" defs["ImDrawList_PrimWriteVtx"][1]["cimguiname"] = "ImDrawList_PrimWriteVtx" -defs["ImDrawList_PrimWriteVtx"][1]["comment"] = "" defs["ImDrawList_PrimWriteVtx"][1]["defaults"] = {} defs["ImDrawList_PrimWriteVtx"][1]["funcname"] = "PrimWriteVtx" defs["ImDrawList_PrimWriteVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteVtx" @@ -1848,7 +1781,6 @@ defs["ImDrawList_PushClipRect"][1]["argsT"][4]["type"] = "bool" defs["ImDrawList_PushClipRect"][1]["argsoriginal"] = "(ImVec2 clip_rect_min,ImVec2 clip_rect_max,bool intersect_with_current_clip_rect=false)" defs["ImDrawList_PushClipRect"][1]["call_args"] = "(clip_rect_min,clip_rect_max,intersect_with_current_clip_rect)" defs["ImDrawList_PushClipRect"][1]["cimguiname"] = "ImDrawList_PushClipRect" -defs["ImDrawList_PushClipRect"][1]["comment"] = "" defs["ImDrawList_PushClipRect"][1]["defaults"] = {} defs["ImDrawList_PushClipRect"][1]["defaults"]["intersect_with_current_clip_rect"] = "false" defs["ImDrawList_PushClipRect"][1]["funcname"] = "PushClipRect" @@ -1867,7 +1799,6 @@ defs["ImDrawList_PushClipRectFullScreen"][1]["argsT"][1]["type"] = "ImDrawList*" defs["ImDrawList_PushClipRectFullScreen"][1]["argsoriginal"] = "()" defs["ImDrawList_PushClipRectFullScreen"][1]["call_args"] = "()" defs["ImDrawList_PushClipRectFullScreen"][1]["cimguiname"] = "ImDrawList_PushClipRectFullScreen" -defs["ImDrawList_PushClipRectFullScreen"][1]["comment"] = "" defs["ImDrawList_PushClipRectFullScreen"][1]["defaults"] = {} defs["ImDrawList_PushClipRectFullScreen"][1]["funcname"] = "PushClipRectFullScreen" defs["ImDrawList_PushClipRectFullScreen"][1]["ov_cimguiname"] = "ImDrawList_PushClipRectFullScreen" @@ -1888,7 +1819,6 @@ defs["ImDrawList_PushTextureID"][1]["argsT"][2]["type"] = "ImTextureID" defs["ImDrawList_PushTextureID"][1]["argsoriginal"] = "(ImTextureID texture_id)" defs["ImDrawList_PushTextureID"][1]["call_args"] = "(texture_id)" defs["ImDrawList_PushTextureID"][1]["cimguiname"] = "ImDrawList_PushTextureID" -defs["ImDrawList_PushTextureID"][1]["comment"] = "" defs["ImDrawList_PushTextureID"][1]["defaults"] = {} defs["ImDrawList_PushTextureID"][1]["funcname"] = "PushTextureID" defs["ImDrawList_PushTextureID"][1]["ov_cimguiname"] = "ImDrawList_PushTextureID" @@ -1906,7 +1836,6 @@ defs["ImDrawList_UpdateClipRect"][1]["argsT"][1]["type"] = "ImDrawList*" defs["ImDrawList_UpdateClipRect"][1]["argsoriginal"] = "()" defs["ImDrawList_UpdateClipRect"][1]["call_args"] = "()" defs["ImDrawList_UpdateClipRect"][1]["cimguiname"] = "ImDrawList_UpdateClipRect" -defs["ImDrawList_UpdateClipRect"][1]["comment"] = "" defs["ImDrawList_UpdateClipRect"][1]["defaults"] = {} defs["ImDrawList_UpdateClipRect"][1]["funcname"] = "UpdateClipRect" defs["ImDrawList_UpdateClipRect"][1]["ov_cimguiname"] = "ImDrawList_UpdateClipRect" @@ -1924,7 +1853,6 @@ defs["ImDrawList_UpdateTextureID"][1]["argsT"][1]["type"] = "ImDrawList*" defs["ImDrawList_UpdateTextureID"][1]["argsoriginal"] = "()" defs["ImDrawList_UpdateTextureID"][1]["call_args"] = "()" defs["ImDrawList_UpdateTextureID"][1]["cimguiname"] = "ImDrawList_UpdateTextureID" -defs["ImDrawList_UpdateTextureID"][1]["comment"] = "" defs["ImDrawList_UpdateTextureID"][1]["defaults"] = {} defs["ImDrawList_UpdateTextureID"][1]["funcname"] = "UpdateTextureID" defs["ImDrawList_UpdateTextureID"][1]["ov_cimguiname"] = "ImDrawList_UpdateTextureID" @@ -1976,7 +1904,6 @@ defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["argsT"][7]["type"] = "const ImVec defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["argsoriginal"] = "(ImFont* font,ImWchar id,int width,int height,float advance_x,const ImVec2& offset=ImVec2(0,0))" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["call_args"] = "(font,id,width,height,advance_x,offset)" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["cimguiname"] = "ImFontAtlas_AddCustomRectFontGlyph" -defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["comment"] = "" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["defaults"] = {} defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["defaults"]["offset"] = "ImVec2(0,0)" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["funcname"] = "AddCustomRectFontGlyph" @@ -2004,7 +1931,6 @@ defs["ImFontAtlas_AddCustomRectRegular"][1]["argsT"][4]["type"] = "int" defs["ImFontAtlas_AddCustomRectRegular"][1]["argsoriginal"] = "(unsigned int id,int width,int height)" defs["ImFontAtlas_AddCustomRectRegular"][1]["call_args"] = "(id,width,height)" defs["ImFontAtlas_AddCustomRectRegular"][1]["cimguiname"] = "ImFontAtlas_AddCustomRectRegular" -defs["ImFontAtlas_AddCustomRectRegular"][1]["comment"] = "" defs["ImFontAtlas_AddCustomRectRegular"][1]["defaults"] = {} defs["ImFontAtlas_AddCustomRectRegular"][1]["funcname"] = "AddCustomRectRegular" defs["ImFontAtlas_AddCustomRectRegular"][1]["ov_cimguiname"] = "ImFontAtlas_AddCustomRectRegular" @@ -2025,7 +1951,6 @@ defs["ImFontAtlas_AddFont"][1]["argsT"][2]["type"] = "const ImFontConfig*" defs["ImFontAtlas_AddFont"][1]["argsoriginal"] = "(const ImFontConfig* font_cfg)" defs["ImFontAtlas_AddFont"][1]["call_args"] = "(font_cfg)" defs["ImFontAtlas_AddFont"][1]["cimguiname"] = "ImFontAtlas_AddFont" -defs["ImFontAtlas_AddFont"][1]["comment"] = "" defs["ImFontAtlas_AddFont"][1]["defaults"] = {} defs["ImFontAtlas_AddFont"][1]["funcname"] = "AddFont" defs["ImFontAtlas_AddFont"][1]["ov_cimguiname"] = "ImFontAtlas_AddFont" @@ -2046,7 +1971,6 @@ defs["ImFontAtlas_AddFontDefault"][1]["argsT"][2]["type"] = "const ImFontConfig* defs["ImFontAtlas_AddFontDefault"][1]["argsoriginal"] = "(const ImFontConfig* font_cfg=((void*)0))" defs["ImFontAtlas_AddFontDefault"][1]["call_args"] = "(font_cfg)" defs["ImFontAtlas_AddFontDefault"][1]["cimguiname"] = "ImFontAtlas_AddFontDefault" -defs["ImFontAtlas_AddFontDefault"][1]["comment"] = "" defs["ImFontAtlas_AddFontDefault"][1]["defaults"] = {} defs["ImFontAtlas_AddFontDefault"][1]["defaults"]["font_cfg"] = "((void*)0)" defs["ImFontAtlas_AddFontDefault"][1]["funcname"] = "AddFontDefault" @@ -2077,7 +2001,6 @@ defs["ImFontAtlas_AddFontFromFileTTF"][1]["argsT"][5]["type"] = "const ImWchar*" defs["ImFontAtlas_AddFontFromFileTTF"][1]["argsoriginal"] = "(const char* filename,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" defs["ImFontAtlas_AddFontFromFileTTF"][1]["call_args"] = "(filename,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromFileTTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromFileTTF" -defs["ImFontAtlas_AddFontFromFileTTF"][1]["comment"] = "" defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["font_cfg"] = "((void*)0)" defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["glyph_ranges"] = "((void*)0)" @@ -2109,7 +2032,6 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["argsT"][5]["type"] defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["argsoriginal"] = "(const char* compressed_font_data_base85,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["call_args"] = "(compressed_font_data_base85,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF" -defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["comment"] = "" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["font_cfg"] = "((void*)0)" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["glyph_ranges"] = "((void*)0)" @@ -2144,7 +2066,6 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][6]["type"] = "con defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsoriginal"] = "(const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["call_args"] = "(compressed_font_data,compressed_font_size,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedTTF" -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["comment"] = "" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["font_cfg"] = "((void*)0)" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["glyph_ranges"] = "((void*)0)" @@ -2179,7 +2100,6 @@ defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][6]["type"] = "const ImWchar defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsoriginal"] = "(void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["call_args"] = "(font_data,font_size,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromMemoryTTF" -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["comment"] = "" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["font_cfg"] = "((void*)0)" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["glyph_ranges"] = "((void*)0)" @@ -2199,7 +2119,6 @@ defs["ImFontAtlas_Build"][1]["argsT"][1]["type"] = "ImFontAtlas*" defs["ImFontAtlas_Build"][1]["argsoriginal"] = "()" defs["ImFontAtlas_Build"][1]["call_args"] = "()" defs["ImFontAtlas_Build"][1]["cimguiname"] = "ImFontAtlas_Build" -defs["ImFontAtlas_Build"][1]["comment"] = "" defs["ImFontAtlas_Build"][1]["defaults"] = {} defs["ImFontAtlas_Build"][1]["funcname"] = "Build" defs["ImFontAtlas_Build"][1]["ov_cimguiname"] = "ImFontAtlas_Build" @@ -2226,7 +2145,6 @@ defs["ImFontAtlas_CalcCustomRectUV"][1]["argsT"][4]["type"] = "ImVec2*" defs["ImFontAtlas_CalcCustomRectUV"][1]["argsoriginal"] = "(const CustomRect* rect,ImVec2* out_uv_min,ImVec2* out_uv_max)" defs["ImFontAtlas_CalcCustomRectUV"][1]["call_args"] = "(rect,out_uv_min,out_uv_max)" defs["ImFontAtlas_CalcCustomRectUV"][1]["cimguiname"] = "ImFontAtlas_CalcCustomRectUV" -defs["ImFontAtlas_CalcCustomRectUV"][1]["comment"] = "" defs["ImFontAtlas_CalcCustomRectUV"][1]["defaults"] = {} defs["ImFontAtlas_CalcCustomRectUV"][1]["funcname"] = "CalcCustomRectUV" defs["ImFontAtlas_CalcCustomRectUV"][1]["ov_cimguiname"] = "ImFontAtlas_CalcCustomRectUV" @@ -2244,7 +2162,6 @@ defs["ImFontAtlas_Clear"][1]["argsT"][1]["type"] = "ImFontAtlas*" defs["ImFontAtlas_Clear"][1]["argsoriginal"] = "()" defs["ImFontAtlas_Clear"][1]["call_args"] = "()" defs["ImFontAtlas_Clear"][1]["cimguiname"] = "ImFontAtlas_Clear" -defs["ImFontAtlas_Clear"][1]["comment"] = "" defs["ImFontAtlas_Clear"][1]["defaults"] = {} defs["ImFontAtlas_Clear"][1]["funcname"] = "Clear" defs["ImFontAtlas_Clear"][1]["ov_cimguiname"] = "ImFontAtlas_Clear" @@ -2262,7 +2179,6 @@ defs["ImFontAtlas_ClearFonts"][1]["argsT"][1]["type"] = "ImFontAtlas*" defs["ImFontAtlas_ClearFonts"][1]["argsoriginal"] = "()" defs["ImFontAtlas_ClearFonts"][1]["call_args"] = "()" defs["ImFontAtlas_ClearFonts"][1]["cimguiname"] = "ImFontAtlas_ClearFonts" -defs["ImFontAtlas_ClearFonts"][1]["comment"] = "" defs["ImFontAtlas_ClearFonts"][1]["defaults"] = {} defs["ImFontAtlas_ClearFonts"][1]["funcname"] = "ClearFonts" defs["ImFontAtlas_ClearFonts"][1]["ov_cimguiname"] = "ImFontAtlas_ClearFonts" @@ -2280,7 +2196,6 @@ defs["ImFontAtlas_ClearInputData"][1]["argsT"][1]["type"] = "ImFontAtlas*" defs["ImFontAtlas_ClearInputData"][1]["argsoriginal"] = "()" defs["ImFontAtlas_ClearInputData"][1]["call_args"] = "()" defs["ImFontAtlas_ClearInputData"][1]["cimguiname"] = "ImFontAtlas_ClearInputData" -defs["ImFontAtlas_ClearInputData"][1]["comment"] = "" defs["ImFontAtlas_ClearInputData"][1]["defaults"] = {} defs["ImFontAtlas_ClearInputData"][1]["funcname"] = "ClearInputData" defs["ImFontAtlas_ClearInputData"][1]["ov_cimguiname"] = "ImFontAtlas_ClearInputData" @@ -2298,7 +2213,6 @@ defs["ImFontAtlas_ClearTexData"][1]["argsT"][1]["type"] = "ImFontAtlas*" defs["ImFontAtlas_ClearTexData"][1]["argsoriginal"] = "()" defs["ImFontAtlas_ClearTexData"][1]["call_args"] = "()" defs["ImFontAtlas_ClearTexData"][1]["cimguiname"] = "ImFontAtlas_ClearTexData" -defs["ImFontAtlas_ClearTexData"][1]["comment"] = "" defs["ImFontAtlas_ClearTexData"][1]["defaults"] = {} defs["ImFontAtlas_ClearTexData"][1]["funcname"] = "ClearTexData" defs["ImFontAtlas_ClearTexData"][1]["ov_cimguiname"] = "ImFontAtlas_ClearTexData" @@ -2319,7 +2233,6 @@ defs["ImFontAtlas_GetCustomRectByIndex"][1]["argsT"][2]["type"] = "int" defs["ImFontAtlas_GetCustomRectByIndex"][1]["argsoriginal"] = "(int index)" defs["ImFontAtlas_GetCustomRectByIndex"][1]["call_args"] = "(index)" defs["ImFontAtlas_GetCustomRectByIndex"][1]["cimguiname"] = "ImFontAtlas_GetCustomRectByIndex" -defs["ImFontAtlas_GetCustomRectByIndex"][1]["comment"] = "" defs["ImFontAtlas_GetCustomRectByIndex"][1]["defaults"] = {} defs["ImFontAtlas_GetCustomRectByIndex"][1]["funcname"] = "GetCustomRectByIndex" defs["ImFontAtlas_GetCustomRectByIndex"][1]["ov_cimguiname"] = "ImFontAtlas_GetCustomRectByIndex" @@ -2337,7 +2250,6 @@ defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["argsT"][1]["type"] = "ImFontAt defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["argsoriginal"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseFull" -defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["comment"] = "" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["funcname"] = "GetGlyphRangesChineseFull" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseFull" @@ -2355,7 +2267,6 @@ defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["argsT"][1]["type"] defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["argsoriginal"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon" -defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["comment"] = "" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["funcname"] = "GetGlyphRangesChineseSimplifiedCommon" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon" @@ -2373,7 +2284,6 @@ defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["argsT"][1]["type"] = "ImFontAtlas defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["argsoriginal"] = "()" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesCyrillic" -defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["comment"] = "" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["funcname"] = "GetGlyphRangesCyrillic" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesCyrillic" @@ -2391,7 +2301,6 @@ defs["ImFontAtlas_GetGlyphRangesDefault"][1]["argsT"][1]["type"] = "ImFontAtlas* defs["ImFontAtlas_GetGlyphRangesDefault"][1]["argsoriginal"] = "()" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesDefault" -defs["ImFontAtlas_GetGlyphRangesDefault"][1]["comment"] = "" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesDefault"][1]["funcname"] = "GetGlyphRangesDefault" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesDefault" @@ -2409,7 +2318,6 @@ defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["argsT"][1]["type"] = "ImFontAtlas defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["argsoriginal"] = "()" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesJapanese" -defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["comment"] = "" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["funcname"] = "GetGlyphRangesJapanese" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesJapanese" @@ -2427,7 +2335,6 @@ defs["ImFontAtlas_GetGlyphRangesKorean"][1]["argsT"][1]["type"] = "ImFontAtlas*" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["argsoriginal"] = "()" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesKorean" -defs["ImFontAtlas_GetGlyphRangesKorean"][1]["comment"] = "" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesKorean"][1]["funcname"] = "GetGlyphRangesKorean" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesKorean" @@ -2445,7 +2352,6 @@ defs["ImFontAtlas_GetGlyphRangesThai"][1]["argsT"][1]["type"] = "ImFontAtlas*" defs["ImFontAtlas_GetGlyphRangesThai"][1]["argsoriginal"] = "()" defs["ImFontAtlas_GetGlyphRangesThai"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesThai"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesThai" -defs["ImFontAtlas_GetGlyphRangesThai"][1]["comment"] = "" defs["ImFontAtlas_GetGlyphRangesThai"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesThai"][1]["funcname"] = "GetGlyphRangesThai" defs["ImFontAtlas_GetGlyphRangesThai"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesThai" @@ -2478,7 +2384,6 @@ defs["ImFontAtlas_GetMouseCursorTexData"][1]["argsT"][6]["type"] = "ImVec2[2]" defs["ImFontAtlas_GetMouseCursorTexData"][1]["argsoriginal"] = "(ImGuiMouseCursor cursor,ImVec2* out_offset,ImVec2* out_size,ImVec2 out_uv_border[2],ImVec2 out_uv_fill[2])" defs["ImFontAtlas_GetMouseCursorTexData"][1]["call_args"] = "(cursor,out_offset,out_size,out_uv_border,out_uv_fill)" defs["ImFontAtlas_GetMouseCursorTexData"][1]["cimguiname"] = "ImFontAtlas_GetMouseCursorTexData" -defs["ImFontAtlas_GetMouseCursorTexData"][1]["comment"] = "" defs["ImFontAtlas_GetMouseCursorTexData"][1]["defaults"] = {} defs["ImFontAtlas_GetMouseCursorTexData"][1]["funcname"] = "GetMouseCursorTexData" defs["ImFontAtlas_GetMouseCursorTexData"][1]["ov_cimguiname"] = "ImFontAtlas_GetMouseCursorTexData" @@ -2508,7 +2413,6 @@ defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["argsT"][5]["type"] = "int*" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["argsoriginal"] = "(unsigned char** out_pixels,int* out_width,int* out_height,int* out_bytes_per_pixel=((void*)0))" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["call_args"] = "(out_pixels,out_width,out_height,out_bytes_per_pixel)" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["cimguiname"] = "ImFontAtlas_GetTexDataAsAlpha8" -defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["comment"] = "" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"] = {} defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"]["out_bytes_per_pixel"] = "((void*)0)" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["funcname"] = "GetTexDataAsAlpha8" @@ -2539,7 +2443,6 @@ defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["argsT"][5]["type"] = "int*" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["argsoriginal"] = "(unsigned char** out_pixels,int* out_width,int* out_height,int* out_bytes_per_pixel=((void*)0))" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["call_args"] = "(out_pixels,out_width,out_height,out_bytes_per_pixel)" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["cimguiname"] = "ImFontAtlas_GetTexDataAsRGBA32" -defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["comment"] = "" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"] = {} defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"]["out_bytes_per_pixel"] = "((void*)0)" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["funcname"] = "GetTexDataAsRGBA32" @@ -2555,7 +2458,6 @@ defs["ImFontAtlas_ImFontAtlas"][1]["argsT"] = {} defs["ImFontAtlas_ImFontAtlas"][1]["argsoriginal"] = "()" defs["ImFontAtlas_ImFontAtlas"][1]["call_args"] = "()" defs["ImFontAtlas_ImFontAtlas"][1]["cimguiname"] = "ImFontAtlas_ImFontAtlas" -defs["ImFontAtlas_ImFontAtlas"][1]["comment"] = "" defs["ImFontAtlas_ImFontAtlas"][1]["constructor"] = true defs["ImFontAtlas_ImFontAtlas"][1]["defaults"] = {} defs["ImFontAtlas_ImFontAtlas"][1]["funcname"] = "ImFontAtlas" @@ -2573,7 +2475,6 @@ defs["ImFontAtlas_IsBuilt"][1]["argsT"][1]["type"] = "ImFontAtlas*" defs["ImFontAtlas_IsBuilt"][1]["argsoriginal"] = "()" defs["ImFontAtlas_IsBuilt"][1]["call_args"] = "()" defs["ImFontAtlas_IsBuilt"][1]["cimguiname"] = "ImFontAtlas_IsBuilt" -defs["ImFontAtlas_IsBuilt"][1]["comment"] = "" defs["ImFontAtlas_IsBuilt"][1]["defaults"] = {} defs["ImFontAtlas_IsBuilt"][1]["funcname"] = "IsBuilt" defs["ImFontAtlas_IsBuilt"][1]["ov_cimguiname"] = "ImFontAtlas_IsBuilt" @@ -2594,7 +2495,6 @@ defs["ImFontAtlas_SetTexID"][1]["argsT"][2]["type"] = "ImTextureID" defs["ImFontAtlas_SetTexID"][1]["argsoriginal"] = "(ImTextureID id)" defs["ImFontAtlas_SetTexID"][1]["call_args"] = "(id)" defs["ImFontAtlas_SetTexID"][1]["cimguiname"] = "ImFontAtlas_SetTexID" -defs["ImFontAtlas_SetTexID"][1]["comment"] = "" defs["ImFontAtlas_SetTexID"][1]["defaults"] = {} defs["ImFontAtlas_SetTexID"][1]["funcname"] = "SetTexID" defs["ImFontAtlas_SetTexID"][1]["ov_cimguiname"] = "ImFontAtlas_SetTexID" @@ -2625,7 +2525,6 @@ defs["ImFontConfig_ImFontConfig"][1]["argsT"] = {} defs["ImFontConfig_ImFontConfig"][1]["argsoriginal"] = "()" defs["ImFontConfig_ImFontConfig"][1]["call_args"] = "()" defs["ImFontConfig_ImFontConfig"][1]["cimguiname"] = "ImFontConfig_ImFontConfig" -defs["ImFontConfig_ImFontConfig"][1]["comment"] = "" defs["ImFontConfig_ImFontConfig"][1]["constructor"] = true defs["ImFontConfig_ImFontConfig"][1]["defaults"] = {} defs["ImFontConfig_ImFontConfig"][1]["funcname"] = "ImFontConfig" @@ -2662,7 +2561,6 @@ defs["ImFontGlyphRangesBuilder_AddChar"][1]["argsT"][2]["type"] = "ImWchar" defs["ImFontGlyphRangesBuilder_AddChar"][1]["argsoriginal"] = "(ImWchar c)" defs["ImFontGlyphRangesBuilder_AddChar"][1]["call_args"] = "(c)" defs["ImFontGlyphRangesBuilder_AddChar"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_AddChar" -defs["ImFontGlyphRangesBuilder_AddChar"][1]["comment"] = "" defs["ImFontGlyphRangesBuilder_AddChar"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddChar"][1]["funcname"] = "AddChar" defs["ImFontGlyphRangesBuilder_AddChar"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddChar" @@ -2683,7 +2581,6 @@ defs["ImFontGlyphRangesBuilder_AddRanges"][1]["argsT"][2]["type"] = "const ImWch defs["ImFontGlyphRangesBuilder_AddRanges"][1]["argsoriginal"] = "(const ImWchar* ranges)" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["call_args"] = "(ranges)" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_AddRanges" -defs["ImFontGlyphRangesBuilder_AddRanges"][1]["comment"] = "" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddRanges"][1]["funcname"] = "AddRanges" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddRanges" @@ -2707,7 +2604,6 @@ defs["ImFontGlyphRangesBuilder_AddText"][1]["argsT"][3]["type"] = "const char*" defs["ImFontGlyphRangesBuilder_AddText"][1]["argsoriginal"] = "(const char* text,const char* text_end=((void*)0))" defs["ImFontGlyphRangesBuilder_AddText"][1]["call_args"] = "(text,text_end)" defs["ImFontGlyphRangesBuilder_AddText"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_AddText" -defs["ImFontGlyphRangesBuilder_AddText"][1]["comment"] = "" defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"]["text_end"] = "((void*)0)" defs["ImFontGlyphRangesBuilder_AddText"][1]["funcname"] = "AddText" @@ -2729,7 +2625,6 @@ defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["argsT"][2]["type"] = "ImVector_ defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["argsoriginal"] = "(ImVector* out_ranges)" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["call_args"] = "(out_ranges)" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_BuildRanges" -defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["comment"] = "" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["funcname"] = "BuildRanges" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_BuildRanges" @@ -2750,7 +2645,6 @@ defs["ImFontGlyphRangesBuilder_GetBit"][1]["argsT"][2]["type"] = "int" defs["ImFontGlyphRangesBuilder_GetBit"][1]["argsoriginal"] = "(int n)" defs["ImFontGlyphRangesBuilder_GetBit"][1]["call_args"] = "(n)" defs["ImFontGlyphRangesBuilder_GetBit"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_GetBit" -defs["ImFontGlyphRangesBuilder_GetBit"][1]["comment"] = "" defs["ImFontGlyphRangesBuilder_GetBit"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_GetBit"][1]["funcname"] = "GetBit" defs["ImFontGlyphRangesBuilder_GetBit"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_GetBit" @@ -2765,7 +2659,6 @@ defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["argsT"] = {} defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["argsoriginal"] = "()" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["call_args"] = "()" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder" -defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["comment"] = "" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["constructor"] = true defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["funcname"] = "ImFontGlyphRangesBuilder" @@ -2786,7 +2679,6 @@ defs["ImFontGlyphRangesBuilder_SetBit"][1]["argsT"][2]["type"] = "int" defs["ImFontGlyphRangesBuilder_SetBit"][1]["argsoriginal"] = "(int n)" defs["ImFontGlyphRangesBuilder_SetBit"][1]["call_args"] = "(n)" defs["ImFontGlyphRangesBuilder_SetBit"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_SetBit" -defs["ImFontGlyphRangesBuilder_SetBit"][1]["comment"] = "" defs["ImFontGlyphRangesBuilder_SetBit"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_SetBit"][1]["funcname"] = "SetBit" defs["ImFontGlyphRangesBuilder_SetBit"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_SetBit" @@ -2850,7 +2742,6 @@ defs["ImFont_AddGlyph"][1]["argsT"][11]["type"] = "float" defs["ImFont_AddGlyph"][1]["argsoriginal"] = "(ImWchar c,float x0,float y0,float x1,float y1,float u0,float v0,float u1,float v1,float advance_x)" defs["ImFont_AddGlyph"][1]["call_args"] = "(c,x0,y0,x1,y1,u0,v0,u1,v1,advance_x)" defs["ImFont_AddGlyph"][1]["cimguiname"] = "ImFont_AddGlyph" -defs["ImFont_AddGlyph"][1]["comment"] = "" defs["ImFont_AddGlyph"][1]["defaults"] = {} defs["ImFont_AddGlyph"][1]["funcname"] = "AddGlyph" defs["ImFont_AddGlyph"][1]["ov_cimguiname"] = "ImFont_AddGlyph" @@ -2877,7 +2768,6 @@ defs["ImFont_AddRemapChar"][1]["argsT"][4]["type"] = "bool" defs["ImFont_AddRemapChar"][1]["argsoriginal"] = "(ImWchar dst,ImWchar src,bool overwrite_dst=true)" defs["ImFont_AddRemapChar"][1]["call_args"] = "(dst,src,overwrite_dst)" defs["ImFont_AddRemapChar"][1]["cimguiname"] = "ImFont_AddRemapChar" -defs["ImFont_AddRemapChar"][1]["comment"] = "" defs["ImFont_AddRemapChar"][1]["defaults"] = {} defs["ImFont_AddRemapChar"][1]["defaults"]["overwrite_dst"] = "true" defs["ImFont_AddRemapChar"][1]["funcname"] = "AddRemapChar" @@ -2896,7 +2786,6 @@ defs["ImFont_BuildLookupTable"][1]["argsT"][1]["type"] = "ImFont*" defs["ImFont_BuildLookupTable"][1]["argsoriginal"] = "()" defs["ImFont_BuildLookupTable"][1]["call_args"] = "()" defs["ImFont_BuildLookupTable"][1]["cimguiname"] = "ImFont_BuildLookupTable" -defs["ImFont_BuildLookupTable"][1]["comment"] = "" defs["ImFont_BuildLookupTable"][1]["defaults"] = {} defs["ImFont_BuildLookupTable"][1]["funcname"] = "BuildLookupTable" defs["ImFont_BuildLookupTable"][1]["ov_cimguiname"] = "ImFont_BuildLookupTable" @@ -2932,7 +2821,6 @@ defs["ImFont_CalcTextSizeA"][1]["argsT"][7]["type"] = "const char**" defs["ImFont_CalcTextSizeA"][1]["argsoriginal"] = "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void*)0),const char** remaining=((void*)0))" defs["ImFont_CalcTextSizeA"][1]["call_args"] = "(size,max_width,wrap_width,text_begin,text_end,remaining)" defs["ImFont_CalcTextSizeA"][1]["cimguiname"] = "ImFont_CalcTextSizeA" -defs["ImFont_CalcTextSizeA"][1]["comment"] = "" defs["ImFont_CalcTextSizeA"][1]["defaults"] = {} defs["ImFont_CalcTextSizeA"][1]["defaults"]["remaining"] = "((void*)0)" defs["ImFont_CalcTextSizeA"][1]["defaults"]["text_end"] = "((void*)0)" @@ -2971,7 +2859,6 @@ defs["ImFont_CalcTextSizeA"][2]["argsT"][8]["type"] = "const char**" defs["ImFont_CalcTextSizeA"][2]["argsoriginal"] = "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void*)0),const char** remaining=((void*)0))" defs["ImFont_CalcTextSizeA"][2]["call_args"] = "(size,max_width,wrap_width,text_begin,text_end,remaining)" defs["ImFont_CalcTextSizeA"][2]["cimguiname"] = "ImFont_CalcTextSizeA" -defs["ImFont_CalcTextSizeA"][2]["comment"] = "" defs["ImFont_CalcTextSizeA"][2]["defaults"] = defs["ImFont_CalcTextSizeA"][1]["defaults"] defs["ImFont_CalcTextSizeA"][2]["funcname"] = "CalcTextSizeA" defs["ImFont_CalcTextSizeA"][2]["nonUDT"] = 1 @@ -3006,7 +2893,6 @@ defs["ImFont_CalcTextSizeA"][3]["argsT"][7]["type"] = "const char**" defs["ImFont_CalcTextSizeA"][3]["argsoriginal"] = "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void*)0),const char** remaining=((void*)0))" defs["ImFont_CalcTextSizeA"][3]["call_args"] = "(size,max_width,wrap_width,text_begin,text_end,remaining)" defs["ImFont_CalcTextSizeA"][3]["cimguiname"] = "ImFont_CalcTextSizeA" -defs["ImFont_CalcTextSizeA"][3]["comment"] = "" defs["ImFont_CalcTextSizeA"][3]["defaults"] = defs["ImFont_CalcTextSizeA"][1]["defaults"] defs["ImFont_CalcTextSizeA"][3]["funcname"] = "CalcTextSizeA" defs["ImFont_CalcTextSizeA"][3]["nonUDT"] = 2 @@ -3040,7 +2926,6 @@ defs["ImFont_CalcWordWrapPositionA"][1]["argsT"][5]["type"] = "float" defs["ImFont_CalcWordWrapPositionA"][1]["argsoriginal"] = "(float scale,const char* text,const char* text_end,float wrap_width)" defs["ImFont_CalcWordWrapPositionA"][1]["call_args"] = "(scale,text,text_end,wrap_width)" defs["ImFont_CalcWordWrapPositionA"][1]["cimguiname"] = "ImFont_CalcWordWrapPositionA" -defs["ImFont_CalcWordWrapPositionA"][1]["comment"] = "" defs["ImFont_CalcWordWrapPositionA"][1]["defaults"] = {} defs["ImFont_CalcWordWrapPositionA"][1]["funcname"] = "CalcWordWrapPositionA" defs["ImFont_CalcWordWrapPositionA"][1]["ov_cimguiname"] = "ImFont_CalcWordWrapPositionA" @@ -3058,7 +2943,6 @@ defs["ImFont_ClearOutputData"][1]["argsT"][1]["type"] = "ImFont*" defs["ImFont_ClearOutputData"][1]["argsoriginal"] = "()" defs["ImFont_ClearOutputData"][1]["call_args"] = "()" defs["ImFont_ClearOutputData"][1]["cimguiname"] = "ImFont_ClearOutputData" -defs["ImFont_ClearOutputData"][1]["comment"] = "" defs["ImFont_ClearOutputData"][1]["defaults"] = {} defs["ImFont_ClearOutputData"][1]["funcname"] = "ClearOutputData" defs["ImFont_ClearOutputData"][1]["ov_cimguiname"] = "ImFont_ClearOutputData" @@ -3079,7 +2963,6 @@ defs["ImFont_FindGlyph"][1]["argsT"][2]["type"] = "ImWchar" defs["ImFont_FindGlyph"][1]["argsoriginal"] = "(ImWchar c)" defs["ImFont_FindGlyph"][1]["call_args"] = "(c)" defs["ImFont_FindGlyph"][1]["cimguiname"] = "ImFont_FindGlyph" -defs["ImFont_FindGlyph"][1]["comment"] = "" defs["ImFont_FindGlyph"][1]["defaults"] = {} defs["ImFont_FindGlyph"][1]["funcname"] = "FindGlyph" defs["ImFont_FindGlyph"][1]["ov_cimguiname"] = "ImFont_FindGlyph" @@ -3100,7 +2983,6 @@ defs["ImFont_FindGlyphNoFallback"][1]["argsT"][2]["type"] = "ImWchar" defs["ImFont_FindGlyphNoFallback"][1]["argsoriginal"] = "(ImWchar c)" defs["ImFont_FindGlyphNoFallback"][1]["call_args"] = "(c)" defs["ImFont_FindGlyphNoFallback"][1]["cimguiname"] = "ImFont_FindGlyphNoFallback" -defs["ImFont_FindGlyphNoFallback"][1]["comment"] = "" defs["ImFont_FindGlyphNoFallback"][1]["defaults"] = {} defs["ImFont_FindGlyphNoFallback"][1]["funcname"] = "FindGlyphNoFallback" defs["ImFont_FindGlyphNoFallback"][1]["ov_cimguiname"] = "ImFont_FindGlyphNoFallback" @@ -3121,7 +3003,6 @@ defs["ImFont_GetCharAdvance"][1]["argsT"][2]["type"] = "ImWchar" defs["ImFont_GetCharAdvance"][1]["argsoriginal"] = "(ImWchar c)" defs["ImFont_GetCharAdvance"][1]["call_args"] = "(c)" defs["ImFont_GetCharAdvance"][1]["cimguiname"] = "ImFont_GetCharAdvance" -defs["ImFont_GetCharAdvance"][1]["comment"] = "" defs["ImFont_GetCharAdvance"][1]["defaults"] = {} defs["ImFont_GetCharAdvance"][1]["funcname"] = "GetCharAdvance" defs["ImFont_GetCharAdvance"][1]["ov_cimguiname"] = "ImFont_GetCharAdvance" @@ -3139,7 +3020,6 @@ defs["ImFont_GetDebugName"][1]["argsT"][1]["type"] = "ImFont*" defs["ImFont_GetDebugName"][1]["argsoriginal"] = "()" defs["ImFont_GetDebugName"][1]["call_args"] = "()" defs["ImFont_GetDebugName"][1]["cimguiname"] = "ImFont_GetDebugName" -defs["ImFont_GetDebugName"][1]["comment"] = "" defs["ImFont_GetDebugName"][1]["defaults"] = {} defs["ImFont_GetDebugName"][1]["funcname"] = "GetDebugName" defs["ImFont_GetDebugName"][1]["ov_cimguiname"] = "ImFont_GetDebugName" @@ -3160,7 +3040,6 @@ defs["ImFont_GrowIndex"][1]["argsT"][2]["type"] = "int" defs["ImFont_GrowIndex"][1]["argsoriginal"] = "(int new_size)" defs["ImFont_GrowIndex"][1]["call_args"] = "(new_size)" defs["ImFont_GrowIndex"][1]["cimguiname"] = "ImFont_GrowIndex" -defs["ImFont_GrowIndex"][1]["comment"] = "" defs["ImFont_GrowIndex"][1]["defaults"] = {} defs["ImFont_GrowIndex"][1]["funcname"] = "GrowIndex" defs["ImFont_GrowIndex"][1]["ov_cimguiname"] = "ImFont_GrowIndex" @@ -3175,7 +3054,6 @@ defs["ImFont_ImFont"][1]["argsT"] = {} defs["ImFont_ImFont"][1]["argsoriginal"] = "()" defs["ImFont_ImFont"][1]["call_args"] = "()" defs["ImFont_ImFont"][1]["cimguiname"] = "ImFont_ImFont" -defs["ImFont_ImFont"][1]["comment"] = "" defs["ImFont_ImFont"][1]["constructor"] = true defs["ImFont_ImFont"][1]["defaults"] = {} defs["ImFont_ImFont"][1]["funcname"] = "ImFont" @@ -3193,7 +3071,6 @@ defs["ImFont_IsLoaded"][1]["argsT"][1]["type"] = "ImFont*" defs["ImFont_IsLoaded"][1]["argsoriginal"] = "()" defs["ImFont_IsLoaded"][1]["call_args"] = "()" defs["ImFont_IsLoaded"][1]["cimguiname"] = "ImFont_IsLoaded" -defs["ImFont_IsLoaded"][1]["comment"] = "" defs["ImFont_IsLoaded"][1]["defaults"] = {} defs["ImFont_IsLoaded"][1]["funcname"] = "IsLoaded" defs["ImFont_IsLoaded"][1]["ov_cimguiname"] = "ImFont_IsLoaded" @@ -3226,7 +3103,6 @@ defs["ImFont_RenderChar"][1]["argsT"][6]["type"] = "ImWchar" defs["ImFont_RenderChar"][1]["argsoriginal"] = "(ImDrawList* draw_list,float size,ImVec2 pos,ImU32 col,ImWchar c)" defs["ImFont_RenderChar"][1]["call_args"] = "(draw_list,size,pos,col,c)" defs["ImFont_RenderChar"][1]["cimguiname"] = "ImFont_RenderChar" -defs["ImFont_RenderChar"][1]["comment"] = "" defs["ImFont_RenderChar"][1]["defaults"] = {} defs["ImFont_RenderChar"][1]["funcname"] = "RenderChar" defs["ImFont_RenderChar"][1]["ov_cimguiname"] = "ImFont_RenderChar" @@ -3271,7 +3147,6 @@ defs["ImFont_RenderText"][1]["argsT"][10]["type"] = "bool" defs["ImFont_RenderText"][1]["argsoriginal"] = "(ImDrawList* draw_list,float size,ImVec2 pos,ImU32 col,const ImVec4& clip_rect,const char* text_begin,const char* text_end,float wrap_width=0.0f,bool cpu_fine_clip=false)" defs["ImFont_RenderText"][1]["call_args"] = "(draw_list,size,pos,col,clip_rect,text_begin,text_end,wrap_width,cpu_fine_clip)" defs["ImFont_RenderText"][1]["cimguiname"] = "ImFont_RenderText" -defs["ImFont_RenderText"][1]["comment"] = "" defs["ImFont_RenderText"][1]["defaults"] = {} defs["ImFont_RenderText"][1]["defaults"]["cpu_fine_clip"] = "false" defs["ImFont_RenderText"][1]["defaults"]["wrap_width"] = "0.0f" @@ -3294,7 +3169,6 @@ defs["ImFont_SetFallbackChar"][1]["argsT"][2]["type"] = "ImWchar" defs["ImFont_SetFallbackChar"][1]["argsoriginal"] = "(ImWchar c)" defs["ImFont_SetFallbackChar"][1]["call_args"] = "(c)" defs["ImFont_SetFallbackChar"][1]["cimguiname"] = "ImFont_SetFallbackChar" -defs["ImFont_SetFallbackChar"][1]["comment"] = "" defs["ImFont_SetFallbackChar"][1]["defaults"] = {} defs["ImFont_SetFallbackChar"][1]["funcname"] = "SetFallbackChar" defs["ImFont_SetFallbackChar"][1]["ov_cimguiname"] = "ImFont_SetFallbackChar" @@ -3331,7 +3205,6 @@ defs["ImGuiIO_AddInputCharacter"][1]["argsT"][2]["type"] = "ImWchar" defs["ImGuiIO_AddInputCharacter"][1]["argsoriginal"] = "(ImWchar c)" defs["ImGuiIO_AddInputCharacter"][1]["call_args"] = "(c)" defs["ImGuiIO_AddInputCharacter"][1]["cimguiname"] = "ImGuiIO_AddInputCharacter" -defs["ImGuiIO_AddInputCharacter"][1]["comment"] = "" defs["ImGuiIO_AddInputCharacter"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharacter"][1]["funcname"] = "AddInputCharacter" defs["ImGuiIO_AddInputCharacter"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharacter" @@ -3352,7 +3225,6 @@ defs["ImGuiIO_AddInputCharactersUTF8"][1]["argsT"][2]["type"] = "const char*" defs["ImGuiIO_AddInputCharactersUTF8"][1]["argsoriginal"] = "(const char* str)" defs["ImGuiIO_AddInputCharactersUTF8"][1]["call_args"] = "(str)" defs["ImGuiIO_AddInputCharactersUTF8"][1]["cimguiname"] = "ImGuiIO_AddInputCharactersUTF8" -defs["ImGuiIO_AddInputCharactersUTF8"][1]["comment"] = "" defs["ImGuiIO_AddInputCharactersUTF8"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharactersUTF8"][1]["funcname"] = "AddInputCharactersUTF8" defs["ImGuiIO_AddInputCharactersUTF8"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharactersUTF8" @@ -3370,7 +3242,6 @@ defs["ImGuiIO_ClearInputCharacters"][1]["argsT"][1]["type"] = "ImGuiIO*" defs["ImGuiIO_ClearInputCharacters"][1]["argsoriginal"] = "()" defs["ImGuiIO_ClearInputCharacters"][1]["call_args"] = "()" defs["ImGuiIO_ClearInputCharacters"][1]["cimguiname"] = "ImGuiIO_ClearInputCharacters" -defs["ImGuiIO_ClearInputCharacters"][1]["comment"] = "" defs["ImGuiIO_ClearInputCharacters"][1]["defaults"] = {} defs["ImGuiIO_ClearInputCharacters"][1]["funcname"] = "ClearInputCharacters" defs["ImGuiIO_ClearInputCharacters"][1]["ov_cimguiname"] = "ImGuiIO_ClearInputCharacters" @@ -3385,7 +3256,6 @@ defs["ImGuiIO_ImGuiIO"][1]["argsT"] = {} defs["ImGuiIO_ImGuiIO"][1]["argsoriginal"] = "()" defs["ImGuiIO_ImGuiIO"][1]["call_args"] = "()" defs["ImGuiIO_ImGuiIO"][1]["cimguiname"] = "ImGuiIO_ImGuiIO" -defs["ImGuiIO_ImGuiIO"][1]["comment"] = "" defs["ImGuiIO_ImGuiIO"][1]["constructor"] = true defs["ImGuiIO_ImGuiIO"][1]["defaults"] = {} defs["ImGuiIO_ImGuiIO"][1]["funcname"] = "ImGuiIO" @@ -3425,7 +3295,6 @@ defs["ImGuiInputTextCallbackData_DeleteChars"][1]["argsT"][3]["type"] = "int" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["argsoriginal"] = "(int pos,int bytes_count)" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["call_args"] = "(pos,bytes_count)" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["cimguiname"] = "ImGuiInputTextCallbackData_DeleteChars" -defs["ImGuiInputTextCallbackData_DeleteChars"][1]["comment"] = "" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_DeleteChars"][1]["funcname"] = "DeleteChars" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_DeleteChars" @@ -3443,7 +3312,6 @@ defs["ImGuiInputTextCallbackData_HasSelection"][1]["argsT"][1]["type"] = "ImGuiI defs["ImGuiInputTextCallbackData_HasSelection"][1]["argsoriginal"] = "()" defs["ImGuiInputTextCallbackData_HasSelection"][1]["call_args"] = "()" defs["ImGuiInputTextCallbackData_HasSelection"][1]["cimguiname"] = "ImGuiInputTextCallbackData_HasSelection" -defs["ImGuiInputTextCallbackData_HasSelection"][1]["comment"] = "" defs["ImGuiInputTextCallbackData_HasSelection"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_HasSelection"][1]["funcname"] = "HasSelection" defs["ImGuiInputTextCallbackData_HasSelection"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_HasSelection" @@ -3458,7 +3326,6 @@ defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["argsT"] = {} defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["argsoriginal"] = "()" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["call_args"] = "()" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["cimguiname"] = "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData" -defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["comment"] = "" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["constructor"] = true defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["funcname"] = "ImGuiInputTextCallbackData" @@ -3485,7 +3352,6 @@ defs["ImGuiInputTextCallbackData_InsertChars"][1]["argsT"][4]["type"] = "const c defs["ImGuiInputTextCallbackData_InsertChars"][1]["argsoriginal"] = "(int pos,const char* text,const char* text_end=((void*)0))" defs["ImGuiInputTextCallbackData_InsertChars"][1]["call_args"] = "(pos,text,text_end)" defs["ImGuiInputTextCallbackData_InsertChars"][1]["cimguiname"] = "ImGuiInputTextCallbackData_InsertChars" -defs["ImGuiInputTextCallbackData_InsertChars"][1]["comment"] = "" defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"]["text_end"] = "((void*)0)" defs["ImGuiInputTextCallbackData_InsertChars"][1]["funcname"] = "InsertChars" @@ -3526,7 +3392,6 @@ defs["ImGuiListClipper_Begin"][1]["argsT"][3]["type"] = "float" defs["ImGuiListClipper_Begin"][1]["argsoriginal"] = "(int items_count,float items_height=-1.0f)" defs["ImGuiListClipper_Begin"][1]["call_args"] = "(items_count,items_height)" defs["ImGuiListClipper_Begin"][1]["cimguiname"] = "ImGuiListClipper_Begin" -defs["ImGuiListClipper_Begin"][1]["comment"] = "" defs["ImGuiListClipper_Begin"][1]["defaults"] = {} defs["ImGuiListClipper_Begin"][1]["defaults"]["items_height"] = "-1.0f" defs["ImGuiListClipper_Begin"][1]["funcname"] = "Begin" @@ -3545,7 +3410,6 @@ defs["ImGuiListClipper_End"][1]["argsT"][1]["type"] = "ImGuiListClipper*" defs["ImGuiListClipper_End"][1]["argsoriginal"] = "()" defs["ImGuiListClipper_End"][1]["call_args"] = "()" defs["ImGuiListClipper_End"][1]["cimguiname"] = "ImGuiListClipper_End" -defs["ImGuiListClipper_End"][1]["comment"] = "" defs["ImGuiListClipper_End"][1]["defaults"] = {} defs["ImGuiListClipper_End"][1]["funcname"] = "End" defs["ImGuiListClipper_End"][1]["ov_cimguiname"] = "ImGuiListClipper_End" @@ -3566,7 +3430,6 @@ defs["ImGuiListClipper_ImGuiListClipper"][1]["argsT"][2]["type"] = "float" defs["ImGuiListClipper_ImGuiListClipper"][1]["argsoriginal"] = "(int items_count=-1,float items_height=-1.0f)" defs["ImGuiListClipper_ImGuiListClipper"][1]["call_args"] = "(items_count,items_height)" defs["ImGuiListClipper_ImGuiListClipper"][1]["cimguiname"] = "ImGuiListClipper_ImGuiListClipper" -defs["ImGuiListClipper_ImGuiListClipper"][1]["comment"] = "" defs["ImGuiListClipper_ImGuiListClipper"][1]["constructor"] = true defs["ImGuiListClipper_ImGuiListClipper"][1]["defaults"] = {} defs["ImGuiListClipper_ImGuiListClipper"][1]["defaults"]["items_count"] = "-1" @@ -3586,7 +3449,6 @@ defs["ImGuiListClipper_Step"][1]["argsT"][1]["type"] = "ImGuiListClipper*" defs["ImGuiListClipper_Step"][1]["argsoriginal"] = "()" defs["ImGuiListClipper_Step"][1]["call_args"] = "()" defs["ImGuiListClipper_Step"][1]["cimguiname"] = "ImGuiListClipper_Step" -defs["ImGuiListClipper_Step"][1]["comment"] = "" defs["ImGuiListClipper_Step"][1]["defaults"] = {} defs["ImGuiListClipper_Step"][1]["funcname"] = "Step" defs["ImGuiListClipper_Step"][1]["ov_cimguiname"] = "ImGuiListClipper_Step" @@ -3617,7 +3479,6 @@ defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["argsT"] = {} defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["argsoriginal"] = "()" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["call_args"] = "()" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["cimguiname"] = "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame" -defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["comment"] = "" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["constructor"] = true defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["defaults"] = {} defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["funcname"] = "ImGuiOnceUponAFrame" @@ -3651,7 +3512,6 @@ defs["ImGuiPayload_Clear"][1]["argsT"][1]["type"] = "ImGuiPayload*" defs["ImGuiPayload_Clear"][1]["argsoriginal"] = "()" defs["ImGuiPayload_Clear"][1]["call_args"] = "()" defs["ImGuiPayload_Clear"][1]["cimguiname"] = "ImGuiPayload_Clear" -defs["ImGuiPayload_Clear"][1]["comment"] = "" defs["ImGuiPayload_Clear"][1]["defaults"] = {} defs["ImGuiPayload_Clear"][1]["funcname"] = "Clear" defs["ImGuiPayload_Clear"][1]["ov_cimguiname"] = "ImGuiPayload_Clear" @@ -3666,7 +3526,6 @@ defs["ImGuiPayload_ImGuiPayload"][1]["argsT"] = {} defs["ImGuiPayload_ImGuiPayload"][1]["argsoriginal"] = "()" defs["ImGuiPayload_ImGuiPayload"][1]["call_args"] = "()" defs["ImGuiPayload_ImGuiPayload"][1]["cimguiname"] = "ImGuiPayload_ImGuiPayload" -defs["ImGuiPayload_ImGuiPayload"][1]["comment"] = "" defs["ImGuiPayload_ImGuiPayload"][1]["constructor"] = true defs["ImGuiPayload_ImGuiPayload"][1]["defaults"] = {} defs["ImGuiPayload_ImGuiPayload"][1]["funcname"] = "ImGuiPayload" @@ -3687,7 +3546,6 @@ defs["ImGuiPayload_IsDataType"][1]["argsT"][2]["type"] = "const char*" defs["ImGuiPayload_IsDataType"][1]["argsoriginal"] = "(const char* type)" defs["ImGuiPayload_IsDataType"][1]["call_args"] = "(type)" defs["ImGuiPayload_IsDataType"][1]["cimguiname"] = "ImGuiPayload_IsDataType" -defs["ImGuiPayload_IsDataType"][1]["comment"] = "" defs["ImGuiPayload_IsDataType"][1]["defaults"] = {} defs["ImGuiPayload_IsDataType"][1]["funcname"] = "IsDataType" defs["ImGuiPayload_IsDataType"][1]["ov_cimguiname"] = "ImGuiPayload_IsDataType" @@ -3705,7 +3563,6 @@ defs["ImGuiPayload_IsDelivery"][1]["argsT"][1]["type"] = "ImGuiPayload*" defs["ImGuiPayload_IsDelivery"][1]["argsoriginal"] = "()" defs["ImGuiPayload_IsDelivery"][1]["call_args"] = "()" defs["ImGuiPayload_IsDelivery"][1]["cimguiname"] = "ImGuiPayload_IsDelivery" -defs["ImGuiPayload_IsDelivery"][1]["comment"] = "" defs["ImGuiPayload_IsDelivery"][1]["defaults"] = {} defs["ImGuiPayload_IsDelivery"][1]["funcname"] = "IsDelivery" defs["ImGuiPayload_IsDelivery"][1]["ov_cimguiname"] = "ImGuiPayload_IsDelivery" @@ -3723,7 +3580,6 @@ defs["ImGuiPayload_IsPreview"][1]["argsT"][1]["type"] = "ImGuiPayload*" defs["ImGuiPayload_IsPreview"][1]["argsoriginal"] = "()" defs["ImGuiPayload_IsPreview"][1]["call_args"] = "()" defs["ImGuiPayload_IsPreview"][1]["cimguiname"] = "ImGuiPayload_IsPreview" -defs["ImGuiPayload_IsPreview"][1]["comment"] = "" defs["ImGuiPayload_IsPreview"][1]["defaults"] = {} defs["ImGuiPayload_IsPreview"][1]["funcname"] = "IsPreview" defs["ImGuiPayload_IsPreview"][1]["ov_cimguiname"] = "ImGuiPayload_IsPreview" @@ -3757,7 +3613,6 @@ defs["ImGuiStorage_BuildSortByKey"][1]["argsT"][1]["type"] = "ImGuiStorage*" defs["ImGuiStorage_BuildSortByKey"][1]["argsoriginal"] = "()" defs["ImGuiStorage_BuildSortByKey"][1]["call_args"] = "()" defs["ImGuiStorage_BuildSortByKey"][1]["cimguiname"] = "ImGuiStorage_BuildSortByKey" -defs["ImGuiStorage_BuildSortByKey"][1]["comment"] = "" defs["ImGuiStorage_BuildSortByKey"][1]["defaults"] = {} defs["ImGuiStorage_BuildSortByKey"][1]["funcname"] = "BuildSortByKey" defs["ImGuiStorage_BuildSortByKey"][1]["ov_cimguiname"] = "ImGuiStorage_BuildSortByKey" @@ -3775,7 +3630,6 @@ defs["ImGuiStorage_Clear"][1]["argsT"][1]["type"] = "ImGuiStorage*" defs["ImGuiStorage_Clear"][1]["argsoriginal"] = "()" defs["ImGuiStorage_Clear"][1]["call_args"] = "()" defs["ImGuiStorage_Clear"][1]["cimguiname"] = "ImGuiStorage_Clear" -defs["ImGuiStorage_Clear"][1]["comment"] = "" defs["ImGuiStorage_Clear"][1]["defaults"] = {} defs["ImGuiStorage_Clear"][1]["funcname"] = "Clear" defs["ImGuiStorage_Clear"][1]["ov_cimguiname"] = "ImGuiStorage_Clear" @@ -3799,7 +3653,6 @@ defs["ImGuiStorage_GetBool"][1]["argsT"][3]["type"] = "bool" defs["ImGuiStorage_GetBool"][1]["argsoriginal"] = "(ImGuiID key,bool default_val=false)" defs["ImGuiStorage_GetBool"][1]["call_args"] = "(key,default_val)" defs["ImGuiStorage_GetBool"][1]["cimguiname"] = "ImGuiStorage_GetBool" -defs["ImGuiStorage_GetBool"][1]["comment"] = "" defs["ImGuiStorage_GetBool"][1]["defaults"] = {} defs["ImGuiStorage_GetBool"][1]["defaults"]["default_val"] = "false" defs["ImGuiStorage_GetBool"][1]["funcname"] = "GetBool" @@ -3824,7 +3677,6 @@ defs["ImGuiStorage_GetBoolRef"][1]["argsT"][3]["type"] = "bool" defs["ImGuiStorage_GetBoolRef"][1]["argsoriginal"] = "(ImGuiID key,bool default_val=false)" defs["ImGuiStorage_GetBoolRef"][1]["call_args"] = "(key,default_val)" defs["ImGuiStorage_GetBoolRef"][1]["cimguiname"] = "ImGuiStorage_GetBoolRef" -defs["ImGuiStorage_GetBoolRef"][1]["comment"] = "" defs["ImGuiStorage_GetBoolRef"][1]["defaults"] = {} defs["ImGuiStorage_GetBoolRef"][1]["defaults"]["default_val"] = "false" defs["ImGuiStorage_GetBoolRef"][1]["funcname"] = "GetBoolRef" @@ -3849,7 +3701,6 @@ defs["ImGuiStorage_GetFloat"][1]["argsT"][3]["type"] = "float" defs["ImGuiStorage_GetFloat"][1]["argsoriginal"] = "(ImGuiID key,float default_val=0.0f)" defs["ImGuiStorage_GetFloat"][1]["call_args"] = "(key,default_val)" defs["ImGuiStorage_GetFloat"][1]["cimguiname"] = "ImGuiStorage_GetFloat" -defs["ImGuiStorage_GetFloat"][1]["comment"] = "" defs["ImGuiStorage_GetFloat"][1]["defaults"] = {} defs["ImGuiStorage_GetFloat"][1]["defaults"]["default_val"] = "0.0f" defs["ImGuiStorage_GetFloat"][1]["funcname"] = "GetFloat" @@ -3874,7 +3725,6 @@ defs["ImGuiStorage_GetFloatRef"][1]["argsT"][3]["type"] = "float" defs["ImGuiStorage_GetFloatRef"][1]["argsoriginal"] = "(ImGuiID key,float default_val=0.0f)" defs["ImGuiStorage_GetFloatRef"][1]["call_args"] = "(key,default_val)" defs["ImGuiStorage_GetFloatRef"][1]["cimguiname"] = "ImGuiStorage_GetFloatRef" -defs["ImGuiStorage_GetFloatRef"][1]["comment"] = "" defs["ImGuiStorage_GetFloatRef"][1]["defaults"] = {} defs["ImGuiStorage_GetFloatRef"][1]["defaults"]["default_val"] = "0.0f" defs["ImGuiStorage_GetFloatRef"][1]["funcname"] = "GetFloatRef" @@ -3899,7 +3749,6 @@ defs["ImGuiStorage_GetInt"][1]["argsT"][3]["type"] = "int" defs["ImGuiStorage_GetInt"][1]["argsoriginal"] = "(ImGuiID key,int default_val=0)" defs["ImGuiStorage_GetInt"][1]["call_args"] = "(key,default_val)" defs["ImGuiStorage_GetInt"][1]["cimguiname"] = "ImGuiStorage_GetInt" -defs["ImGuiStorage_GetInt"][1]["comment"] = "" defs["ImGuiStorage_GetInt"][1]["defaults"] = {} defs["ImGuiStorage_GetInt"][1]["defaults"]["default_val"] = "0" defs["ImGuiStorage_GetInt"][1]["funcname"] = "GetInt" @@ -3924,7 +3773,6 @@ defs["ImGuiStorage_GetIntRef"][1]["argsT"][3]["type"] = "int" defs["ImGuiStorage_GetIntRef"][1]["argsoriginal"] = "(ImGuiID key,int default_val=0)" defs["ImGuiStorage_GetIntRef"][1]["call_args"] = "(key,default_val)" defs["ImGuiStorage_GetIntRef"][1]["cimguiname"] = "ImGuiStorage_GetIntRef" -defs["ImGuiStorage_GetIntRef"][1]["comment"] = "" defs["ImGuiStorage_GetIntRef"][1]["defaults"] = {} defs["ImGuiStorage_GetIntRef"][1]["defaults"]["default_val"] = "0" defs["ImGuiStorage_GetIntRef"][1]["funcname"] = "GetIntRef" @@ -3946,7 +3794,6 @@ defs["ImGuiStorage_GetVoidPtr"][1]["argsT"][2]["type"] = "ImGuiID" defs["ImGuiStorage_GetVoidPtr"][1]["argsoriginal"] = "(ImGuiID key)" defs["ImGuiStorage_GetVoidPtr"][1]["call_args"] = "(key)" defs["ImGuiStorage_GetVoidPtr"][1]["cimguiname"] = "ImGuiStorage_GetVoidPtr" -defs["ImGuiStorage_GetVoidPtr"][1]["comment"] = "" defs["ImGuiStorage_GetVoidPtr"][1]["defaults"] = {} defs["ImGuiStorage_GetVoidPtr"][1]["funcname"] = "GetVoidPtr" defs["ImGuiStorage_GetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtr" @@ -3970,7 +3817,6 @@ defs["ImGuiStorage_GetVoidPtrRef"][1]["argsT"][3]["type"] = "void*" defs["ImGuiStorage_GetVoidPtrRef"][1]["argsoriginal"] = "(ImGuiID key,void* default_val=((void*)0))" defs["ImGuiStorage_GetVoidPtrRef"][1]["call_args"] = "(key,default_val)" defs["ImGuiStorage_GetVoidPtrRef"][1]["cimguiname"] = "ImGuiStorage_GetVoidPtrRef" -defs["ImGuiStorage_GetVoidPtrRef"][1]["comment"] = "" defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"] = {} defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"]["default_val"] = "((void*)0)" defs["ImGuiStorage_GetVoidPtrRef"][1]["funcname"] = "GetVoidPtrRef" @@ -3992,7 +3838,6 @@ defs["ImGuiStorage_SetAllInt"][1]["argsT"][2]["type"] = "int" defs["ImGuiStorage_SetAllInt"][1]["argsoriginal"] = "(int val)" defs["ImGuiStorage_SetAllInt"][1]["call_args"] = "(val)" defs["ImGuiStorage_SetAllInt"][1]["cimguiname"] = "ImGuiStorage_SetAllInt" -defs["ImGuiStorage_SetAllInt"][1]["comment"] = "" defs["ImGuiStorage_SetAllInt"][1]["defaults"] = {} defs["ImGuiStorage_SetAllInt"][1]["funcname"] = "SetAllInt" defs["ImGuiStorage_SetAllInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetAllInt" @@ -4016,7 +3861,6 @@ defs["ImGuiStorage_SetBool"][1]["argsT"][3]["type"] = "bool" defs["ImGuiStorage_SetBool"][1]["argsoriginal"] = "(ImGuiID key,bool val)" defs["ImGuiStorage_SetBool"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetBool"][1]["cimguiname"] = "ImGuiStorage_SetBool" -defs["ImGuiStorage_SetBool"][1]["comment"] = "" defs["ImGuiStorage_SetBool"][1]["defaults"] = {} defs["ImGuiStorage_SetBool"][1]["funcname"] = "SetBool" defs["ImGuiStorage_SetBool"][1]["ov_cimguiname"] = "ImGuiStorage_SetBool" @@ -4040,7 +3884,6 @@ defs["ImGuiStorage_SetFloat"][1]["argsT"][3]["type"] = "float" defs["ImGuiStorage_SetFloat"][1]["argsoriginal"] = "(ImGuiID key,float val)" defs["ImGuiStorage_SetFloat"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetFloat"][1]["cimguiname"] = "ImGuiStorage_SetFloat" -defs["ImGuiStorage_SetFloat"][1]["comment"] = "" defs["ImGuiStorage_SetFloat"][1]["defaults"] = {} defs["ImGuiStorage_SetFloat"][1]["funcname"] = "SetFloat" defs["ImGuiStorage_SetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_SetFloat" @@ -4064,7 +3907,6 @@ defs["ImGuiStorage_SetInt"][1]["argsT"][3]["type"] = "int" defs["ImGuiStorage_SetInt"][1]["argsoriginal"] = "(ImGuiID key,int val)" defs["ImGuiStorage_SetInt"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetInt"][1]["cimguiname"] = "ImGuiStorage_SetInt" -defs["ImGuiStorage_SetInt"][1]["comment"] = "" defs["ImGuiStorage_SetInt"][1]["defaults"] = {} defs["ImGuiStorage_SetInt"][1]["funcname"] = "SetInt" defs["ImGuiStorage_SetInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetInt" @@ -4088,7 +3930,6 @@ defs["ImGuiStorage_SetVoidPtr"][1]["argsT"][3]["type"] = "void*" defs["ImGuiStorage_SetVoidPtr"][1]["argsoriginal"] = "(ImGuiID key,void* val)" defs["ImGuiStorage_SetVoidPtr"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetVoidPtr"][1]["cimguiname"] = "ImGuiStorage_SetVoidPtr" -defs["ImGuiStorage_SetVoidPtr"][1]["comment"] = "" defs["ImGuiStorage_SetVoidPtr"][1]["defaults"] = {} defs["ImGuiStorage_SetVoidPtr"][1]["funcname"] = "SetVoidPtr" defs["ImGuiStorage_SetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_SetVoidPtr" @@ -4103,7 +3944,6 @@ defs["ImGuiStyle_ImGuiStyle"][1]["argsT"] = {} defs["ImGuiStyle_ImGuiStyle"][1]["argsoriginal"] = "()" defs["ImGuiStyle_ImGuiStyle"][1]["call_args"] = "()" defs["ImGuiStyle_ImGuiStyle"][1]["cimguiname"] = "ImGuiStyle_ImGuiStyle" -defs["ImGuiStyle_ImGuiStyle"][1]["comment"] = "" defs["ImGuiStyle_ImGuiStyle"][1]["constructor"] = true defs["ImGuiStyle_ImGuiStyle"][1]["defaults"] = {} defs["ImGuiStyle_ImGuiStyle"][1]["funcname"] = "ImGuiStyle" @@ -4124,7 +3964,6 @@ defs["ImGuiStyle_ScaleAllSizes"][1]["argsT"][2]["type"] = "float" defs["ImGuiStyle_ScaleAllSizes"][1]["argsoriginal"] = "(float scale_factor)" defs["ImGuiStyle_ScaleAllSizes"][1]["call_args"] = "(scale_factor)" defs["ImGuiStyle_ScaleAllSizes"][1]["cimguiname"] = "ImGuiStyle_ScaleAllSizes" -defs["ImGuiStyle_ScaleAllSizes"][1]["comment"] = "" defs["ImGuiStyle_ScaleAllSizes"][1]["defaults"] = {} defs["ImGuiStyle_ScaleAllSizes"][1]["funcname"] = "ScaleAllSizes" defs["ImGuiStyle_ScaleAllSizes"][1]["ov_cimguiname"] = "ImGuiStyle_ScaleAllSizes" @@ -4155,7 +3994,6 @@ defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["argsT"] = {} defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["argsoriginal"] = "()" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["call_args"] = "()" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["cimguiname"] = "ImGuiTextBuffer_ImGuiTextBuffer" -defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["comment"] = "" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["constructor"] = true defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["defaults"] = {} defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["funcname"] = "ImGuiTextBuffer" @@ -4179,7 +4017,6 @@ defs["ImGuiTextBuffer_appendf"][1]["argsT"][3]["type"] = "..." defs["ImGuiTextBuffer_appendf"][1]["argsoriginal"] = "(const char* fmt,...)" defs["ImGuiTextBuffer_appendf"][1]["call_args"] = "(fmt,...)" defs["ImGuiTextBuffer_appendf"][1]["cimguiname"] = "ImGuiTextBuffer_appendf" -defs["ImGuiTextBuffer_appendf"][1]["comment"] = "" defs["ImGuiTextBuffer_appendf"][1]["defaults"] = {} defs["ImGuiTextBuffer_appendf"][1]["funcname"] = "appendf" defs["ImGuiTextBuffer_appendf"][1]["isvararg"] = "...)" @@ -4205,7 +4042,6 @@ defs["ImGuiTextBuffer_appendfv"][1]["argsT"][3]["type"] = "va_list" defs["ImGuiTextBuffer_appendfv"][1]["argsoriginal"] = "(const char* fmt,va_list args)" defs["ImGuiTextBuffer_appendfv"][1]["call_args"] = "(fmt,args)" defs["ImGuiTextBuffer_appendfv"][1]["cimguiname"] = "ImGuiTextBuffer_appendfv" -defs["ImGuiTextBuffer_appendfv"][1]["comment"] = "" defs["ImGuiTextBuffer_appendfv"][1]["defaults"] = {} defs["ImGuiTextBuffer_appendfv"][1]["funcname"] = "appendfv" defs["ImGuiTextBuffer_appendfv"][1]["ov_cimguiname"] = "ImGuiTextBuffer_appendfv" @@ -4223,7 +4059,6 @@ defs["ImGuiTextBuffer_begin"][1]["argsT"][1]["type"] = "ImGuiTextBuffer*" defs["ImGuiTextBuffer_begin"][1]["argsoriginal"] = "()" defs["ImGuiTextBuffer_begin"][1]["call_args"] = "()" defs["ImGuiTextBuffer_begin"][1]["cimguiname"] = "ImGuiTextBuffer_begin" -defs["ImGuiTextBuffer_begin"][1]["comment"] = "" defs["ImGuiTextBuffer_begin"][1]["defaults"] = {} defs["ImGuiTextBuffer_begin"][1]["funcname"] = "begin" defs["ImGuiTextBuffer_begin"][1]["ov_cimguiname"] = "ImGuiTextBuffer_begin" @@ -4241,7 +4076,6 @@ defs["ImGuiTextBuffer_c_str"][1]["argsT"][1]["type"] = "ImGuiTextBuffer*" defs["ImGuiTextBuffer_c_str"][1]["argsoriginal"] = "()" defs["ImGuiTextBuffer_c_str"][1]["call_args"] = "()" defs["ImGuiTextBuffer_c_str"][1]["cimguiname"] = "ImGuiTextBuffer_c_str" -defs["ImGuiTextBuffer_c_str"][1]["comment"] = "" defs["ImGuiTextBuffer_c_str"][1]["defaults"] = {} defs["ImGuiTextBuffer_c_str"][1]["funcname"] = "c_str" defs["ImGuiTextBuffer_c_str"][1]["ov_cimguiname"] = "ImGuiTextBuffer_c_str" @@ -4259,7 +4093,6 @@ defs["ImGuiTextBuffer_clear"][1]["argsT"][1]["type"] = "ImGuiTextBuffer*" defs["ImGuiTextBuffer_clear"][1]["argsoriginal"] = "()" defs["ImGuiTextBuffer_clear"][1]["call_args"] = "()" defs["ImGuiTextBuffer_clear"][1]["cimguiname"] = "ImGuiTextBuffer_clear" -defs["ImGuiTextBuffer_clear"][1]["comment"] = "" defs["ImGuiTextBuffer_clear"][1]["defaults"] = {} defs["ImGuiTextBuffer_clear"][1]["funcname"] = "clear" defs["ImGuiTextBuffer_clear"][1]["ov_cimguiname"] = "ImGuiTextBuffer_clear" @@ -4293,7 +4126,6 @@ defs["ImGuiTextBuffer_empty"][1]["argsT"][1]["type"] = "ImGuiTextBuffer*" defs["ImGuiTextBuffer_empty"][1]["argsoriginal"] = "()" defs["ImGuiTextBuffer_empty"][1]["call_args"] = "()" defs["ImGuiTextBuffer_empty"][1]["cimguiname"] = "ImGuiTextBuffer_empty" -defs["ImGuiTextBuffer_empty"][1]["comment"] = "" defs["ImGuiTextBuffer_empty"][1]["defaults"] = {} defs["ImGuiTextBuffer_empty"][1]["funcname"] = "empty" defs["ImGuiTextBuffer_empty"][1]["ov_cimguiname"] = "ImGuiTextBuffer_empty" @@ -4311,7 +4143,6 @@ defs["ImGuiTextBuffer_end"][1]["argsT"][1]["type"] = "ImGuiTextBuffer*" defs["ImGuiTextBuffer_end"][1]["argsoriginal"] = "()" defs["ImGuiTextBuffer_end"][1]["call_args"] = "()" defs["ImGuiTextBuffer_end"][1]["cimguiname"] = "ImGuiTextBuffer_end" -defs["ImGuiTextBuffer_end"][1]["comment"] = "" defs["ImGuiTextBuffer_end"][1]["defaults"] = {} defs["ImGuiTextBuffer_end"][1]["funcname"] = "end" defs["ImGuiTextBuffer_end"][1]["ov_cimguiname"] = "ImGuiTextBuffer_end" @@ -4332,7 +4163,6 @@ defs["ImGuiTextBuffer_reserve"][1]["argsT"][2]["type"] = "int" defs["ImGuiTextBuffer_reserve"][1]["argsoriginal"] = "(int capacity)" defs["ImGuiTextBuffer_reserve"][1]["call_args"] = "(capacity)" defs["ImGuiTextBuffer_reserve"][1]["cimguiname"] = "ImGuiTextBuffer_reserve" -defs["ImGuiTextBuffer_reserve"][1]["comment"] = "" defs["ImGuiTextBuffer_reserve"][1]["defaults"] = {} defs["ImGuiTextBuffer_reserve"][1]["funcname"] = "reserve" defs["ImGuiTextBuffer_reserve"][1]["ov_cimguiname"] = "ImGuiTextBuffer_reserve" @@ -4350,7 +4180,6 @@ defs["ImGuiTextBuffer_size"][1]["argsT"][1]["type"] = "ImGuiTextBuffer*" defs["ImGuiTextBuffer_size"][1]["argsoriginal"] = "()" defs["ImGuiTextBuffer_size"][1]["call_args"] = "()" defs["ImGuiTextBuffer_size"][1]["cimguiname"] = "ImGuiTextBuffer_size" -defs["ImGuiTextBuffer_size"][1]["comment"] = "" defs["ImGuiTextBuffer_size"][1]["defaults"] = {} defs["ImGuiTextBuffer_size"][1]["funcname"] = "size" defs["ImGuiTextBuffer_size"][1]["ov_cimguiname"] = "ImGuiTextBuffer_size" @@ -4368,7 +4197,6 @@ defs["ImGuiTextFilter_Build"][1]["argsT"][1]["type"] = "ImGuiTextFilter*" defs["ImGuiTextFilter_Build"][1]["argsoriginal"] = "()" defs["ImGuiTextFilter_Build"][1]["call_args"] = "()" defs["ImGuiTextFilter_Build"][1]["cimguiname"] = "ImGuiTextFilter_Build" -defs["ImGuiTextFilter_Build"][1]["comment"] = "" defs["ImGuiTextFilter_Build"][1]["defaults"] = {} defs["ImGuiTextFilter_Build"][1]["funcname"] = "Build" defs["ImGuiTextFilter_Build"][1]["ov_cimguiname"] = "ImGuiTextFilter_Build" @@ -4386,7 +4214,6 @@ defs["ImGuiTextFilter_Clear"][1]["argsT"][1]["type"] = "ImGuiTextFilter*" defs["ImGuiTextFilter_Clear"][1]["argsoriginal"] = "()" defs["ImGuiTextFilter_Clear"][1]["call_args"] = "()" defs["ImGuiTextFilter_Clear"][1]["cimguiname"] = "ImGuiTextFilter_Clear" -defs["ImGuiTextFilter_Clear"][1]["comment"] = "" defs["ImGuiTextFilter_Clear"][1]["defaults"] = {} defs["ImGuiTextFilter_Clear"][1]["funcname"] = "Clear" defs["ImGuiTextFilter_Clear"][1]["ov_cimguiname"] = "ImGuiTextFilter_Clear" @@ -4410,7 +4237,6 @@ defs["ImGuiTextFilter_Draw"][1]["argsT"][3]["type"] = "float" defs["ImGuiTextFilter_Draw"][1]["argsoriginal"] = "(const char* label=\"Filter(inc,-exc)\",float width=0.0f)" defs["ImGuiTextFilter_Draw"][1]["call_args"] = "(label,width)" defs["ImGuiTextFilter_Draw"][1]["cimguiname"] = "ImGuiTextFilter_Draw" -defs["ImGuiTextFilter_Draw"][1]["comment"] = "" defs["ImGuiTextFilter_Draw"][1]["defaults"] = {} defs["ImGuiTextFilter_Draw"][1]["defaults"]["label"] = "\"Filter(inc,-exc)\"" defs["ImGuiTextFilter_Draw"][1]["defaults"]["width"] = "0.0f" @@ -4430,7 +4256,6 @@ defs["ImGuiTextFilter_ImGuiTextFilter"][1]["argsT"][1]["type"] = "const char*" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["argsoriginal"] = "(const char* default_filter=\"\")" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["call_args"] = "(default_filter)" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["cimguiname"] = "ImGuiTextFilter_ImGuiTextFilter" -defs["ImGuiTextFilter_ImGuiTextFilter"][1]["comment"] = "" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["constructor"] = true defs["ImGuiTextFilter_ImGuiTextFilter"][1]["defaults"] = {} defs["ImGuiTextFilter_ImGuiTextFilter"][1]["defaults"]["default_filter"] = "\"\"" @@ -4449,7 +4274,6 @@ defs["ImGuiTextFilter_IsActive"][1]["argsT"][1]["type"] = "ImGuiTextFilter*" defs["ImGuiTextFilter_IsActive"][1]["argsoriginal"] = "()" defs["ImGuiTextFilter_IsActive"][1]["call_args"] = "()" defs["ImGuiTextFilter_IsActive"][1]["cimguiname"] = "ImGuiTextFilter_IsActive" -defs["ImGuiTextFilter_IsActive"][1]["comment"] = "" defs["ImGuiTextFilter_IsActive"][1]["defaults"] = {} defs["ImGuiTextFilter_IsActive"][1]["funcname"] = "IsActive" defs["ImGuiTextFilter_IsActive"][1]["ov_cimguiname"] = "ImGuiTextFilter_IsActive" @@ -4473,7 +4297,6 @@ defs["ImGuiTextFilter_PassFilter"][1]["argsT"][3]["type"] = "const char*" defs["ImGuiTextFilter_PassFilter"][1]["argsoriginal"] = "(const char* text,const char* text_end=((void*)0))" defs["ImGuiTextFilter_PassFilter"][1]["call_args"] = "(text,text_end)" defs["ImGuiTextFilter_PassFilter"][1]["cimguiname"] = "ImGuiTextFilter_PassFilter" -defs["ImGuiTextFilter_PassFilter"][1]["comment"] = "" defs["ImGuiTextFilter_PassFilter"][1]["defaults"] = {} defs["ImGuiTextFilter_PassFilter"][1]["defaults"]["text_end"] = "((void*)0)" defs["ImGuiTextFilter_PassFilter"][1]["funcname"] = "PassFilter" @@ -4505,7 +4328,6 @@ defs["ImVec2_ImVec2"][1]["argsT"] = {} defs["ImVec2_ImVec2"][1]["argsoriginal"] = "()" defs["ImVec2_ImVec2"][1]["call_args"] = "()" defs["ImVec2_ImVec2"][1]["cimguiname"] = "ImVec2_ImVec2" -defs["ImVec2_ImVec2"][1]["comment"] = "" defs["ImVec2_ImVec2"][1]["constructor"] = true defs["ImVec2_ImVec2"][1]["defaults"] = {} defs["ImVec2_ImVec2"][1]["funcname"] = "ImVec2" @@ -4524,7 +4346,6 @@ defs["ImVec2_ImVec2"][2]["argsT"][2]["type"] = "float" defs["ImVec2_ImVec2"][2]["argsoriginal"] = "(float _x,float _y)" defs["ImVec2_ImVec2"][2]["call_args"] = "(_x,_y)" defs["ImVec2_ImVec2"][2]["cimguiname"] = "ImVec2_ImVec2" -defs["ImVec2_ImVec2"][2]["comment"] = "" defs["ImVec2_ImVec2"][2]["constructor"] = true defs["ImVec2_ImVec2"][2]["defaults"] = {} defs["ImVec2_ImVec2"][2]["funcname"] = "ImVec2" @@ -4556,7 +4377,6 @@ defs["ImVec4_ImVec4"][1]["argsT"] = {} defs["ImVec4_ImVec4"][1]["argsoriginal"] = "()" defs["ImVec4_ImVec4"][1]["call_args"] = "()" defs["ImVec4_ImVec4"][1]["cimguiname"] = "ImVec4_ImVec4" -defs["ImVec4_ImVec4"][1]["comment"] = "" defs["ImVec4_ImVec4"][1]["constructor"] = true defs["ImVec4_ImVec4"][1]["defaults"] = {} defs["ImVec4_ImVec4"][1]["funcname"] = "ImVec4" @@ -4581,7 +4401,6 @@ defs["ImVec4_ImVec4"][2]["argsT"][4]["type"] = "float" defs["ImVec4_ImVec4"][2]["argsoriginal"] = "(float _x,float _y,float _z,float _w)" defs["ImVec4_ImVec4"][2]["call_args"] = "(_x,_y,_z,_w)" defs["ImVec4_ImVec4"][2]["cimguiname"] = "ImVec4_ImVec4" -defs["ImVec4_ImVec4"][2]["comment"] = "" defs["ImVec4_ImVec4"][2]["constructor"] = true defs["ImVec4_ImVec4"][2]["defaults"] = {} defs["ImVec4_ImVec4"][2]["funcname"] = "ImVec4" @@ -10454,7 +10273,6 @@ defs["ImVector_ImVector"][1]["argsT"] = {} defs["ImVector_ImVector"][1]["argsoriginal"] = "()" defs["ImVector_ImVector"][1]["call_args"] = "()" defs["ImVector_ImVector"][1]["cimguiname"] = "ImVector_ImVector" -defs["ImVector_ImVector"][1]["comment"] = "" defs["ImVector_ImVector"][1]["constructor"] = true defs["ImVector_ImVector"][1]["defaults"] = {} defs["ImVector_ImVector"][1]["funcname"] = "ImVector" @@ -10471,7 +10289,6 @@ defs["ImVector_ImVector"][2]["argsT"][1]["type"] = "const ImVector" defs["ImVector_ImVector"][2]["argsoriginal"] = "(const ImVector& src)" defs["ImVector_ImVector"][2]["call_args"] = "(src)" defs["ImVector_ImVector"][2]["cimguiname"] = "ImVector_ImVector" -defs["ImVector_ImVector"][2]["comment"] = "" defs["ImVector_ImVector"][2]["constructor"] = true defs["ImVector_ImVector"][2]["defaults"] = {} defs["ImVector_ImVector"][2]["funcname"] = "ImVector" @@ -12107,7 +11924,6 @@ defs["ImVector__grow_capacity"][1]["argsT"][2]["type"] = "int" defs["ImVector__grow_capacity"][1]["argsoriginal"] = "(int sz)" defs["ImVector__grow_capacity"][1]["call_args"] = "(sz)" defs["ImVector__grow_capacity"][1]["cimguiname"] = "ImVector__grow_capacity" -defs["ImVector__grow_capacity"][1]["comment"] = "" defs["ImVector__grow_capacity"][1]["defaults"] = {} defs["ImVector__grow_capacity"][1]["funcname"] = "_grow_capacity" defs["ImVector__grow_capacity"][1]["ov_cimguiname"] = "ImVector__grow_capacity" @@ -12126,7 +11942,6 @@ defs["ImVector_back"][1]["argsT"][1]["type"] = "ImVector*" defs["ImVector_back"][1]["argsoriginal"] = "()" defs["ImVector_back"][1]["call_args"] = "()" defs["ImVector_back"][1]["cimguiname"] = "ImVector_back" -defs["ImVector_back"][1]["comment"] = "" defs["ImVector_back"][1]["defaults"] = {} defs["ImVector_back"][1]["funcname"] = "back" defs["ImVector_back"][1]["ov_cimguiname"] = "ImVector_back" @@ -12144,7 +11959,6 @@ defs["ImVector_back"][2]["argsT"][1]["type"] = "ImVector*" defs["ImVector_back"][2]["argsoriginal"] = "()" defs["ImVector_back"][2]["call_args"] = "()" defs["ImVector_back"][2]["cimguiname"] = "ImVector_back" -defs["ImVector_back"][2]["comment"] = "" defs["ImVector_back"][2]["defaults"] = {} defs["ImVector_back"][2]["funcname"] = "back" defs["ImVector_back"][2]["ov_cimguiname"] = "ImVector_back_const" @@ -12165,7 +11979,6 @@ defs["ImVector_begin"][1]["argsT"][1]["type"] = "ImVector*" defs["ImVector_begin"][1]["argsoriginal"] = "()" defs["ImVector_begin"][1]["call_args"] = "()" defs["ImVector_begin"][1]["cimguiname"] = "ImVector_begin" -defs["ImVector_begin"][1]["comment"] = "" defs["ImVector_begin"][1]["defaults"] = {} defs["ImVector_begin"][1]["funcname"] = "begin" defs["ImVector_begin"][1]["ov_cimguiname"] = "ImVector_begin" @@ -12182,7 +11995,6 @@ defs["ImVector_begin"][2]["argsT"][1]["type"] = "ImVector*" defs["ImVector_begin"][2]["argsoriginal"] = "()" defs["ImVector_begin"][2]["call_args"] = "()" defs["ImVector_begin"][2]["cimguiname"] = "ImVector_begin" -defs["ImVector_begin"][2]["comment"] = "" defs["ImVector_begin"][2]["defaults"] = {} defs["ImVector_begin"][2]["funcname"] = "begin" defs["ImVector_begin"][2]["ov_cimguiname"] = "ImVector_begin_const" @@ -12202,7 +12014,6 @@ defs["ImVector_capacity"][1]["argsT"][1]["type"] = "ImVector*" defs["ImVector_capacity"][1]["argsoriginal"] = "()" defs["ImVector_capacity"][1]["call_args"] = "()" defs["ImVector_capacity"][1]["cimguiname"] = "ImVector_capacity" -defs["ImVector_capacity"][1]["comment"] = "" defs["ImVector_capacity"][1]["defaults"] = {} defs["ImVector_capacity"][1]["funcname"] = "capacity" defs["ImVector_capacity"][1]["ov_cimguiname"] = "ImVector_capacity" @@ -12772,7 +12583,6 @@ defs["ImVector_clear"][1]["argsT"][1]["type"] = "ImVector*" defs["ImVector_clear"][1]["argsoriginal"] = "()" defs["ImVector_clear"][1]["call_args"] = "()" defs["ImVector_clear"][1]["cimguiname"] = "ImVector_clear" -defs["ImVector_clear"][1]["comment"] = "" defs["ImVector_clear"][1]["defaults"] = {} defs["ImVector_clear"][1]["funcname"] = "clear" defs["ImVector_clear"][1]["ov_cimguiname"] = "ImVector_clear" @@ -12808,7 +12618,6 @@ defs["ImVector_empty"][1]["argsT"][1]["type"] = "ImVector*" defs["ImVector_empty"][1]["argsoriginal"] = "()" defs["ImVector_empty"][1]["call_args"] = "()" defs["ImVector_empty"][1]["cimguiname"] = "ImVector_empty" -defs["ImVector_empty"][1]["comment"] = "" defs["ImVector_empty"][1]["defaults"] = {} defs["ImVector_empty"][1]["funcname"] = "empty" defs["ImVector_empty"][1]["ov_cimguiname"] = "ImVector_empty" @@ -12827,7 +12636,6 @@ defs["ImVector_end"][1]["argsT"][1]["type"] = "ImVector*" defs["ImVector_end"][1]["argsoriginal"] = "()" defs["ImVector_end"][1]["call_args"] = "()" defs["ImVector_end"][1]["cimguiname"] = "ImVector_end" -defs["ImVector_end"][1]["comment"] = "" defs["ImVector_end"][1]["defaults"] = {} defs["ImVector_end"][1]["funcname"] = "end" defs["ImVector_end"][1]["ov_cimguiname"] = "ImVector_end" @@ -12844,7 +12652,6 @@ defs["ImVector_end"][2]["argsT"][1]["type"] = "ImVector*" defs["ImVector_end"][2]["argsoriginal"] = "()" defs["ImVector_end"][2]["call_args"] = "()" defs["ImVector_end"][2]["cimguiname"] = "ImVector_end" -defs["ImVector_end"][2]["comment"] = "" defs["ImVector_end"][2]["defaults"] = {} defs["ImVector_end"][2]["funcname"] = "end" defs["ImVector_end"][2]["ov_cimguiname"] = "ImVector_end_const" @@ -12867,7 +12674,6 @@ defs["ImVector_erase"][1]["argsT"][2]["type"] = "const T*" defs["ImVector_erase"][1]["argsoriginal"] = "(const T* it)" defs["ImVector_erase"][1]["call_args"] = "(it)" defs["ImVector_erase"][1]["cimguiname"] = "ImVector_erase" -defs["ImVector_erase"][1]["comment"] = "" defs["ImVector_erase"][1]["defaults"] = {} defs["ImVector_erase"][1]["funcname"] = "erase" defs["ImVector_erase"][1]["ov_cimguiname"] = "ImVector_erase" @@ -12890,7 +12696,6 @@ defs["ImVector_erase"][2]["argsT"][3]["type"] = "const T*" defs["ImVector_erase"][2]["argsoriginal"] = "(const T* it,const T* it_last)" defs["ImVector_erase"][2]["call_args"] = "(it,it_last)" defs["ImVector_erase"][2]["cimguiname"] = "ImVector_erase" -defs["ImVector_erase"][2]["comment"] = "" defs["ImVector_erase"][2]["defaults"] = {} defs["ImVector_erase"][2]["funcname"] = "erase" defs["ImVector_erase"][2]["ov_cimguiname"] = "ImVector_eraseTPtr" @@ -12913,7 +12718,6 @@ defs["ImVector_erase_unsorted"][1]["argsT"][2]["type"] = "const T*" defs["ImVector_erase_unsorted"][1]["argsoriginal"] = "(const T* it)" defs["ImVector_erase_unsorted"][1]["call_args"] = "(it)" defs["ImVector_erase_unsorted"][1]["cimguiname"] = "ImVector_erase_unsorted" -defs["ImVector_erase_unsorted"][1]["comment"] = "" defs["ImVector_erase_unsorted"][1]["defaults"] = {} defs["ImVector_erase_unsorted"][1]["funcname"] = "erase_unsorted" defs["ImVector_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_erase_unsorted" @@ -13483,7 +13287,6 @@ defs["ImVector_front"][1]["argsT"][1]["type"] = "ImVector*" defs["ImVector_front"][1]["argsoriginal"] = "()" defs["ImVector_front"][1]["call_args"] = "()" defs["ImVector_front"][1]["cimguiname"] = "ImVector_front" -defs["ImVector_front"][1]["comment"] = "" defs["ImVector_front"][1]["defaults"] = {} defs["ImVector_front"][1]["funcname"] = "front" defs["ImVector_front"][1]["ov_cimguiname"] = "ImVector_front" @@ -13501,7 +13304,6 @@ defs["ImVector_front"][2]["argsT"][1]["type"] = "ImVector*" defs["ImVector_front"][2]["argsoriginal"] = "()" defs["ImVector_front"][2]["call_args"] = "()" defs["ImVector_front"][2]["cimguiname"] = "ImVector_front" -defs["ImVector_front"][2]["comment"] = "" defs["ImVector_front"][2]["defaults"] = {} defs["ImVector_front"][2]["funcname"] = "front" defs["ImVector_front"][2]["ov_cimguiname"] = "ImVector_front_const" @@ -13525,7 +13327,6 @@ defs["ImVector_index_from_ptr"][1]["argsT"][2]["type"] = "const T*" defs["ImVector_index_from_ptr"][1]["argsoriginal"] = "(const T* it)" defs["ImVector_index_from_ptr"][1]["call_args"] = "(it)" defs["ImVector_index_from_ptr"][1]["cimguiname"] = "ImVector_index_from_ptr" -defs["ImVector_index_from_ptr"][1]["comment"] = "" defs["ImVector_index_from_ptr"][1]["defaults"] = {} defs["ImVector_index_from_ptr"][1]["funcname"] = "index_from_ptr" defs["ImVector_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_index_from_ptr" @@ -13550,7 +13351,6 @@ defs["ImVector_insert"][1]["argsT"][3]["type"] = "const T" defs["ImVector_insert"][1]["argsoriginal"] = "(const T* it,const T& v)" defs["ImVector_insert"][1]["call_args"] = "(it,v)" defs["ImVector_insert"][1]["cimguiname"] = "ImVector_insert" -defs["ImVector_insert"][1]["comment"] = "" defs["ImVector_insert"][1]["defaults"] = {} defs["ImVector_insert"][1]["funcname"] = "insert" defs["ImVector_insert"][1]["ov_cimguiname"] = "ImVector_insert" @@ -14120,7 +13920,6 @@ defs["ImVector_pop_back"][1]["argsT"][1]["type"] = "ImVector*" defs["ImVector_pop_back"][1]["argsoriginal"] = "()" defs["ImVector_pop_back"][1]["call_args"] = "()" defs["ImVector_pop_back"][1]["cimguiname"] = "ImVector_pop_back" -defs["ImVector_pop_back"][1]["comment"] = "" defs["ImVector_pop_back"][1]["defaults"] = {} defs["ImVector_pop_back"][1]["funcname"] = "pop_back" defs["ImVector_pop_back"][1]["ov_cimguiname"] = "ImVector_pop_back" @@ -14142,7 +13941,6 @@ defs["ImVector_push_back"][1]["argsT"][2]["type"] = "const T" defs["ImVector_push_back"][1]["argsoriginal"] = "(const T& v)" defs["ImVector_push_back"][1]["call_args"] = "(v)" defs["ImVector_push_back"][1]["cimguiname"] = "ImVector_push_back" -defs["ImVector_push_back"][1]["comment"] = "" defs["ImVector_push_back"][1]["defaults"] = {} defs["ImVector_push_back"][1]["funcname"] = "push_back" defs["ImVector_push_back"][1]["ov_cimguiname"] = "ImVector_push_back" @@ -14164,7 +13962,6 @@ defs["ImVector_push_front"][1]["argsT"][2]["type"] = "const T" defs["ImVector_push_front"][1]["argsoriginal"] = "(const T& v)" defs["ImVector_push_front"][1]["call_args"] = "(v)" defs["ImVector_push_front"][1]["cimguiname"] = "ImVector_push_front" -defs["ImVector_push_front"][1]["comment"] = "" defs["ImVector_push_front"][1]["defaults"] = {} defs["ImVector_push_front"][1]["funcname"] = "push_front" defs["ImVector_push_front"][1]["ov_cimguiname"] = "ImVector_push_front" @@ -14186,7 +13983,6 @@ defs["ImVector_reserve"][1]["argsT"][2]["type"] = "int" defs["ImVector_reserve"][1]["argsoriginal"] = "(int new_capacity)" defs["ImVector_reserve"][1]["call_args"] = "(new_capacity)" defs["ImVector_reserve"][1]["cimguiname"] = "ImVector_reserve" -defs["ImVector_reserve"][1]["comment"] = "" defs["ImVector_reserve"][1]["defaults"] = {} defs["ImVector_reserve"][1]["funcname"] = "reserve" defs["ImVector_reserve"][1]["ov_cimguiname"] = "ImVector_reserve" @@ -14208,7 +14004,6 @@ defs["ImVector_resize"][1]["argsT"][2]["type"] = "int" defs["ImVector_resize"][1]["argsoriginal"] = "(int new_size)" defs["ImVector_resize"][1]["call_args"] = "(new_size)" defs["ImVector_resize"][1]["cimguiname"] = "ImVector_resize" -defs["ImVector_resize"][1]["comment"] = "" defs["ImVector_resize"][1]["defaults"] = {} defs["ImVector_resize"][1]["funcname"] = "resize" defs["ImVector_resize"][1]["ov_cimguiname"] = "ImVector_resize" @@ -14231,7 +14026,6 @@ defs["ImVector_resize"][2]["argsT"][3]["type"] = "const T" defs["ImVector_resize"][2]["argsoriginal"] = "(int new_size,const T& v)" defs["ImVector_resize"][2]["call_args"] = "(new_size,v)" defs["ImVector_resize"][2]["cimguiname"] = "ImVector_resize" -defs["ImVector_resize"][2]["comment"] = "" defs["ImVector_resize"][2]["defaults"] = {} defs["ImVector_resize"][2]["funcname"] = "resize" defs["ImVector_resize"][2]["ov_cimguiname"] = "ImVector_resizeT" @@ -14251,7 +14045,6 @@ defs["ImVector_size"][1]["argsT"][1]["type"] = "ImVector*" defs["ImVector_size"][1]["argsoriginal"] = "()" defs["ImVector_size"][1]["call_args"] = "()" defs["ImVector_size"][1]["cimguiname"] = "ImVector_size" -defs["ImVector_size"][1]["comment"] = "" defs["ImVector_size"][1]["defaults"] = {} defs["ImVector_size"][1]["funcname"] = "size" defs["ImVector_size"][1]["ov_cimguiname"] = "ImVector_size" @@ -14270,7 +14063,6 @@ defs["ImVector_size_in_bytes"][1]["argsT"][1]["type"] = "ImVector*" defs["ImVector_size_in_bytes"][1]["argsoriginal"] = "()" defs["ImVector_size_in_bytes"][1]["call_args"] = "()" defs["ImVector_size_in_bytes"][1]["cimguiname"] = "ImVector_size_in_bytes" -defs["ImVector_size_in_bytes"][1]["comment"] = "" defs["ImVector_size_in_bytes"][1]["defaults"] = {} defs["ImVector_size_in_bytes"][1]["funcname"] = "size_in_bytes" defs["ImVector_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_size_in_bytes" @@ -14292,7 +14084,6 @@ defs["ImVector_swap"][1]["argsT"][2]["type"] = "ImVector&" defs["ImVector_swap"][1]["argsoriginal"] = "(ImVector& rhs)" defs["ImVector_swap"][1]["call_args"] = "(rhs)" defs["ImVector_swap"][1]["cimguiname"] = "ImVector_swap" -defs["ImVector_swap"][1]["comment"] = "" defs["ImVector_swap"][1]["defaults"] = {} defs["ImVector_swap"][1]["funcname"] = "swap" defs["ImVector_swap"][1]["ov_cimguiname"] = "ImVector_swap" @@ -14314,7 +14105,6 @@ defs["Pair_Pair"][1]["argsT"][2]["type"] = "int" defs["Pair_Pair"][1]["argsoriginal"] = "(ImGuiID _key,int _val_i)" defs["Pair_Pair"][1]["call_args"] = "(_key,_val_i)" defs["Pair_Pair"][1]["cimguiname"] = "Pair_Pair" -defs["Pair_Pair"][1]["comment"] = "" defs["Pair_Pair"][1]["constructor"] = true defs["Pair_Pair"][1]["defaults"] = {} defs["Pair_Pair"][1]["funcname"] = "Pair" @@ -14333,7 +14123,6 @@ defs["Pair_Pair"][2]["argsT"][2]["type"] = "float" defs["Pair_Pair"][2]["argsoriginal"] = "(ImGuiID _key,float _val_f)" defs["Pair_Pair"][2]["call_args"] = "(_key,_val_f)" defs["Pair_Pair"][2]["cimguiname"] = "Pair_Pair" -defs["Pair_Pair"][2]["comment"] = "" defs["Pair_Pair"][2]["constructor"] = true defs["Pair_Pair"][2]["defaults"] = {} defs["Pair_Pair"][2]["funcname"] = "Pair" @@ -14352,7 +14141,6 @@ defs["Pair_Pair"][3]["argsT"][2]["type"] = "void*" defs["Pair_Pair"][3]["argsoriginal"] = "(ImGuiID _key,void* _val_p)" defs["Pair_Pair"][3]["call_args"] = "(_key,_val_p)" defs["Pair_Pair"][3]["cimguiname"] = "Pair_Pair" -defs["Pair_Pair"][3]["comment"] = "" defs["Pair_Pair"][3]["constructor"] = true defs["Pair_Pair"][3]["defaults"] = {} defs["Pair_Pair"][3]["funcname"] = "Pair" @@ -14385,7 +14173,6 @@ defs["TextRange_TextRange"][1]["argsT"] = {} defs["TextRange_TextRange"][1]["argsoriginal"] = "()" defs["TextRange_TextRange"][1]["call_args"] = "()" defs["TextRange_TextRange"][1]["cimguiname"] = "TextRange_TextRange" -defs["TextRange_TextRange"][1]["comment"] = "" defs["TextRange_TextRange"][1]["constructor"] = true defs["TextRange_TextRange"][1]["defaults"] = {} defs["TextRange_TextRange"][1]["funcname"] = "TextRange" @@ -14404,7 +14191,6 @@ defs["TextRange_TextRange"][2]["argsT"][2]["type"] = "const char*" defs["TextRange_TextRange"][2]["argsoriginal"] = "(const char* _b,const char* _e)" defs["TextRange_TextRange"][2]["call_args"] = "(_b,_e)" defs["TextRange_TextRange"][2]["cimguiname"] = "TextRange_TextRange" -defs["TextRange_TextRange"][2]["comment"] = "" defs["TextRange_TextRange"][2]["constructor"] = true defs["TextRange_TextRange"][2]["defaults"] = {} defs["TextRange_TextRange"][2]["funcname"] = "TextRange" @@ -14423,7 +14209,6 @@ defs["TextRange_begin"][1]["argsT"][1]["type"] = "TextRange*" defs["TextRange_begin"][1]["argsoriginal"] = "()" defs["TextRange_begin"][1]["call_args"] = "()" defs["TextRange_begin"][1]["cimguiname"] = "TextRange_begin" -defs["TextRange_begin"][1]["comment"] = "" defs["TextRange_begin"][1]["defaults"] = {} defs["TextRange_begin"][1]["funcname"] = "begin" defs["TextRange_begin"][1]["ov_cimguiname"] = "TextRange_begin" @@ -14457,7 +14242,6 @@ defs["TextRange_empty"][1]["argsT"][1]["type"] = "TextRange*" defs["TextRange_empty"][1]["argsoriginal"] = "()" defs["TextRange_empty"][1]["call_args"] = "()" defs["TextRange_empty"][1]["cimguiname"] = "TextRange_empty" -defs["TextRange_empty"][1]["comment"] = "" defs["TextRange_empty"][1]["defaults"] = {} defs["TextRange_empty"][1]["funcname"] = "empty" defs["TextRange_empty"][1]["ov_cimguiname"] = "TextRange_empty" @@ -14475,7 +14259,6 @@ defs["TextRange_end"][1]["argsT"][1]["type"] = "TextRange*" defs["TextRange_end"][1]["argsoriginal"] = "()" defs["TextRange_end"][1]["call_args"] = "()" defs["TextRange_end"][1]["cimguiname"] = "TextRange_end" -defs["TextRange_end"][1]["comment"] = "" defs["TextRange_end"][1]["defaults"] = {} defs["TextRange_end"][1]["funcname"] = "end" defs["TextRange_end"][1]["ov_cimguiname"] = "TextRange_end" @@ -14499,7 +14282,6 @@ defs["TextRange_split"][1]["argsT"][3]["type"] = "ImVector_TextRange*" defs["TextRange_split"][1]["argsoriginal"] = "(char separator,ImVector* out)" defs["TextRange_split"][1]["call_args"] = "(separator,out)" defs["TextRange_split"][1]["cimguiname"] = "TextRange_split" -defs["TextRange_split"][1]["comment"] = "" defs["TextRange_split"][1]["defaults"] = {} defs["TextRange_split"][1]["funcname"] = "split" defs["TextRange_split"][1]["ov_cimguiname"] = "TextRange_split" @@ -14520,7 +14302,6 @@ defs["igAcceptDragDropPayload"][1]["argsT"][2]["type"] = "ImGuiDragDropFlags" defs["igAcceptDragDropPayload"][1]["argsoriginal"] = "(const char* type,ImGuiDragDropFlags flags=0)" defs["igAcceptDragDropPayload"][1]["call_args"] = "(type,flags)" defs["igAcceptDragDropPayload"][1]["cimguiname"] = "igAcceptDragDropPayload" -defs["igAcceptDragDropPayload"][1]["comment"] = "" defs["igAcceptDragDropPayload"][1]["defaults"] = {} defs["igAcceptDragDropPayload"][1]["defaults"]["flags"] = "0" defs["igAcceptDragDropPayload"][1]["funcname"] = "AcceptDragDropPayload" @@ -14537,7 +14318,6 @@ defs["igAlignTextToFramePadding"][1]["argsT"] = {} defs["igAlignTextToFramePadding"][1]["argsoriginal"] = "()" defs["igAlignTextToFramePadding"][1]["call_args"] = "()" defs["igAlignTextToFramePadding"][1]["cimguiname"] = "igAlignTextToFramePadding" -defs["igAlignTextToFramePadding"][1]["comment"] = "" defs["igAlignTextToFramePadding"][1]["defaults"] = {} defs["igAlignTextToFramePadding"][1]["funcname"] = "AlignTextToFramePadding" defs["igAlignTextToFramePadding"][1]["namespace"] = "ImGui" @@ -14559,7 +14339,6 @@ defs["igArrowButton"][1]["argsT"][2]["type"] = "ImGuiDir" defs["igArrowButton"][1]["argsoriginal"] = "(const char* str_id,ImGuiDir dir)" defs["igArrowButton"][1]["call_args"] = "(str_id,dir)" defs["igArrowButton"][1]["cimguiname"] = "igArrowButton" -defs["igArrowButton"][1]["comment"] = "" defs["igArrowButton"][1]["defaults"] = {} defs["igArrowButton"][1]["funcname"] = "ArrowButton" defs["igArrowButton"][1]["namespace"] = "ImGui" @@ -14584,7 +14363,6 @@ defs["igBegin"][1]["argsT"][3]["type"] = "ImGuiWindowFlags" defs["igBegin"][1]["argsoriginal"] = "(const char* name,bool* p_open=((void*)0),ImGuiWindowFlags flags=0)" defs["igBegin"][1]["call_args"] = "(name,p_open,flags)" defs["igBegin"][1]["cimguiname"] = "igBegin" -defs["igBegin"][1]["comment"] = "" defs["igBegin"][1]["defaults"] = {} defs["igBegin"][1]["defaults"]["flags"] = "0" defs["igBegin"][1]["defaults"]["p_open"] = "((void*)0)" @@ -14614,7 +14392,6 @@ defs["igBeginChild"][1]["argsT"][4]["type"] = "ImGuiWindowFlags" defs["igBeginChild"][1]["argsoriginal"] = "(const char* str_id,const ImVec2& size=ImVec2(0,0),bool border=false,ImGuiWindowFlags flags=0)" defs["igBeginChild"][1]["call_args"] = "(str_id,size,border,flags)" defs["igBeginChild"][1]["cimguiname"] = "igBeginChild" -defs["igBeginChild"][1]["comment"] = "" defs["igBeginChild"][1]["defaults"] = {} defs["igBeginChild"][1]["defaults"]["border"] = "false" defs["igBeginChild"][1]["defaults"]["flags"] = "0" @@ -14643,7 +14420,6 @@ defs["igBeginChild"][2]["argsT"][4]["type"] = "ImGuiWindowFlags" defs["igBeginChild"][2]["argsoriginal"] = "(ImGuiID id,const ImVec2& size=ImVec2(0,0),bool border=false,ImGuiWindowFlags flags=0)" defs["igBeginChild"][2]["call_args"] = "(id,size,border,flags)" defs["igBeginChild"][2]["cimguiname"] = "igBeginChild" -defs["igBeginChild"][2]["comment"] = "" defs["igBeginChild"][2]["defaults"] = {} defs["igBeginChild"][2]["defaults"]["border"] = "false" defs["igBeginChild"][2]["defaults"]["flags"] = "0" @@ -14672,7 +14448,6 @@ defs["igBeginChildFrame"][1]["argsT"][3]["type"] = "ImGuiWindowFlags" defs["igBeginChildFrame"][1]["argsoriginal"] = "(ImGuiID id,const ImVec2& size,ImGuiWindowFlags flags=0)" defs["igBeginChildFrame"][1]["call_args"] = "(id,size,flags)" defs["igBeginChildFrame"][1]["cimguiname"] = "igBeginChildFrame" -defs["igBeginChildFrame"][1]["comment"] = "" defs["igBeginChildFrame"][1]["defaults"] = {} defs["igBeginChildFrame"][1]["defaults"]["flags"] = "0" defs["igBeginChildFrame"][1]["funcname"] = "BeginChildFrame" @@ -14698,7 +14473,6 @@ defs["igBeginCombo"][1]["argsT"][3]["type"] = "ImGuiComboFlags" defs["igBeginCombo"][1]["argsoriginal"] = "(const char* label,const char* preview_value,ImGuiComboFlags flags=0)" defs["igBeginCombo"][1]["call_args"] = "(label,preview_value,flags)" defs["igBeginCombo"][1]["cimguiname"] = "igBeginCombo" -defs["igBeginCombo"][1]["comment"] = "" defs["igBeginCombo"][1]["defaults"] = {} defs["igBeginCombo"][1]["defaults"]["flags"] = "0" defs["igBeginCombo"][1]["funcname"] = "BeginCombo" @@ -14718,7 +14492,6 @@ defs["igBeginDragDropSource"][1]["argsT"][1]["type"] = "ImGuiDragDropFlags" defs["igBeginDragDropSource"][1]["argsoriginal"] = "(ImGuiDragDropFlags flags=0)" defs["igBeginDragDropSource"][1]["call_args"] = "(flags)" defs["igBeginDragDropSource"][1]["cimguiname"] = "igBeginDragDropSource" -defs["igBeginDragDropSource"][1]["comment"] = "" defs["igBeginDragDropSource"][1]["defaults"] = {} defs["igBeginDragDropSource"][1]["defaults"]["flags"] = "0" defs["igBeginDragDropSource"][1]["funcname"] = "BeginDragDropSource" @@ -14735,7 +14508,6 @@ defs["igBeginDragDropTarget"][1]["argsT"] = {} defs["igBeginDragDropTarget"][1]["argsoriginal"] = "()" defs["igBeginDragDropTarget"][1]["call_args"] = "()" defs["igBeginDragDropTarget"][1]["cimguiname"] = "igBeginDragDropTarget" -defs["igBeginDragDropTarget"][1]["comment"] = "" defs["igBeginDragDropTarget"][1]["defaults"] = {} defs["igBeginDragDropTarget"][1]["funcname"] = "BeginDragDropTarget" defs["igBeginDragDropTarget"][1]["namespace"] = "ImGui" @@ -14751,7 +14523,6 @@ defs["igBeginGroup"][1]["argsT"] = {} defs["igBeginGroup"][1]["argsoriginal"] = "()" defs["igBeginGroup"][1]["call_args"] = "()" defs["igBeginGroup"][1]["cimguiname"] = "igBeginGroup" -defs["igBeginGroup"][1]["comment"] = "" defs["igBeginGroup"][1]["defaults"] = {} defs["igBeginGroup"][1]["funcname"] = "BeginGroup" defs["igBeginGroup"][1]["namespace"] = "ImGui" @@ -14767,7 +14538,6 @@ defs["igBeginMainMenuBar"][1]["argsT"] = {} defs["igBeginMainMenuBar"][1]["argsoriginal"] = "()" defs["igBeginMainMenuBar"][1]["call_args"] = "()" defs["igBeginMainMenuBar"][1]["cimguiname"] = "igBeginMainMenuBar" -defs["igBeginMainMenuBar"][1]["comment"] = "" defs["igBeginMainMenuBar"][1]["defaults"] = {} defs["igBeginMainMenuBar"][1]["funcname"] = "BeginMainMenuBar" defs["igBeginMainMenuBar"][1]["namespace"] = "ImGui" @@ -14789,7 +14559,6 @@ defs["igBeginMenu"][1]["argsT"][2]["type"] = "bool" defs["igBeginMenu"][1]["argsoriginal"] = "(const char* label,bool enabled=true)" defs["igBeginMenu"][1]["call_args"] = "(label,enabled)" defs["igBeginMenu"][1]["cimguiname"] = "igBeginMenu" -defs["igBeginMenu"][1]["comment"] = "" defs["igBeginMenu"][1]["defaults"] = {} defs["igBeginMenu"][1]["defaults"]["enabled"] = "true" defs["igBeginMenu"][1]["funcname"] = "BeginMenu" @@ -14806,7 +14575,6 @@ defs["igBeginMenuBar"][1]["argsT"] = {} defs["igBeginMenuBar"][1]["argsoriginal"] = "()" defs["igBeginMenuBar"][1]["call_args"] = "()" defs["igBeginMenuBar"][1]["cimguiname"] = "igBeginMenuBar" -defs["igBeginMenuBar"][1]["comment"] = "" defs["igBeginMenuBar"][1]["defaults"] = {} defs["igBeginMenuBar"][1]["funcname"] = "BeginMenuBar" defs["igBeginMenuBar"][1]["namespace"] = "ImGui" @@ -14828,7 +14596,6 @@ defs["igBeginPopup"][1]["argsT"][2]["type"] = "ImGuiWindowFlags" defs["igBeginPopup"][1]["argsoriginal"] = "(const char* str_id,ImGuiWindowFlags flags=0)" defs["igBeginPopup"][1]["call_args"] = "(str_id,flags)" defs["igBeginPopup"][1]["cimguiname"] = "igBeginPopup" -defs["igBeginPopup"][1]["comment"] = "" defs["igBeginPopup"][1]["defaults"] = {} defs["igBeginPopup"][1]["defaults"]["flags"] = "0" defs["igBeginPopup"][1]["funcname"] = "BeginPopup" @@ -14851,7 +14618,6 @@ defs["igBeginPopupContextItem"][1]["argsT"][2]["type"] = "int" defs["igBeginPopupContextItem"][1]["argsoriginal"] = "(const char* str_id=((void*)0),int mouse_button=1)" defs["igBeginPopupContextItem"][1]["call_args"] = "(str_id,mouse_button)" defs["igBeginPopupContextItem"][1]["cimguiname"] = "igBeginPopupContextItem" -defs["igBeginPopupContextItem"][1]["comment"] = "" defs["igBeginPopupContextItem"][1]["defaults"] = {} defs["igBeginPopupContextItem"][1]["defaults"]["mouse_button"] = "1" defs["igBeginPopupContextItem"][1]["defaults"]["str_id"] = "((void*)0)" @@ -14875,7 +14641,6 @@ defs["igBeginPopupContextVoid"][1]["argsT"][2]["type"] = "int" defs["igBeginPopupContextVoid"][1]["argsoriginal"] = "(const char* str_id=((void*)0),int mouse_button=1)" defs["igBeginPopupContextVoid"][1]["call_args"] = "(str_id,mouse_button)" defs["igBeginPopupContextVoid"][1]["cimguiname"] = "igBeginPopupContextVoid" -defs["igBeginPopupContextVoid"][1]["comment"] = "" defs["igBeginPopupContextVoid"][1]["defaults"] = {} defs["igBeginPopupContextVoid"][1]["defaults"]["mouse_button"] = "1" defs["igBeginPopupContextVoid"][1]["defaults"]["str_id"] = "((void*)0)" @@ -14902,7 +14667,6 @@ defs["igBeginPopupContextWindow"][1]["argsT"][3]["type"] = "bool" defs["igBeginPopupContextWindow"][1]["argsoriginal"] = "(const char* str_id=((void*)0),int mouse_button=1,bool also_over_items=true)" defs["igBeginPopupContextWindow"][1]["call_args"] = "(str_id,mouse_button,also_over_items)" defs["igBeginPopupContextWindow"][1]["cimguiname"] = "igBeginPopupContextWindow" -defs["igBeginPopupContextWindow"][1]["comment"] = "" defs["igBeginPopupContextWindow"][1]["defaults"] = {} defs["igBeginPopupContextWindow"][1]["defaults"]["also_over_items"] = "true" defs["igBeginPopupContextWindow"][1]["defaults"]["mouse_button"] = "1" @@ -14930,7 +14694,6 @@ defs["igBeginPopupModal"][1]["argsT"][3]["type"] = "ImGuiWindowFlags" defs["igBeginPopupModal"][1]["argsoriginal"] = "(const char* name,bool* p_open=((void*)0),ImGuiWindowFlags flags=0)" defs["igBeginPopupModal"][1]["call_args"] = "(name,p_open,flags)" defs["igBeginPopupModal"][1]["cimguiname"] = "igBeginPopupModal" -defs["igBeginPopupModal"][1]["comment"] = "" defs["igBeginPopupModal"][1]["defaults"] = {} defs["igBeginPopupModal"][1]["defaults"]["flags"] = "0" defs["igBeginPopupModal"][1]["defaults"]["p_open"] = "((void*)0)" @@ -14954,7 +14717,6 @@ defs["igBeginTabBar"][1]["argsT"][2]["type"] = "ImGuiTabBarFlags" defs["igBeginTabBar"][1]["argsoriginal"] = "(const char* str_id,ImGuiTabBarFlags flags=0)" defs["igBeginTabBar"][1]["call_args"] = "(str_id,flags)" defs["igBeginTabBar"][1]["cimguiname"] = "igBeginTabBar" -defs["igBeginTabBar"][1]["comment"] = "" defs["igBeginTabBar"][1]["defaults"] = {} defs["igBeginTabBar"][1]["defaults"]["flags"] = "0" defs["igBeginTabBar"][1]["funcname"] = "BeginTabBar" @@ -14980,7 +14742,6 @@ defs["igBeginTabItem"][1]["argsT"][3]["type"] = "ImGuiTabItemFlags" defs["igBeginTabItem"][1]["argsoriginal"] = "(const char* label,bool* p_open=((void*)0),ImGuiTabItemFlags flags=0)" defs["igBeginTabItem"][1]["call_args"] = "(label,p_open,flags)" defs["igBeginTabItem"][1]["cimguiname"] = "igBeginTabItem" -defs["igBeginTabItem"][1]["comment"] = "" defs["igBeginTabItem"][1]["defaults"] = {} defs["igBeginTabItem"][1]["defaults"]["flags"] = "0" defs["igBeginTabItem"][1]["defaults"]["p_open"] = "((void*)0)" @@ -14998,7 +14759,6 @@ defs["igBeginTooltip"][1]["argsT"] = {} defs["igBeginTooltip"][1]["argsoriginal"] = "()" defs["igBeginTooltip"][1]["call_args"] = "()" defs["igBeginTooltip"][1]["cimguiname"] = "igBeginTooltip" -defs["igBeginTooltip"][1]["comment"] = "" defs["igBeginTooltip"][1]["defaults"] = {} defs["igBeginTooltip"][1]["funcname"] = "BeginTooltip" defs["igBeginTooltip"][1]["namespace"] = "ImGui" @@ -15014,7 +14774,6 @@ defs["igBullet"][1]["argsT"] = {} defs["igBullet"][1]["argsoriginal"] = "()" defs["igBullet"][1]["call_args"] = "()" defs["igBullet"][1]["cimguiname"] = "igBullet" -defs["igBullet"][1]["comment"] = "" defs["igBullet"][1]["defaults"] = {} defs["igBullet"][1]["funcname"] = "Bullet" defs["igBullet"][1]["namespace"] = "ImGui" @@ -15036,7 +14795,6 @@ defs["igBulletText"][1]["argsT"][2]["type"] = "..." defs["igBulletText"][1]["argsoriginal"] = "(const char* fmt,...)" defs["igBulletText"][1]["call_args"] = "(fmt,...)" defs["igBulletText"][1]["cimguiname"] = "igBulletText" -defs["igBulletText"][1]["comment"] = "" defs["igBulletText"][1]["defaults"] = {} defs["igBulletText"][1]["funcname"] = "BulletText" defs["igBulletText"][1]["isvararg"] = "...)" @@ -15059,7 +14817,6 @@ defs["igBulletTextV"][1]["argsT"][2]["type"] = "va_list" defs["igBulletTextV"][1]["argsoriginal"] = "(const char* fmt,va_list args)" defs["igBulletTextV"][1]["call_args"] = "(fmt,args)" defs["igBulletTextV"][1]["cimguiname"] = "igBulletTextV" -defs["igBulletTextV"][1]["comment"] = "" defs["igBulletTextV"][1]["defaults"] = {} defs["igBulletTextV"][1]["funcname"] = "BulletTextV" defs["igBulletTextV"][1]["namespace"] = "ImGui" @@ -15081,7 +14838,6 @@ defs["igButton"][1]["argsT"][2]["type"] = "const ImVec2" defs["igButton"][1]["argsoriginal"] = "(const char* label,const ImVec2& size=ImVec2(0,0))" defs["igButton"][1]["call_args"] = "(label,size)" defs["igButton"][1]["cimguiname"] = "igButton" -defs["igButton"][1]["comment"] = "" defs["igButton"][1]["defaults"] = {} defs["igButton"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igButton"][1]["funcname"] = "Button" @@ -15098,7 +14854,6 @@ defs["igCalcItemWidth"][1]["argsT"] = {} defs["igCalcItemWidth"][1]["argsoriginal"] = "()" defs["igCalcItemWidth"][1]["call_args"] = "()" defs["igCalcItemWidth"][1]["cimguiname"] = "igCalcItemWidth" -defs["igCalcItemWidth"][1]["comment"] = "" defs["igCalcItemWidth"][1]["defaults"] = {} defs["igCalcItemWidth"][1]["funcname"] = "CalcItemWidth" defs["igCalcItemWidth"][1]["namespace"] = "ImGui" @@ -15126,7 +14881,6 @@ defs["igCalcListClipping"][1]["argsT"][4]["type"] = "int*" defs["igCalcListClipping"][1]["argsoriginal"] = "(int items_count,float items_height,int* out_items_display_start,int* out_items_display_end)" defs["igCalcListClipping"][1]["call_args"] = "(items_count,items_height,out_items_display_start,out_items_display_end)" defs["igCalcListClipping"][1]["cimguiname"] = "igCalcListClipping" -defs["igCalcListClipping"][1]["comment"] = "" defs["igCalcListClipping"][1]["defaults"] = {} defs["igCalcListClipping"][1]["funcname"] = "CalcListClipping" defs["igCalcListClipping"][1]["namespace"] = "ImGui" @@ -15154,7 +14908,6 @@ defs["igCalcTextSize"][1]["argsT"][4]["type"] = "float" defs["igCalcTextSize"][1]["argsoriginal"] = "(const char* text,const char* text_end=((void*)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)" defs["igCalcTextSize"][1]["call_args"] = "(text,text_end,hide_text_after_double_hash,wrap_width)" defs["igCalcTextSize"][1]["cimguiname"] = "igCalcTextSize" -defs["igCalcTextSize"][1]["comment"] = "" defs["igCalcTextSize"][1]["defaults"] = {} defs["igCalcTextSize"][1]["defaults"]["hide_text_after_double_hash"] = "false" defs["igCalcTextSize"][1]["defaults"]["text_end"] = "((void*)0)" @@ -15186,7 +14939,6 @@ defs["igCalcTextSize"][2]["argsT"][5]["type"] = "float" defs["igCalcTextSize"][2]["argsoriginal"] = "(const char* text,const char* text_end=((void*)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)" defs["igCalcTextSize"][2]["call_args"] = "(text,text_end,hide_text_after_double_hash,wrap_width)" defs["igCalcTextSize"][2]["cimguiname"] = "igCalcTextSize" -defs["igCalcTextSize"][2]["comment"] = "" defs["igCalcTextSize"][2]["defaults"] = defs["igCalcTextSize"][1]["defaults"] defs["igCalcTextSize"][2]["funcname"] = "CalcTextSize" defs["igCalcTextSize"][2]["namespace"] = "ImGui" @@ -15213,7 +14965,6 @@ defs["igCalcTextSize"][3]["argsT"][4]["type"] = "float" defs["igCalcTextSize"][3]["argsoriginal"] = "(const char* text,const char* text_end=((void*)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)" defs["igCalcTextSize"][3]["call_args"] = "(text,text_end,hide_text_after_double_hash,wrap_width)" defs["igCalcTextSize"][3]["cimguiname"] = "igCalcTextSize" -defs["igCalcTextSize"][3]["comment"] = "" defs["igCalcTextSize"][3]["defaults"] = defs["igCalcTextSize"][1]["defaults"] defs["igCalcTextSize"][3]["funcname"] = "CalcTextSize" defs["igCalcTextSize"][3]["namespace"] = "ImGui" @@ -15236,7 +14987,6 @@ defs["igCaptureKeyboardFromApp"][1]["argsT"][1]["type"] = "bool" defs["igCaptureKeyboardFromApp"][1]["argsoriginal"] = "(bool want_capture_keyboard_value=true)" defs["igCaptureKeyboardFromApp"][1]["call_args"] = "(want_capture_keyboard_value)" defs["igCaptureKeyboardFromApp"][1]["cimguiname"] = "igCaptureKeyboardFromApp" -defs["igCaptureKeyboardFromApp"][1]["comment"] = "" defs["igCaptureKeyboardFromApp"][1]["defaults"] = {} defs["igCaptureKeyboardFromApp"][1]["defaults"]["want_capture_keyboard_value"] = "true" defs["igCaptureKeyboardFromApp"][1]["funcname"] = "CaptureKeyboardFromApp" @@ -15256,7 +15006,6 @@ defs["igCaptureMouseFromApp"][1]["argsT"][1]["type"] = "bool" defs["igCaptureMouseFromApp"][1]["argsoriginal"] = "(bool want_capture_mouse_value=true)" defs["igCaptureMouseFromApp"][1]["call_args"] = "(want_capture_mouse_value)" defs["igCaptureMouseFromApp"][1]["cimguiname"] = "igCaptureMouseFromApp" -defs["igCaptureMouseFromApp"][1]["comment"] = "" defs["igCaptureMouseFromApp"][1]["defaults"] = {} defs["igCaptureMouseFromApp"][1]["defaults"]["want_capture_mouse_value"] = "true" defs["igCaptureMouseFromApp"][1]["funcname"] = "CaptureMouseFromApp" @@ -15279,7 +15028,6 @@ defs["igCheckbox"][1]["argsT"][2]["type"] = "bool*" defs["igCheckbox"][1]["argsoriginal"] = "(const char* label,bool* v)" defs["igCheckbox"][1]["call_args"] = "(label,v)" defs["igCheckbox"][1]["cimguiname"] = "igCheckbox" -defs["igCheckbox"][1]["comment"] = "" defs["igCheckbox"][1]["defaults"] = {} defs["igCheckbox"][1]["funcname"] = "Checkbox" defs["igCheckbox"][1]["namespace"] = "ImGui" @@ -15304,7 +15052,6 @@ defs["igCheckboxFlags"][1]["argsT"][3]["type"] = "unsigned int" defs["igCheckboxFlags"][1]["argsoriginal"] = "(const char* label,unsigned int* flags,unsigned int flags_value)" defs["igCheckboxFlags"][1]["call_args"] = "(label,flags,flags_value)" defs["igCheckboxFlags"][1]["cimguiname"] = "igCheckboxFlags" -defs["igCheckboxFlags"][1]["comment"] = "" defs["igCheckboxFlags"][1]["defaults"] = {} defs["igCheckboxFlags"][1]["funcname"] = "CheckboxFlags" defs["igCheckboxFlags"][1]["namespace"] = "ImGui" @@ -15320,7 +15067,6 @@ defs["igCloseCurrentPopup"][1]["argsT"] = {} defs["igCloseCurrentPopup"][1]["argsoriginal"] = "()" defs["igCloseCurrentPopup"][1]["call_args"] = "()" defs["igCloseCurrentPopup"][1]["cimguiname"] = "igCloseCurrentPopup" -defs["igCloseCurrentPopup"][1]["comment"] = "" defs["igCloseCurrentPopup"][1]["defaults"] = {} defs["igCloseCurrentPopup"][1]["funcname"] = "CloseCurrentPopup" defs["igCloseCurrentPopup"][1]["namespace"] = "ImGui" @@ -15342,7 +15088,6 @@ defs["igCollapsingHeader"][1]["argsT"][2]["type"] = "ImGuiTreeNodeFlags" defs["igCollapsingHeader"][1]["argsoriginal"] = "(const char* label,ImGuiTreeNodeFlags flags=0)" defs["igCollapsingHeader"][1]["call_args"] = "(label,flags)" defs["igCollapsingHeader"][1]["cimguiname"] = "igCollapsingHeader" -defs["igCollapsingHeader"][1]["comment"] = "" defs["igCollapsingHeader"][1]["defaults"] = {} defs["igCollapsingHeader"][1]["defaults"]["flags"] = "0" defs["igCollapsingHeader"][1]["funcname"] = "CollapsingHeader" @@ -15366,7 +15111,6 @@ defs["igCollapsingHeader"][2]["argsT"][3]["type"] = "ImGuiTreeNodeFlags" defs["igCollapsingHeader"][2]["argsoriginal"] = "(const char* label,bool* p_open,ImGuiTreeNodeFlags flags=0)" defs["igCollapsingHeader"][2]["call_args"] = "(label,p_open,flags)" defs["igCollapsingHeader"][2]["cimguiname"] = "igCollapsingHeader" -defs["igCollapsingHeader"][2]["comment"] = "" defs["igCollapsingHeader"][2]["defaults"] = {} defs["igCollapsingHeader"][2]["defaults"]["flags"] = "0" defs["igCollapsingHeader"][2]["funcname"] = "CollapsingHeader" @@ -15396,7 +15140,6 @@ defs["igColorButton"][1]["argsT"][4]["type"] = "ImVec2" defs["igColorButton"][1]["argsoriginal"] = "(const char* desc_id,const ImVec4& col,ImGuiColorEditFlags flags=0,ImVec2 size=ImVec2(0,0))" defs["igColorButton"][1]["call_args"] = "(desc_id,col,flags,size)" defs["igColorButton"][1]["cimguiname"] = "igColorButton" -defs["igColorButton"][1]["comment"] = "" defs["igColorButton"][1]["defaults"] = {} defs["igColorButton"][1]["defaults"]["flags"] = "0" defs["igColorButton"][1]["defaults"]["size"] = "ImVec2(0,0)" @@ -15417,7 +15160,6 @@ defs["igColorConvertFloat4ToU32"][1]["argsT"][1]["type"] = "const ImVec4" defs["igColorConvertFloat4ToU32"][1]["argsoriginal"] = "(const ImVec4& in)" defs["igColorConvertFloat4ToU32"][1]["call_args"] = "(in)" defs["igColorConvertFloat4ToU32"][1]["cimguiname"] = "igColorConvertFloat4ToU32" -defs["igColorConvertFloat4ToU32"][1]["comment"] = "" defs["igColorConvertFloat4ToU32"][1]["defaults"] = {} defs["igColorConvertFloat4ToU32"][1]["funcname"] = "ColorConvertFloat4ToU32" defs["igColorConvertFloat4ToU32"][1]["namespace"] = "ImGui" @@ -15451,7 +15193,6 @@ defs["igColorConvertHSVtoRGB"][1]["argsT"][6]["type"] = "float&" defs["igColorConvertHSVtoRGB"][1]["argsoriginal"] = "(float h,float s,float v,float& out_r,float& out_g,float& out_b)" defs["igColorConvertHSVtoRGB"][1]["call_args"] = "(h,s,v,out_r,out_g,out_b)" defs["igColorConvertHSVtoRGB"][1]["cimguiname"] = "igColorConvertHSVtoRGB" -defs["igColorConvertHSVtoRGB"][1]["comment"] = "" defs["igColorConvertHSVtoRGB"][1]["defaults"] = {} defs["igColorConvertHSVtoRGB"][1]["funcname"] = "ColorConvertHSVtoRGB" defs["igColorConvertHSVtoRGB"][1]["manual"] = true @@ -15486,7 +15227,6 @@ defs["igColorConvertRGBtoHSV"][1]["argsT"][6]["type"] = "float&" defs["igColorConvertRGBtoHSV"][1]["argsoriginal"] = "(float r,float g,float b,float& out_h,float& out_s,float& out_v)" defs["igColorConvertRGBtoHSV"][1]["call_args"] = "(r,g,b,out_h,out_s,out_v)" defs["igColorConvertRGBtoHSV"][1]["cimguiname"] = "igColorConvertRGBtoHSV" -defs["igColorConvertRGBtoHSV"][1]["comment"] = "" defs["igColorConvertRGBtoHSV"][1]["defaults"] = {} defs["igColorConvertRGBtoHSV"][1]["funcname"] = "ColorConvertRGBtoHSV" defs["igColorConvertRGBtoHSV"][1]["manual"] = true @@ -15506,7 +15246,6 @@ defs["igColorConvertU32ToFloat4"][1]["argsT"][1]["type"] = "ImU32" defs["igColorConvertU32ToFloat4"][1]["argsoriginal"] = "(ImU32 in)" defs["igColorConvertU32ToFloat4"][1]["call_args"] = "(in)" defs["igColorConvertU32ToFloat4"][1]["cimguiname"] = "igColorConvertU32ToFloat4" -defs["igColorConvertU32ToFloat4"][1]["comment"] = "" defs["igColorConvertU32ToFloat4"][1]["defaults"] = {} defs["igColorConvertU32ToFloat4"][1]["funcname"] = "ColorConvertU32ToFloat4" defs["igColorConvertU32ToFloat4"][1]["namespace"] = "ImGui" @@ -15526,7 +15265,6 @@ defs["igColorConvertU32ToFloat4"][2]["argsT"][2]["type"] = "ImU32" defs["igColorConvertU32ToFloat4"][2]["argsoriginal"] = "(ImU32 in)" defs["igColorConvertU32ToFloat4"][2]["call_args"] = "(in)" defs["igColorConvertU32ToFloat4"][2]["cimguiname"] = "igColorConvertU32ToFloat4" -defs["igColorConvertU32ToFloat4"][2]["comment"] = "" defs["igColorConvertU32ToFloat4"][2]["defaults"] = defs["igColorConvertU32ToFloat4"][1]["defaults"] defs["igColorConvertU32ToFloat4"][2]["funcname"] = "ColorConvertU32ToFloat4" defs["igColorConvertU32ToFloat4"][2]["namespace"] = "ImGui" @@ -15544,7 +15282,6 @@ defs["igColorConvertU32ToFloat4"][3]["argsT"][1]["type"] = "ImU32" defs["igColorConvertU32ToFloat4"][3]["argsoriginal"] = "(ImU32 in)" defs["igColorConvertU32ToFloat4"][3]["call_args"] = "(in)" defs["igColorConvertU32ToFloat4"][3]["cimguiname"] = "igColorConvertU32ToFloat4" -defs["igColorConvertU32ToFloat4"][3]["comment"] = "" defs["igColorConvertU32ToFloat4"][3]["defaults"] = defs["igColorConvertU32ToFloat4"][1]["defaults"] defs["igColorConvertU32ToFloat4"][3]["funcname"] = "ColorConvertU32ToFloat4" defs["igColorConvertU32ToFloat4"][3]["namespace"] = "ImGui" @@ -15573,7 +15310,6 @@ defs["igColorEdit3"][1]["argsT"][3]["type"] = "ImGuiColorEditFlags" defs["igColorEdit3"][1]["argsoriginal"] = "(const char* label,float col[3],ImGuiColorEditFlags flags=0)" defs["igColorEdit3"][1]["call_args"] = "(label,col,flags)" defs["igColorEdit3"][1]["cimguiname"] = "igColorEdit3" -defs["igColorEdit3"][1]["comment"] = "" defs["igColorEdit3"][1]["defaults"] = {} defs["igColorEdit3"][1]["defaults"]["flags"] = "0" defs["igColorEdit3"][1]["funcname"] = "ColorEdit3" @@ -15599,7 +15335,6 @@ defs["igColorEdit4"][1]["argsT"][3]["type"] = "ImGuiColorEditFlags" defs["igColorEdit4"][1]["argsoriginal"] = "(const char* label,float col[4],ImGuiColorEditFlags flags=0)" defs["igColorEdit4"][1]["call_args"] = "(label,col,flags)" defs["igColorEdit4"][1]["cimguiname"] = "igColorEdit4" -defs["igColorEdit4"][1]["comment"] = "" defs["igColorEdit4"][1]["defaults"] = {} defs["igColorEdit4"][1]["defaults"]["flags"] = "0" defs["igColorEdit4"][1]["funcname"] = "ColorEdit4" @@ -15625,7 +15360,6 @@ defs["igColorPicker3"][1]["argsT"][3]["type"] = "ImGuiColorEditFlags" defs["igColorPicker3"][1]["argsoriginal"] = "(const char* label,float col[3],ImGuiColorEditFlags flags=0)" defs["igColorPicker3"][1]["call_args"] = "(label,col,flags)" defs["igColorPicker3"][1]["cimguiname"] = "igColorPicker3" -defs["igColorPicker3"][1]["comment"] = "" defs["igColorPicker3"][1]["defaults"] = {} defs["igColorPicker3"][1]["defaults"]["flags"] = "0" defs["igColorPicker3"][1]["funcname"] = "ColorPicker3" @@ -15654,7 +15388,6 @@ defs["igColorPicker4"][1]["argsT"][4]["type"] = "const float*" defs["igColorPicker4"][1]["argsoriginal"] = "(const char* label,float col[4],ImGuiColorEditFlags flags=0,const float* ref_col=((void*)0))" defs["igColorPicker4"][1]["call_args"] = "(label,col,flags,ref_col)" defs["igColorPicker4"][1]["cimguiname"] = "igColorPicker4" -defs["igColorPicker4"][1]["comment"] = "" defs["igColorPicker4"][1]["defaults"] = {} defs["igColorPicker4"][1]["defaults"]["flags"] = "0" defs["igColorPicker4"][1]["defaults"]["ref_col"] = "((void*)0)" @@ -15681,7 +15414,6 @@ defs["igColumns"][1]["argsT"][3]["type"] = "bool" defs["igColumns"][1]["argsoriginal"] = "(int count=1,const char* id=((void*)0),bool border=true)" defs["igColumns"][1]["call_args"] = "(count,id,border)" defs["igColumns"][1]["cimguiname"] = "igColumns" -defs["igColumns"][1]["comment"] = "" defs["igColumns"][1]["defaults"] = {} defs["igColumns"][1]["defaults"]["border"] = "true" defs["igColumns"][1]["defaults"]["count"] = "1" @@ -15715,7 +15447,6 @@ defs["igCombo"][1]["argsT"][5]["type"] = "int" defs["igCombo"][1]["argsoriginal"] = "(const char* label,int* current_item,const char* const items[],int items_count,int popup_max_height_in_items=-1)" defs["igCombo"][1]["call_args"] = "(label,current_item,items,items_count,popup_max_height_in_items)" defs["igCombo"][1]["cimguiname"] = "igCombo" -defs["igCombo"][1]["comment"] = "" defs["igCombo"][1]["defaults"] = {} defs["igCombo"][1]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][1]["funcname"] = "Combo" @@ -15742,7 +15473,6 @@ defs["igCombo"][2]["argsT"][4]["type"] = "int" defs["igCombo"][2]["argsoriginal"] = "(const char* label,int* current_item,const char* items_separated_by_zeros,int popup_max_height_in_items=-1)" defs["igCombo"][2]["call_args"] = "(label,current_item,items_separated_by_zeros,popup_max_height_in_items)" defs["igCombo"][2]["cimguiname"] = "igCombo" -defs["igCombo"][2]["comment"] = "" defs["igCombo"][2]["defaults"] = {} defs["igCombo"][2]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][2]["funcname"] = "Combo" @@ -15777,7 +15507,6 @@ defs["igCombo"][3]["argsT"][6]["type"] = "int" defs["igCombo"][3]["argsoriginal"] = "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items=-1)" defs["igCombo"][3]["call_args"] = "(label,current_item,items_getter,data,items_count,popup_max_height_in_items)" defs["igCombo"][3]["cimguiname"] = "igCombo" -defs["igCombo"][3]["comment"] = "" defs["igCombo"][3]["defaults"] = {} defs["igCombo"][3]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][3]["funcname"] = "Combo" @@ -15799,7 +15528,6 @@ defs["igCreateContext"][1]["argsT"][1]["type"] = "ImFontAtlas*" defs["igCreateContext"][1]["argsoriginal"] = "(ImFontAtlas* shared_font_atlas=((void*)0))" defs["igCreateContext"][1]["call_args"] = "(shared_font_atlas)" defs["igCreateContext"][1]["cimguiname"] = "igCreateContext" -defs["igCreateContext"][1]["comment"] = "" defs["igCreateContext"][1]["defaults"] = {} defs["igCreateContext"][1]["defaults"]["shared_font_atlas"] = "((void*)0)" defs["igCreateContext"][1]["funcname"] = "CreateContext" @@ -15834,7 +15562,6 @@ defs["igDebugCheckVersionAndDataLayout"][1]["argsT"][6]["type"] = "size_t" defs["igDebugCheckVersionAndDataLayout"][1]["argsoriginal"] = "(const char* version_str,size_t sz_io,size_t sz_style,size_t sz_vec2,size_t sz_vec4,size_t sz_drawvert)" defs["igDebugCheckVersionAndDataLayout"][1]["call_args"] = "(version_str,sz_io,sz_style,sz_vec2,sz_vec4,sz_drawvert)" defs["igDebugCheckVersionAndDataLayout"][1]["cimguiname"] = "igDebugCheckVersionAndDataLayout" -defs["igDebugCheckVersionAndDataLayout"][1]["comment"] = "" defs["igDebugCheckVersionAndDataLayout"][1]["defaults"] = {} defs["igDebugCheckVersionAndDataLayout"][1]["funcname"] = "DebugCheckVersionAndDataLayout" defs["igDebugCheckVersionAndDataLayout"][1]["namespace"] = "ImGui" @@ -15853,7 +15580,6 @@ defs["igDestroyContext"][1]["argsT"][1]["type"] = "ImGuiContext*" defs["igDestroyContext"][1]["argsoriginal"] = "(ImGuiContext* ctx=((void*)0))" defs["igDestroyContext"][1]["call_args"] = "(ctx)" defs["igDestroyContext"][1]["cimguiname"] = "igDestroyContext" -defs["igDestroyContext"][1]["comment"] = "" defs["igDestroyContext"][1]["defaults"] = {} defs["igDestroyContext"][1]["defaults"]["ctx"] = "((void*)0)" defs["igDestroyContext"][1]["funcname"] = "DestroyContext" @@ -15891,7 +15617,6 @@ defs["igDragFloat"][1]["argsT"][7]["type"] = "float" defs["igDragFloat"][1]["argsoriginal"] = "(const char* label,float* v,float v_speed=1.0f,float v_min=0.0f,float v_max=0.0f,const char* format=\"%.3f\",float power=1.0f)" defs["igDragFloat"][1]["call_args"] = "(label,v,v_speed,v_min,v_max,format,power)" defs["igDragFloat"][1]["cimguiname"] = "igDragFloat" -defs["igDragFloat"][1]["comment"] = "" defs["igDragFloat"][1]["defaults"] = {} defs["igDragFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igDragFloat"][1]["defaults"]["power"] = "1.0f" @@ -15933,7 +15658,6 @@ defs["igDragFloat2"][1]["argsT"][7]["type"] = "float" defs["igDragFloat2"][1]["argsoriginal"] = "(const char* label,float v[2],float v_speed=1.0f,float v_min=0.0f,float v_max=0.0f,const char* format=\"%.3f\",float power=1.0f)" defs["igDragFloat2"][1]["call_args"] = "(label,v,v_speed,v_min,v_max,format,power)" defs["igDragFloat2"][1]["cimguiname"] = "igDragFloat2" -defs["igDragFloat2"][1]["comment"] = "" defs["igDragFloat2"][1]["defaults"] = {} defs["igDragFloat2"][1]["defaults"]["format"] = "\"%.3f\"" defs["igDragFloat2"][1]["defaults"]["power"] = "1.0f" @@ -15975,7 +15699,6 @@ defs["igDragFloat3"][1]["argsT"][7]["type"] = "float" defs["igDragFloat3"][1]["argsoriginal"] = "(const char* label,float v[3],float v_speed=1.0f,float v_min=0.0f,float v_max=0.0f,const char* format=\"%.3f\",float power=1.0f)" defs["igDragFloat3"][1]["call_args"] = "(label,v,v_speed,v_min,v_max,format,power)" defs["igDragFloat3"][1]["cimguiname"] = "igDragFloat3" -defs["igDragFloat3"][1]["comment"] = "" defs["igDragFloat3"][1]["defaults"] = {} defs["igDragFloat3"][1]["defaults"]["format"] = "\"%.3f\"" defs["igDragFloat3"][1]["defaults"]["power"] = "1.0f" @@ -16017,7 +15740,6 @@ defs["igDragFloat4"][1]["argsT"][7]["type"] = "float" defs["igDragFloat4"][1]["argsoriginal"] = "(const char* label,float v[4],float v_speed=1.0f,float v_min=0.0f,float v_max=0.0f,const char* format=\"%.3f\",float power=1.0f)" defs["igDragFloat4"][1]["call_args"] = "(label,v,v_speed,v_min,v_max,format,power)" defs["igDragFloat4"][1]["cimguiname"] = "igDragFloat4" -defs["igDragFloat4"][1]["comment"] = "" defs["igDragFloat4"][1]["defaults"] = {} defs["igDragFloat4"][1]["defaults"]["format"] = "\"%.3f\"" defs["igDragFloat4"][1]["defaults"]["power"] = "1.0f" @@ -16065,7 +15787,6 @@ defs["igDragFloatRange2"][1]["argsT"][9]["type"] = "float" defs["igDragFloatRange2"][1]["argsoriginal"] = "(const char* label,float* v_current_min,float* v_current_max,float v_speed=1.0f,float v_min=0.0f,float v_max=0.0f,const char* format=\"%.3f\",const char* format_max=((void*)0),float power=1.0f)" defs["igDragFloatRange2"][1]["call_args"] = "(label,v_current_min,v_current_max,v_speed,v_min,v_max,format,format_max,power)" defs["igDragFloatRange2"][1]["cimguiname"] = "igDragFloatRange2" -defs["igDragFloatRange2"][1]["comment"] = "" defs["igDragFloatRange2"][1]["defaults"] = {} defs["igDragFloatRange2"][1]["defaults"]["format"] = "\"%.3f\"" defs["igDragFloatRange2"][1]["defaults"]["format_max"] = "((void*)0)" @@ -16105,7 +15826,6 @@ defs["igDragInt"][1]["argsT"][6]["type"] = "const char*" defs["igDragInt"][1]["argsoriginal"] = "(const char* label,int* v,float v_speed=1.0f,int v_min=0,int v_max=0,const char* format=\"%d\")" defs["igDragInt"][1]["call_args"] = "(label,v,v_speed,v_min,v_max,format)" defs["igDragInt"][1]["cimguiname"] = "igDragInt" -defs["igDragInt"][1]["comment"] = "" defs["igDragInt"][1]["defaults"] = {} defs["igDragInt"][1]["defaults"]["format"] = "\"%d\"" defs["igDragInt"][1]["defaults"]["v_max"] = "0" @@ -16143,7 +15863,6 @@ defs["igDragInt2"][1]["argsT"][6]["type"] = "const char*" defs["igDragInt2"][1]["argsoriginal"] = "(const char* label,int v[2],float v_speed=1.0f,int v_min=0,int v_max=0,const char* format=\"%d\")" defs["igDragInt2"][1]["call_args"] = "(label,v,v_speed,v_min,v_max,format)" defs["igDragInt2"][1]["cimguiname"] = "igDragInt2" -defs["igDragInt2"][1]["comment"] = "" defs["igDragInt2"][1]["defaults"] = {} defs["igDragInt2"][1]["defaults"]["format"] = "\"%d\"" defs["igDragInt2"][1]["defaults"]["v_max"] = "0" @@ -16181,7 +15900,6 @@ defs["igDragInt3"][1]["argsT"][6]["type"] = "const char*" defs["igDragInt3"][1]["argsoriginal"] = "(const char* label,int v[3],float v_speed=1.0f,int v_min=0,int v_max=0,const char* format=\"%d\")" defs["igDragInt3"][1]["call_args"] = "(label,v,v_speed,v_min,v_max,format)" defs["igDragInt3"][1]["cimguiname"] = "igDragInt3" -defs["igDragInt3"][1]["comment"] = "" defs["igDragInt3"][1]["defaults"] = {} defs["igDragInt3"][1]["defaults"]["format"] = "\"%d\"" defs["igDragInt3"][1]["defaults"]["v_max"] = "0" @@ -16219,7 +15937,6 @@ defs["igDragInt4"][1]["argsT"][6]["type"] = "const char*" defs["igDragInt4"][1]["argsoriginal"] = "(const char* label,int v[4],float v_speed=1.0f,int v_min=0,int v_max=0,const char* format=\"%d\")" defs["igDragInt4"][1]["call_args"] = "(label,v,v_speed,v_min,v_max,format)" defs["igDragInt4"][1]["cimguiname"] = "igDragInt4" -defs["igDragInt4"][1]["comment"] = "" defs["igDragInt4"][1]["defaults"] = {} defs["igDragInt4"][1]["defaults"]["format"] = "\"%d\"" defs["igDragInt4"][1]["defaults"]["v_max"] = "0" @@ -16263,7 +15980,6 @@ defs["igDragIntRange2"][1]["argsT"][8]["type"] = "const char*" defs["igDragIntRange2"][1]["argsoriginal"] = "(const char* label,int* v_current_min,int* v_current_max,float v_speed=1.0f,int v_min=0,int v_max=0,const char* format=\"%d\",const char* format_max=((void*)0))" defs["igDragIntRange2"][1]["call_args"] = "(label,v_current_min,v_current_max,v_speed,v_min,v_max,format,format_max)" defs["igDragIntRange2"][1]["cimguiname"] = "igDragIntRange2" -defs["igDragIntRange2"][1]["comment"] = "" defs["igDragIntRange2"][1]["defaults"] = {} defs["igDragIntRange2"][1]["defaults"]["format"] = "\"%d\"" defs["igDragIntRange2"][1]["defaults"]["format_max"] = "((void*)0)" @@ -16308,7 +16024,6 @@ defs["igDragScalar"][1]["argsT"][8]["type"] = "float" defs["igDragScalar"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,float v_speed,const void* v_min=((void*)0),const void* v_max=((void*)0),const char* format=((void*)0),float power=1.0f)" defs["igDragScalar"][1]["call_args"] = "(label,data_type,v,v_speed,v_min,v_max,format,power)" defs["igDragScalar"][1]["cimguiname"] = "igDragScalar" -defs["igDragScalar"][1]["comment"] = "" defs["igDragScalar"][1]["defaults"] = {} defs["igDragScalar"][1]["defaults"]["format"] = "((void*)0)" defs["igDragScalar"][1]["defaults"]["power"] = "1.0f" @@ -16355,7 +16070,6 @@ defs["igDragScalarN"][1]["argsT"][9]["type"] = "float" defs["igDragScalarN"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,int components,float v_speed,const void* v_min=((void*)0),const void* v_max=((void*)0),const char* format=((void*)0),float power=1.0f)" defs["igDragScalarN"][1]["call_args"] = "(label,data_type,v,components,v_speed,v_min,v_max,format,power)" defs["igDragScalarN"][1]["cimguiname"] = "igDragScalarN" -defs["igDragScalarN"][1]["comment"] = "" defs["igDragScalarN"][1]["defaults"] = {} defs["igDragScalarN"][1]["defaults"]["format"] = "((void*)0)" defs["igDragScalarN"][1]["defaults"]["power"] = "1.0f" @@ -16378,7 +16092,6 @@ defs["igDummy"][1]["argsT"][1]["type"] = "const ImVec2" defs["igDummy"][1]["argsoriginal"] = "(const ImVec2& size)" defs["igDummy"][1]["call_args"] = "(size)" defs["igDummy"][1]["cimguiname"] = "igDummy" -defs["igDummy"][1]["comment"] = "" defs["igDummy"][1]["defaults"] = {} defs["igDummy"][1]["funcname"] = "Dummy" defs["igDummy"][1]["namespace"] = "ImGui" @@ -16394,7 +16107,6 @@ defs["igEnd"][1]["argsT"] = {} defs["igEnd"][1]["argsoriginal"] = "()" defs["igEnd"][1]["call_args"] = "()" defs["igEnd"][1]["cimguiname"] = "igEnd" -defs["igEnd"][1]["comment"] = "" defs["igEnd"][1]["defaults"] = {} defs["igEnd"][1]["funcname"] = "End" defs["igEnd"][1]["namespace"] = "ImGui" @@ -16410,7 +16122,6 @@ defs["igEndChild"][1]["argsT"] = {} defs["igEndChild"][1]["argsoriginal"] = "()" defs["igEndChild"][1]["call_args"] = "()" defs["igEndChild"][1]["cimguiname"] = "igEndChild" -defs["igEndChild"][1]["comment"] = "" defs["igEndChild"][1]["defaults"] = {} defs["igEndChild"][1]["funcname"] = "EndChild" defs["igEndChild"][1]["namespace"] = "ImGui" @@ -16426,7 +16137,6 @@ defs["igEndChildFrame"][1]["argsT"] = {} defs["igEndChildFrame"][1]["argsoriginal"] = "()" defs["igEndChildFrame"][1]["call_args"] = "()" defs["igEndChildFrame"][1]["cimguiname"] = "igEndChildFrame" -defs["igEndChildFrame"][1]["comment"] = "" defs["igEndChildFrame"][1]["defaults"] = {} defs["igEndChildFrame"][1]["funcname"] = "EndChildFrame" defs["igEndChildFrame"][1]["namespace"] = "ImGui" @@ -16442,7 +16152,6 @@ defs["igEndCombo"][1]["argsT"] = {} defs["igEndCombo"][1]["argsoriginal"] = "()" defs["igEndCombo"][1]["call_args"] = "()" defs["igEndCombo"][1]["cimguiname"] = "igEndCombo" -defs["igEndCombo"][1]["comment"] = "" defs["igEndCombo"][1]["defaults"] = {} defs["igEndCombo"][1]["funcname"] = "EndCombo" defs["igEndCombo"][1]["namespace"] = "ImGui" @@ -16458,7 +16167,6 @@ defs["igEndDragDropSource"][1]["argsT"] = {} defs["igEndDragDropSource"][1]["argsoriginal"] = "()" defs["igEndDragDropSource"][1]["call_args"] = "()" defs["igEndDragDropSource"][1]["cimguiname"] = "igEndDragDropSource" -defs["igEndDragDropSource"][1]["comment"] = "" defs["igEndDragDropSource"][1]["defaults"] = {} defs["igEndDragDropSource"][1]["funcname"] = "EndDragDropSource" defs["igEndDragDropSource"][1]["namespace"] = "ImGui" @@ -16474,7 +16182,6 @@ defs["igEndDragDropTarget"][1]["argsT"] = {} defs["igEndDragDropTarget"][1]["argsoriginal"] = "()" defs["igEndDragDropTarget"][1]["call_args"] = "()" defs["igEndDragDropTarget"][1]["cimguiname"] = "igEndDragDropTarget" -defs["igEndDragDropTarget"][1]["comment"] = "" defs["igEndDragDropTarget"][1]["defaults"] = {} defs["igEndDragDropTarget"][1]["funcname"] = "EndDragDropTarget" defs["igEndDragDropTarget"][1]["namespace"] = "ImGui" @@ -16490,7 +16197,6 @@ defs["igEndFrame"][1]["argsT"] = {} defs["igEndFrame"][1]["argsoriginal"] = "()" defs["igEndFrame"][1]["call_args"] = "()" defs["igEndFrame"][1]["cimguiname"] = "igEndFrame" -defs["igEndFrame"][1]["comment"] = "" defs["igEndFrame"][1]["defaults"] = {} defs["igEndFrame"][1]["funcname"] = "EndFrame" defs["igEndFrame"][1]["namespace"] = "ImGui" @@ -16506,7 +16212,6 @@ defs["igEndGroup"][1]["argsT"] = {} defs["igEndGroup"][1]["argsoriginal"] = "()" defs["igEndGroup"][1]["call_args"] = "()" defs["igEndGroup"][1]["cimguiname"] = "igEndGroup" -defs["igEndGroup"][1]["comment"] = "" defs["igEndGroup"][1]["defaults"] = {} defs["igEndGroup"][1]["funcname"] = "EndGroup" defs["igEndGroup"][1]["namespace"] = "ImGui" @@ -16522,7 +16227,6 @@ defs["igEndMainMenuBar"][1]["argsT"] = {} defs["igEndMainMenuBar"][1]["argsoriginal"] = "()" defs["igEndMainMenuBar"][1]["call_args"] = "()" defs["igEndMainMenuBar"][1]["cimguiname"] = "igEndMainMenuBar" -defs["igEndMainMenuBar"][1]["comment"] = "" defs["igEndMainMenuBar"][1]["defaults"] = {} defs["igEndMainMenuBar"][1]["funcname"] = "EndMainMenuBar" defs["igEndMainMenuBar"][1]["namespace"] = "ImGui" @@ -16538,7 +16242,6 @@ defs["igEndMenu"][1]["argsT"] = {} defs["igEndMenu"][1]["argsoriginal"] = "()" defs["igEndMenu"][1]["call_args"] = "()" defs["igEndMenu"][1]["cimguiname"] = "igEndMenu" -defs["igEndMenu"][1]["comment"] = "" defs["igEndMenu"][1]["defaults"] = {} defs["igEndMenu"][1]["funcname"] = "EndMenu" defs["igEndMenu"][1]["namespace"] = "ImGui" @@ -16554,7 +16257,6 @@ defs["igEndMenuBar"][1]["argsT"] = {} defs["igEndMenuBar"][1]["argsoriginal"] = "()" defs["igEndMenuBar"][1]["call_args"] = "()" defs["igEndMenuBar"][1]["cimguiname"] = "igEndMenuBar" -defs["igEndMenuBar"][1]["comment"] = "" defs["igEndMenuBar"][1]["defaults"] = {} defs["igEndMenuBar"][1]["funcname"] = "EndMenuBar" defs["igEndMenuBar"][1]["namespace"] = "ImGui" @@ -16570,7 +16272,6 @@ defs["igEndPopup"][1]["argsT"] = {} defs["igEndPopup"][1]["argsoriginal"] = "()" defs["igEndPopup"][1]["call_args"] = "()" defs["igEndPopup"][1]["cimguiname"] = "igEndPopup" -defs["igEndPopup"][1]["comment"] = "" defs["igEndPopup"][1]["defaults"] = {} defs["igEndPopup"][1]["funcname"] = "EndPopup" defs["igEndPopup"][1]["namespace"] = "ImGui" @@ -16586,7 +16287,6 @@ defs["igEndTabBar"][1]["argsT"] = {} defs["igEndTabBar"][1]["argsoriginal"] = "()" defs["igEndTabBar"][1]["call_args"] = "()" defs["igEndTabBar"][1]["cimguiname"] = "igEndTabBar" -defs["igEndTabBar"][1]["comment"] = "" defs["igEndTabBar"][1]["defaults"] = {} defs["igEndTabBar"][1]["funcname"] = "EndTabBar" defs["igEndTabBar"][1]["namespace"] = "ImGui" @@ -16602,7 +16302,6 @@ defs["igEndTabItem"][1]["argsT"] = {} defs["igEndTabItem"][1]["argsoriginal"] = "()" defs["igEndTabItem"][1]["call_args"] = "()" defs["igEndTabItem"][1]["cimguiname"] = "igEndTabItem" -defs["igEndTabItem"][1]["comment"] = "" defs["igEndTabItem"][1]["defaults"] = {} defs["igEndTabItem"][1]["funcname"] = "EndTabItem" defs["igEndTabItem"][1]["namespace"] = "ImGui" @@ -16618,7 +16317,6 @@ defs["igEndTooltip"][1]["argsT"] = {} defs["igEndTooltip"][1]["argsoriginal"] = "()" defs["igEndTooltip"][1]["call_args"] = "()" defs["igEndTooltip"][1]["cimguiname"] = "igEndTooltip" -defs["igEndTooltip"][1]["comment"] = "" defs["igEndTooltip"][1]["defaults"] = {} defs["igEndTooltip"][1]["funcname"] = "EndTooltip" defs["igEndTooltip"][1]["namespace"] = "ImGui" @@ -16634,7 +16332,6 @@ defs["igGetClipboardText"][1]["argsT"] = {} defs["igGetClipboardText"][1]["argsoriginal"] = "()" defs["igGetClipboardText"][1]["call_args"] = "()" defs["igGetClipboardText"][1]["cimguiname"] = "igGetClipboardText" -defs["igGetClipboardText"][1]["comment"] = "" defs["igGetClipboardText"][1]["defaults"] = {} defs["igGetClipboardText"][1]["funcname"] = "GetClipboardText" defs["igGetClipboardText"][1]["namespace"] = "ImGui" @@ -16656,7 +16353,6 @@ defs["igGetColorU32"][1]["argsT"][2]["type"] = "float" defs["igGetColorU32"][1]["argsoriginal"] = "(ImGuiCol idx,float alpha_mul=1.0f)" defs["igGetColorU32"][1]["call_args"] = "(idx,alpha_mul)" defs["igGetColorU32"][1]["cimguiname"] = "igGetColorU32" -defs["igGetColorU32"][1]["comment"] = "" defs["igGetColorU32"][1]["defaults"] = {} defs["igGetColorU32"][1]["defaults"]["alpha_mul"] = "1.0f" defs["igGetColorU32"][1]["funcname"] = "GetColorU32" @@ -16674,7 +16370,6 @@ defs["igGetColorU32"][2]["argsT"][1]["type"] = "const ImVec4" defs["igGetColorU32"][2]["argsoriginal"] = "(const ImVec4& col)" defs["igGetColorU32"][2]["call_args"] = "(col)" defs["igGetColorU32"][2]["cimguiname"] = "igGetColorU32" -defs["igGetColorU32"][2]["comment"] = "" defs["igGetColorU32"][2]["defaults"] = {} defs["igGetColorU32"][2]["funcname"] = "GetColorU32" defs["igGetColorU32"][2]["namespace"] = "ImGui" @@ -16691,7 +16386,6 @@ defs["igGetColorU32"][3]["argsT"][1]["type"] = "ImU32" defs["igGetColorU32"][3]["argsoriginal"] = "(ImU32 col)" defs["igGetColorU32"][3]["call_args"] = "(col)" defs["igGetColorU32"][3]["cimguiname"] = "igGetColorU32" -defs["igGetColorU32"][3]["comment"] = "" defs["igGetColorU32"][3]["defaults"] = {} defs["igGetColorU32"][3]["funcname"] = "GetColorU32" defs["igGetColorU32"][3]["namespace"] = "ImGui" @@ -16709,7 +16403,6 @@ defs["igGetColumnIndex"][1]["argsT"] = {} defs["igGetColumnIndex"][1]["argsoriginal"] = "()" defs["igGetColumnIndex"][1]["call_args"] = "()" defs["igGetColumnIndex"][1]["cimguiname"] = "igGetColumnIndex" -defs["igGetColumnIndex"][1]["comment"] = "" defs["igGetColumnIndex"][1]["defaults"] = {} defs["igGetColumnIndex"][1]["funcname"] = "GetColumnIndex" defs["igGetColumnIndex"][1]["namespace"] = "ImGui" @@ -16728,7 +16421,6 @@ defs["igGetColumnOffset"][1]["argsT"][1]["type"] = "int" defs["igGetColumnOffset"][1]["argsoriginal"] = "(int column_index=-1)" defs["igGetColumnOffset"][1]["call_args"] = "(column_index)" defs["igGetColumnOffset"][1]["cimguiname"] = "igGetColumnOffset" -defs["igGetColumnOffset"][1]["comment"] = "" defs["igGetColumnOffset"][1]["defaults"] = {} defs["igGetColumnOffset"][1]["defaults"]["column_index"] = "-1" defs["igGetColumnOffset"][1]["funcname"] = "GetColumnOffset" @@ -16748,7 +16440,6 @@ defs["igGetColumnWidth"][1]["argsT"][1]["type"] = "int" defs["igGetColumnWidth"][1]["argsoriginal"] = "(int column_index=-1)" defs["igGetColumnWidth"][1]["call_args"] = "(column_index)" defs["igGetColumnWidth"][1]["cimguiname"] = "igGetColumnWidth" -defs["igGetColumnWidth"][1]["comment"] = "" defs["igGetColumnWidth"][1]["defaults"] = {} defs["igGetColumnWidth"][1]["defaults"]["column_index"] = "-1" defs["igGetColumnWidth"][1]["funcname"] = "GetColumnWidth" @@ -16765,7 +16456,6 @@ defs["igGetColumnsCount"][1]["argsT"] = {} defs["igGetColumnsCount"][1]["argsoriginal"] = "()" defs["igGetColumnsCount"][1]["call_args"] = "()" defs["igGetColumnsCount"][1]["cimguiname"] = "igGetColumnsCount" -defs["igGetColumnsCount"][1]["comment"] = "" defs["igGetColumnsCount"][1]["defaults"] = {} defs["igGetColumnsCount"][1]["funcname"] = "GetColumnsCount" defs["igGetColumnsCount"][1]["namespace"] = "ImGui" @@ -16781,7 +16471,6 @@ defs["igGetContentRegionAvail"][1]["argsT"] = {} defs["igGetContentRegionAvail"][1]["argsoriginal"] = "()" defs["igGetContentRegionAvail"][1]["call_args"] = "()" defs["igGetContentRegionAvail"][1]["cimguiname"] = "igGetContentRegionAvail" -defs["igGetContentRegionAvail"][1]["comment"] = "" defs["igGetContentRegionAvail"][1]["defaults"] = {} defs["igGetContentRegionAvail"][1]["funcname"] = "GetContentRegionAvail" defs["igGetContentRegionAvail"][1]["namespace"] = "ImGui" @@ -16798,7 +16487,6 @@ defs["igGetContentRegionAvail"][2]["argsT"][1]["type"] = "ImVec2*" defs["igGetContentRegionAvail"][2]["argsoriginal"] = "()" defs["igGetContentRegionAvail"][2]["call_args"] = "()" defs["igGetContentRegionAvail"][2]["cimguiname"] = "igGetContentRegionAvail" -defs["igGetContentRegionAvail"][2]["comment"] = "" defs["igGetContentRegionAvail"][2]["defaults"] = defs["igGetContentRegionAvail"][1]["defaults"] defs["igGetContentRegionAvail"][2]["funcname"] = "GetContentRegionAvail" defs["igGetContentRegionAvail"][2]["namespace"] = "ImGui" @@ -16813,7 +16501,6 @@ defs["igGetContentRegionAvail"][3]["argsT"] = {} defs["igGetContentRegionAvail"][3]["argsoriginal"] = "()" defs["igGetContentRegionAvail"][3]["call_args"] = "()" defs["igGetContentRegionAvail"][3]["cimguiname"] = "igGetContentRegionAvail" -defs["igGetContentRegionAvail"][3]["comment"] = "" defs["igGetContentRegionAvail"][3]["defaults"] = defs["igGetContentRegionAvail"][1]["defaults"] defs["igGetContentRegionAvail"][3]["funcname"] = "GetContentRegionAvail" defs["igGetContentRegionAvail"][3]["namespace"] = "ImGui" @@ -16833,7 +16520,6 @@ defs["igGetContentRegionAvailWidth"][1]["argsT"] = {} defs["igGetContentRegionAvailWidth"][1]["argsoriginal"] = "()" defs["igGetContentRegionAvailWidth"][1]["call_args"] = "()" defs["igGetContentRegionAvailWidth"][1]["cimguiname"] = "igGetContentRegionAvailWidth" -defs["igGetContentRegionAvailWidth"][1]["comment"] = "" defs["igGetContentRegionAvailWidth"][1]["defaults"] = {} defs["igGetContentRegionAvailWidth"][1]["funcname"] = "GetContentRegionAvailWidth" defs["igGetContentRegionAvailWidth"][1]["namespace"] = "ImGui" @@ -16849,7 +16535,6 @@ defs["igGetContentRegionMax"][1]["argsT"] = {} defs["igGetContentRegionMax"][1]["argsoriginal"] = "()" defs["igGetContentRegionMax"][1]["call_args"] = "()" defs["igGetContentRegionMax"][1]["cimguiname"] = "igGetContentRegionMax" -defs["igGetContentRegionMax"][1]["comment"] = "" defs["igGetContentRegionMax"][1]["defaults"] = {} defs["igGetContentRegionMax"][1]["funcname"] = "GetContentRegionMax" defs["igGetContentRegionMax"][1]["namespace"] = "ImGui" @@ -16866,7 +16551,6 @@ defs["igGetContentRegionMax"][2]["argsT"][1]["type"] = "ImVec2*" defs["igGetContentRegionMax"][2]["argsoriginal"] = "()" defs["igGetContentRegionMax"][2]["call_args"] = "()" defs["igGetContentRegionMax"][2]["cimguiname"] = "igGetContentRegionMax" -defs["igGetContentRegionMax"][2]["comment"] = "" defs["igGetContentRegionMax"][2]["defaults"] = defs["igGetContentRegionMax"][1]["defaults"] defs["igGetContentRegionMax"][2]["funcname"] = "GetContentRegionMax" defs["igGetContentRegionMax"][2]["namespace"] = "ImGui" @@ -16881,7 +16565,6 @@ defs["igGetContentRegionMax"][3]["argsT"] = {} defs["igGetContentRegionMax"][3]["argsoriginal"] = "()" defs["igGetContentRegionMax"][3]["call_args"] = "()" defs["igGetContentRegionMax"][3]["cimguiname"] = "igGetContentRegionMax" -defs["igGetContentRegionMax"][3]["comment"] = "" defs["igGetContentRegionMax"][3]["defaults"] = defs["igGetContentRegionMax"][1]["defaults"] defs["igGetContentRegionMax"][3]["funcname"] = "GetContentRegionMax" defs["igGetContentRegionMax"][3]["namespace"] = "ImGui" @@ -16901,7 +16584,6 @@ defs["igGetCurrentContext"][1]["argsT"] = {} defs["igGetCurrentContext"][1]["argsoriginal"] = "()" defs["igGetCurrentContext"][1]["call_args"] = "()" defs["igGetCurrentContext"][1]["cimguiname"] = "igGetCurrentContext" -defs["igGetCurrentContext"][1]["comment"] = "" defs["igGetCurrentContext"][1]["defaults"] = {} defs["igGetCurrentContext"][1]["funcname"] = "GetCurrentContext" defs["igGetCurrentContext"][1]["namespace"] = "ImGui" @@ -16917,7 +16599,6 @@ defs["igGetCursorPos"][1]["argsT"] = {} defs["igGetCursorPos"][1]["argsoriginal"] = "()" defs["igGetCursorPos"][1]["call_args"] = "()" defs["igGetCursorPos"][1]["cimguiname"] = "igGetCursorPos" -defs["igGetCursorPos"][1]["comment"] = "" defs["igGetCursorPos"][1]["defaults"] = {} defs["igGetCursorPos"][1]["funcname"] = "GetCursorPos" defs["igGetCursorPos"][1]["namespace"] = "ImGui" @@ -16934,7 +16615,6 @@ defs["igGetCursorPos"][2]["argsT"][1]["type"] = "ImVec2*" defs["igGetCursorPos"][2]["argsoriginal"] = "()" defs["igGetCursorPos"][2]["call_args"] = "()" defs["igGetCursorPos"][2]["cimguiname"] = "igGetCursorPos" -defs["igGetCursorPos"][2]["comment"] = "" defs["igGetCursorPos"][2]["defaults"] = defs["igGetCursorPos"][1]["defaults"] defs["igGetCursorPos"][2]["funcname"] = "GetCursorPos" defs["igGetCursorPos"][2]["namespace"] = "ImGui" @@ -16949,7 +16629,6 @@ defs["igGetCursorPos"][3]["argsT"] = {} defs["igGetCursorPos"][3]["argsoriginal"] = "()" defs["igGetCursorPos"][3]["call_args"] = "()" defs["igGetCursorPos"][3]["cimguiname"] = "igGetCursorPos" -defs["igGetCursorPos"][3]["comment"] = "" defs["igGetCursorPos"][3]["defaults"] = defs["igGetCursorPos"][1]["defaults"] defs["igGetCursorPos"][3]["funcname"] = "GetCursorPos" defs["igGetCursorPos"][3]["namespace"] = "ImGui" @@ -16969,7 +16648,6 @@ defs["igGetCursorPosX"][1]["argsT"] = {} defs["igGetCursorPosX"][1]["argsoriginal"] = "()" defs["igGetCursorPosX"][1]["call_args"] = "()" defs["igGetCursorPosX"][1]["cimguiname"] = "igGetCursorPosX" -defs["igGetCursorPosX"][1]["comment"] = "" defs["igGetCursorPosX"][1]["defaults"] = {} defs["igGetCursorPosX"][1]["funcname"] = "GetCursorPosX" defs["igGetCursorPosX"][1]["namespace"] = "ImGui" @@ -16985,7 +16663,6 @@ defs["igGetCursorPosY"][1]["argsT"] = {} defs["igGetCursorPosY"][1]["argsoriginal"] = "()" defs["igGetCursorPosY"][1]["call_args"] = "()" defs["igGetCursorPosY"][1]["cimguiname"] = "igGetCursorPosY" -defs["igGetCursorPosY"][1]["comment"] = "" defs["igGetCursorPosY"][1]["defaults"] = {} defs["igGetCursorPosY"][1]["funcname"] = "GetCursorPosY" defs["igGetCursorPosY"][1]["namespace"] = "ImGui" @@ -17001,7 +16678,6 @@ defs["igGetCursorScreenPos"][1]["argsT"] = {} defs["igGetCursorScreenPos"][1]["argsoriginal"] = "()" defs["igGetCursorScreenPos"][1]["call_args"] = "()" defs["igGetCursorScreenPos"][1]["cimguiname"] = "igGetCursorScreenPos" -defs["igGetCursorScreenPos"][1]["comment"] = "" defs["igGetCursorScreenPos"][1]["defaults"] = {} defs["igGetCursorScreenPos"][1]["funcname"] = "GetCursorScreenPos" defs["igGetCursorScreenPos"][1]["namespace"] = "ImGui" @@ -17018,7 +16694,6 @@ defs["igGetCursorScreenPos"][2]["argsT"][1]["type"] = "ImVec2*" defs["igGetCursorScreenPos"][2]["argsoriginal"] = "()" defs["igGetCursorScreenPos"][2]["call_args"] = "()" defs["igGetCursorScreenPos"][2]["cimguiname"] = "igGetCursorScreenPos" -defs["igGetCursorScreenPos"][2]["comment"] = "" defs["igGetCursorScreenPos"][2]["defaults"] = defs["igGetCursorScreenPos"][1]["defaults"] defs["igGetCursorScreenPos"][2]["funcname"] = "GetCursorScreenPos" defs["igGetCursorScreenPos"][2]["namespace"] = "ImGui" @@ -17033,7 +16708,6 @@ defs["igGetCursorScreenPos"][3]["argsT"] = {} defs["igGetCursorScreenPos"][3]["argsoriginal"] = "()" defs["igGetCursorScreenPos"][3]["call_args"] = "()" defs["igGetCursorScreenPos"][3]["cimguiname"] = "igGetCursorScreenPos" -defs["igGetCursorScreenPos"][3]["comment"] = "" defs["igGetCursorScreenPos"][3]["defaults"] = defs["igGetCursorScreenPos"][1]["defaults"] defs["igGetCursorScreenPos"][3]["funcname"] = "GetCursorScreenPos" defs["igGetCursorScreenPos"][3]["namespace"] = "ImGui" @@ -17053,7 +16727,6 @@ defs["igGetCursorStartPos"][1]["argsT"] = {} defs["igGetCursorStartPos"][1]["argsoriginal"] = "()" defs["igGetCursorStartPos"][1]["call_args"] = "()" defs["igGetCursorStartPos"][1]["cimguiname"] = "igGetCursorStartPos" -defs["igGetCursorStartPos"][1]["comment"] = "" defs["igGetCursorStartPos"][1]["defaults"] = {} defs["igGetCursorStartPos"][1]["funcname"] = "GetCursorStartPos" defs["igGetCursorStartPos"][1]["namespace"] = "ImGui" @@ -17070,7 +16743,6 @@ defs["igGetCursorStartPos"][2]["argsT"][1]["type"] = "ImVec2*" defs["igGetCursorStartPos"][2]["argsoriginal"] = "()" defs["igGetCursorStartPos"][2]["call_args"] = "()" defs["igGetCursorStartPos"][2]["cimguiname"] = "igGetCursorStartPos" -defs["igGetCursorStartPos"][2]["comment"] = "" defs["igGetCursorStartPos"][2]["defaults"] = defs["igGetCursorStartPos"][1]["defaults"] defs["igGetCursorStartPos"][2]["funcname"] = "GetCursorStartPos" defs["igGetCursorStartPos"][2]["namespace"] = "ImGui" @@ -17085,7 +16757,6 @@ defs["igGetCursorStartPos"][3]["argsT"] = {} defs["igGetCursorStartPos"][3]["argsoriginal"] = "()" defs["igGetCursorStartPos"][3]["call_args"] = "()" defs["igGetCursorStartPos"][3]["cimguiname"] = "igGetCursorStartPos" -defs["igGetCursorStartPos"][3]["comment"] = "" defs["igGetCursorStartPos"][3]["defaults"] = defs["igGetCursorStartPos"][1]["defaults"] defs["igGetCursorStartPos"][3]["funcname"] = "GetCursorStartPos" defs["igGetCursorStartPos"][3]["namespace"] = "ImGui" @@ -17105,7 +16776,6 @@ defs["igGetDragDropPayload"][1]["argsT"] = {} defs["igGetDragDropPayload"][1]["argsoriginal"] = "()" defs["igGetDragDropPayload"][1]["call_args"] = "()" defs["igGetDragDropPayload"][1]["cimguiname"] = "igGetDragDropPayload" -defs["igGetDragDropPayload"][1]["comment"] = "" defs["igGetDragDropPayload"][1]["defaults"] = {} defs["igGetDragDropPayload"][1]["funcname"] = "GetDragDropPayload" defs["igGetDragDropPayload"][1]["namespace"] = "ImGui" @@ -17121,7 +16791,6 @@ defs["igGetDrawData"][1]["argsT"] = {} defs["igGetDrawData"][1]["argsoriginal"] = "()" defs["igGetDrawData"][1]["call_args"] = "()" defs["igGetDrawData"][1]["cimguiname"] = "igGetDrawData" -defs["igGetDrawData"][1]["comment"] = "" defs["igGetDrawData"][1]["defaults"] = {} defs["igGetDrawData"][1]["funcname"] = "GetDrawData" defs["igGetDrawData"][1]["namespace"] = "ImGui" @@ -17137,7 +16806,6 @@ defs["igGetDrawListSharedData"][1]["argsT"] = {} defs["igGetDrawListSharedData"][1]["argsoriginal"] = "()" defs["igGetDrawListSharedData"][1]["call_args"] = "()" defs["igGetDrawListSharedData"][1]["cimguiname"] = "igGetDrawListSharedData" -defs["igGetDrawListSharedData"][1]["comment"] = "" defs["igGetDrawListSharedData"][1]["defaults"] = {} defs["igGetDrawListSharedData"][1]["funcname"] = "GetDrawListSharedData" defs["igGetDrawListSharedData"][1]["namespace"] = "ImGui" @@ -17153,7 +16821,6 @@ defs["igGetFont"][1]["argsT"] = {} defs["igGetFont"][1]["argsoriginal"] = "()" defs["igGetFont"][1]["call_args"] = "()" defs["igGetFont"][1]["cimguiname"] = "igGetFont" -defs["igGetFont"][1]["comment"] = "" defs["igGetFont"][1]["defaults"] = {} defs["igGetFont"][1]["funcname"] = "GetFont" defs["igGetFont"][1]["namespace"] = "ImGui" @@ -17169,7 +16836,6 @@ defs["igGetFontSize"][1]["argsT"] = {} defs["igGetFontSize"][1]["argsoriginal"] = "()" defs["igGetFontSize"][1]["call_args"] = "()" defs["igGetFontSize"][1]["cimguiname"] = "igGetFontSize" -defs["igGetFontSize"][1]["comment"] = "" defs["igGetFontSize"][1]["defaults"] = {} defs["igGetFontSize"][1]["funcname"] = "GetFontSize" defs["igGetFontSize"][1]["namespace"] = "ImGui" @@ -17185,7 +16851,6 @@ defs["igGetFontTexUvWhitePixel"][1]["argsT"] = {} defs["igGetFontTexUvWhitePixel"][1]["argsoriginal"] = "()" defs["igGetFontTexUvWhitePixel"][1]["call_args"] = "()" defs["igGetFontTexUvWhitePixel"][1]["cimguiname"] = "igGetFontTexUvWhitePixel" -defs["igGetFontTexUvWhitePixel"][1]["comment"] = "" defs["igGetFontTexUvWhitePixel"][1]["defaults"] = {} defs["igGetFontTexUvWhitePixel"][1]["funcname"] = "GetFontTexUvWhitePixel" defs["igGetFontTexUvWhitePixel"][1]["namespace"] = "ImGui" @@ -17202,7 +16867,6 @@ defs["igGetFontTexUvWhitePixel"][2]["argsT"][1]["type"] = "ImVec2*" defs["igGetFontTexUvWhitePixel"][2]["argsoriginal"] = "()" defs["igGetFontTexUvWhitePixel"][2]["call_args"] = "()" defs["igGetFontTexUvWhitePixel"][2]["cimguiname"] = "igGetFontTexUvWhitePixel" -defs["igGetFontTexUvWhitePixel"][2]["comment"] = "" defs["igGetFontTexUvWhitePixel"][2]["defaults"] = defs["igGetFontTexUvWhitePixel"][1]["defaults"] defs["igGetFontTexUvWhitePixel"][2]["funcname"] = "GetFontTexUvWhitePixel" defs["igGetFontTexUvWhitePixel"][2]["namespace"] = "ImGui" @@ -17217,7 +16881,6 @@ defs["igGetFontTexUvWhitePixel"][3]["argsT"] = {} defs["igGetFontTexUvWhitePixel"][3]["argsoriginal"] = "()" defs["igGetFontTexUvWhitePixel"][3]["call_args"] = "()" defs["igGetFontTexUvWhitePixel"][3]["cimguiname"] = "igGetFontTexUvWhitePixel" -defs["igGetFontTexUvWhitePixel"][3]["comment"] = "" defs["igGetFontTexUvWhitePixel"][3]["defaults"] = defs["igGetFontTexUvWhitePixel"][1]["defaults"] defs["igGetFontTexUvWhitePixel"][3]["funcname"] = "GetFontTexUvWhitePixel" defs["igGetFontTexUvWhitePixel"][3]["namespace"] = "ImGui" @@ -17237,7 +16900,6 @@ defs["igGetFrameCount"][1]["argsT"] = {} defs["igGetFrameCount"][1]["argsoriginal"] = "()" defs["igGetFrameCount"][1]["call_args"] = "()" defs["igGetFrameCount"][1]["cimguiname"] = "igGetFrameCount" -defs["igGetFrameCount"][1]["comment"] = "" defs["igGetFrameCount"][1]["defaults"] = {} defs["igGetFrameCount"][1]["funcname"] = "GetFrameCount" defs["igGetFrameCount"][1]["namespace"] = "ImGui" @@ -17253,7 +16915,6 @@ defs["igGetFrameHeight"][1]["argsT"] = {} defs["igGetFrameHeight"][1]["argsoriginal"] = "()" defs["igGetFrameHeight"][1]["call_args"] = "()" defs["igGetFrameHeight"][1]["cimguiname"] = "igGetFrameHeight" -defs["igGetFrameHeight"][1]["comment"] = "" defs["igGetFrameHeight"][1]["defaults"] = {} defs["igGetFrameHeight"][1]["funcname"] = "GetFrameHeight" defs["igGetFrameHeight"][1]["namespace"] = "ImGui" @@ -17269,7 +16930,6 @@ defs["igGetFrameHeightWithSpacing"][1]["argsT"] = {} defs["igGetFrameHeightWithSpacing"][1]["argsoriginal"] = "()" defs["igGetFrameHeightWithSpacing"][1]["call_args"] = "()" defs["igGetFrameHeightWithSpacing"][1]["cimguiname"] = "igGetFrameHeightWithSpacing" -defs["igGetFrameHeightWithSpacing"][1]["comment"] = "" defs["igGetFrameHeightWithSpacing"][1]["defaults"] = {} defs["igGetFrameHeightWithSpacing"][1]["funcname"] = "GetFrameHeightWithSpacing" defs["igGetFrameHeightWithSpacing"][1]["namespace"] = "ImGui" @@ -17288,7 +16948,6 @@ defs["igGetID"][1]["argsT"][1]["type"] = "const char*" defs["igGetID"][1]["argsoriginal"] = "(const char* str_id)" defs["igGetID"][1]["call_args"] = "(str_id)" defs["igGetID"][1]["cimguiname"] = "igGetID" -defs["igGetID"][1]["comment"] = "" defs["igGetID"][1]["defaults"] = {} defs["igGetID"][1]["funcname"] = "GetID" defs["igGetID"][1]["namespace"] = "ImGui" @@ -17308,7 +16967,6 @@ defs["igGetID"][2]["argsT"][2]["type"] = "const char*" defs["igGetID"][2]["argsoriginal"] = "(const char* str_id_begin,const char* str_id_end)" defs["igGetID"][2]["call_args"] = "(str_id_begin,str_id_end)" defs["igGetID"][2]["cimguiname"] = "igGetID" -defs["igGetID"][2]["comment"] = "" defs["igGetID"][2]["defaults"] = {} defs["igGetID"][2]["funcname"] = "GetID" defs["igGetID"][2]["namespace"] = "ImGui" @@ -17325,7 +16983,6 @@ defs["igGetID"][3]["argsT"][1]["type"] = "const void*" defs["igGetID"][3]["argsoriginal"] = "(const void* ptr_id)" defs["igGetID"][3]["call_args"] = "(ptr_id)" defs["igGetID"][3]["cimguiname"] = "igGetID" -defs["igGetID"][3]["comment"] = "" defs["igGetID"][3]["defaults"] = {} defs["igGetID"][3]["funcname"] = "GetID" defs["igGetID"][3]["namespace"] = "ImGui" @@ -17343,7 +17000,6 @@ defs["igGetIO"][1]["argsT"] = {} defs["igGetIO"][1]["argsoriginal"] = "()" defs["igGetIO"][1]["call_args"] = "()" defs["igGetIO"][1]["cimguiname"] = "igGetIO" -defs["igGetIO"][1]["comment"] = "" defs["igGetIO"][1]["defaults"] = {} defs["igGetIO"][1]["funcname"] = "GetIO" defs["igGetIO"][1]["namespace"] = "ImGui" @@ -17360,7 +17016,6 @@ defs["igGetItemRectMax"][1]["argsT"] = {} defs["igGetItemRectMax"][1]["argsoriginal"] = "()" defs["igGetItemRectMax"][1]["call_args"] = "()" defs["igGetItemRectMax"][1]["cimguiname"] = "igGetItemRectMax" -defs["igGetItemRectMax"][1]["comment"] = "" defs["igGetItemRectMax"][1]["defaults"] = {} defs["igGetItemRectMax"][1]["funcname"] = "GetItemRectMax" defs["igGetItemRectMax"][1]["namespace"] = "ImGui" @@ -17377,7 +17032,6 @@ defs["igGetItemRectMax"][2]["argsT"][1]["type"] = "ImVec2*" defs["igGetItemRectMax"][2]["argsoriginal"] = "()" defs["igGetItemRectMax"][2]["call_args"] = "()" defs["igGetItemRectMax"][2]["cimguiname"] = "igGetItemRectMax" -defs["igGetItemRectMax"][2]["comment"] = "" defs["igGetItemRectMax"][2]["defaults"] = defs["igGetItemRectMax"][1]["defaults"] defs["igGetItemRectMax"][2]["funcname"] = "GetItemRectMax" defs["igGetItemRectMax"][2]["namespace"] = "ImGui" @@ -17392,7 +17046,6 @@ defs["igGetItemRectMax"][3]["argsT"] = {} defs["igGetItemRectMax"][3]["argsoriginal"] = "()" defs["igGetItemRectMax"][3]["call_args"] = "()" defs["igGetItemRectMax"][3]["cimguiname"] = "igGetItemRectMax" -defs["igGetItemRectMax"][3]["comment"] = "" defs["igGetItemRectMax"][3]["defaults"] = defs["igGetItemRectMax"][1]["defaults"] defs["igGetItemRectMax"][3]["funcname"] = "GetItemRectMax" defs["igGetItemRectMax"][3]["namespace"] = "ImGui" @@ -17412,7 +17065,6 @@ defs["igGetItemRectMin"][1]["argsT"] = {} defs["igGetItemRectMin"][1]["argsoriginal"] = "()" defs["igGetItemRectMin"][1]["call_args"] = "()" defs["igGetItemRectMin"][1]["cimguiname"] = "igGetItemRectMin" -defs["igGetItemRectMin"][1]["comment"] = "" defs["igGetItemRectMin"][1]["defaults"] = {} defs["igGetItemRectMin"][1]["funcname"] = "GetItemRectMin" defs["igGetItemRectMin"][1]["namespace"] = "ImGui" @@ -17429,7 +17081,6 @@ defs["igGetItemRectMin"][2]["argsT"][1]["type"] = "ImVec2*" defs["igGetItemRectMin"][2]["argsoriginal"] = "()" defs["igGetItemRectMin"][2]["call_args"] = "()" defs["igGetItemRectMin"][2]["cimguiname"] = "igGetItemRectMin" -defs["igGetItemRectMin"][2]["comment"] = "" defs["igGetItemRectMin"][2]["defaults"] = defs["igGetItemRectMin"][1]["defaults"] defs["igGetItemRectMin"][2]["funcname"] = "GetItemRectMin" defs["igGetItemRectMin"][2]["namespace"] = "ImGui" @@ -17444,7 +17095,6 @@ defs["igGetItemRectMin"][3]["argsT"] = {} defs["igGetItemRectMin"][3]["argsoriginal"] = "()" defs["igGetItemRectMin"][3]["call_args"] = "()" defs["igGetItemRectMin"][3]["cimguiname"] = "igGetItemRectMin" -defs["igGetItemRectMin"][3]["comment"] = "" defs["igGetItemRectMin"][3]["defaults"] = defs["igGetItemRectMin"][1]["defaults"] defs["igGetItemRectMin"][3]["funcname"] = "GetItemRectMin" defs["igGetItemRectMin"][3]["namespace"] = "ImGui" @@ -17464,7 +17114,6 @@ defs["igGetItemRectSize"][1]["argsT"] = {} defs["igGetItemRectSize"][1]["argsoriginal"] = "()" defs["igGetItemRectSize"][1]["call_args"] = "()" defs["igGetItemRectSize"][1]["cimguiname"] = "igGetItemRectSize" -defs["igGetItemRectSize"][1]["comment"] = "" defs["igGetItemRectSize"][1]["defaults"] = {} defs["igGetItemRectSize"][1]["funcname"] = "GetItemRectSize" defs["igGetItemRectSize"][1]["namespace"] = "ImGui" @@ -17481,7 +17130,6 @@ defs["igGetItemRectSize"][2]["argsT"][1]["type"] = "ImVec2*" defs["igGetItemRectSize"][2]["argsoriginal"] = "()" defs["igGetItemRectSize"][2]["call_args"] = "()" defs["igGetItemRectSize"][2]["cimguiname"] = "igGetItemRectSize" -defs["igGetItemRectSize"][2]["comment"] = "" defs["igGetItemRectSize"][2]["defaults"] = defs["igGetItemRectSize"][1]["defaults"] defs["igGetItemRectSize"][2]["funcname"] = "GetItemRectSize" defs["igGetItemRectSize"][2]["namespace"] = "ImGui" @@ -17496,7 +17144,6 @@ defs["igGetItemRectSize"][3]["argsT"] = {} defs["igGetItemRectSize"][3]["argsoriginal"] = "()" defs["igGetItemRectSize"][3]["call_args"] = "()" defs["igGetItemRectSize"][3]["cimguiname"] = "igGetItemRectSize" -defs["igGetItemRectSize"][3]["comment"] = "" defs["igGetItemRectSize"][3]["defaults"] = defs["igGetItemRectSize"][1]["defaults"] defs["igGetItemRectSize"][3]["funcname"] = "GetItemRectSize" defs["igGetItemRectSize"][3]["namespace"] = "ImGui" @@ -17519,7 +17166,6 @@ defs["igGetKeyIndex"][1]["argsT"][1]["type"] = "ImGuiKey" defs["igGetKeyIndex"][1]["argsoriginal"] = "(ImGuiKey imgui_key)" defs["igGetKeyIndex"][1]["call_args"] = "(imgui_key)" defs["igGetKeyIndex"][1]["cimguiname"] = "igGetKeyIndex" -defs["igGetKeyIndex"][1]["comment"] = "" defs["igGetKeyIndex"][1]["defaults"] = {} defs["igGetKeyIndex"][1]["funcname"] = "GetKeyIndex" defs["igGetKeyIndex"][1]["namespace"] = "ImGui" @@ -17544,7 +17190,6 @@ defs["igGetKeyPressedAmount"][1]["argsT"][3]["type"] = "float" defs["igGetKeyPressedAmount"][1]["argsoriginal"] = "(int key_index,float repeat_delay,float rate)" defs["igGetKeyPressedAmount"][1]["call_args"] = "(key_index,repeat_delay,rate)" defs["igGetKeyPressedAmount"][1]["cimguiname"] = "igGetKeyPressedAmount" -defs["igGetKeyPressedAmount"][1]["comment"] = "" defs["igGetKeyPressedAmount"][1]["defaults"] = {} defs["igGetKeyPressedAmount"][1]["funcname"] = "GetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["namespace"] = "ImGui" @@ -17560,7 +17205,6 @@ defs["igGetMouseCursor"][1]["argsT"] = {} defs["igGetMouseCursor"][1]["argsoriginal"] = "()" defs["igGetMouseCursor"][1]["call_args"] = "()" defs["igGetMouseCursor"][1]["cimguiname"] = "igGetMouseCursor" -defs["igGetMouseCursor"][1]["comment"] = "" defs["igGetMouseCursor"][1]["defaults"] = {} defs["igGetMouseCursor"][1]["funcname"] = "GetMouseCursor" defs["igGetMouseCursor"][1]["namespace"] = "ImGui" @@ -17582,7 +17226,6 @@ defs["igGetMouseDragDelta"][1]["argsT"][2]["type"] = "float" defs["igGetMouseDragDelta"][1]["argsoriginal"] = "(int button=0,float lock_threshold=-1.0f)" defs["igGetMouseDragDelta"][1]["call_args"] = "(button,lock_threshold)" defs["igGetMouseDragDelta"][1]["cimguiname"] = "igGetMouseDragDelta" -defs["igGetMouseDragDelta"][1]["comment"] = "" defs["igGetMouseDragDelta"][1]["defaults"] = {} defs["igGetMouseDragDelta"][1]["defaults"]["button"] = "0" defs["igGetMouseDragDelta"][1]["defaults"]["lock_threshold"] = "-1.0f" @@ -17607,7 +17250,6 @@ defs["igGetMouseDragDelta"][2]["argsT"][3]["type"] = "float" defs["igGetMouseDragDelta"][2]["argsoriginal"] = "(int button=0,float lock_threshold=-1.0f)" defs["igGetMouseDragDelta"][2]["call_args"] = "(button,lock_threshold)" defs["igGetMouseDragDelta"][2]["cimguiname"] = "igGetMouseDragDelta" -defs["igGetMouseDragDelta"][2]["comment"] = "" defs["igGetMouseDragDelta"][2]["defaults"] = defs["igGetMouseDragDelta"][1]["defaults"] defs["igGetMouseDragDelta"][2]["funcname"] = "GetMouseDragDelta" defs["igGetMouseDragDelta"][2]["namespace"] = "ImGui" @@ -17628,7 +17270,6 @@ defs["igGetMouseDragDelta"][3]["argsT"][2]["type"] = "float" defs["igGetMouseDragDelta"][3]["argsoriginal"] = "(int button=0,float lock_threshold=-1.0f)" defs["igGetMouseDragDelta"][3]["call_args"] = "(button,lock_threshold)" defs["igGetMouseDragDelta"][3]["cimguiname"] = "igGetMouseDragDelta" -defs["igGetMouseDragDelta"][3]["comment"] = "" defs["igGetMouseDragDelta"][3]["defaults"] = defs["igGetMouseDragDelta"][1]["defaults"] defs["igGetMouseDragDelta"][3]["funcname"] = "GetMouseDragDelta" defs["igGetMouseDragDelta"][3]["namespace"] = "ImGui" @@ -17648,7 +17289,6 @@ defs["igGetMousePos"][1]["argsT"] = {} defs["igGetMousePos"][1]["argsoriginal"] = "()" defs["igGetMousePos"][1]["call_args"] = "()" defs["igGetMousePos"][1]["cimguiname"] = "igGetMousePos" -defs["igGetMousePos"][1]["comment"] = "" defs["igGetMousePos"][1]["defaults"] = {} defs["igGetMousePos"][1]["funcname"] = "GetMousePos" defs["igGetMousePos"][1]["namespace"] = "ImGui" @@ -17665,7 +17305,6 @@ defs["igGetMousePos"][2]["argsT"][1]["type"] = "ImVec2*" defs["igGetMousePos"][2]["argsoriginal"] = "()" defs["igGetMousePos"][2]["call_args"] = "()" defs["igGetMousePos"][2]["cimguiname"] = "igGetMousePos" -defs["igGetMousePos"][2]["comment"] = "" defs["igGetMousePos"][2]["defaults"] = defs["igGetMousePos"][1]["defaults"] defs["igGetMousePos"][2]["funcname"] = "GetMousePos" defs["igGetMousePos"][2]["namespace"] = "ImGui" @@ -17680,7 +17319,6 @@ defs["igGetMousePos"][3]["argsT"] = {} defs["igGetMousePos"][3]["argsoriginal"] = "()" defs["igGetMousePos"][3]["call_args"] = "()" defs["igGetMousePos"][3]["cimguiname"] = "igGetMousePos" -defs["igGetMousePos"][3]["comment"] = "" defs["igGetMousePos"][3]["defaults"] = defs["igGetMousePos"][1]["defaults"] defs["igGetMousePos"][3]["funcname"] = "GetMousePos" defs["igGetMousePos"][3]["namespace"] = "ImGui" @@ -17700,7 +17338,6 @@ defs["igGetMousePosOnOpeningCurrentPopup"][1]["argsT"] = {} defs["igGetMousePosOnOpeningCurrentPopup"][1]["argsoriginal"] = "()" defs["igGetMousePosOnOpeningCurrentPopup"][1]["call_args"] = "()" defs["igGetMousePosOnOpeningCurrentPopup"][1]["cimguiname"] = "igGetMousePosOnOpeningCurrentPopup" -defs["igGetMousePosOnOpeningCurrentPopup"][1]["comment"] = "" defs["igGetMousePosOnOpeningCurrentPopup"][1]["defaults"] = {} defs["igGetMousePosOnOpeningCurrentPopup"][1]["funcname"] = "GetMousePosOnOpeningCurrentPopup" defs["igGetMousePosOnOpeningCurrentPopup"][1]["namespace"] = "ImGui" @@ -17717,7 +17354,6 @@ defs["igGetMousePosOnOpeningCurrentPopup"][2]["argsT"][1]["type"] = "ImVec2*" defs["igGetMousePosOnOpeningCurrentPopup"][2]["argsoriginal"] = "()" defs["igGetMousePosOnOpeningCurrentPopup"][2]["call_args"] = "()" defs["igGetMousePosOnOpeningCurrentPopup"][2]["cimguiname"] = "igGetMousePosOnOpeningCurrentPopup" -defs["igGetMousePosOnOpeningCurrentPopup"][2]["comment"] = "" defs["igGetMousePosOnOpeningCurrentPopup"][2]["defaults"] = defs["igGetMousePosOnOpeningCurrentPopup"][1]["defaults"] defs["igGetMousePosOnOpeningCurrentPopup"][2]["funcname"] = "GetMousePosOnOpeningCurrentPopup" defs["igGetMousePosOnOpeningCurrentPopup"][2]["namespace"] = "ImGui" @@ -17732,7 +17368,6 @@ defs["igGetMousePosOnOpeningCurrentPopup"][3]["argsT"] = {} defs["igGetMousePosOnOpeningCurrentPopup"][3]["argsoriginal"] = "()" defs["igGetMousePosOnOpeningCurrentPopup"][3]["call_args"] = "()" defs["igGetMousePosOnOpeningCurrentPopup"][3]["cimguiname"] = "igGetMousePosOnOpeningCurrentPopup" -defs["igGetMousePosOnOpeningCurrentPopup"][3]["comment"] = "" defs["igGetMousePosOnOpeningCurrentPopup"][3]["defaults"] = defs["igGetMousePosOnOpeningCurrentPopup"][1]["defaults"] defs["igGetMousePosOnOpeningCurrentPopup"][3]["funcname"] = "GetMousePosOnOpeningCurrentPopup" defs["igGetMousePosOnOpeningCurrentPopup"][3]["namespace"] = "ImGui" @@ -17752,7 +17387,6 @@ defs["igGetOverlayDrawList"][1]["argsT"] = {} defs["igGetOverlayDrawList"][1]["argsoriginal"] = "()" defs["igGetOverlayDrawList"][1]["call_args"] = "()" defs["igGetOverlayDrawList"][1]["cimguiname"] = "igGetOverlayDrawList" -defs["igGetOverlayDrawList"][1]["comment"] = "" defs["igGetOverlayDrawList"][1]["defaults"] = {} defs["igGetOverlayDrawList"][1]["funcname"] = "GetOverlayDrawList" defs["igGetOverlayDrawList"][1]["namespace"] = "ImGui" @@ -17768,7 +17402,6 @@ defs["igGetScrollMaxX"][1]["argsT"] = {} defs["igGetScrollMaxX"][1]["argsoriginal"] = "()" defs["igGetScrollMaxX"][1]["call_args"] = "()" defs["igGetScrollMaxX"][1]["cimguiname"] = "igGetScrollMaxX" -defs["igGetScrollMaxX"][1]["comment"] = "" defs["igGetScrollMaxX"][1]["defaults"] = {} defs["igGetScrollMaxX"][1]["funcname"] = "GetScrollMaxX" defs["igGetScrollMaxX"][1]["namespace"] = "ImGui" @@ -17784,7 +17417,6 @@ defs["igGetScrollMaxY"][1]["argsT"] = {} defs["igGetScrollMaxY"][1]["argsoriginal"] = "()" defs["igGetScrollMaxY"][1]["call_args"] = "()" defs["igGetScrollMaxY"][1]["cimguiname"] = "igGetScrollMaxY" -defs["igGetScrollMaxY"][1]["comment"] = "" defs["igGetScrollMaxY"][1]["defaults"] = {} defs["igGetScrollMaxY"][1]["funcname"] = "GetScrollMaxY" defs["igGetScrollMaxY"][1]["namespace"] = "ImGui" @@ -17800,7 +17432,6 @@ defs["igGetScrollX"][1]["argsT"] = {} defs["igGetScrollX"][1]["argsoriginal"] = "()" defs["igGetScrollX"][1]["call_args"] = "()" defs["igGetScrollX"][1]["cimguiname"] = "igGetScrollX" -defs["igGetScrollX"][1]["comment"] = "" defs["igGetScrollX"][1]["defaults"] = {} defs["igGetScrollX"][1]["funcname"] = "GetScrollX" defs["igGetScrollX"][1]["namespace"] = "ImGui" @@ -17816,7 +17447,6 @@ defs["igGetScrollY"][1]["argsT"] = {} defs["igGetScrollY"][1]["argsoriginal"] = "()" defs["igGetScrollY"][1]["call_args"] = "()" defs["igGetScrollY"][1]["cimguiname"] = "igGetScrollY" -defs["igGetScrollY"][1]["comment"] = "" defs["igGetScrollY"][1]["defaults"] = {} defs["igGetScrollY"][1]["funcname"] = "GetScrollY" defs["igGetScrollY"][1]["namespace"] = "ImGui" @@ -17832,7 +17462,6 @@ defs["igGetStateStorage"][1]["argsT"] = {} defs["igGetStateStorage"][1]["argsoriginal"] = "()" defs["igGetStateStorage"][1]["call_args"] = "()" defs["igGetStateStorage"][1]["cimguiname"] = "igGetStateStorage" -defs["igGetStateStorage"][1]["comment"] = "" defs["igGetStateStorage"][1]["defaults"] = {} defs["igGetStateStorage"][1]["funcname"] = "GetStateStorage" defs["igGetStateStorage"][1]["namespace"] = "ImGui" @@ -17848,7 +17477,6 @@ defs["igGetStyle"][1]["argsT"] = {} defs["igGetStyle"][1]["argsoriginal"] = "()" defs["igGetStyle"][1]["call_args"] = "()" defs["igGetStyle"][1]["cimguiname"] = "igGetStyle" -defs["igGetStyle"][1]["comment"] = "" defs["igGetStyle"][1]["defaults"] = {} defs["igGetStyle"][1]["funcname"] = "GetStyle" defs["igGetStyle"][1]["namespace"] = "ImGui" @@ -17868,7 +17496,6 @@ defs["igGetStyleColorName"][1]["argsT"][1]["type"] = "ImGuiCol" defs["igGetStyleColorName"][1]["argsoriginal"] = "(ImGuiCol idx)" defs["igGetStyleColorName"][1]["call_args"] = "(idx)" defs["igGetStyleColorName"][1]["cimguiname"] = "igGetStyleColorName" -defs["igGetStyleColorName"][1]["comment"] = "" defs["igGetStyleColorName"][1]["defaults"] = {} defs["igGetStyleColorName"][1]["funcname"] = "GetStyleColorName" defs["igGetStyleColorName"][1]["namespace"] = "ImGui" @@ -17887,7 +17514,6 @@ defs["igGetStyleColorVec4"][1]["argsT"][1]["type"] = "ImGuiCol" defs["igGetStyleColorVec4"][1]["argsoriginal"] = "(ImGuiCol idx)" defs["igGetStyleColorVec4"][1]["call_args"] = "(idx)" defs["igGetStyleColorVec4"][1]["cimguiname"] = "igGetStyleColorVec4" -defs["igGetStyleColorVec4"][1]["comment"] = "" defs["igGetStyleColorVec4"][1]["defaults"] = {} defs["igGetStyleColorVec4"][1]["funcname"] = "GetStyleColorVec4" defs["igGetStyleColorVec4"][1]["namespace"] = "ImGui" @@ -17904,7 +17530,6 @@ defs["igGetTextLineHeight"][1]["argsT"] = {} defs["igGetTextLineHeight"][1]["argsoriginal"] = "()" defs["igGetTextLineHeight"][1]["call_args"] = "()" defs["igGetTextLineHeight"][1]["cimguiname"] = "igGetTextLineHeight" -defs["igGetTextLineHeight"][1]["comment"] = "" defs["igGetTextLineHeight"][1]["defaults"] = {} defs["igGetTextLineHeight"][1]["funcname"] = "GetTextLineHeight" defs["igGetTextLineHeight"][1]["namespace"] = "ImGui" @@ -17920,7 +17545,6 @@ defs["igGetTextLineHeightWithSpacing"][1]["argsT"] = {} defs["igGetTextLineHeightWithSpacing"][1]["argsoriginal"] = "()" defs["igGetTextLineHeightWithSpacing"][1]["call_args"] = "()" defs["igGetTextLineHeightWithSpacing"][1]["cimguiname"] = "igGetTextLineHeightWithSpacing" -defs["igGetTextLineHeightWithSpacing"][1]["comment"] = "" defs["igGetTextLineHeightWithSpacing"][1]["defaults"] = {} defs["igGetTextLineHeightWithSpacing"][1]["funcname"] = "GetTextLineHeightWithSpacing" defs["igGetTextLineHeightWithSpacing"][1]["namespace"] = "ImGui" @@ -17936,7 +17560,6 @@ defs["igGetTime"][1]["argsT"] = {} defs["igGetTime"][1]["argsoriginal"] = "()" defs["igGetTime"][1]["call_args"] = "()" defs["igGetTime"][1]["cimguiname"] = "igGetTime" -defs["igGetTime"][1]["comment"] = "" defs["igGetTime"][1]["defaults"] = {} defs["igGetTime"][1]["funcname"] = "GetTime" defs["igGetTime"][1]["namespace"] = "ImGui" @@ -17952,7 +17575,6 @@ defs["igGetTreeNodeToLabelSpacing"][1]["argsT"] = {} defs["igGetTreeNodeToLabelSpacing"][1]["argsoriginal"] = "()" defs["igGetTreeNodeToLabelSpacing"][1]["call_args"] = "()" defs["igGetTreeNodeToLabelSpacing"][1]["cimguiname"] = "igGetTreeNodeToLabelSpacing" -defs["igGetTreeNodeToLabelSpacing"][1]["comment"] = "" defs["igGetTreeNodeToLabelSpacing"][1]["defaults"] = {} defs["igGetTreeNodeToLabelSpacing"][1]["funcname"] = "GetTreeNodeToLabelSpacing" defs["igGetTreeNodeToLabelSpacing"][1]["namespace"] = "ImGui" @@ -17968,7 +17590,6 @@ defs["igGetVersion"][1]["argsT"] = {} defs["igGetVersion"][1]["argsoriginal"] = "()" defs["igGetVersion"][1]["call_args"] = "()" defs["igGetVersion"][1]["cimguiname"] = "igGetVersion" -defs["igGetVersion"][1]["comment"] = "" defs["igGetVersion"][1]["defaults"] = {} defs["igGetVersion"][1]["funcname"] = "GetVersion" defs["igGetVersion"][1]["namespace"] = "ImGui" @@ -17984,7 +17605,6 @@ defs["igGetWindowContentRegionMax"][1]["argsT"] = {} defs["igGetWindowContentRegionMax"][1]["argsoriginal"] = "()" defs["igGetWindowContentRegionMax"][1]["call_args"] = "()" defs["igGetWindowContentRegionMax"][1]["cimguiname"] = "igGetWindowContentRegionMax" -defs["igGetWindowContentRegionMax"][1]["comment"] = "" defs["igGetWindowContentRegionMax"][1]["defaults"] = {} defs["igGetWindowContentRegionMax"][1]["funcname"] = "GetWindowContentRegionMax" defs["igGetWindowContentRegionMax"][1]["namespace"] = "ImGui" @@ -18001,7 +17621,6 @@ defs["igGetWindowContentRegionMax"][2]["argsT"][1]["type"] = "ImVec2*" defs["igGetWindowContentRegionMax"][2]["argsoriginal"] = "()" defs["igGetWindowContentRegionMax"][2]["call_args"] = "()" defs["igGetWindowContentRegionMax"][2]["cimguiname"] = "igGetWindowContentRegionMax" -defs["igGetWindowContentRegionMax"][2]["comment"] = "" defs["igGetWindowContentRegionMax"][2]["defaults"] = defs["igGetWindowContentRegionMax"][1]["defaults"] defs["igGetWindowContentRegionMax"][2]["funcname"] = "GetWindowContentRegionMax" defs["igGetWindowContentRegionMax"][2]["namespace"] = "ImGui" @@ -18016,7 +17635,6 @@ defs["igGetWindowContentRegionMax"][3]["argsT"] = {} defs["igGetWindowContentRegionMax"][3]["argsoriginal"] = "()" defs["igGetWindowContentRegionMax"][3]["call_args"] = "()" defs["igGetWindowContentRegionMax"][3]["cimguiname"] = "igGetWindowContentRegionMax" -defs["igGetWindowContentRegionMax"][3]["comment"] = "" defs["igGetWindowContentRegionMax"][3]["defaults"] = defs["igGetWindowContentRegionMax"][1]["defaults"] defs["igGetWindowContentRegionMax"][3]["funcname"] = "GetWindowContentRegionMax" defs["igGetWindowContentRegionMax"][3]["namespace"] = "ImGui" @@ -18036,7 +17654,6 @@ defs["igGetWindowContentRegionMin"][1]["argsT"] = {} defs["igGetWindowContentRegionMin"][1]["argsoriginal"] = "()" defs["igGetWindowContentRegionMin"][1]["call_args"] = "()" defs["igGetWindowContentRegionMin"][1]["cimguiname"] = "igGetWindowContentRegionMin" -defs["igGetWindowContentRegionMin"][1]["comment"] = "" defs["igGetWindowContentRegionMin"][1]["defaults"] = {} defs["igGetWindowContentRegionMin"][1]["funcname"] = "GetWindowContentRegionMin" defs["igGetWindowContentRegionMin"][1]["namespace"] = "ImGui" @@ -18053,7 +17670,6 @@ defs["igGetWindowContentRegionMin"][2]["argsT"][1]["type"] = "ImVec2*" defs["igGetWindowContentRegionMin"][2]["argsoriginal"] = "()" defs["igGetWindowContentRegionMin"][2]["call_args"] = "()" defs["igGetWindowContentRegionMin"][2]["cimguiname"] = "igGetWindowContentRegionMin" -defs["igGetWindowContentRegionMin"][2]["comment"] = "" defs["igGetWindowContentRegionMin"][2]["defaults"] = defs["igGetWindowContentRegionMin"][1]["defaults"] defs["igGetWindowContentRegionMin"][2]["funcname"] = "GetWindowContentRegionMin" defs["igGetWindowContentRegionMin"][2]["namespace"] = "ImGui" @@ -18068,7 +17684,6 @@ defs["igGetWindowContentRegionMin"][3]["argsT"] = {} defs["igGetWindowContentRegionMin"][3]["argsoriginal"] = "()" defs["igGetWindowContentRegionMin"][3]["call_args"] = "()" defs["igGetWindowContentRegionMin"][3]["cimguiname"] = "igGetWindowContentRegionMin" -defs["igGetWindowContentRegionMin"][3]["comment"] = "" defs["igGetWindowContentRegionMin"][3]["defaults"] = defs["igGetWindowContentRegionMin"][1]["defaults"] defs["igGetWindowContentRegionMin"][3]["funcname"] = "GetWindowContentRegionMin" defs["igGetWindowContentRegionMin"][3]["namespace"] = "ImGui" @@ -18088,7 +17703,6 @@ defs["igGetWindowContentRegionWidth"][1]["argsT"] = {} defs["igGetWindowContentRegionWidth"][1]["argsoriginal"] = "()" defs["igGetWindowContentRegionWidth"][1]["call_args"] = "()" defs["igGetWindowContentRegionWidth"][1]["cimguiname"] = "igGetWindowContentRegionWidth" -defs["igGetWindowContentRegionWidth"][1]["comment"] = "" defs["igGetWindowContentRegionWidth"][1]["defaults"] = {} defs["igGetWindowContentRegionWidth"][1]["funcname"] = "GetWindowContentRegionWidth" defs["igGetWindowContentRegionWidth"][1]["namespace"] = "ImGui" @@ -18104,7 +17718,6 @@ defs["igGetWindowDrawList"][1]["argsT"] = {} defs["igGetWindowDrawList"][1]["argsoriginal"] = "()" defs["igGetWindowDrawList"][1]["call_args"] = "()" defs["igGetWindowDrawList"][1]["cimguiname"] = "igGetWindowDrawList" -defs["igGetWindowDrawList"][1]["comment"] = "" defs["igGetWindowDrawList"][1]["defaults"] = {} defs["igGetWindowDrawList"][1]["funcname"] = "GetWindowDrawList" defs["igGetWindowDrawList"][1]["namespace"] = "ImGui" @@ -18120,7 +17733,6 @@ defs["igGetWindowHeight"][1]["argsT"] = {} defs["igGetWindowHeight"][1]["argsoriginal"] = "()" defs["igGetWindowHeight"][1]["call_args"] = "()" defs["igGetWindowHeight"][1]["cimguiname"] = "igGetWindowHeight" -defs["igGetWindowHeight"][1]["comment"] = "" defs["igGetWindowHeight"][1]["defaults"] = {} defs["igGetWindowHeight"][1]["funcname"] = "GetWindowHeight" defs["igGetWindowHeight"][1]["namespace"] = "ImGui" @@ -18136,7 +17748,6 @@ defs["igGetWindowPos"][1]["argsT"] = {} defs["igGetWindowPos"][1]["argsoriginal"] = "()" defs["igGetWindowPos"][1]["call_args"] = "()" defs["igGetWindowPos"][1]["cimguiname"] = "igGetWindowPos" -defs["igGetWindowPos"][1]["comment"] = "" defs["igGetWindowPos"][1]["defaults"] = {} defs["igGetWindowPos"][1]["funcname"] = "GetWindowPos" defs["igGetWindowPos"][1]["namespace"] = "ImGui" @@ -18153,7 +17764,6 @@ defs["igGetWindowPos"][2]["argsT"][1]["type"] = "ImVec2*" defs["igGetWindowPos"][2]["argsoriginal"] = "()" defs["igGetWindowPos"][2]["call_args"] = "()" defs["igGetWindowPos"][2]["cimguiname"] = "igGetWindowPos" -defs["igGetWindowPos"][2]["comment"] = "" defs["igGetWindowPos"][2]["defaults"] = defs["igGetWindowPos"][1]["defaults"] defs["igGetWindowPos"][2]["funcname"] = "GetWindowPos" defs["igGetWindowPos"][2]["namespace"] = "ImGui" @@ -18168,7 +17778,6 @@ defs["igGetWindowPos"][3]["argsT"] = {} defs["igGetWindowPos"][3]["argsoriginal"] = "()" defs["igGetWindowPos"][3]["call_args"] = "()" defs["igGetWindowPos"][3]["cimguiname"] = "igGetWindowPos" -defs["igGetWindowPos"][3]["comment"] = "" defs["igGetWindowPos"][3]["defaults"] = defs["igGetWindowPos"][1]["defaults"] defs["igGetWindowPos"][3]["funcname"] = "GetWindowPos" defs["igGetWindowPos"][3]["namespace"] = "ImGui" @@ -18188,7 +17797,6 @@ defs["igGetWindowSize"][1]["argsT"] = {} defs["igGetWindowSize"][1]["argsoriginal"] = "()" defs["igGetWindowSize"][1]["call_args"] = "()" defs["igGetWindowSize"][1]["cimguiname"] = "igGetWindowSize" -defs["igGetWindowSize"][1]["comment"] = "" defs["igGetWindowSize"][1]["defaults"] = {} defs["igGetWindowSize"][1]["funcname"] = "GetWindowSize" defs["igGetWindowSize"][1]["namespace"] = "ImGui" @@ -18205,7 +17813,6 @@ defs["igGetWindowSize"][2]["argsT"][1]["type"] = "ImVec2*" defs["igGetWindowSize"][2]["argsoriginal"] = "()" defs["igGetWindowSize"][2]["call_args"] = "()" defs["igGetWindowSize"][2]["cimguiname"] = "igGetWindowSize" -defs["igGetWindowSize"][2]["comment"] = "" defs["igGetWindowSize"][2]["defaults"] = defs["igGetWindowSize"][1]["defaults"] defs["igGetWindowSize"][2]["funcname"] = "GetWindowSize" defs["igGetWindowSize"][2]["namespace"] = "ImGui" @@ -18220,7 +17827,6 @@ defs["igGetWindowSize"][3]["argsT"] = {} defs["igGetWindowSize"][3]["argsoriginal"] = "()" defs["igGetWindowSize"][3]["call_args"] = "()" defs["igGetWindowSize"][3]["cimguiname"] = "igGetWindowSize" -defs["igGetWindowSize"][3]["comment"] = "" defs["igGetWindowSize"][3]["defaults"] = defs["igGetWindowSize"][1]["defaults"] defs["igGetWindowSize"][3]["funcname"] = "GetWindowSize" defs["igGetWindowSize"][3]["namespace"] = "ImGui" @@ -18240,7 +17846,6 @@ defs["igGetWindowWidth"][1]["argsT"] = {} defs["igGetWindowWidth"][1]["argsoriginal"] = "()" defs["igGetWindowWidth"][1]["call_args"] = "()" defs["igGetWindowWidth"][1]["cimguiname"] = "igGetWindowWidth" -defs["igGetWindowWidth"][1]["comment"] = "" defs["igGetWindowWidth"][1]["defaults"] = {} defs["igGetWindowWidth"][1]["funcname"] = "GetWindowWidth" defs["igGetWindowWidth"][1]["namespace"] = "ImGui" @@ -18274,7 +17879,6 @@ defs["igImage"][1]["argsT"][6]["type"] = "const ImVec4" defs["igImage"][1]["argsoriginal"] = "(ImTextureID user_texture_id,const ImVec2& size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& tint_col=ImVec4(1,1,1,1),const ImVec4& border_col=ImVec4(0,0,0,0))" defs["igImage"][1]["call_args"] = "(user_texture_id,size,uv0,uv1,tint_col,border_col)" defs["igImage"][1]["cimguiname"] = "igImage" -defs["igImage"][1]["comment"] = "" defs["igImage"][1]["defaults"] = {} defs["igImage"][1]["defaults"]["border_col"] = "ImVec4(0,0,0,0)" defs["igImage"][1]["defaults"]["tint_col"] = "ImVec4(1,1,1,1)" @@ -18315,7 +17919,6 @@ defs["igImageButton"][1]["argsT"][7]["type"] = "const ImVec4" defs["igImageButton"][1]["argsoriginal"] = "(ImTextureID user_texture_id,const ImVec2& size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),int frame_padding=-1,const ImVec4& bg_col=ImVec4(0,0,0,0),const ImVec4& tint_col=ImVec4(1,1,1,1))" defs["igImageButton"][1]["call_args"] = "(user_texture_id,size,uv0,uv1,frame_padding,bg_col,tint_col)" defs["igImageButton"][1]["cimguiname"] = "igImageButton" -defs["igImageButton"][1]["comment"] = "" defs["igImageButton"][1]["defaults"] = {} defs["igImageButton"][1]["defaults"]["bg_col"] = "ImVec4(0,0,0,0)" defs["igImageButton"][1]["defaults"]["frame_padding"] = "-1" @@ -18339,7 +17942,6 @@ defs["igIndent"][1]["argsT"][1]["type"] = "float" defs["igIndent"][1]["argsoriginal"] = "(float indent_w=0.0f)" defs["igIndent"][1]["call_args"] = "(indent_w)" defs["igIndent"][1]["cimguiname"] = "igIndent" -defs["igIndent"][1]["comment"] = "" defs["igIndent"][1]["defaults"] = {} defs["igIndent"][1]["defaults"]["indent_w"] = "0.0f" defs["igIndent"][1]["funcname"] = "Indent" @@ -18374,7 +17976,6 @@ defs["igInputDouble"][1]["argsT"][6]["type"] = "ImGuiInputTextFlags" defs["igInputDouble"][1]["argsoriginal"] = "(const char* label,double* v,double step=0.0,double step_fast=0.0,const char* format=\"%.6f\",ImGuiInputTextFlags flags=0)" defs["igInputDouble"][1]["call_args"] = "(label,v,step,step_fast,format,flags)" defs["igInputDouble"][1]["cimguiname"] = "igInputDouble" -defs["igInputDouble"][1]["comment"] = "" defs["igInputDouble"][1]["defaults"] = {} defs["igInputDouble"][1]["defaults"]["flags"] = "0" defs["igInputDouble"][1]["defaults"]["format"] = "\"%.6f\"" @@ -18412,7 +18013,6 @@ defs["igInputFloat"][1]["argsT"][6]["type"] = "ImGuiInputTextFlags" defs["igInputFloat"][1]["argsoriginal"] = "(const char* label,float* v,float step=0.0f,float step_fast=0.0f,const char* format=\"%.3f\",ImGuiInputTextFlags flags=0)" defs["igInputFloat"][1]["call_args"] = "(label,v,step,step_fast,format,flags)" defs["igInputFloat"][1]["cimguiname"] = "igInputFloat" -defs["igInputFloat"][1]["comment"] = "" defs["igInputFloat"][1]["defaults"] = {} defs["igInputFloat"][1]["defaults"]["flags"] = "0" defs["igInputFloat"][1]["defaults"]["format"] = "\"%.3f\"" @@ -18444,7 +18044,6 @@ defs["igInputFloat2"][1]["argsT"][4]["type"] = "ImGuiInputTextFlags" defs["igInputFloat2"][1]["argsoriginal"] = "(const char* label,float v[2],const char* format=\"%.3f\",ImGuiInputTextFlags flags=0)" defs["igInputFloat2"][1]["call_args"] = "(label,v,format,flags)" defs["igInputFloat2"][1]["cimguiname"] = "igInputFloat2" -defs["igInputFloat2"][1]["comment"] = "" defs["igInputFloat2"][1]["defaults"] = {} defs["igInputFloat2"][1]["defaults"]["flags"] = "0" defs["igInputFloat2"][1]["defaults"]["format"] = "\"%.3f\"" @@ -18474,7 +18073,6 @@ defs["igInputFloat3"][1]["argsT"][4]["type"] = "ImGuiInputTextFlags" defs["igInputFloat3"][1]["argsoriginal"] = "(const char* label,float v[3],const char* format=\"%.3f\",ImGuiInputTextFlags flags=0)" defs["igInputFloat3"][1]["call_args"] = "(label,v,format,flags)" defs["igInputFloat3"][1]["cimguiname"] = "igInputFloat3" -defs["igInputFloat3"][1]["comment"] = "" defs["igInputFloat3"][1]["defaults"] = {} defs["igInputFloat3"][1]["defaults"]["flags"] = "0" defs["igInputFloat3"][1]["defaults"]["format"] = "\"%.3f\"" @@ -18504,7 +18102,6 @@ defs["igInputFloat4"][1]["argsT"][4]["type"] = "ImGuiInputTextFlags" defs["igInputFloat4"][1]["argsoriginal"] = "(const char* label,float v[4],const char* format=\"%.3f\",ImGuiInputTextFlags flags=0)" defs["igInputFloat4"][1]["call_args"] = "(label,v,format,flags)" defs["igInputFloat4"][1]["cimguiname"] = "igInputFloat4" -defs["igInputFloat4"][1]["comment"] = "" defs["igInputFloat4"][1]["defaults"] = {} defs["igInputFloat4"][1]["defaults"]["flags"] = "0" defs["igInputFloat4"][1]["defaults"]["format"] = "\"%.3f\"" @@ -18537,7 +18134,6 @@ defs["igInputInt"][1]["argsT"][5]["type"] = "ImGuiInputTextFlags" defs["igInputInt"][1]["argsoriginal"] = "(const char* label,int* v,int step=1,int step_fast=100,ImGuiInputTextFlags flags=0)" defs["igInputInt"][1]["call_args"] = "(label,v,step,step_fast,flags)" defs["igInputInt"][1]["cimguiname"] = "igInputInt" -defs["igInputInt"][1]["comment"] = "" defs["igInputInt"][1]["defaults"] = {} defs["igInputInt"][1]["defaults"]["flags"] = "0" defs["igInputInt"][1]["defaults"]["step"] = "1" @@ -18565,7 +18161,6 @@ defs["igInputInt2"][1]["argsT"][3]["type"] = "ImGuiInputTextFlags" defs["igInputInt2"][1]["argsoriginal"] = "(const char* label,int v[2],ImGuiInputTextFlags flags=0)" defs["igInputInt2"][1]["call_args"] = "(label,v,flags)" defs["igInputInt2"][1]["cimguiname"] = "igInputInt2" -defs["igInputInt2"][1]["comment"] = "" defs["igInputInt2"][1]["defaults"] = {} defs["igInputInt2"][1]["defaults"]["flags"] = "0" defs["igInputInt2"][1]["funcname"] = "InputInt2" @@ -18591,7 +18186,6 @@ defs["igInputInt3"][1]["argsT"][3]["type"] = "ImGuiInputTextFlags" defs["igInputInt3"][1]["argsoriginal"] = "(const char* label,int v[3],ImGuiInputTextFlags flags=0)" defs["igInputInt3"][1]["call_args"] = "(label,v,flags)" defs["igInputInt3"][1]["cimguiname"] = "igInputInt3" -defs["igInputInt3"][1]["comment"] = "" defs["igInputInt3"][1]["defaults"] = {} defs["igInputInt3"][1]["defaults"]["flags"] = "0" defs["igInputInt3"][1]["funcname"] = "InputInt3" @@ -18617,7 +18211,6 @@ defs["igInputInt4"][1]["argsT"][3]["type"] = "ImGuiInputTextFlags" defs["igInputInt4"][1]["argsoriginal"] = "(const char* label,int v[4],ImGuiInputTextFlags flags=0)" defs["igInputInt4"][1]["call_args"] = "(label,v,flags)" defs["igInputInt4"][1]["cimguiname"] = "igInputInt4" -defs["igInputInt4"][1]["comment"] = "" defs["igInputInt4"][1]["defaults"] = {} defs["igInputInt4"][1]["defaults"]["flags"] = "0" defs["igInputInt4"][1]["funcname"] = "InputInt4" @@ -18655,7 +18248,6 @@ defs["igInputScalar"][1]["argsT"][7]["type"] = "ImGuiInputTextFlags" defs["igInputScalar"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,const void* step=((void*)0),const void* step_fast=((void*)0),const char* format=((void*)0),ImGuiInputTextFlags flags=0)" defs["igInputScalar"][1]["call_args"] = "(label,data_type,v,step,step_fast,format,flags)" defs["igInputScalar"][1]["cimguiname"] = "igInputScalar" -defs["igInputScalar"][1]["comment"] = "" defs["igInputScalar"][1]["defaults"] = {} defs["igInputScalar"][1]["defaults"]["flags"] = "0" defs["igInputScalar"][1]["defaults"]["format"] = "((void*)0)" @@ -18699,7 +18291,6 @@ defs["igInputScalarN"][1]["argsT"][8]["type"] = "ImGuiInputTextFlags" defs["igInputScalarN"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,int components,const void* step=((void*)0),const void* step_fast=((void*)0),const char* format=((void*)0),ImGuiInputTextFlags flags=0)" defs["igInputScalarN"][1]["call_args"] = "(label,data_type,v,components,step,step_fast,format,flags)" defs["igInputScalarN"][1]["cimguiname"] = "igInputScalarN" -defs["igInputScalarN"][1]["comment"] = "" defs["igInputScalarN"][1]["defaults"] = {} defs["igInputScalarN"][1]["defaults"]["flags"] = "0" defs["igInputScalarN"][1]["defaults"]["format"] = "((void*)0)" @@ -18737,7 +18328,6 @@ defs["igInputText"][1]["argsT"][6]["type"] = "void*" defs["igInputText"][1]["argsoriginal"] = "(const char* label,char* buf,size_t buf_size,ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void*)0),void* user_data=((void*)0))" defs["igInputText"][1]["call_args"] = "(label,buf,buf_size,flags,callback,user_data)" defs["igInputText"][1]["cimguiname"] = "igInputText" -defs["igInputText"][1]["comment"] = "" defs["igInputText"][1]["defaults"] = {} defs["igInputText"][1]["defaults"]["callback"] = "((void*)0)" defs["igInputText"][1]["defaults"]["flags"] = "0" @@ -18777,7 +18367,6 @@ defs["igInputTextMultiline"][1]["argsT"][7]["type"] = "void*" defs["igInputTextMultiline"][1]["argsoriginal"] = "(const char* label,char* buf,size_t buf_size,const ImVec2& size=ImVec2(0,0),ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void*)0),void* user_data=((void*)0))" defs["igInputTextMultiline"][1]["call_args"] = "(label,buf,buf_size,size,flags,callback,user_data)" defs["igInputTextMultiline"][1]["cimguiname"] = "igInputTextMultiline" -defs["igInputTextMultiline"][1]["comment"] = "" defs["igInputTextMultiline"][1]["defaults"] = {} defs["igInputTextMultiline"][1]["defaults"]["callback"] = "((void*)0)" defs["igInputTextMultiline"][1]["defaults"]["flags"] = "0" @@ -18803,7 +18392,6 @@ defs["igInvisibleButton"][1]["argsT"][2]["type"] = "const ImVec2" defs["igInvisibleButton"][1]["argsoriginal"] = "(const char* str_id,const ImVec2& size)" defs["igInvisibleButton"][1]["call_args"] = "(str_id,size)" defs["igInvisibleButton"][1]["cimguiname"] = "igInvisibleButton" -defs["igInvisibleButton"][1]["comment"] = "" defs["igInvisibleButton"][1]["defaults"] = {} defs["igInvisibleButton"][1]["funcname"] = "InvisibleButton" defs["igInvisibleButton"][1]["namespace"] = "ImGui" @@ -18819,7 +18407,6 @@ defs["igIsAnyItemActive"][1]["argsT"] = {} defs["igIsAnyItemActive"][1]["argsoriginal"] = "()" defs["igIsAnyItemActive"][1]["call_args"] = "()" defs["igIsAnyItemActive"][1]["cimguiname"] = "igIsAnyItemActive" -defs["igIsAnyItemActive"][1]["comment"] = "" defs["igIsAnyItemActive"][1]["defaults"] = {} defs["igIsAnyItemActive"][1]["funcname"] = "IsAnyItemActive" defs["igIsAnyItemActive"][1]["namespace"] = "ImGui" @@ -18835,7 +18422,6 @@ defs["igIsAnyItemFocused"][1]["argsT"] = {} defs["igIsAnyItemFocused"][1]["argsoriginal"] = "()" defs["igIsAnyItemFocused"][1]["call_args"] = "()" defs["igIsAnyItemFocused"][1]["cimguiname"] = "igIsAnyItemFocused" -defs["igIsAnyItemFocused"][1]["comment"] = "" defs["igIsAnyItemFocused"][1]["defaults"] = {} defs["igIsAnyItemFocused"][1]["funcname"] = "IsAnyItemFocused" defs["igIsAnyItemFocused"][1]["namespace"] = "ImGui" @@ -18851,7 +18437,6 @@ defs["igIsAnyItemHovered"][1]["argsT"] = {} defs["igIsAnyItemHovered"][1]["argsoriginal"] = "()" defs["igIsAnyItemHovered"][1]["call_args"] = "()" defs["igIsAnyItemHovered"][1]["cimguiname"] = "igIsAnyItemHovered" -defs["igIsAnyItemHovered"][1]["comment"] = "" defs["igIsAnyItemHovered"][1]["defaults"] = {} defs["igIsAnyItemHovered"][1]["funcname"] = "IsAnyItemHovered" defs["igIsAnyItemHovered"][1]["namespace"] = "ImGui" @@ -18867,7 +18452,6 @@ defs["igIsAnyMouseDown"][1]["argsT"] = {} defs["igIsAnyMouseDown"][1]["argsoriginal"] = "()" defs["igIsAnyMouseDown"][1]["call_args"] = "()" defs["igIsAnyMouseDown"][1]["cimguiname"] = "igIsAnyMouseDown" -defs["igIsAnyMouseDown"][1]["comment"] = "" defs["igIsAnyMouseDown"][1]["defaults"] = {} defs["igIsAnyMouseDown"][1]["funcname"] = "IsAnyMouseDown" defs["igIsAnyMouseDown"][1]["namespace"] = "ImGui" @@ -18883,7 +18467,6 @@ defs["igIsItemActive"][1]["argsT"] = {} defs["igIsItemActive"][1]["argsoriginal"] = "()" defs["igIsItemActive"][1]["call_args"] = "()" defs["igIsItemActive"][1]["cimguiname"] = "igIsItemActive" -defs["igIsItemActive"][1]["comment"] = "" defs["igIsItemActive"][1]["defaults"] = {} defs["igIsItemActive"][1]["funcname"] = "IsItemActive" defs["igIsItemActive"][1]["namespace"] = "ImGui" @@ -18902,7 +18485,6 @@ defs["igIsItemClicked"][1]["argsT"][1]["type"] = "int" defs["igIsItemClicked"][1]["argsoriginal"] = "(int mouse_button=0)" defs["igIsItemClicked"][1]["call_args"] = "(mouse_button)" defs["igIsItemClicked"][1]["cimguiname"] = "igIsItemClicked" -defs["igIsItemClicked"][1]["comment"] = "" defs["igIsItemClicked"][1]["defaults"] = {} defs["igIsItemClicked"][1]["defaults"]["mouse_button"] = "0" defs["igIsItemClicked"][1]["funcname"] = "IsItemClicked" @@ -18919,7 +18501,6 @@ defs["igIsItemDeactivated"][1]["argsT"] = {} defs["igIsItemDeactivated"][1]["argsoriginal"] = "()" defs["igIsItemDeactivated"][1]["call_args"] = "()" defs["igIsItemDeactivated"][1]["cimguiname"] = "igIsItemDeactivated" -defs["igIsItemDeactivated"][1]["comment"] = "" defs["igIsItemDeactivated"][1]["defaults"] = {} defs["igIsItemDeactivated"][1]["funcname"] = "IsItemDeactivated" defs["igIsItemDeactivated"][1]["namespace"] = "ImGui" @@ -18935,7 +18516,6 @@ defs["igIsItemDeactivatedAfterEdit"][1]["argsT"] = {} defs["igIsItemDeactivatedAfterEdit"][1]["argsoriginal"] = "()" defs["igIsItemDeactivatedAfterEdit"][1]["call_args"] = "()" defs["igIsItemDeactivatedAfterEdit"][1]["cimguiname"] = "igIsItemDeactivatedAfterEdit" -defs["igIsItemDeactivatedAfterEdit"][1]["comment"] = "" defs["igIsItemDeactivatedAfterEdit"][1]["defaults"] = {} defs["igIsItemDeactivatedAfterEdit"][1]["funcname"] = "IsItemDeactivatedAfterEdit" defs["igIsItemDeactivatedAfterEdit"][1]["namespace"] = "ImGui" @@ -18951,7 +18531,6 @@ defs["igIsItemEdited"][1]["argsT"] = {} defs["igIsItemEdited"][1]["argsoriginal"] = "()" defs["igIsItemEdited"][1]["call_args"] = "()" defs["igIsItemEdited"][1]["cimguiname"] = "igIsItemEdited" -defs["igIsItemEdited"][1]["comment"] = "" defs["igIsItemEdited"][1]["defaults"] = {} defs["igIsItemEdited"][1]["funcname"] = "IsItemEdited" defs["igIsItemEdited"][1]["namespace"] = "ImGui" @@ -18967,7 +18546,6 @@ defs["igIsItemFocused"][1]["argsT"] = {} defs["igIsItemFocused"][1]["argsoriginal"] = "()" defs["igIsItemFocused"][1]["call_args"] = "()" defs["igIsItemFocused"][1]["cimguiname"] = "igIsItemFocused" -defs["igIsItemFocused"][1]["comment"] = "" defs["igIsItemFocused"][1]["defaults"] = {} defs["igIsItemFocused"][1]["funcname"] = "IsItemFocused" defs["igIsItemFocused"][1]["namespace"] = "ImGui" @@ -18986,7 +18564,6 @@ defs["igIsItemHovered"][1]["argsT"][1]["type"] = "ImGuiHoveredFlags" defs["igIsItemHovered"][1]["argsoriginal"] = "(ImGuiHoveredFlags flags=0)" defs["igIsItemHovered"][1]["call_args"] = "(flags)" defs["igIsItemHovered"][1]["cimguiname"] = "igIsItemHovered" -defs["igIsItemHovered"][1]["comment"] = "" defs["igIsItemHovered"][1]["defaults"] = {} defs["igIsItemHovered"][1]["defaults"]["flags"] = "0" defs["igIsItemHovered"][1]["funcname"] = "IsItemHovered" @@ -19003,7 +18580,6 @@ defs["igIsItemVisible"][1]["argsT"] = {} defs["igIsItemVisible"][1]["argsoriginal"] = "()" defs["igIsItemVisible"][1]["call_args"] = "()" defs["igIsItemVisible"][1]["cimguiname"] = "igIsItemVisible" -defs["igIsItemVisible"][1]["comment"] = "" defs["igIsItemVisible"][1]["defaults"] = {} defs["igIsItemVisible"][1]["funcname"] = "IsItemVisible" defs["igIsItemVisible"][1]["namespace"] = "ImGui" @@ -19022,7 +18598,6 @@ defs["igIsKeyDown"][1]["argsT"][1]["type"] = "int" defs["igIsKeyDown"][1]["argsoriginal"] = "(int user_key_index)" defs["igIsKeyDown"][1]["call_args"] = "(user_key_index)" defs["igIsKeyDown"][1]["cimguiname"] = "igIsKeyDown" -defs["igIsKeyDown"][1]["comment"] = "" defs["igIsKeyDown"][1]["defaults"] = {} defs["igIsKeyDown"][1]["funcname"] = "IsKeyDown" defs["igIsKeyDown"][1]["namespace"] = "ImGui" @@ -19044,7 +18619,6 @@ defs["igIsKeyPressed"][1]["argsT"][2]["type"] = "bool" defs["igIsKeyPressed"][1]["argsoriginal"] = "(int user_key_index,bool repeat=true)" defs["igIsKeyPressed"][1]["call_args"] = "(user_key_index,repeat)" defs["igIsKeyPressed"][1]["cimguiname"] = "igIsKeyPressed" -defs["igIsKeyPressed"][1]["comment"] = "" defs["igIsKeyPressed"][1]["defaults"] = {} defs["igIsKeyPressed"][1]["defaults"]["repeat"] = "true" defs["igIsKeyPressed"][1]["funcname"] = "IsKeyPressed" @@ -19064,7 +18638,6 @@ defs["igIsKeyReleased"][1]["argsT"][1]["type"] = "int" defs["igIsKeyReleased"][1]["argsoriginal"] = "(int user_key_index)" defs["igIsKeyReleased"][1]["call_args"] = "(user_key_index)" defs["igIsKeyReleased"][1]["cimguiname"] = "igIsKeyReleased" -defs["igIsKeyReleased"][1]["comment"] = "" defs["igIsKeyReleased"][1]["defaults"] = {} defs["igIsKeyReleased"][1]["funcname"] = "IsKeyReleased" defs["igIsKeyReleased"][1]["namespace"] = "ImGui" @@ -19086,7 +18659,6 @@ defs["igIsMouseClicked"][1]["argsT"][2]["type"] = "bool" defs["igIsMouseClicked"][1]["argsoriginal"] = "(int button,bool repeat=false)" defs["igIsMouseClicked"][1]["call_args"] = "(button,repeat)" defs["igIsMouseClicked"][1]["cimguiname"] = "igIsMouseClicked" -defs["igIsMouseClicked"][1]["comment"] = "" defs["igIsMouseClicked"][1]["defaults"] = {} defs["igIsMouseClicked"][1]["defaults"]["repeat"] = "false" defs["igIsMouseClicked"][1]["funcname"] = "IsMouseClicked" @@ -19106,7 +18678,6 @@ defs["igIsMouseDoubleClicked"][1]["argsT"][1]["type"] = "int" defs["igIsMouseDoubleClicked"][1]["argsoriginal"] = "(int button)" defs["igIsMouseDoubleClicked"][1]["call_args"] = "(button)" defs["igIsMouseDoubleClicked"][1]["cimguiname"] = "igIsMouseDoubleClicked" -defs["igIsMouseDoubleClicked"][1]["comment"] = "" defs["igIsMouseDoubleClicked"][1]["defaults"] = {} defs["igIsMouseDoubleClicked"][1]["funcname"] = "IsMouseDoubleClicked" defs["igIsMouseDoubleClicked"][1]["namespace"] = "ImGui" @@ -19125,7 +18696,6 @@ defs["igIsMouseDown"][1]["argsT"][1]["type"] = "int" defs["igIsMouseDown"][1]["argsoriginal"] = "(int button)" defs["igIsMouseDown"][1]["call_args"] = "(button)" defs["igIsMouseDown"][1]["cimguiname"] = "igIsMouseDown" -defs["igIsMouseDown"][1]["comment"] = "" defs["igIsMouseDown"][1]["defaults"] = {} defs["igIsMouseDown"][1]["funcname"] = "IsMouseDown" defs["igIsMouseDown"][1]["namespace"] = "ImGui" @@ -19147,7 +18717,6 @@ defs["igIsMouseDragging"][1]["argsT"][2]["type"] = "float" defs["igIsMouseDragging"][1]["argsoriginal"] = "(int button=0,float lock_threshold=-1.0f)" defs["igIsMouseDragging"][1]["call_args"] = "(button,lock_threshold)" defs["igIsMouseDragging"][1]["cimguiname"] = "igIsMouseDragging" -defs["igIsMouseDragging"][1]["comment"] = "" defs["igIsMouseDragging"][1]["defaults"] = {} defs["igIsMouseDragging"][1]["defaults"]["button"] = "0" defs["igIsMouseDragging"][1]["defaults"]["lock_threshold"] = "-1.0f" @@ -19174,7 +18743,6 @@ defs["igIsMouseHoveringRect"][1]["argsT"][3]["type"] = "bool" defs["igIsMouseHoveringRect"][1]["argsoriginal"] = "(const ImVec2& r_min,const ImVec2& r_max,bool clip=true)" defs["igIsMouseHoveringRect"][1]["call_args"] = "(r_min,r_max,clip)" defs["igIsMouseHoveringRect"][1]["cimguiname"] = "igIsMouseHoveringRect" -defs["igIsMouseHoveringRect"][1]["comment"] = "" defs["igIsMouseHoveringRect"][1]["defaults"] = {} defs["igIsMouseHoveringRect"][1]["defaults"]["clip"] = "true" defs["igIsMouseHoveringRect"][1]["funcname"] = "IsMouseHoveringRect" @@ -19194,7 +18762,6 @@ defs["igIsMousePosValid"][1]["argsT"][1]["type"] = "const ImVec2*" defs["igIsMousePosValid"][1]["argsoriginal"] = "(const ImVec2* mouse_pos=((void*)0))" defs["igIsMousePosValid"][1]["call_args"] = "(mouse_pos)" defs["igIsMousePosValid"][1]["cimguiname"] = "igIsMousePosValid" -defs["igIsMousePosValid"][1]["comment"] = "" defs["igIsMousePosValid"][1]["defaults"] = {} defs["igIsMousePosValid"][1]["defaults"]["mouse_pos"] = "((void*)0)" defs["igIsMousePosValid"][1]["funcname"] = "IsMousePosValid" @@ -19214,7 +18781,6 @@ defs["igIsMouseReleased"][1]["argsT"][1]["type"] = "int" defs["igIsMouseReleased"][1]["argsoriginal"] = "(int button)" defs["igIsMouseReleased"][1]["call_args"] = "(button)" defs["igIsMouseReleased"][1]["cimguiname"] = "igIsMouseReleased" -defs["igIsMouseReleased"][1]["comment"] = "" defs["igIsMouseReleased"][1]["defaults"] = {} defs["igIsMouseReleased"][1]["funcname"] = "IsMouseReleased" defs["igIsMouseReleased"][1]["namespace"] = "ImGui" @@ -19233,7 +18799,6 @@ defs["igIsPopupOpen"][1]["argsT"][1]["type"] = "const char*" defs["igIsPopupOpen"][1]["argsoriginal"] = "(const char* str_id)" defs["igIsPopupOpen"][1]["call_args"] = "(str_id)" defs["igIsPopupOpen"][1]["cimguiname"] = "igIsPopupOpen" -defs["igIsPopupOpen"][1]["comment"] = "" defs["igIsPopupOpen"][1]["defaults"] = {} defs["igIsPopupOpen"][1]["funcname"] = "IsPopupOpen" defs["igIsPopupOpen"][1]["namespace"] = "ImGui" @@ -19252,7 +18817,6 @@ defs["igIsRectVisible"][1]["argsT"][1]["type"] = "const ImVec2" defs["igIsRectVisible"][1]["argsoriginal"] = "(const ImVec2& size)" defs["igIsRectVisible"][1]["call_args"] = "(size)" defs["igIsRectVisible"][1]["cimguiname"] = "igIsRectVisible" -defs["igIsRectVisible"][1]["comment"] = "" defs["igIsRectVisible"][1]["defaults"] = {} defs["igIsRectVisible"][1]["funcname"] = "IsRectVisible" defs["igIsRectVisible"][1]["namespace"] = "ImGui" @@ -19272,7 +18836,6 @@ defs["igIsRectVisible"][2]["argsT"][2]["type"] = "const ImVec2" defs["igIsRectVisible"][2]["argsoriginal"] = "(const ImVec2& rect_min,const ImVec2& rect_max)" defs["igIsRectVisible"][2]["call_args"] = "(rect_min,rect_max)" defs["igIsRectVisible"][2]["cimguiname"] = "igIsRectVisible" -defs["igIsRectVisible"][2]["comment"] = "" defs["igIsRectVisible"][2]["defaults"] = {} defs["igIsRectVisible"][2]["funcname"] = "IsRectVisible" defs["igIsRectVisible"][2]["namespace"] = "ImGui" @@ -19289,7 +18852,6 @@ defs["igIsWindowAppearing"][1]["argsT"] = {} defs["igIsWindowAppearing"][1]["argsoriginal"] = "()" defs["igIsWindowAppearing"][1]["call_args"] = "()" defs["igIsWindowAppearing"][1]["cimguiname"] = "igIsWindowAppearing" -defs["igIsWindowAppearing"][1]["comment"] = "" defs["igIsWindowAppearing"][1]["defaults"] = {} defs["igIsWindowAppearing"][1]["funcname"] = "IsWindowAppearing" defs["igIsWindowAppearing"][1]["namespace"] = "ImGui" @@ -19305,7 +18867,6 @@ defs["igIsWindowCollapsed"][1]["argsT"] = {} defs["igIsWindowCollapsed"][1]["argsoriginal"] = "()" defs["igIsWindowCollapsed"][1]["call_args"] = "()" defs["igIsWindowCollapsed"][1]["cimguiname"] = "igIsWindowCollapsed" -defs["igIsWindowCollapsed"][1]["comment"] = "" defs["igIsWindowCollapsed"][1]["defaults"] = {} defs["igIsWindowCollapsed"][1]["funcname"] = "IsWindowCollapsed" defs["igIsWindowCollapsed"][1]["namespace"] = "ImGui" @@ -19324,7 +18885,6 @@ defs["igIsWindowFocused"][1]["argsT"][1]["type"] = "ImGuiFocusedFlags" defs["igIsWindowFocused"][1]["argsoriginal"] = "(ImGuiFocusedFlags flags=0)" defs["igIsWindowFocused"][1]["call_args"] = "(flags)" defs["igIsWindowFocused"][1]["cimguiname"] = "igIsWindowFocused" -defs["igIsWindowFocused"][1]["comment"] = "" defs["igIsWindowFocused"][1]["defaults"] = {} defs["igIsWindowFocused"][1]["defaults"]["flags"] = "0" defs["igIsWindowFocused"][1]["funcname"] = "IsWindowFocused" @@ -19344,7 +18904,6 @@ defs["igIsWindowHovered"][1]["argsT"][1]["type"] = "ImGuiHoveredFlags" defs["igIsWindowHovered"][1]["argsoriginal"] = "(ImGuiHoveredFlags flags=0)" defs["igIsWindowHovered"][1]["call_args"] = "(flags)" defs["igIsWindowHovered"][1]["cimguiname"] = "igIsWindowHovered" -defs["igIsWindowHovered"][1]["comment"] = "" defs["igIsWindowHovered"][1]["defaults"] = {} defs["igIsWindowHovered"][1]["defaults"]["flags"] = "0" defs["igIsWindowHovered"][1]["funcname"] = "IsWindowHovered" @@ -19370,7 +18929,6 @@ defs["igLabelText"][1]["argsT"][3]["type"] = "..." defs["igLabelText"][1]["argsoriginal"] = "(const char* label,const char* fmt,...)" defs["igLabelText"][1]["call_args"] = "(label,fmt,...)" defs["igLabelText"][1]["cimguiname"] = "igLabelText" -defs["igLabelText"][1]["comment"] = "" defs["igLabelText"][1]["defaults"] = {} defs["igLabelText"][1]["funcname"] = "LabelText" defs["igLabelText"][1]["isvararg"] = "...)" @@ -19396,7 +18954,6 @@ defs["igLabelTextV"][1]["argsT"][3]["type"] = "va_list" defs["igLabelTextV"][1]["argsoriginal"] = "(const char* label,const char* fmt,va_list args)" defs["igLabelTextV"][1]["call_args"] = "(label,fmt,args)" defs["igLabelTextV"][1]["cimguiname"] = "igLabelTextV" -defs["igLabelTextV"][1]["comment"] = "" defs["igLabelTextV"][1]["defaults"] = {} defs["igLabelTextV"][1]["funcname"] = "LabelTextV" defs["igLabelTextV"][1]["namespace"] = "ImGui" @@ -19427,7 +18984,6 @@ defs["igListBox"][1]["argsT"][5]["type"] = "int" defs["igListBox"][1]["argsoriginal"] = "(const char* label,int* current_item,const char* const items[],int items_count,int height_in_items=-1)" defs["igListBox"][1]["call_args"] = "(label,current_item,items,items_count,height_in_items)" defs["igListBox"][1]["cimguiname"] = "igListBox" -defs["igListBox"][1]["comment"] = "" defs["igListBox"][1]["defaults"] = {} defs["igListBox"][1]["defaults"]["height_in_items"] = "-1" defs["igListBox"][1]["funcname"] = "ListBox" @@ -19462,7 +19018,6 @@ defs["igListBox"][2]["argsT"][6]["type"] = "int" defs["igListBox"][2]["argsoriginal"] = "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items=-1)" defs["igListBox"][2]["call_args"] = "(label,current_item,items_getter,data,items_count,height_in_items)" defs["igListBox"][2]["cimguiname"] = "igListBox" -defs["igListBox"][2]["comment"] = "" defs["igListBox"][2]["defaults"] = {} defs["igListBox"][2]["defaults"]["height_in_items"] = "-1" defs["igListBox"][2]["funcname"] = "ListBox" @@ -19480,7 +19035,6 @@ defs["igListBoxFooter"][1]["argsT"] = {} defs["igListBoxFooter"][1]["argsoriginal"] = "()" defs["igListBoxFooter"][1]["call_args"] = "()" defs["igListBoxFooter"][1]["cimguiname"] = "igListBoxFooter" -defs["igListBoxFooter"][1]["comment"] = "" defs["igListBoxFooter"][1]["defaults"] = {} defs["igListBoxFooter"][1]["funcname"] = "ListBoxFooter" defs["igListBoxFooter"][1]["namespace"] = "ImGui" @@ -19502,7 +19056,6 @@ defs["igListBoxHeader"][1]["argsT"][2]["type"] = "const ImVec2" defs["igListBoxHeader"][1]["argsoriginal"] = "(const char* label,const ImVec2& size=ImVec2(0,0))" defs["igListBoxHeader"][1]["call_args"] = "(label,size)" defs["igListBoxHeader"][1]["cimguiname"] = "igListBoxHeader" -defs["igListBoxHeader"][1]["comment"] = "" defs["igListBoxHeader"][1]["defaults"] = {} defs["igListBoxHeader"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igListBoxHeader"][1]["funcname"] = "ListBoxHeader" @@ -19526,7 +19079,6 @@ defs["igListBoxHeader"][2]["argsT"][3]["type"] = "int" defs["igListBoxHeader"][2]["argsoriginal"] = "(const char* label,int items_count,int height_in_items=-1)" defs["igListBoxHeader"][2]["call_args"] = "(label,items_count,height_in_items)" defs["igListBoxHeader"][2]["cimguiname"] = "igListBoxHeader" -defs["igListBoxHeader"][2]["comment"] = "" defs["igListBoxHeader"][2]["defaults"] = {} defs["igListBoxHeader"][2]["defaults"]["height_in_items"] = "-1" defs["igListBoxHeader"][2]["funcname"] = "ListBoxHeader" @@ -19547,7 +19099,6 @@ defs["igLoadIniSettingsFromDisk"][1]["argsT"][1]["type"] = "const char*" defs["igLoadIniSettingsFromDisk"][1]["argsoriginal"] = "(const char* ini_filename)" defs["igLoadIniSettingsFromDisk"][1]["call_args"] = "(ini_filename)" defs["igLoadIniSettingsFromDisk"][1]["cimguiname"] = "igLoadIniSettingsFromDisk" -defs["igLoadIniSettingsFromDisk"][1]["comment"] = "" defs["igLoadIniSettingsFromDisk"][1]["defaults"] = {} defs["igLoadIniSettingsFromDisk"][1]["funcname"] = "LoadIniSettingsFromDisk" defs["igLoadIniSettingsFromDisk"][1]["namespace"] = "ImGui" @@ -19569,7 +19120,6 @@ defs["igLoadIniSettingsFromMemory"][1]["argsT"][2]["type"] = "size_t" defs["igLoadIniSettingsFromMemory"][1]["argsoriginal"] = "(const char* ini_data,size_t ini_size=0)" defs["igLoadIniSettingsFromMemory"][1]["call_args"] = "(ini_data,ini_size)" defs["igLoadIniSettingsFromMemory"][1]["cimguiname"] = "igLoadIniSettingsFromMemory" -defs["igLoadIniSettingsFromMemory"][1]["comment"] = "" defs["igLoadIniSettingsFromMemory"][1]["defaults"] = {} defs["igLoadIniSettingsFromMemory"][1]["defaults"]["ini_size"] = "0" defs["igLoadIniSettingsFromMemory"][1]["funcname"] = "LoadIniSettingsFromMemory" @@ -19586,7 +19136,6 @@ defs["igLogButtons"][1]["argsT"] = {} defs["igLogButtons"][1]["argsoriginal"] = "()" defs["igLogButtons"][1]["call_args"] = "()" defs["igLogButtons"][1]["cimguiname"] = "igLogButtons" -defs["igLogButtons"][1]["comment"] = "" defs["igLogButtons"][1]["defaults"] = {} defs["igLogButtons"][1]["funcname"] = "LogButtons" defs["igLogButtons"][1]["namespace"] = "ImGui" @@ -19602,7 +19151,6 @@ defs["igLogFinish"][1]["argsT"] = {} defs["igLogFinish"][1]["argsoriginal"] = "()" defs["igLogFinish"][1]["call_args"] = "()" defs["igLogFinish"][1]["cimguiname"] = "igLogFinish" -defs["igLogFinish"][1]["comment"] = "" defs["igLogFinish"][1]["defaults"] = {} defs["igLogFinish"][1]["funcname"] = "LogFinish" defs["igLogFinish"][1]["namespace"] = "ImGui" @@ -19624,7 +19172,6 @@ defs["igLogText"][1]["argsT"][2]["type"] = "..." defs["igLogText"][1]["argsoriginal"] = "(const char* fmt,...)" defs["igLogText"][1]["call_args"] = "(fmt,...)" defs["igLogText"][1]["cimguiname"] = "igLogText" -defs["igLogText"][1]["comment"] = "" defs["igLogText"][1]["defaults"] = {} defs["igLogText"][1]["funcname"] = "LogText" defs["igLogText"][1]["isvararg"] = "...)" @@ -19645,7 +19192,6 @@ defs["igLogToClipboard"][1]["argsT"][1]["type"] = "int" defs["igLogToClipboard"][1]["argsoriginal"] = "(int max_depth=-1)" defs["igLogToClipboard"][1]["call_args"] = "(max_depth)" defs["igLogToClipboard"][1]["cimguiname"] = "igLogToClipboard" -defs["igLogToClipboard"][1]["comment"] = "" defs["igLogToClipboard"][1]["defaults"] = {} defs["igLogToClipboard"][1]["defaults"]["max_depth"] = "-1" defs["igLogToClipboard"][1]["funcname"] = "LogToClipboard" @@ -19668,7 +19214,6 @@ defs["igLogToFile"][1]["argsT"][2]["type"] = "const char*" defs["igLogToFile"][1]["argsoriginal"] = "(int max_depth=-1,const char* filename=((void*)0))" defs["igLogToFile"][1]["call_args"] = "(max_depth,filename)" defs["igLogToFile"][1]["cimguiname"] = "igLogToFile" -defs["igLogToFile"][1]["comment"] = "" defs["igLogToFile"][1]["defaults"] = {} defs["igLogToFile"][1]["defaults"]["filename"] = "((void*)0)" defs["igLogToFile"][1]["defaults"]["max_depth"] = "-1" @@ -19689,7 +19234,6 @@ defs["igLogToTTY"][1]["argsT"][1]["type"] = "int" defs["igLogToTTY"][1]["argsoriginal"] = "(int max_depth=-1)" defs["igLogToTTY"][1]["call_args"] = "(max_depth)" defs["igLogToTTY"][1]["cimguiname"] = "igLogToTTY" -defs["igLogToTTY"][1]["comment"] = "" defs["igLogToTTY"][1]["defaults"] = {} defs["igLogToTTY"][1]["defaults"]["max_depth"] = "-1" defs["igLogToTTY"][1]["funcname"] = "LogToTTY" @@ -19709,7 +19253,6 @@ defs["igMemAlloc"][1]["argsT"][1]["type"] = "size_t" defs["igMemAlloc"][1]["argsoriginal"] = "(size_t size)" defs["igMemAlloc"][1]["call_args"] = "(size)" defs["igMemAlloc"][1]["cimguiname"] = "igMemAlloc" -defs["igMemAlloc"][1]["comment"] = "" defs["igMemAlloc"][1]["defaults"] = {} defs["igMemAlloc"][1]["funcname"] = "MemAlloc" defs["igMemAlloc"][1]["namespace"] = "ImGui" @@ -19728,7 +19271,6 @@ defs["igMemFree"][1]["argsT"][1]["type"] = "void*" defs["igMemFree"][1]["argsoriginal"] = "(void* ptr)" defs["igMemFree"][1]["call_args"] = "(ptr)" defs["igMemFree"][1]["cimguiname"] = "igMemFree" -defs["igMemFree"][1]["comment"] = "" defs["igMemFree"][1]["defaults"] = {} defs["igMemFree"][1]["funcname"] = "MemFree" defs["igMemFree"][1]["namespace"] = "ImGui" @@ -19756,7 +19298,6 @@ defs["igMenuItem"][1]["argsT"][4]["type"] = "bool" defs["igMenuItem"][1]["argsoriginal"] = "(const char* label,const char* shortcut=((void*)0),bool selected=false,bool enabled=true)" defs["igMenuItem"][1]["call_args"] = "(label,shortcut,selected,enabled)" defs["igMenuItem"][1]["cimguiname"] = "igMenuItem" -defs["igMenuItem"][1]["comment"] = "" defs["igMenuItem"][1]["defaults"] = {} defs["igMenuItem"][1]["defaults"]["enabled"] = "true" defs["igMenuItem"][1]["defaults"]["selected"] = "false" @@ -19785,7 +19326,6 @@ defs["igMenuItem"][2]["argsT"][4]["type"] = "bool" defs["igMenuItem"][2]["argsoriginal"] = "(const char* label,const char* shortcut,bool* p_selected,bool enabled=true)" defs["igMenuItem"][2]["call_args"] = "(label,shortcut,p_selected,enabled)" defs["igMenuItem"][2]["cimguiname"] = "igMenuItem" -defs["igMenuItem"][2]["comment"] = "" defs["igMenuItem"][2]["defaults"] = {} defs["igMenuItem"][2]["defaults"]["enabled"] = "true" defs["igMenuItem"][2]["funcname"] = "MenuItem" @@ -19803,7 +19343,6 @@ defs["igNewFrame"][1]["argsT"] = {} defs["igNewFrame"][1]["argsoriginal"] = "()" defs["igNewFrame"][1]["call_args"] = "()" defs["igNewFrame"][1]["cimguiname"] = "igNewFrame" -defs["igNewFrame"][1]["comment"] = "" defs["igNewFrame"][1]["defaults"] = {} defs["igNewFrame"][1]["funcname"] = "NewFrame" defs["igNewFrame"][1]["namespace"] = "ImGui" @@ -19819,7 +19358,6 @@ defs["igNewLine"][1]["argsT"] = {} defs["igNewLine"][1]["argsoriginal"] = "()" defs["igNewLine"][1]["call_args"] = "()" defs["igNewLine"][1]["cimguiname"] = "igNewLine" -defs["igNewLine"][1]["comment"] = "" defs["igNewLine"][1]["defaults"] = {} defs["igNewLine"][1]["funcname"] = "NewLine" defs["igNewLine"][1]["namespace"] = "ImGui" @@ -19835,7 +19373,6 @@ defs["igNextColumn"][1]["argsT"] = {} defs["igNextColumn"][1]["argsoriginal"] = "()" defs["igNextColumn"][1]["call_args"] = "()" defs["igNextColumn"][1]["cimguiname"] = "igNextColumn" -defs["igNextColumn"][1]["comment"] = "" defs["igNextColumn"][1]["defaults"] = {} defs["igNextColumn"][1]["funcname"] = "NextColumn" defs["igNextColumn"][1]["namespace"] = "ImGui" @@ -19854,7 +19391,6 @@ defs["igOpenPopup"][1]["argsT"][1]["type"] = "const char*" defs["igOpenPopup"][1]["argsoriginal"] = "(const char* str_id)" defs["igOpenPopup"][1]["call_args"] = "(str_id)" defs["igOpenPopup"][1]["cimguiname"] = "igOpenPopup" -defs["igOpenPopup"][1]["comment"] = "" defs["igOpenPopup"][1]["defaults"] = {} defs["igOpenPopup"][1]["funcname"] = "OpenPopup" defs["igOpenPopup"][1]["namespace"] = "ImGui" @@ -19876,7 +19412,6 @@ defs["igOpenPopupOnItemClick"][1]["argsT"][2]["type"] = "int" defs["igOpenPopupOnItemClick"][1]["argsoriginal"] = "(const char* str_id=((void*)0),int mouse_button=1)" defs["igOpenPopupOnItemClick"][1]["call_args"] = "(str_id,mouse_button)" defs["igOpenPopupOnItemClick"][1]["cimguiname"] = "igOpenPopupOnItemClick" -defs["igOpenPopupOnItemClick"][1]["comment"] = "" defs["igOpenPopupOnItemClick"][1]["defaults"] = {} defs["igOpenPopupOnItemClick"][1]["defaults"]["mouse_button"] = "1" defs["igOpenPopupOnItemClick"][1]["defaults"]["str_id"] = "((void*)0)" @@ -19921,7 +19456,6 @@ defs["igPlotHistogram"][1]["argsT"][9]["type"] = "int" defs["igPlotHistogram"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" defs["igPlotHistogram"][1]["call_args"] = "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)" defs["igPlotHistogram"][1]["cimguiname"] = "igPlotHistogram" -defs["igPlotHistogram"][1]["comment"] = "" defs["igPlotHistogram"][1]["defaults"] = {} defs["igPlotHistogram"][1]["defaults"]["graph_size"] = "ImVec2(0,0)" defs["igPlotHistogram"][1]["defaults"]["overlay_text"] = "((void*)0)" @@ -19970,7 +19504,6 @@ defs["igPlotHistogram"][2]["argsT"][9]["type"] = "ImVec2" defs["igPlotHistogram"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0))" defs["igPlotHistogram"][2]["call_args"] = "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)" defs["igPlotHistogram"][2]["cimguiname"] = "igPlotHistogram" -defs["igPlotHistogram"][2]["comment"] = "" defs["igPlotHistogram"][2]["defaults"] = {} defs["igPlotHistogram"][2]["defaults"]["graph_size"] = "ImVec2(0,0)" defs["igPlotHistogram"][2]["defaults"]["overlay_text"] = "((void*)0)" @@ -20019,7 +19552,6 @@ defs["igPlotLines"][1]["argsT"][9]["type"] = "int" defs["igPlotLines"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" defs["igPlotLines"][1]["call_args"] = "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)" defs["igPlotLines"][1]["cimguiname"] = "igPlotLines" -defs["igPlotLines"][1]["comment"] = "" defs["igPlotLines"][1]["defaults"] = {} defs["igPlotLines"][1]["defaults"]["graph_size"] = "ImVec2(0,0)" defs["igPlotLines"][1]["defaults"]["overlay_text"] = "((void*)0)" @@ -20068,7 +19600,6 @@ defs["igPlotLines"][2]["argsT"][9]["type"] = "ImVec2" defs["igPlotLines"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0))" defs["igPlotLines"][2]["call_args"] = "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)" defs["igPlotLines"][2]["cimguiname"] = "igPlotLines" -defs["igPlotLines"][2]["comment"] = "" defs["igPlotLines"][2]["defaults"] = {} defs["igPlotLines"][2]["defaults"]["graph_size"] = "ImVec2(0,0)" defs["igPlotLines"][2]["defaults"]["overlay_text"] = "((void*)0)" @@ -20090,7 +19621,6 @@ defs["igPopAllowKeyboardFocus"][1]["argsT"] = {} defs["igPopAllowKeyboardFocus"][1]["argsoriginal"] = "()" defs["igPopAllowKeyboardFocus"][1]["call_args"] = "()" defs["igPopAllowKeyboardFocus"][1]["cimguiname"] = "igPopAllowKeyboardFocus" -defs["igPopAllowKeyboardFocus"][1]["comment"] = "" defs["igPopAllowKeyboardFocus"][1]["defaults"] = {} defs["igPopAllowKeyboardFocus"][1]["funcname"] = "PopAllowKeyboardFocus" defs["igPopAllowKeyboardFocus"][1]["namespace"] = "ImGui" @@ -20106,7 +19636,6 @@ defs["igPopButtonRepeat"][1]["argsT"] = {} defs["igPopButtonRepeat"][1]["argsoriginal"] = "()" defs["igPopButtonRepeat"][1]["call_args"] = "()" defs["igPopButtonRepeat"][1]["cimguiname"] = "igPopButtonRepeat" -defs["igPopButtonRepeat"][1]["comment"] = "" defs["igPopButtonRepeat"][1]["defaults"] = {} defs["igPopButtonRepeat"][1]["funcname"] = "PopButtonRepeat" defs["igPopButtonRepeat"][1]["namespace"] = "ImGui" @@ -20122,7 +19651,6 @@ defs["igPopClipRect"][1]["argsT"] = {} defs["igPopClipRect"][1]["argsoriginal"] = "()" defs["igPopClipRect"][1]["call_args"] = "()" defs["igPopClipRect"][1]["cimguiname"] = "igPopClipRect" -defs["igPopClipRect"][1]["comment"] = "" defs["igPopClipRect"][1]["defaults"] = {} defs["igPopClipRect"][1]["funcname"] = "PopClipRect" defs["igPopClipRect"][1]["namespace"] = "ImGui" @@ -20138,7 +19666,6 @@ defs["igPopFont"][1]["argsT"] = {} defs["igPopFont"][1]["argsoriginal"] = "()" defs["igPopFont"][1]["call_args"] = "()" defs["igPopFont"][1]["cimguiname"] = "igPopFont" -defs["igPopFont"][1]["comment"] = "" defs["igPopFont"][1]["defaults"] = {} defs["igPopFont"][1]["funcname"] = "PopFont" defs["igPopFont"][1]["namespace"] = "ImGui" @@ -20154,7 +19681,6 @@ defs["igPopID"][1]["argsT"] = {} defs["igPopID"][1]["argsoriginal"] = "()" defs["igPopID"][1]["call_args"] = "()" defs["igPopID"][1]["cimguiname"] = "igPopID" -defs["igPopID"][1]["comment"] = "" defs["igPopID"][1]["defaults"] = {} defs["igPopID"][1]["funcname"] = "PopID" defs["igPopID"][1]["namespace"] = "ImGui" @@ -20170,7 +19696,6 @@ defs["igPopItemWidth"][1]["argsT"] = {} defs["igPopItemWidth"][1]["argsoriginal"] = "()" defs["igPopItemWidth"][1]["call_args"] = "()" defs["igPopItemWidth"][1]["cimguiname"] = "igPopItemWidth" -defs["igPopItemWidth"][1]["comment"] = "" defs["igPopItemWidth"][1]["defaults"] = {} defs["igPopItemWidth"][1]["funcname"] = "PopItemWidth" defs["igPopItemWidth"][1]["namespace"] = "ImGui" @@ -20189,7 +19714,6 @@ defs["igPopStyleColor"][1]["argsT"][1]["type"] = "int" defs["igPopStyleColor"][1]["argsoriginal"] = "(int count=1)" defs["igPopStyleColor"][1]["call_args"] = "(count)" defs["igPopStyleColor"][1]["cimguiname"] = "igPopStyleColor" -defs["igPopStyleColor"][1]["comment"] = "" defs["igPopStyleColor"][1]["defaults"] = {} defs["igPopStyleColor"][1]["defaults"]["count"] = "1" defs["igPopStyleColor"][1]["funcname"] = "PopStyleColor" @@ -20209,7 +19733,6 @@ defs["igPopStyleVar"][1]["argsT"][1]["type"] = "int" defs["igPopStyleVar"][1]["argsoriginal"] = "(int count=1)" defs["igPopStyleVar"][1]["call_args"] = "(count)" defs["igPopStyleVar"][1]["cimguiname"] = "igPopStyleVar" -defs["igPopStyleVar"][1]["comment"] = "" defs["igPopStyleVar"][1]["defaults"] = {} defs["igPopStyleVar"][1]["defaults"]["count"] = "1" defs["igPopStyleVar"][1]["funcname"] = "PopStyleVar" @@ -20226,7 +19749,6 @@ defs["igPopTextWrapPos"][1]["argsT"] = {} defs["igPopTextWrapPos"][1]["argsoriginal"] = "()" defs["igPopTextWrapPos"][1]["call_args"] = "()" defs["igPopTextWrapPos"][1]["cimguiname"] = "igPopTextWrapPos" -defs["igPopTextWrapPos"][1]["comment"] = "" defs["igPopTextWrapPos"][1]["defaults"] = {} defs["igPopTextWrapPos"][1]["funcname"] = "PopTextWrapPos" defs["igPopTextWrapPos"][1]["namespace"] = "ImGui" @@ -20251,7 +19773,6 @@ defs["igProgressBar"][1]["argsT"][3]["type"] = "const char*" defs["igProgressBar"][1]["argsoriginal"] = "(float fraction,const ImVec2& size_arg=ImVec2(-1,0),const char* overlay=((void*)0))" defs["igProgressBar"][1]["call_args"] = "(fraction,size_arg,overlay)" defs["igProgressBar"][1]["cimguiname"] = "igProgressBar" -defs["igProgressBar"][1]["comment"] = "" defs["igProgressBar"][1]["defaults"] = {} defs["igProgressBar"][1]["defaults"]["overlay"] = "((void*)0)" defs["igProgressBar"][1]["defaults"]["size_arg"] = "ImVec2(-1,0)" @@ -20272,7 +19793,6 @@ defs["igPushAllowKeyboardFocus"][1]["argsT"][1]["type"] = "bool" defs["igPushAllowKeyboardFocus"][1]["argsoriginal"] = "(bool allow_keyboard_focus)" defs["igPushAllowKeyboardFocus"][1]["call_args"] = "(allow_keyboard_focus)" defs["igPushAllowKeyboardFocus"][1]["cimguiname"] = "igPushAllowKeyboardFocus" -defs["igPushAllowKeyboardFocus"][1]["comment"] = "" defs["igPushAllowKeyboardFocus"][1]["defaults"] = {} defs["igPushAllowKeyboardFocus"][1]["funcname"] = "PushAllowKeyboardFocus" defs["igPushAllowKeyboardFocus"][1]["namespace"] = "ImGui" @@ -20291,7 +19811,6 @@ defs["igPushButtonRepeat"][1]["argsT"][1]["type"] = "bool" defs["igPushButtonRepeat"][1]["argsoriginal"] = "(bool repeat)" defs["igPushButtonRepeat"][1]["call_args"] = "(repeat)" defs["igPushButtonRepeat"][1]["cimguiname"] = "igPushButtonRepeat" -defs["igPushButtonRepeat"][1]["comment"] = "" defs["igPushButtonRepeat"][1]["defaults"] = {} defs["igPushButtonRepeat"][1]["funcname"] = "PushButtonRepeat" defs["igPushButtonRepeat"][1]["namespace"] = "ImGui" @@ -20316,7 +19835,6 @@ defs["igPushClipRect"][1]["argsT"][3]["type"] = "bool" defs["igPushClipRect"][1]["argsoriginal"] = "(const ImVec2& clip_rect_min,const ImVec2& clip_rect_max,bool intersect_with_current_clip_rect)" defs["igPushClipRect"][1]["call_args"] = "(clip_rect_min,clip_rect_max,intersect_with_current_clip_rect)" defs["igPushClipRect"][1]["cimguiname"] = "igPushClipRect" -defs["igPushClipRect"][1]["comment"] = "" defs["igPushClipRect"][1]["defaults"] = {} defs["igPushClipRect"][1]["funcname"] = "PushClipRect" defs["igPushClipRect"][1]["namespace"] = "ImGui" @@ -20335,7 +19853,6 @@ defs["igPushFont"][1]["argsT"][1]["type"] = "ImFont*" defs["igPushFont"][1]["argsoriginal"] = "(ImFont* font)" defs["igPushFont"][1]["call_args"] = "(font)" defs["igPushFont"][1]["cimguiname"] = "igPushFont" -defs["igPushFont"][1]["comment"] = "" defs["igPushFont"][1]["defaults"] = {} defs["igPushFont"][1]["funcname"] = "PushFont" defs["igPushFont"][1]["namespace"] = "ImGui" @@ -20354,7 +19871,6 @@ defs["igPushID"][1]["argsT"][1]["type"] = "const char*" defs["igPushID"][1]["argsoriginal"] = "(const char* str_id)" defs["igPushID"][1]["call_args"] = "(str_id)" defs["igPushID"][1]["cimguiname"] = "igPushID" -defs["igPushID"][1]["comment"] = "" defs["igPushID"][1]["defaults"] = {} defs["igPushID"][1]["funcname"] = "PushID" defs["igPushID"][1]["namespace"] = "ImGui" @@ -20374,7 +19890,6 @@ defs["igPushID"][2]["argsT"][2]["type"] = "const char*" defs["igPushID"][2]["argsoriginal"] = "(const char* str_id_begin,const char* str_id_end)" defs["igPushID"][2]["call_args"] = "(str_id_begin,str_id_end)" defs["igPushID"][2]["cimguiname"] = "igPushID" -defs["igPushID"][2]["comment"] = "" defs["igPushID"][2]["defaults"] = {} defs["igPushID"][2]["funcname"] = "PushID" defs["igPushID"][2]["namespace"] = "ImGui" @@ -20391,7 +19906,6 @@ defs["igPushID"][3]["argsT"][1]["type"] = "const void*" defs["igPushID"][3]["argsoriginal"] = "(const void* ptr_id)" defs["igPushID"][3]["call_args"] = "(ptr_id)" defs["igPushID"][3]["cimguiname"] = "igPushID" -defs["igPushID"][3]["comment"] = "" defs["igPushID"][3]["defaults"] = {} defs["igPushID"][3]["funcname"] = "PushID" defs["igPushID"][3]["namespace"] = "ImGui" @@ -20408,7 +19922,6 @@ defs["igPushID"][4]["argsT"][1]["type"] = "int" defs["igPushID"][4]["argsoriginal"] = "(int int_id)" defs["igPushID"][4]["call_args"] = "(int_id)" defs["igPushID"][4]["cimguiname"] = "igPushID" -defs["igPushID"][4]["comment"] = "" defs["igPushID"][4]["defaults"] = {} defs["igPushID"][4]["funcname"] = "PushID" defs["igPushID"][4]["namespace"] = "ImGui" @@ -20430,7 +19943,6 @@ defs["igPushItemWidth"][1]["argsT"][1]["type"] = "float" defs["igPushItemWidth"][1]["argsoriginal"] = "(float item_width)" defs["igPushItemWidth"][1]["call_args"] = "(item_width)" defs["igPushItemWidth"][1]["cimguiname"] = "igPushItemWidth" -defs["igPushItemWidth"][1]["comment"] = "" defs["igPushItemWidth"][1]["defaults"] = {} defs["igPushItemWidth"][1]["funcname"] = "PushItemWidth" defs["igPushItemWidth"][1]["namespace"] = "ImGui" @@ -20452,7 +19964,6 @@ defs["igPushStyleColor"][1]["argsT"][2]["type"] = "ImU32" defs["igPushStyleColor"][1]["argsoriginal"] = "(ImGuiCol idx,ImU32 col)" defs["igPushStyleColor"][1]["call_args"] = "(idx,col)" defs["igPushStyleColor"][1]["cimguiname"] = "igPushStyleColor" -defs["igPushStyleColor"][1]["comment"] = "" defs["igPushStyleColor"][1]["defaults"] = {} defs["igPushStyleColor"][1]["funcname"] = "PushStyleColor" defs["igPushStyleColor"][1]["namespace"] = "ImGui" @@ -20472,7 +19983,6 @@ defs["igPushStyleColor"][2]["argsT"][2]["type"] = "const ImVec4" defs["igPushStyleColor"][2]["argsoriginal"] = "(ImGuiCol idx,const ImVec4& col)" defs["igPushStyleColor"][2]["call_args"] = "(idx,col)" defs["igPushStyleColor"][2]["cimguiname"] = "igPushStyleColor" -defs["igPushStyleColor"][2]["comment"] = "" defs["igPushStyleColor"][2]["defaults"] = {} defs["igPushStyleColor"][2]["funcname"] = "PushStyleColor" defs["igPushStyleColor"][2]["namespace"] = "ImGui" @@ -20495,7 +20005,6 @@ defs["igPushStyleVar"][1]["argsT"][2]["type"] = "float" defs["igPushStyleVar"][1]["argsoriginal"] = "(ImGuiStyleVar idx,float val)" defs["igPushStyleVar"][1]["call_args"] = "(idx,val)" defs["igPushStyleVar"][1]["cimguiname"] = "igPushStyleVar" -defs["igPushStyleVar"][1]["comment"] = "" defs["igPushStyleVar"][1]["defaults"] = {} defs["igPushStyleVar"][1]["funcname"] = "PushStyleVar" defs["igPushStyleVar"][1]["namespace"] = "ImGui" @@ -20515,7 +20024,6 @@ defs["igPushStyleVar"][2]["argsT"][2]["type"] = "const ImVec2" defs["igPushStyleVar"][2]["argsoriginal"] = "(ImGuiStyleVar idx,const ImVec2& val)" defs["igPushStyleVar"][2]["call_args"] = "(idx,val)" defs["igPushStyleVar"][2]["cimguiname"] = "igPushStyleVar" -defs["igPushStyleVar"][2]["comment"] = "" defs["igPushStyleVar"][2]["defaults"] = {} defs["igPushStyleVar"][2]["funcname"] = "PushStyleVar" defs["igPushStyleVar"][2]["namespace"] = "ImGui" @@ -20535,7 +20043,6 @@ defs["igPushTextWrapPos"][1]["argsT"][1]["type"] = "float" defs["igPushTextWrapPos"][1]["argsoriginal"] = "(float wrap_local_pos_x=0.0f)" defs["igPushTextWrapPos"][1]["call_args"] = "(wrap_local_pos_x)" defs["igPushTextWrapPos"][1]["cimguiname"] = "igPushTextWrapPos" -defs["igPushTextWrapPos"][1]["comment"] = "" defs["igPushTextWrapPos"][1]["defaults"] = {} defs["igPushTextWrapPos"][1]["defaults"]["wrap_local_pos_x"] = "0.0f" defs["igPushTextWrapPos"][1]["funcname"] = "PushTextWrapPos" @@ -20558,7 +20065,6 @@ defs["igRadioButton"][1]["argsT"][2]["type"] = "bool" defs["igRadioButton"][1]["argsoriginal"] = "(const char* label,bool active)" defs["igRadioButton"][1]["call_args"] = "(label,active)" defs["igRadioButton"][1]["cimguiname"] = "igRadioButton" -defs["igRadioButton"][1]["comment"] = "" defs["igRadioButton"][1]["defaults"] = {} defs["igRadioButton"][1]["funcname"] = "RadioButton" defs["igRadioButton"][1]["namespace"] = "ImGui" @@ -20581,7 +20087,6 @@ defs["igRadioButton"][2]["argsT"][3]["type"] = "int" defs["igRadioButton"][2]["argsoriginal"] = "(const char* label,int* v,int v_button)" defs["igRadioButton"][2]["call_args"] = "(label,v,v_button)" defs["igRadioButton"][2]["cimguiname"] = "igRadioButton" -defs["igRadioButton"][2]["comment"] = "" defs["igRadioButton"][2]["defaults"] = {} defs["igRadioButton"][2]["funcname"] = "RadioButton" defs["igRadioButton"][2]["namespace"] = "ImGui" @@ -20598,7 +20103,6 @@ defs["igRender"][1]["argsT"] = {} defs["igRender"][1]["argsoriginal"] = "()" defs["igRender"][1]["call_args"] = "()" defs["igRender"][1]["cimguiname"] = "igRender" -defs["igRender"][1]["comment"] = "" defs["igRender"][1]["defaults"] = {} defs["igRender"][1]["funcname"] = "Render" defs["igRender"][1]["namespace"] = "ImGui" @@ -20617,7 +20121,6 @@ defs["igResetMouseDragDelta"][1]["argsT"][1]["type"] = "int" defs["igResetMouseDragDelta"][1]["argsoriginal"] = "(int button=0)" defs["igResetMouseDragDelta"][1]["call_args"] = "(button)" defs["igResetMouseDragDelta"][1]["cimguiname"] = "igResetMouseDragDelta" -defs["igResetMouseDragDelta"][1]["comment"] = "" defs["igResetMouseDragDelta"][1]["defaults"] = {} defs["igResetMouseDragDelta"][1]["defaults"]["button"] = "0" defs["igResetMouseDragDelta"][1]["funcname"] = "ResetMouseDragDelta" @@ -20640,7 +20143,6 @@ defs["igSameLine"][1]["argsT"][2]["type"] = "float" defs["igSameLine"][1]["argsoriginal"] = "(float local_pos_x=0.0f,float spacing_w=-1.0f)" defs["igSameLine"][1]["call_args"] = "(local_pos_x,spacing_w)" defs["igSameLine"][1]["cimguiname"] = "igSameLine" -defs["igSameLine"][1]["comment"] = "" defs["igSameLine"][1]["defaults"] = {} defs["igSameLine"][1]["defaults"]["local_pos_x"] = "0.0f" defs["igSameLine"][1]["defaults"]["spacing_w"] = "-1.0f" @@ -20661,7 +20163,6 @@ defs["igSaveIniSettingsToDisk"][1]["argsT"][1]["type"] = "const char*" defs["igSaveIniSettingsToDisk"][1]["argsoriginal"] = "(const char* ini_filename)" defs["igSaveIniSettingsToDisk"][1]["call_args"] = "(ini_filename)" defs["igSaveIniSettingsToDisk"][1]["cimguiname"] = "igSaveIniSettingsToDisk" -defs["igSaveIniSettingsToDisk"][1]["comment"] = "" defs["igSaveIniSettingsToDisk"][1]["defaults"] = {} defs["igSaveIniSettingsToDisk"][1]["funcname"] = "SaveIniSettingsToDisk" defs["igSaveIniSettingsToDisk"][1]["namespace"] = "ImGui" @@ -20680,7 +20181,6 @@ defs["igSaveIniSettingsToMemory"][1]["argsT"][1]["type"] = "size_t*" defs["igSaveIniSettingsToMemory"][1]["argsoriginal"] = "(size_t* out_ini_size=((void*)0))" defs["igSaveIniSettingsToMemory"][1]["call_args"] = "(out_ini_size)" defs["igSaveIniSettingsToMemory"][1]["cimguiname"] = "igSaveIniSettingsToMemory" -defs["igSaveIniSettingsToMemory"][1]["comment"] = "" defs["igSaveIniSettingsToMemory"][1]["defaults"] = {} defs["igSaveIniSettingsToMemory"][1]["defaults"]["out_ini_size"] = "((void*)0)" defs["igSaveIniSettingsToMemory"][1]["funcname"] = "SaveIniSettingsToMemory" @@ -20709,7 +20209,6 @@ defs["igSelectable"][1]["argsT"][4]["type"] = "const ImVec2" defs["igSelectable"][1]["argsoriginal"] = "(const char* label,bool selected=false,ImGuiSelectableFlags flags=0,const ImVec2& size=ImVec2(0,0))" defs["igSelectable"][1]["call_args"] = "(label,selected,flags,size)" defs["igSelectable"][1]["cimguiname"] = "igSelectable" -defs["igSelectable"][1]["comment"] = "" defs["igSelectable"][1]["defaults"] = {} defs["igSelectable"][1]["defaults"]["flags"] = "0" defs["igSelectable"][1]["defaults"]["selected"] = "false" @@ -20738,7 +20237,6 @@ defs["igSelectable"][2]["argsT"][4]["type"] = "const ImVec2" defs["igSelectable"][2]["argsoriginal"] = "(const char* label,bool* p_selected,ImGuiSelectableFlags flags=0,const ImVec2& size=ImVec2(0,0))" defs["igSelectable"][2]["call_args"] = "(label,p_selected,flags,size)" defs["igSelectable"][2]["cimguiname"] = "igSelectable" -defs["igSelectable"][2]["comment"] = "" defs["igSelectable"][2]["defaults"] = {} defs["igSelectable"][2]["defaults"]["flags"] = "0" defs["igSelectable"][2]["defaults"]["size"] = "ImVec2(0,0)" @@ -20757,7 +20255,6 @@ defs["igSeparator"][1]["argsT"] = {} defs["igSeparator"][1]["argsoriginal"] = "()" defs["igSeparator"][1]["call_args"] = "()" defs["igSeparator"][1]["cimguiname"] = "igSeparator" -defs["igSeparator"][1]["comment"] = "" defs["igSeparator"][1]["defaults"] = {} defs["igSeparator"][1]["funcname"] = "Separator" defs["igSeparator"][1]["namespace"] = "ImGui" @@ -20786,7 +20283,6 @@ defs["igSetAllocatorFunctions"][1]["argsT"][3]["type"] = "void*" defs["igSetAllocatorFunctions"][1]["argsoriginal"] = "(void*(*alloc_func)(size_t sz,void* user_data),void(*free_func)(void* ptr,void* user_data),void* user_data=((void*)0))" defs["igSetAllocatorFunctions"][1]["call_args"] = "(alloc_func,free_func,user_data)" defs["igSetAllocatorFunctions"][1]["cimguiname"] = "igSetAllocatorFunctions" -defs["igSetAllocatorFunctions"][1]["comment"] = "" defs["igSetAllocatorFunctions"][1]["defaults"] = {} defs["igSetAllocatorFunctions"][1]["defaults"]["user_data"] = "((void*)0)" defs["igSetAllocatorFunctions"][1]["funcname"] = "SetAllocatorFunctions" @@ -20806,7 +20302,6 @@ defs["igSetClipboardText"][1]["argsT"][1]["type"] = "const char*" defs["igSetClipboardText"][1]["argsoriginal"] = "(const char* text)" defs["igSetClipboardText"][1]["call_args"] = "(text)" defs["igSetClipboardText"][1]["cimguiname"] = "igSetClipboardText" -defs["igSetClipboardText"][1]["comment"] = "" defs["igSetClipboardText"][1]["defaults"] = {} defs["igSetClipboardText"][1]["funcname"] = "SetClipboardText" defs["igSetClipboardText"][1]["namespace"] = "ImGui" @@ -20825,7 +20320,6 @@ defs["igSetColorEditOptions"][1]["argsT"][1]["type"] = "ImGuiColorEditFlags" defs["igSetColorEditOptions"][1]["argsoriginal"] = "(ImGuiColorEditFlags flags)" defs["igSetColorEditOptions"][1]["call_args"] = "(flags)" defs["igSetColorEditOptions"][1]["cimguiname"] = "igSetColorEditOptions" -defs["igSetColorEditOptions"][1]["comment"] = "" defs["igSetColorEditOptions"][1]["defaults"] = {} defs["igSetColorEditOptions"][1]["funcname"] = "SetColorEditOptions" defs["igSetColorEditOptions"][1]["namespace"] = "ImGui" @@ -20847,7 +20341,6 @@ defs["igSetColumnOffset"][1]["argsT"][2]["type"] = "float" defs["igSetColumnOffset"][1]["argsoriginal"] = "(int column_index,float offset_x)" defs["igSetColumnOffset"][1]["call_args"] = "(column_index,offset_x)" defs["igSetColumnOffset"][1]["cimguiname"] = "igSetColumnOffset" -defs["igSetColumnOffset"][1]["comment"] = "" defs["igSetColumnOffset"][1]["defaults"] = {} defs["igSetColumnOffset"][1]["funcname"] = "SetColumnOffset" defs["igSetColumnOffset"][1]["namespace"] = "ImGui" @@ -20869,7 +20362,6 @@ defs["igSetColumnWidth"][1]["argsT"][2]["type"] = "float" defs["igSetColumnWidth"][1]["argsoriginal"] = "(int column_index,float width)" defs["igSetColumnWidth"][1]["call_args"] = "(column_index,width)" defs["igSetColumnWidth"][1]["cimguiname"] = "igSetColumnWidth" -defs["igSetColumnWidth"][1]["comment"] = "" defs["igSetColumnWidth"][1]["defaults"] = {} defs["igSetColumnWidth"][1]["funcname"] = "SetColumnWidth" defs["igSetColumnWidth"][1]["namespace"] = "ImGui" @@ -20888,7 +20380,6 @@ defs["igSetCurrentContext"][1]["argsT"][1]["type"] = "ImGuiContext*" defs["igSetCurrentContext"][1]["argsoriginal"] = "(ImGuiContext* ctx)" defs["igSetCurrentContext"][1]["call_args"] = "(ctx)" defs["igSetCurrentContext"][1]["cimguiname"] = "igSetCurrentContext" -defs["igSetCurrentContext"][1]["comment"] = "" defs["igSetCurrentContext"][1]["defaults"] = {} defs["igSetCurrentContext"][1]["funcname"] = "SetCurrentContext" defs["igSetCurrentContext"][1]["namespace"] = "ImGui" @@ -20907,7 +20398,6 @@ defs["igSetCursorPos"][1]["argsT"][1]["type"] = "const ImVec2" defs["igSetCursorPos"][1]["argsoriginal"] = "(const ImVec2& local_pos)" defs["igSetCursorPos"][1]["call_args"] = "(local_pos)" defs["igSetCursorPos"][1]["cimguiname"] = "igSetCursorPos" -defs["igSetCursorPos"][1]["comment"] = "" defs["igSetCursorPos"][1]["defaults"] = {} defs["igSetCursorPos"][1]["funcname"] = "SetCursorPos" defs["igSetCursorPos"][1]["namespace"] = "ImGui" @@ -20926,7 +20416,6 @@ defs["igSetCursorPosX"][1]["argsT"][1]["type"] = "float" defs["igSetCursorPosX"][1]["argsoriginal"] = "(float local_x)" defs["igSetCursorPosX"][1]["call_args"] = "(local_x)" defs["igSetCursorPosX"][1]["cimguiname"] = "igSetCursorPosX" -defs["igSetCursorPosX"][1]["comment"] = "" defs["igSetCursorPosX"][1]["defaults"] = {} defs["igSetCursorPosX"][1]["funcname"] = "SetCursorPosX" defs["igSetCursorPosX"][1]["namespace"] = "ImGui" @@ -20945,7 +20434,6 @@ defs["igSetCursorPosY"][1]["argsT"][1]["type"] = "float" defs["igSetCursorPosY"][1]["argsoriginal"] = "(float local_y)" defs["igSetCursorPosY"][1]["call_args"] = "(local_y)" defs["igSetCursorPosY"][1]["cimguiname"] = "igSetCursorPosY" -defs["igSetCursorPosY"][1]["comment"] = "" defs["igSetCursorPosY"][1]["defaults"] = {} defs["igSetCursorPosY"][1]["funcname"] = "SetCursorPosY" defs["igSetCursorPosY"][1]["namespace"] = "ImGui" @@ -20964,7 +20452,6 @@ defs["igSetCursorScreenPos"][1]["argsT"][1]["type"] = "const ImVec2" defs["igSetCursorScreenPos"][1]["argsoriginal"] = "(const ImVec2& pos)" defs["igSetCursorScreenPos"][1]["call_args"] = "(pos)" defs["igSetCursorScreenPos"][1]["cimguiname"] = "igSetCursorScreenPos" -defs["igSetCursorScreenPos"][1]["comment"] = "" defs["igSetCursorScreenPos"][1]["defaults"] = {} defs["igSetCursorScreenPos"][1]["funcname"] = "SetCursorScreenPos" defs["igSetCursorScreenPos"][1]["namespace"] = "ImGui" @@ -20992,7 +20479,6 @@ defs["igSetDragDropPayload"][1]["argsT"][4]["type"] = "ImGuiCond" defs["igSetDragDropPayload"][1]["argsoriginal"] = "(const char* type,const void* data,size_t size,ImGuiCond cond=0)" defs["igSetDragDropPayload"][1]["call_args"] = "(type,data,size,cond)" defs["igSetDragDropPayload"][1]["cimguiname"] = "igSetDragDropPayload" -defs["igSetDragDropPayload"][1]["comment"] = "" defs["igSetDragDropPayload"][1]["defaults"] = {} defs["igSetDragDropPayload"][1]["defaults"]["cond"] = "0" defs["igSetDragDropPayload"][1]["funcname"] = "SetDragDropPayload" @@ -21009,7 +20495,6 @@ defs["igSetItemAllowOverlap"][1]["argsT"] = {} defs["igSetItemAllowOverlap"][1]["argsoriginal"] = "()" defs["igSetItemAllowOverlap"][1]["call_args"] = "()" defs["igSetItemAllowOverlap"][1]["cimguiname"] = "igSetItemAllowOverlap" -defs["igSetItemAllowOverlap"][1]["comment"] = "" defs["igSetItemAllowOverlap"][1]["defaults"] = {} defs["igSetItemAllowOverlap"][1]["funcname"] = "SetItemAllowOverlap" defs["igSetItemAllowOverlap"][1]["namespace"] = "ImGui" @@ -21025,7 +20510,6 @@ defs["igSetItemDefaultFocus"][1]["argsT"] = {} defs["igSetItemDefaultFocus"][1]["argsoriginal"] = "()" defs["igSetItemDefaultFocus"][1]["call_args"] = "()" defs["igSetItemDefaultFocus"][1]["cimguiname"] = "igSetItemDefaultFocus" -defs["igSetItemDefaultFocus"][1]["comment"] = "" defs["igSetItemDefaultFocus"][1]["defaults"] = {} defs["igSetItemDefaultFocus"][1]["funcname"] = "SetItemDefaultFocus" defs["igSetItemDefaultFocus"][1]["namespace"] = "ImGui" @@ -21044,7 +20528,6 @@ defs["igSetKeyboardFocusHere"][1]["argsT"][1]["type"] = "int" defs["igSetKeyboardFocusHere"][1]["argsoriginal"] = "(int offset=0)" defs["igSetKeyboardFocusHere"][1]["call_args"] = "(offset)" defs["igSetKeyboardFocusHere"][1]["cimguiname"] = "igSetKeyboardFocusHere" -defs["igSetKeyboardFocusHere"][1]["comment"] = "" defs["igSetKeyboardFocusHere"][1]["defaults"] = {} defs["igSetKeyboardFocusHere"][1]["defaults"]["offset"] = "0" defs["igSetKeyboardFocusHere"][1]["funcname"] = "SetKeyboardFocusHere" @@ -21064,7 +20547,6 @@ defs["igSetMouseCursor"][1]["argsT"][1]["type"] = "ImGuiMouseCursor" defs["igSetMouseCursor"][1]["argsoriginal"] = "(ImGuiMouseCursor type)" defs["igSetMouseCursor"][1]["call_args"] = "(type)" defs["igSetMouseCursor"][1]["cimguiname"] = "igSetMouseCursor" -defs["igSetMouseCursor"][1]["comment"] = "" defs["igSetMouseCursor"][1]["defaults"] = {} defs["igSetMouseCursor"][1]["funcname"] = "SetMouseCursor" defs["igSetMouseCursor"][1]["namespace"] = "ImGui" @@ -21086,7 +20568,6 @@ defs["igSetNextTreeNodeOpen"][1]["argsT"][2]["type"] = "ImGuiCond" defs["igSetNextTreeNodeOpen"][1]["argsoriginal"] = "(bool is_open,ImGuiCond cond=0)" defs["igSetNextTreeNodeOpen"][1]["call_args"] = "(is_open,cond)" defs["igSetNextTreeNodeOpen"][1]["cimguiname"] = "igSetNextTreeNodeOpen" -defs["igSetNextTreeNodeOpen"][1]["comment"] = "" defs["igSetNextTreeNodeOpen"][1]["defaults"] = {} defs["igSetNextTreeNodeOpen"][1]["defaults"]["cond"] = "0" defs["igSetNextTreeNodeOpen"][1]["funcname"] = "SetNextTreeNodeOpen" @@ -21106,7 +20587,6 @@ defs["igSetNextWindowBgAlpha"][1]["argsT"][1]["type"] = "float" defs["igSetNextWindowBgAlpha"][1]["argsoriginal"] = "(float alpha)" defs["igSetNextWindowBgAlpha"][1]["call_args"] = "(alpha)" defs["igSetNextWindowBgAlpha"][1]["cimguiname"] = "igSetNextWindowBgAlpha" -defs["igSetNextWindowBgAlpha"][1]["comment"] = "" defs["igSetNextWindowBgAlpha"][1]["defaults"] = {} defs["igSetNextWindowBgAlpha"][1]["funcname"] = "SetNextWindowBgAlpha" defs["igSetNextWindowBgAlpha"][1]["namespace"] = "ImGui" @@ -21128,7 +20608,6 @@ defs["igSetNextWindowCollapsed"][1]["argsT"][2]["type"] = "ImGuiCond" defs["igSetNextWindowCollapsed"][1]["argsoriginal"] = "(bool collapsed,ImGuiCond cond=0)" defs["igSetNextWindowCollapsed"][1]["call_args"] = "(collapsed,cond)" defs["igSetNextWindowCollapsed"][1]["cimguiname"] = "igSetNextWindowCollapsed" -defs["igSetNextWindowCollapsed"][1]["comment"] = "" defs["igSetNextWindowCollapsed"][1]["defaults"] = {} defs["igSetNextWindowCollapsed"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowCollapsed"][1]["funcname"] = "SetNextWindowCollapsed" @@ -21148,7 +20627,6 @@ defs["igSetNextWindowContentSize"][1]["argsT"][1]["type"] = "const ImVec2" defs["igSetNextWindowContentSize"][1]["argsoriginal"] = "(const ImVec2& size)" defs["igSetNextWindowContentSize"][1]["call_args"] = "(size)" defs["igSetNextWindowContentSize"][1]["cimguiname"] = "igSetNextWindowContentSize" -defs["igSetNextWindowContentSize"][1]["comment"] = "" defs["igSetNextWindowContentSize"][1]["defaults"] = {} defs["igSetNextWindowContentSize"][1]["funcname"] = "SetNextWindowContentSize" defs["igSetNextWindowContentSize"][1]["namespace"] = "ImGui" @@ -21164,7 +20642,6 @@ defs["igSetNextWindowFocus"][1]["argsT"] = {} defs["igSetNextWindowFocus"][1]["argsoriginal"] = "()" defs["igSetNextWindowFocus"][1]["call_args"] = "()" defs["igSetNextWindowFocus"][1]["cimguiname"] = "igSetNextWindowFocus" -defs["igSetNextWindowFocus"][1]["comment"] = "" defs["igSetNextWindowFocus"][1]["defaults"] = {} defs["igSetNextWindowFocus"][1]["funcname"] = "SetNextWindowFocus" defs["igSetNextWindowFocus"][1]["namespace"] = "ImGui" @@ -21189,7 +20666,6 @@ defs["igSetNextWindowPos"][1]["argsT"][3]["type"] = "const ImVec2" defs["igSetNextWindowPos"][1]["argsoriginal"] = "(const ImVec2& pos,ImGuiCond cond=0,const ImVec2& pivot=ImVec2(0,0))" defs["igSetNextWindowPos"][1]["call_args"] = "(pos,cond,pivot)" defs["igSetNextWindowPos"][1]["cimguiname"] = "igSetNextWindowPos" -defs["igSetNextWindowPos"][1]["comment"] = "" defs["igSetNextWindowPos"][1]["defaults"] = {} defs["igSetNextWindowPos"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowPos"][1]["defaults"]["pivot"] = "ImVec2(0,0)" @@ -21213,7 +20689,6 @@ defs["igSetNextWindowSize"][1]["argsT"][2]["type"] = "ImGuiCond" defs["igSetNextWindowSize"][1]["argsoriginal"] = "(const ImVec2& size,ImGuiCond cond=0)" defs["igSetNextWindowSize"][1]["call_args"] = "(size,cond)" defs["igSetNextWindowSize"][1]["cimguiname"] = "igSetNextWindowSize" -defs["igSetNextWindowSize"][1]["comment"] = "" defs["igSetNextWindowSize"][1]["defaults"] = {} defs["igSetNextWindowSize"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowSize"][1]["funcname"] = "SetNextWindowSize" @@ -21242,7 +20717,6 @@ defs["igSetNextWindowSizeConstraints"][1]["argsT"][4]["type"] = "void*" defs["igSetNextWindowSizeConstraints"][1]["argsoriginal"] = "(const ImVec2& size_min,const ImVec2& size_max,ImGuiSizeCallback custom_callback=((void*)0),void* custom_callback_data=((void*)0))" defs["igSetNextWindowSizeConstraints"][1]["call_args"] = "(size_min,size_max,custom_callback,custom_callback_data)" defs["igSetNextWindowSizeConstraints"][1]["cimguiname"] = "igSetNextWindowSizeConstraints" -defs["igSetNextWindowSizeConstraints"][1]["comment"] = "" defs["igSetNextWindowSizeConstraints"][1]["defaults"] = {} defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback"] = "((void*)0)" defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback_data"] = "((void*)0)" @@ -21266,7 +20740,6 @@ defs["igSetScrollFromPosY"][1]["argsT"][2]["type"] = "float" defs["igSetScrollFromPosY"][1]["argsoriginal"] = "(float local_y,float center_y_ratio=0.5f)" defs["igSetScrollFromPosY"][1]["call_args"] = "(local_y,center_y_ratio)" defs["igSetScrollFromPosY"][1]["cimguiname"] = "igSetScrollFromPosY" -defs["igSetScrollFromPosY"][1]["comment"] = "" defs["igSetScrollFromPosY"][1]["defaults"] = {} defs["igSetScrollFromPosY"][1]["defaults"]["center_y_ratio"] = "0.5f" defs["igSetScrollFromPosY"][1]["funcname"] = "SetScrollFromPosY" @@ -21286,7 +20759,6 @@ defs["igSetScrollHereY"][1]["argsT"][1]["type"] = "float" defs["igSetScrollHereY"][1]["argsoriginal"] = "(float center_y_ratio=0.5f)" defs["igSetScrollHereY"][1]["call_args"] = "(center_y_ratio)" defs["igSetScrollHereY"][1]["cimguiname"] = "igSetScrollHereY" -defs["igSetScrollHereY"][1]["comment"] = "" defs["igSetScrollHereY"][1]["defaults"] = {} defs["igSetScrollHereY"][1]["defaults"]["center_y_ratio"] = "0.5f" defs["igSetScrollHereY"][1]["funcname"] = "SetScrollHereY" @@ -21306,7 +20778,6 @@ defs["igSetScrollX"][1]["argsT"][1]["type"] = "float" defs["igSetScrollX"][1]["argsoriginal"] = "(float scroll_x)" defs["igSetScrollX"][1]["call_args"] = "(scroll_x)" defs["igSetScrollX"][1]["cimguiname"] = "igSetScrollX" -defs["igSetScrollX"][1]["comment"] = "" defs["igSetScrollX"][1]["defaults"] = {} defs["igSetScrollX"][1]["funcname"] = "SetScrollX" defs["igSetScrollX"][1]["namespace"] = "ImGui" @@ -21325,7 +20796,6 @@ defs["igSetScrollY"][1]["argsT"][1]["type"] = "float" defs["igSetScrollY"][1]["argsoriginal"] = "(float scroll_y)" defs["igSetScrollY"][1]["call_args"] = "(scroll_y)" defs["igSetScrollY"][1]["cimguiname"] = "igSetScrollY" -defs["igSetScrollY"][1]["comment"] = "" defs["igSetScrollY"][1]["defaults"] = {} defs["igSetScrollY"][1]["funcname"] = "SetScrollY" defs["igSetScrollY"][1]["namespace"] = "ImGui" @@ -21344,7 +20814,6 @@ defs["igSetStateStorage"][1]["argsT"][1]["type"] = "ImGuiStorage*" defs["igSetStateStorage"][1]["argsoriginal"] = "(ImGuiStorage* storage)" defs["igSetStateStorage"][1]["call_args"] = "(storage)" defs["igSetStateStorage"][1]["cimguiname"] = "igSetStateStorage" -defs["igSetStateStorage"][1]["comment"] = "" defs["igSetStateStorage"][1]["defaults"] = {} defs["igSetStateStorage"][1]["funcname"] = "SetStateStorage" defs["igSetStateStorage"][1]["namespace"] = "ImGui" @@ -21363,7 +20832,6 @@ defs["igSetTabItemClosed"][1]["argsT"][1]["type"] = "const char*" defs["igSetTabItemClosed"][1]["argsoriginal"] = "(const char* tab_or_docked_window_label)" defs["igSetTabItemClosed"][1]["call_args"] = "(tab_or_docked_window_label)" defs["igSetTabItemClosed"][1]["cimguiname"] = "igSetTabItemClosed" -defs["igSetTabItemClosed"][1]["comment"] = "" defs["igSetTabItemClosed"][1]["defaults"] = {} defs["igSetTabItemClosed"][1]["funcname"] = "SetTabItemClosed" defs["igSetTabItemClosed"][1]["namespace"] = "ImGui" @@ -21385,7 +20853,6 @@ defs["igSetTooltip"][1]["argsT"][2]["type"] = "..." defs["igSetTooltip"][1]["argsoriginal"] = "(const char* fmt,...)" defs["igSetTooltip"][1]["call_args"] = "(fmt,...)" defs["igSetTooltip"][1]["cimguiname"] = "igSetTooltip" -defs["igSetTooltip"][1]["comment"] = "" defs["igSetTooltip"][1]["defaults"] = {} defs["igSetTooltip"][1]["funcname"] = "SetTooltip" defs["igSetTooltip"][1]["isvararg"] = "...)" @@ -21408,7 +20875,6 @@ defs["igSetTooltipV"][1]["argsT"][2]["type"] = "va_list" defs["igSetTooltipV"][1]["argsoriginal"] = "(const char* fmt,va_list args)" defs["igSetTooltipV"][1]["call_args"] = "(fmt,args)" defs["igSetTooltipV"][1]["cimguiname"] = "igSetTooltipV" -defs["igSetTooltipV"][1]["comment"] = "" defs["igSetTooltipV"][1]["defaults"] = {} defs["igSetTooltipV"][1]["funcname"] = "SetTooltipV" defs["igSetTooltipV"][1]["namespace"] = "ImGui" @@ -21430,7 +20896,6 @@ defs["igSetWindowCollapsed"][1]["argsT"][2]["type"] = "ImGuiCond" defs["igSetWindowCollapsed"][1]["argsoriginal"] = "(bool collapsed,ImGuiCond cond=0)" defs["igSetWindowCollapsed"][1]["call_args"] = "(collapsed,cond)" defs["igSetWindowCollapsed"][1]["cimguiname"] = "igSetWindowCollapsed" -defs["igSetWindowCollapsed"][1]["comment"] = "" defs["igSetWindowCollapsed"][1]["defaults"] = {} defs["igSetWindowCollapsed"][1]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][1]["funcname"] = "SetWindowCollapsed" @@ -21454,7 +20919,6 @@ defs["igSetWindowCollapsed"][2]["argsT"][3]["type"] = "ImGuiCond" defs["igSetWindowCollapsed"][2]["argsoriginal"] = "(const char* name,bool collapsed,ImGuiCond cond=0)" defs["igSetWindowCollapsed"][2]["call_args"] = "(name,collapsed,cond)" defs["igSetWindowCollapsed"][2]["cimguiname"] = "igSetWindowCollapsed" -defs["igSetWindowCollapsed"][2]["comment"] = "" defs["igSetWindowCollapsed"][2]["defaults"] = {} defs["igSetWindowCollapsed"][2]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][2]["funcname"] = "SetWindowCollapsed" @@ -21472,7 +20936,6 @@ defs["igSetWindowFocus"][1]["argsT"] = {} defs["igSetWindowFocus"][1]["argsoriginal"] = "()" defs["igSetWindowFocus"][1]["call_args"] = "()" defs["igSetWindowFocus"][1]["cimguiname"] = "igSetWindowFocus" -defs["igSetWindowFocus"][1]["comment"] = "" defs["igSetWindowFocus"][1]["defaults"] = {} defs["igSetWindowFocus"][1]["funcname"] = "SetWindowFocus" defs["igSetWindowFocus"][1]["namespace"] = "ImGui" @@ -21489,7 +20952,6 @@ defs["igSetWindowFocus"][2]["argsT"][1]["type"] = "const char*" defs["igSetWindowFocus"][2]["argsoriginal"] = "(const char* name)" defs["igSetWindowFocus"][2]["call_args"] = "(name)" defs["igSetWindowFocus"][2]["cimguiname"] = "igSetWindowFocus" -defs["igSetWindowFocus"][2]["comment"] = "" defs["igSetWindowFocus"][2]["defaults"] = {} defs["igSetWindowFocus"][2]["funcname"] = "SetWindowFocus" defs["igSetWindowFocus"][2]["namespace"] = "ImGui" @@ -21509,7 +20971,6 @@ defs["igSetWindowFontScale"][1]["argsT"][1]["type"] = "float" defs["igSetWindowFontScale"][1]["argsoriginal"] = "(float scale)" defs["igSetWindowFontScale"][1]["call_args"] = "(scale)" defs["igSetWindowFontScale"][1]["cimguiname"] = "igSetWindowFontScale" -defs["igSetWindowFontScale"][1]["comment"] = "" defs["igSetWindowFontScale"][1]["defaults"] = {} defs["igSetWindowFontScale"][1]["funcname"] = "SetWindowFontScale" defs["igSetWindowFontScale"][1]["namespace"] = "ImGui" @@ -21531,7 +20992,6 @@ defs["igSetWindowPos"][1]["argsT"][2]["type"] = "ImGuiCond" defs["igSetWindowPos"][1]["argsoriginal"] = "(const ImVec2& pos,ImGuiCond cond=0)" defs["igSetWindowPos"][1]["call_args"] = "(pos,cond)" defs["igSetWindowPos"][1]["cimguiname"] = "igSetWindowPos" -defs["igSetWindowPos"][1]["comment"] = "" defs["igSetWindowPos"][1]["defaults"] = {} defs["igSetWindowPos"][1]["defaults"]["cond"] = "0" defs["igSetWindowPos"][1]["funcname"] = "SetWindowPos" @@ -21555,7 +21015,6 @@ defs["igSetWindowPos"][2]["argsT"][3]["type"] = "ImGuiCond" defs["igSetWindowPos"][2]["argsoriginal"] = "(const char* name,const ImVec2& pos,ImGuiCond cond=0)" defs["igSetWindowPos"][2]["call_args"] = "(name,pos,cond)" defs["igSetWindowPos"][2]["cimguiname"] = "igSetWindowPos" -defs["igSetWindowPos"][2]["comment"] = "" defs["igSetWindowPos"][2]["defaults"] = {} defs["igSetWindowPos"][2]["defaults"]["cond"] = "0" defs["igSetWindowPos"][2]["funcname"] = "SetWindowPos" @@ -21579,7 +21038,6 @@ defs["igSetWindowSize"][1]["argsT"][2]["type"] = "ImGuiCond" defs["igSetWindowSize"][1]["argsoriginal"] = "(const ImVec2& size,ImGuiCond cond=0)" defs["igSetWindowSize"][1]["call_args"] = "(size,cond)" defs["igSetWindowSize"][1]["cimguiname"] = "igSetWindowSize" -defs["igSetWindowSize"][1]["comment"] = "" defs["igSetWindowSize"][1]["defaults"] = {} defs["igSetWindowSize"][1]["defaults"]["cond"] = "0" defs["igSetWindowSize"][1]["funcname"] = "SetWindowSize" @@ -21603,7 +21061,6 @@ defs["igSetWindowSize"][2]["argsT"][3]["type"] = "ImGuiCond" defs["igSetWindowSize"][2]["argsoriginal"] = "(const char* name,const ImVec2& size,ImGuiCond cond=0)" defs["igSetWindowSize"][2]["call_args"] = "(name,size,cond)" defs["igSetWindowSize"][2]["cimguiname"] = "igSetWindowSize" -defs["igSetWindowSize"][2]["comment"] = "" defs["igSetWindowSize"][2]["defaults"] = {} defs["igSetWindowSize"][2]["defaults"]["cond"] = "0" defs["igSetWindowSize"][2]["funcname"] = "SetWindowSize" @@ -21624,7 +21081,6 @@ defs["igShowAboutWindow"][1]["argsT"][1]["type"] = "bool*" defs["igShowAboutWindow"][1]["argsoriginal"] = "(bool* p_open=((void*)0))" defs["igShowAboutWindow"][1]["call_args"] = "(p_open)" defs["igShowAboutWindow"][1]["cimguiname"] = "igShowAboutWindow" -defs["igShowAboutWindow"][1]["comment"] = "" defs["igShowAboutWindow"][1]["defaults"] = {} defs["igShowAboutWindow"][1]["defaults"]["p_open"] = "((void*)0)" defs["igShowAboutWindow"][1]["funcname"] = "ShowAboutWindow" @@ -21644,7 +21100,6 @@ defs["igShowDemoWindow"][1]["argsT"][1]["type"] = "bool*" defs["igShowDemoWindow"][1]["argsoriginal"] = "(bool* p_open=((void*)0))" defs["igShowDemoWindow"][1]["call_args"] = "(p_open)" defs["igShowDemoWindow"][1]["cimguiname"] = "igShowDemoWindow" -defs["igShowDemoWindow"][1]["comment"] = "" defs["igShowDemoWindow"][1]["defaults"] = {} defs["igShowDemoWindow"][1]["defaults"]["p_open"] = "((void*)0)" defs["igShowDemoWindow"][1]["funcname"] = "ShowDemoWindow" @@ -21664,7 +21119,6 @@ defs["igShowFontSelector"][1]["argsT"][1]["type"] = "const char*" defs["igShowFontSelector"][1]["argsoriginal"] = "(const char* label)" defs["igShowFontSelector"][1]["call_args"] = "(label)" defs["igShowFontSelector"][1]["cimguiname"] = "igShowFontSelector" -defs["igShowFontSelector"][1]["comment"] = "" defs["igShowFontSelector"][1]["defaults"] = {} defs["igShowFontSelector"][1]["funcname"] = "ShowFontSelector" defs["igShowFontSelector"][1]["namespace"] = "ImGui" @@ -21683,7 +21137,6 @@ defs["igShowMetricsWindow"][1]["argsT"][1]["type"] = "bool*" defs["igShowMetricsWindow"][1]["argsoriginal"] = "(bool* p_open=((void*)0))" defs["igShowMetricsWindow"][1]["call_args"] = "(p_open)" defs["igShowMetricsWindow"][1]["cimguiname"] = "igShowMetricsWindow" -defs["igShowMetricsWindow"][1]["comment"] = "" defs["igShowMetricsWindow"][1]["defaults"] = {} defs["igShowMetricsWindow"][1]["defaults"]["p_open"] = "((void*)0)" defs["igShowMetricsWindow"][1]["funcname"] = "ShowMetricsWindow" @@ -21703,7 +21156,6 @@ defs["igShowStyleEditor"][1]["argsT"][1]["type"] = "ImGuiStyle*" defs["igShowStyleEditor"][1]["argsoriginal"] = "(ImGuiStyle* ref=((void*)0))" defs["igShowStyleEditor"][1]["call_args"] = "(ref)" defs["igShowStyleEditor"][1]["cimguiname"] = "igShowStyleEditor" -defs["igShowStyleEditor"][1]["comment"] = "" defs["igShowStyleEditor"][1]["defaults"] = {} defs["igShowStyleEditor"][1]["defaults"]["ref"] = "((void*)0)" defs["igShowStyleEditor"][1]["funcname"] = "ShowStyleEditor" @@ -21723,7 +21175,6 @@ defs["igShowStyleSelector"][1]["argsT"][1]["type"] = "const char*" defs["igShowStyleSelector"][1]["argsoriginal"] = "(const char* label)" defs["igShowStyleSelector"][1]["call_args"] = "(label)" defs["igShowStyleSelector"][1]["cimguiname"] = "igShowStyleSelector" -defs["igShowStyleSelector"][1]["comment"] = "" defs["igShowStyleSelector"][1]["defaults"] = {} defs["igShowStyleSelector"][1]["funcname"] = "ShowStyleSelector" defs["igShowStyleSelector"][1]["namespace"] = "ImGui" @@ -21739,7 +21190,6 @@ defs["igShowUserGuide"][1]["argsT"] = {} defs["igShowUserGuide"][1]["argsoriginal"] = "()" defs["igShowUserGuide"][1]["call_args"] = "()" defs["igShowUserGuide"][1]["cimguiname"] = "igShowUserGuide" -defs["igShowUserGuide"][1]["comment"] = "" defs["igShowUserGuide"][1]["defaults"] = {} defs["igShowUserGuide"][1]["funcname"] = "ShowUserGuide" defs["igShowUserGuide"][1]["namespace"] = "ImGui" @@ -21770,7 +21220,6 @@ defs["igSliderAngle"][1]["argsT"][5]["type"] = "const char*" defs["igSliderAngle"][1]["argsoriginal"] = "(const char* label,float* v_rad,float v_degrees_min=-360.0f,float v_degrees_max=+360.0f,const char* format=\"%.0f deg\")" defs["igSliderAngle"][1]["call_args"] = "(label,v_rad,v_degrees_min,v_degrees_max,format)" defs["igSliderAngle"][1]["cimguiname"] = "igSliderAngle" -defs["igSliderAngle"][1]["comment"] = "" defs["igSliderAngle"][1]["defaults"] = {} defs["igSliderAngle"][1]["defaults"]["format"] = "\"%.0f deg\"" defs["igSliderAngle"][1]["defaults"]["v_degrees_max"] = "+360.0f" @@ -21807,7 +21256,6 @@ defs["igSliderFloat"][1]["argsT"][6]["type"] = "float" defs["igSliderFloat"][1]["argsoriginal"] = "(const char* label,float* v,float v_min,float v_max,const char* format=\"%.3f\",float power=1.0f)" defs["igSliderFloat"][1]["call_args"] = "(label,v,v_min,v_max,format,power)" defs["igSliderFloat"][1]["cimguiname"] = "igSliderFloat" -defs["igSliderFloat"][1]["comment"] = "" defs["igSliderFloat"][1]["defaults"] = {} defs["igSliderFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat"][1]["defaults"]["power"] = "1.0f" @@ -21843,7 +21291,6 @@ defs["igSliderFloat2"][1]["argsT"][6]["type"] = "float" defs["igSliderFloat2"][1]["argsoriginal"] = "(const char* label,float v[2],float v_min,float v_max,const char* format=\"%.3f\",float power=1.0f)" defs["igSliderFloat2"][1]["call_args"] = "(label,v,v_min,v_max,format,power)" defs["igSliderFloat2"][1]["cimguiname"] = "igSliderFloat2" -defs["igSliderFloat2"][1]["comment"] = "" defs["igSliderFloat2"][1]["defaults"] = {} defs["igSliderFloat2"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat2"][1]["defaults"]["power"] = "1.0f" @@ -21879,7 +21326,6 @@ defs["igSliderFloat3"][1]["argsT"][6]["type"] = "float" defs["igSliderFloat3"][1]["argsoriginal"] = "(const char* label,float v[3],float v_min,float v_max,const char* format=\"%.3f\",float power=1.0f)" defs["igSliderFloat3"][1]["call_args"] = "(label,v,v_min,v_max,format,power)" defs["igSliderFloat3"][1]["cimguiname"] = "igSliderFloat3" -defs["igSliderFloat3"][1]["comment"] = "" defs["igSliderFloat3"][1]["defaults"] = {} defs["igSliderFloat3"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat3"][1]["defaults"]["power"] = "1.0f" @@ -21915,7 +21361,6 @@ defs["igSliderFloat4"][1]["argsT"][6]["type"] = "float" defs["igSliderFloat4"][1]["argsoriginal"] = "(const char* label,float v[4],float v_min,float v_max,const char* format=\"%.3f\",float power=1.0f)" defs["igSliderFloat4"][1]["call_args"] = "(label,v,v_min,v_max,format,power)" defs["igSliderFloat4"][1]["cimguiname"] = "igSliderFloat4" -defs["igSliderFloat4"][1]["comment"] = "" defs["igSliderFloat4"][1]["defaults"] = {} defs["igSliderFloat4"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat4"][1]["defaults"]["power"] = "1.0f" @@ -21948,7 +21393,6 @@ defs["igSliderInt"][1]["argsT"][5]["type"] = "const char*" defs["igSliderInt"][1]["argsoriginal"] = "(const char* label,int* v,int v_min,int v_max,const char* format=\"%d\")" defs["igSliderInt"][1]["call_args"] = "(label,v,v_min,v_max,format)" defs["igSliderInt"][1]["cimguiname"] = "igSliderInt" -defs["igSliderInt"][1]["comment"] = "" defs["igSliderInt"][1]["defaults"] = {} defs["igSliderInt"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt"][1]["funcname"] = "SliderInt" @@ -21980,7 +21424,6 @@ defs["igSliderInt2"][1]["argsT"][5]["type"] = "const char*" defs["igSliderInt2"][1]["argsoriginal"] = "(const char* label,int v[2],int v_min,int v_max,const char* format=\"%d\")" defs["igSliderInt2"][1]["call_args"] = "(label,v,v_min,v_max,format)" defs["igSliderInt2"][1]["cimguiname"] = "igSliderInt2" -defs["igSliderInt2"][1]["comment"] = "" defs["igSliderInt2"][1]["defaults"] = {} defs["igSliderInt2"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt2"][1]["funcname"] = "SliderInt2" @@ -22012,7 +21455,6 @@ defs["igSliderInt3"][1]["argsT"][5]["type"] = "const char*" defs["igSliderInt3"][1]["argsoriginal"] = "(const char* label,int v[3],int v_min,int v_max,const char* format=\"%d\")" defs["igSliderInt3"][1]["call_args"] = "(label,v,v_min,v_max,format)" defs["igSliderInt3"][1]["cimguiname"] = "igSliderInt3" -defs["igSliderInt3"][1]["comment"] = "" defs["igSliderInt3"][1]["defaults"] = {} defs["igSliderInt3"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt3"][1]["funcname"] = "SliderInt3" @@ -22044,7 +21486,6 @@ defs["igSliderInt4"][1]["argsT"][5]["type"] = "const char*" defs["igSliderInt4"][1]["argsoriginal"] = "(const char* label,int v[4],int v_min,int v_max,const char* format=\"%d\")" defs["igSliderInt4"][1]["call_args"] = "(label,v,v_min,v_max,format)" defs["igSliderInt4"][1]["cimguiname"] = "igSliderInt4" -defs["igSliderInt4"][1]["comment"] = "" defs["igSliderInt4"][1]["defaults"] = {} defs["igSliderInt4"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt4"][1]["funcname"] = "SliderInt4" @@ -22082,7 +21523,6 @@ defs["igSliderScalar"][1]["argsT"][7]["type"] = "float" defs["igSliderScalar"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,const void* v_min,const void* v_max,const char* format=((void*)0),float power=1.0f)" defs["igSliderScalar"][1]["call_args"] = "(label,data_type,v,v_min,v_max,format,power)" defs["igSliderScalar"][1]["cimguiname"] = "igSliderScalar" -defs["igSliderScalar"][1]["comment"] = "" defs["igSliderScalar"][1]["defaults"] = {} defs["igSliderScalar"][1]["defaults"]["format"] = "((void*)0)" defs["igSliderScalar"][1]["defaults"]["power"] = "1.0f" @@ -22124,7 +21564,6 @@ defs["igSliderScalarN"][1]["argsT"][8]["type"] = "float" defs["igSliderScalarN"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,int components,const void* v_min,const void* v_max,const char* format=((void*)0),float power=1.0f)" defs["igSliderScalarN"][1]["call_args"] = "(label,data_type,v,components,v_min,v_max,format,power)" defs["igSliderScalarN"][1]["cimguiname"] = "igSliderScalarN" -defs["igSliderScalarN"][1]["comment"] = "" defs["igSliderScalarN"][1]["defaults"] = {} defs["igSliderScalarN"][1]["defaults"]["format"] = "((void*)0)" defs["igSliderScalarN"][1]["defaults"]["power"] = "1.0f" @@ -22145,7 +21584,6 @@ defs["igSmallButton"][1]["argsT"][1]["type"] = "const char*" defs["igSmallButton"][1]["argsoriginal"] = "(const char* label)" defs["igSmallButton"][1]["call_args"] = "(label)" defs["igSmallButton"][1]["cimguiname"] = "igSmallButton" -defs["igSmallButton"][1]["comment"] = "" defs["igSmallButton"][1]["defaults"] = {} defs["igSmallButton"][1]["funcname"] = "SmallButton" defs["igSmallButton"][1]["namespace"] = "ImGui" @@ -22161,7 +21599,6 @@ defs["igSpacing"][1]["argsT"] = {} defs["igSpacing"][1]["argsoriginal"] = "()" defs["igSpacing"][1]["call_args"] = "()" defs["igSpacing"][1]["cimguiname"] = "igSpacing" -defs["igSpacing"][1]["comment"] = "" defs["igSpacing"][1]["defaults"] = {} defs["igSpacing"][1]["funcname"] = "Spacing" defs["igSpacing"][1]["namespace"] = "ImGui" @@ -22180,7 +21617,6 @@ defs["igStyleColorsClassic"][1]["argsT"][1]["type"] = "ImGuiStyle*" defs["igStyleColorsClassic"][1]["argsoriginal"] = "(ImGuiStyle* dst=((void*)0))" defs["igStyleColorsClassic"][1]["call_args"] = "(dst)" defs["igStyleColorsClassic"][1]["cimguiname"] = "igStyleColorsClassic" -defs["igStyleColorsClassic"][1]["comment"] = "" defs["igStyleColorsClassic"][1]["defaults"] = {} defs["igStyleColorsClassic"][1]["defaults"]["dst"] = "((void*)0)" defs["igStyleColorsClassic"][1]["funcname"] = "StyleColorsClassic" @@ -22200,7 +21636,6 @@ defs["igStyleColorsDark"][1]["argsT"][1]["type"] = "ImGuiStyle*" defs["igStyleColorsDark"][1]["argsoriginal"] = "(ImGuiStyle* dst=((void*)0))" defs["igStyleColorsDark"][1]["call_args"] = "(dst)" defs["igStyleColorsDark"][1]["cimguiname"] = "igStyleColorsDark" -defs["igStyleColorsDark"][1]["comment"] = "" defs["igStyleColorsDark"][1]["defaults"] = {} defs["igStyleColorsDark"][1]["defaults"]["dst"] = "((void*)0)" defs["igStyleColorsDark"][1]["funcname"] = "StyleColorsDark" @@ -22220,7 +21655,6 @@ defs["igStyleColorsLight"][1]["argsT"][1]["type"] = "ImGuiStyle*" defs["igStyleColorsLight"][1]["argsoriginal"] = "(ImGuiStyle* dst=((void*)0))" defs["igStyleColorsLight"][1]["call_args"] = "(dst)" defs["igStyleColorsLight"][1]["cimguiname"] = "igStyleColorsLight" -defs["igStyleColorsLight"][1]["comment"] = "" defs["igStyleColorsLight"][1]["defaults"] = {} defs["igStyleColorsLight"][1]["defaults"]["dst"] = "((void*)0)" defs["igStyleColorsLight"][1]["funcname"] = "StyleColorsLight" @@ -22243,7 +21677,6 @@ defs["igText"][1]["argsT"][2]["type"] = "..." defs["igText"][1]["argsoriginal"] = "(const char* fmt,...)" defs["igText"][1]["call_args"] = "(fmt,...)" defs["igText"][1]["cimguiname"] = "igText" -defs["igText"][1]["comment"] = "" defs["igText"][1]["defaults"] = {} defs["igText"][1]["funcname"] = "Text" defs["igText"][1]["isvararg"] = "...)" @@ -22269,7 +21702,6 @@ defs["igTextColored"][1]["argsT"][3]["type"] = "..." defs["igTextColored"][1]["argsoriginal"] = "(const ImVec4& col,const char* fmt,...)" defs["igTextColored"][1]["call_args"] = "(col,fmt,...)" defs["igTextColored"][1]["cimguiname"] = "igTextColored" -defs["igTextColored"][1]["comment"] = "" defs["igTextColored"][1]["defaults"] = {} defs["igTextColored"][1]["funcname"] = "TextColored" defs["igTextColored"][1]["isvararg"] = "...)" @@ -22295,7 +21727,6 @@ defs["igTextColoredV"][1]["argsT"][3]["type"] = "va_list" defs["igTextColoredV"][1]["argsoriginal"] = "(const ImVec4& col,const char* fmt,va_list args)" defs["igTextColoredV"][1]["call_args"] = "(col,fmt,args)" defs["igTextColoredV"][1]["cimguiname"] = "igTextColoredV" -defs["igTextColoredV"][1]["comment"] = "" defs["igTextColoredV"][1]["defaults"] = {} defs["igTextColoredV"][1]["funcname"] = "TextColoredV" defs["igTextColoredV"][1]["namespace"] = "ImGui" @@ -22317,7 +21748,6 @@ defs["igTextDisabled"][1]["argsT"][2]["type"] = "..." defs["igTextDisabled"][1]["argsoriginal"] = "(const char* fmt,...)" defs["igTextDisabled"][1]["call_args"] = "(fmt,...)" defs["igTextDisabled"][1]["cimguiname"] = "igTextDisabled" -defs["igTextDisabled"][1]["comment"] = "" defs["igTextDisabled"][1]["defaults"] = {} defs["igTextDisabled"][1]["funcname"] = "TextDisabled" defs["igTextDisabled"][1]["isvararg"] = "...)" @@ -22340,7 +21770,6 @@ defs["igTextDisabledV"][1]["argsT"][2]["type"] = "va_list" defs["igTextDisabledV"][1]["argsoriginal"] = "(const char* fmt,va_list args)" defs["igTextDisabledV"][1]["call_args"] = "(fmt,args)" defs["igTextDisabledV"][1]["cimguiname"] = "igTextDisabledV" -defs["igTextDisabledV"][1]["comment"] = "" defs["igTextDisabledV"][1]["defaults"] = {} defs["igTextDisabledV"][1]["funcname"] = "TextDisabledV" defs["igTextDisabledV"][1]["namespace"] = "ImGui" @@ -22362,7 +21791,6 @@ defs["igTextUnformatted"][1]["argsT"][2]["type"] = "const char*" defs["igTextUnformatted"][1]["argsoriginal"] = "(const char* text,const char* text_end=((void*)0))" defs["igTextUnformatted"][1]["call_args"] = "(text,text_end)" defs["igTextUnformatted"][1]["cimguiname"] = "igTextUnformatted" -defs["igTextUnformatted"][1]["comment"] = "" defs["igTextUnformatted"][1]["defaults"] = {} defs["igTextUnformatted"][1]["defaults"]["text_end"] = "((void*)0)" defs["igTextUnformatted"][1]["funcname"] = "TextUnformatted" @@ -22385,7 +21813,6 @@ defs["igTextV"][1]["argsT"][2]["type"] = "va_list" defs["igTextV"][1]["argsoriginal"] = "(const char* fmt,va_list args)" defs["igTextV"][1]["call_args"] = "(fmt,args)" defs["igTextV"][1]["cimguiname"] = "igTextV" -defs["igTextV"][1]["comment"] = "" defs["igTextV"][1]["defaults"] = {} defs["igTextV"][1]["funcname"] = "TextV" defs["igTextV"][1]["namespace"] = "ImGui" @@ -22407,7 +21834,6 @@ defs["igTextWrapped"][1]["argsT"][2]["type"] = "..." defs["igTextWrapped"][1]["argsoriginal"] = "(const char* fmt,...)" defs["igTextWrapped"][1]["call_args"] = "(fmt,...)" defs["igTextWrapped"][1]["cimguiname"] = "igTextWrapped" -defs["igTextWrapped"][1]["comment"] = "" defs["igTextWrapped"][1]["defaults"] = {} defs["igTextWrapped"][1]["funcname"] = "TextWrapped" defs["igTextWrapped"][1]["isvararg"] = "...)" @@ -22430,7 +21856,6 @@ defs["igTextWrappedV"][1]["argsT"][2]["type"] = "va_list" defs["igTextWrappedV"][1]["argsoriginal"] = "(const char* fmt,va_list args)" defs["igTextWrappedV"][1]["call_args"] = "(fmt,args)" defs["igTextWrappedV"][1]["cimguiname"] = "igTextWrappedV" -defs["igTextWrappedV"][1]["comment"] = "" defs["igTextWrappedV"][1]["defaults"] = {} defs["igTextWrappedV"][1]["funcname"] = "TextWrappedV" defs["igTextWrappedV"][1]["namespace"] = "ImGui" @@ -22446,7 +21871,6 @@ defs["igTreeAdvanceToLabelPos"][1]["argsT"] = {} defs["igTreeAdvanceToLabelPos"][1]["argsoriginal"] = "()" defs["igTreeAdvanceToLabelPos"][1]["call_args"] = "()" defs["igTreeAdvanceToLabelPos"][1]["cimguiname"] = "igTreeAdvanceToLabelPos" -defs["igTreeAdvanceToLabelPos"][1]["comment"] = "" defs["igTreeAdvanceToLabelPos"][1]["defaults"] = {} defs["igTreeAdvanceToLabelPos"][1]["funcname"] = "TreeAdvanceToLabelPos" defs["igTreeAdvanceToLabelPos"][1]["namespace"] = "ImGui" @@ -22465,7 +21889,6 @@ defs["igTreeNode"][1]["argsT"][1]["type"] = "const char*" defs["igTreeNode"][1]["argsoriginal"] = "(const char* label)" defs["igTreeNode"][1]["call_args"] = "(label)" defs["igTreeNode"][1]["cimguiname"] = "igTreeNode" -defs["igTreeNode"][1]["comment"] = "" defs["igTreeNode"][1]["defaults"] = {} defs["igTreeNode"][1]["funcname"] = "TreeNode" defs["igTreeNode"][1]["namespace"] = "ImGui" @@ -22488,7 +21911,6 @@ defs["igTreeNode"][2]["argsT"][3]["type"] = "..." defs["igTreeNode"][2]["argsoriginal"] = "(const char* str_id,const char* fmt,...)" defs["igTreeNode"][2]["call_args"] = "(str_id,fmt,...)" defs["igTreeNode"][2]["cimguiname"] = "igTreeNode" -defs["igTreeNode"][2]["comment"] = "" defs["igTreeNode"][2]["defaults"] = {} defs["igTreeNode"][2]["funcname"] = "TreeNode" defs["igTreeNode"][2]["isvararg"] = "...)" @@ -22512,7 +21934,6 @@ defs["igTreeNode"][3]["argsT"][3]["type"] = "..." defs["igTreeNode"][3]["argsoriginal"] = "(const void* ptr_id,const char* fmt,...)" defs["igTreeNode"][3]["call_args"] = "(ptr_id,fmt,...)" defs["igTreeNode"][3]["cimguiname"] = "igTreeNode" -defs["igTreeNode"][3]["comment"] = "" defs["igTreeNode"][3]["defaults"] = {} defs["igTreeNode"][3]["funcname"] = "TreeNode" defs["igTreeNode"][3]["isvararg"] = "...)" @@ -22537,7 +21958,6 @@ defs["igTreeNodeEx"][1]["argsT"][2]["type"] = "ImGuiTreeNodeFlags" defs["igTreeNodeEx"][1]["argsoriginal"] = "(const char* label,ImGuiTreeNodeFlags flags=0)" defs["igTreeNodeEx"][1]["call_args"] = "(label,flags)" defs["igTreeNodeEx"][1]["cimguiname"] = "igTreeNodeEx" -defs["igTreeNodeEx"][1]["comment"] = "" defs["igTreeNodeEx"][1]["defaults"] = {} defs["igTreeNodeEx"][1]["defaults"]["flags"] = "0" defs["igTreeNodeEx"][1]["funcname"] = "TreeNodeEx" @@ -22564,7 +21984,6 @@ defs["igTreeNodeEx"][2]["argsT"][4]["type"] = "..." defs["igTreeNodeEx"][2]["argsoriginal"] = "(const char* str_id,ImGuiTreeNodeFlags flags,const char* fmt,...)" defs["igTreeNodeEx"][2]["call_args"] = "(str_id,flags,fmt,...)" defs["igTreeNodeEx"][2]["cimguiname"] = "igTreeNodeEx" -defs["igTreeNodeEx"][2]["comment"] = "" defs["igTreeNodeEx"][2]["defaults"] = {} defs["igTreeNodeEx"][2]["funcname"] = "TreeNodeEx" defs["igTreeNodeEx"][2]["isvararg"] = "...)" @@ -22591,7 +22010,6 @@ defs["igTreeNodeEx"][3]["argsT"][4]["type"] = "..." defs["igTreeNodeEx"][3]["argsoriginal"] = "(const void* ptr_id,ImGuiTreeNodeFlags flags,const char* fmt,...)" defs["igTreeNodeEx"][3]["call_args"] = "(ptr_id,flags,fmt,...)" defs["igTreeNodeEx"][3]["cimguiname"] = "igTreeNodeEx" -defs["igTreeNodeEx"][3]["comment"] = "" defs["igTreeNodeEx"][3]["defaults"] = {} defs["igTreeNodeEx"][3]["funcname"] = "TreeNodeEx" defs["igTreeNodeEx"][3]["isvararg"] = "...)" @@ -22622,7 +22040,6 @@ defs["igTreeNodeExV"][1]["argsT"][4]["type"] = "va_list" defs["igTreeNodeExV"][1]["argsoriginal"] = "(const char* str_id,ImGuiTreeNodeFlags flags,const char* fmt,va_list args)" defs["igTreeNodeExV"][1]["call_args"] = "(str_id,flags,fmt,args)" defs["igTreeNodeExV"][1]["cimguiname"] = "igTreeNodeExV" -defs["igTreeNodeExV"][1]["comment"] = "" defs["igTreeNodeExV"][1]["defaults"] = {} defs["igTreeNodeExV"][1]["funcname"] = "TreeNodeExV" defs["igTreeNodeExV"][1]["namespace"] = "ImGui" @@ -22648,7 +22065,6 @@ defs["igTreeNodeExV"][2]["argsT"][4]["type"] = "va_list" defs["igTreeNodeExV"][2]["argsoriginal"] = "(const void* ptr_id,ImGuiTreeNodeFlags flags,const char* fmt,va_list args)" defs["igTreeNodeExV"][2]["call_args"] = "(ptr_id,flags,fmt,args)" defs["igTreeNodeExV"][2]["cimguiname"] = "igTreeNodeExV" -defs["igTreeNodeExV"][2]["comment"] = "" defs["igTreeNodeExV"][2]["defaults"] = {} defs["igTreeNodeExV"][2]["funcname"] = "TreeNodeExV" defs["igTreeNodeExV"][2]["namespace"] = "ImGui" @@ -22674,7 +22090,6 @@ defs["igTreeNodeV"][1]["argsT"][3]["type"] = "va_list" defs["igTreeNodeV"][1]["argsoriginal"] = "(const char* str_id,const char* fmt,va_list args)" defs["igTreeNodeV"][1]["call_args"] = "(str_id,fmt,args)" defs["igTreeNodeV"][1]["cimguiname"] = "igTreeNodeV" -defs["igTreeNodeV"][1]["comment"] = "" defs["igTreeNodeV"][1]["defaults"] = {} defs["igTreeNodeV"][1]["funcname"] = "TreeNodeV" defs["igTreeNodeV"][1]["namespace"] = "ImGui" @@ -22697,7 +22112,6 @@ defs["igTreeNodeV"][2]["argsT"][3]["type"] = "va_list" defs["igTreeNodeV"][2]["argsoriginal"] = "(const void* ptr_id,const char* fmt,va_list args)" defs["igTreeNodeV"][2]["call_args"] = "(ptr_id,fmt,args)" defs["igTreeNodeV"][2]["cimguiname"] = "igTreeNodeV" -defs["igTreeNodeV"][2]["comment"] = "" defs["igTreeNodeV"][2]["defaults"] = {} defs["igTreeNodeV"][2]["funcname"] = "TreeNodeV" defs["igTreeNodeV"][2]["namespace"] = "ImGui" @@ -22714,7 +22128,6 @@ defs["igTreePop"][1]["argsT"] = {} defs["igTreePop"][1]["argsoriginal"] = "()" defs["igTreePop"][1]["call_args"] = "()" defs["igTreePop"][1]["cimguiname"] = "igTreePop" -defs["igTreePop"][1]["comment"] = "" defs["igTreePop"][1]["defaults"] = {} defs["igTreePop"][1]["funcname"] = "TreePop" defs["igTreePop"][1]["namespace"] = "ImGui" @@ -22733,7 +22146,6 @@ defs["igTreePush"][1]["argsT"][1]["type"] = "const char*" defs["igTreePush"][1]["argsoriginal"] = "(const char* str_id)" defs["igTreePush"][1]["call_args"] = "(str_id)" defs["igTreePush"][1]["cimguiname"] = "igTreePush" -defs["igTreePush"][1]["comment"] = "" defs["igTreePush"][1]["defaults"] = {} defs["igTreePush"][1]["funcname"] = "TreePush" defs["igTreePush"][1]["namespace"] = "ImGui" @@ -22750,7 +22162,6 @@ defs["igTreePush"][2]["argsT"][1]["type"] = "const void*" defs["igTreePush"][2]["argsoriginal"] = "(const void* ptr_id=((void*)0))" defs["igTreePush"][2]["call_args"] = "(ptr_id)" defs["igTreePush"][2]["cimguiname"] = "igTreePush" -defs["igTreePush"][2]["comment"] = "" defs["igTreePush"][2]["defaults"] = {} defs["igTreePush"][2]["defaults"]["ptr_id"] = "((void*)0)" defs["igTreePush"][2]["funcname"] = "TreePush" @@ -22771,7 +22182,6 @@ defs["igUnindent"][1]["argsT"][1]["type"] = "float" defs["igUnindent"][1]["argsoriginal"] = "(float indent_w=0.0f)" defs["igUnindent"][1]["call_args"] = "(indent_w)" defs["igUnindent"][1]["cimguiname"] = "igUnindent" -defs["igUnindent"][1]["comment"] = "" defs["igUnindent"][1]["defaults"] = {} defs["igUnindent"][1]["defaults"]["indent_w"] = "0.0f" defs["igUnindent"][1]["funcname"] = "Unindent" @@ -22809,7 +22219,6 @@ defs["igVSliderFloat"][1]["argsT"][7]["type"] = "float" defs["igVSliderFloat"][1]["argsoriginal"] = "(const char* label,const ImVec2& size,float* v,float v_min,float v_max,const char* format=\"%.3f\",float power=1.0f)" defs["igVSliderFloat"][1]["call_args"] = "(label,size,v,v_min,v_max,format,power)" defs["igVSliderFloat"][1]["cimguiname"] = "igVSliderFloat" -defs["igVSliderFloat"][1]["comment"] = "" defs["igVSliderFloat"][1]["defaults"] = {} defs["igVSliderFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igVSliderFloat"][1]["defaults"]["power"] = "1.0f" @@ -22845,7 +22254,6 @@ defs["igVSliderInt"][1]["argsT"][6]["type"] = "const char*" defs["igVSliderInt"][1]["argsoriginal"] = "(const char* label,const ImVec2& size,int* v,int v_min,int v_max,const char* format=\"%d\")" defs["igVSliderInt"][1]["call_args"] = "(label,size,v,v_min,v_max,format)" defs["igVSliderInt"][1]["cimguiname"] = "igVSliderInt" -defs["igVSliderInt"][1]["comment"] = "" defs["igVSliderInt"][1]["defaults"] = {} defs["igVSliderInt"][1]["defaults"]["format"] = "\"%d\"" defs["igVSliderInt"][1]["funcname"] = "VSliderInt" @@ -22886,7 +22294,6 @@ defs["igVSliderScalar"][1]["argsT"][8]["type"] = "float" defs["igVSliderScalar"][1]["argsoriginal"] = "(const char* label,const ImVec2& size,ImGuiDataType data_type,void* v,const void* v_min,const void* v_max,const char* format=((void*)0),float power=1.0f)" defs["igVSliderScalar"][1]["call_args"] = "(label,size,data_type,v,v_min,v_max,format,power)" defs["igVSliderScalar"][1]["cimguiname"] = "igVSliderScalar" -defs["igVSliderScalar"][1]["comment"] = "" defs["igVSliderScalar"][1]["defaults"] = {} defs["igVSliderScalar"][1]["defaults"]["format"] = "((void*)0)" defs["igVSliderScalar"][1]["defaults"]["power"] = "1.0f" @@ -22910,7 +22317,6 @@ defs["igValue"][1]["argsT"][2]["type"] = "bool" defs["igValue"][1]["argsoriginal"] = "(const char* prefix,bool b)" defs["igValue"][1]["call_args"] = "(prefix,b)" defs["igValue"][1]["cimguiname"] = "igValue" -defs["igValue"][1]["comment"] = "" defs["igValue"][1]["defaults"] = {} defs["igValue"][1]["funcname"] = "Value" defs["igValue"][1]["namespace"] = "ImGui" @@ -22930,7 +22336,6 @@ defs["igValue"][2]["argsT"][2]["type"] = "int" defs["igValue"][2]["argsoriginal"] = "(const char* prefix,int v)" defs["igValue"][2]["call_args"] = "(prefix,v)" defs["igValue"][2]["cimguiname"] = "igValue" -defs["igValue"][2]["comment"] = "" defs["igValue"][2]["defaults"] = {} defs["igValue"][2]["funcname"] = "Value" defs["igValue"][2]["namespace"] = "ImGui" @@ -22950,7 +22355,6 @@ defs["igValue"][3]["argsT"][2]["type"] = "unsigned int" defs["igValue"][3]["argsoriginal"] = "(const char* prefix,unsigned int v)" defs["igValue"][3]["call_args"] = "(prefix,v)" defs["igValue"][3]["cimguiname"] = "igValue" -defs["igValue"][3]["comment"] = "" defs["igValue"][3]["defaults"] = {} defs["igValue"][3]["funcname"] = "Value" defs["igValue"][3]["namespace"] = "ImGui" @@ -22973,7 +22377,6 @@ defs["igValue"][4]["argsT"][3]["type"] = "const char*" defs["igValue"][4]["argsoriginal"] = "(const char* prefix,float v,const char* float_format=((void*)0))" defs["igValue"][4]["call_args"] = "(prefix,v,float_format)" defs["igValue"][4]["cimguiname"] = "igValue" -defs["igValue"][4]["comment"] = "" defs["igValue"][4]["defaults"] = {} defs["igValue"][4]["defaults"]["float_format"] = "((void*)0)" defs["igValue"][4]["funcname"] = "Value" diff --git a/generator/output/impl_definitions.json b/generator/output/impl_definitions.json index 1eb236c..9094d77 100644 --- a/generator/output/impl_definitions.json +++ b/generator/output/impl_definitions.json @@ -15,7 +15,6 @@ "argsoriginal": "(GLFWwindow* window,unsigned int c)", "call_args": "(window,c)", "cimguiname": "ImGui_ImplGlfw_CharCallback", - "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_CharCallback", "ov_cimguiname": "ImGui_ImplGlfw_CharCallback", @@ -40,7 +39,6 @@ "argsoriginal": "(GLFWwindow* window,bool install_callbacks)", "call_args": "(window,install_callbacks)", "cimguiname": "ImGui_ImplGlfw_InitForOpenGL", - "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_InitForOpenGL", "ov_cimguiname": "ImGui_ImplGlfw_InitForOpenGL", @@ -65,7 +63,6 @@ "argsoriginal": "(GLFWwindow* window,bool install_callbacks)", "call_args": "(window,install_callbacks)", "cimguiname": "ImGui_ImplGlfw_InitForVulkan", - "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_InitForVulkan", "ov_cimguiname": "ImGui_ImplGlfw_InitForVulkan", @@ -102,7 +99,6 @@ "argsoriginal": "(GLFWwindow* window,int key,int scancode,int action,int mods)", "call_args": "(window,key,scancode,action,mods)", "cimguiname": "ImGui_ImplGlfw_KeyCallback", - "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_KeyCallback", "ov_cimguiname": "ImGui_ImplGlfw_KeyCallback", @@ -135,7 +131,6 @@ "argsoriginal": "(GLFWwindow* window,int button,int action,int mods)", "call_args": "(window,button,action,mods)", "cimguiname": "ImGui_ImplGlfw_MouseButtonCallback", - "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_MouseButtonCallback", "ov_cimguiname": "ImGui_ImplGlfw_MouseButtonCallback", @@ -151,7 +146,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplGlfw_NewFrame", - "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_NewFrame", "ov_cimguiname": "ImGui_ImplGlfw_NewFrame", @@ -180,7 +174,6 @@ "argsoriginal": "(GLFWwindow* window,double xoffset,double yoffset)", "call_args": "(window,xoffset,yoffset)", "cimguiname": "ImGui_ImplGlfw_ScrollCallback", - "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_ScrollCallback", "ov_cimguiname": "ImGui_ImplGlfw_ScrollCallback", @@ -196,7 +189,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplGlfw_Shutdown", - "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_Shutdown", "ov_cimguiname": "ImGui_ImplGlfw_Shutdown", @@ -212,7 +204,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL2_CreateDeviceObjects", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_CreateDeviceObjects", "ov_cimguiname": "ImGui_ImplOpenGL2_CreateDeviceObjects", @@ -228,7 +219,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL2_CreateFontsTexture", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_CreateFontsTexture", "ov_cimguiname": "ImGui_ImplOpenGL2_CreateFontsTexture", @@ -244,7 +234,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", "ov_cimguiname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", @@ -260,7 +249,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL2_DestroyFontsTexture", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_DestroyFontsTexture", "ov_cimguiname": "ImGui_ImplOpenGL2_DestroyFontsTexture", @@ -276,7 +264,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL2_Init", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_Init", "ov_cimguiname": "ImGui_ImplOpenGL2_Init", @@ -292,7 +279,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL2_NewFrame", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_NewFrame", "ov_cimguiname": "ImGui_ImplOpenGL2_NewFrame", @@ -313,7 +299,6 @@ "argsoriginal": "(ImDrawData* draw_data)", "call_args": "(draw_data)", "cimguiname": "ImGui_ImplOpenGL2_RenderDrawData", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_RenderDrawData", "ov_cimguiname": "ImGui_ImplOpenGL2_RenderDrawData", @@ -329,7 +314,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL2_Shutdown", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_Shutdown", "ov_cimguiname": "ImGui_ImplOpenGL2_Shutdown", @@ -345,7 +329,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL3_CreateDeviceObjects", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL3_CreateDeviceObjects", "ov_cimguiname": "ImGui_ImplOpenGL3_CreateDeviceObjects", @@ -361,7 +344,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL3_CreateFontsTexture", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL3_CreateFontsTexture", "ov_cimguiname": "ImGui_ImplOpenGL3_CreateFontsTexture", @@ -377,7 +359,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", "ov_cimguiname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", @@ -393,7 +374,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL3_DestroyFontsTexture", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL3_DestroyFontsTexture", "ov_cimguiname": "ImGui_ImplOpenGL3_DestroyFontsTexture", @@ -414,7 +394,6 @@ "argsoriginal": "(const char* glsl_version=NULL)", "call_args": "(glsl_version)", "cimguiname": "ImGui_ImplOpenGL3_Init", - "comment": "", "defaults": { "glsl_version": "NULL" }, @@ -432,7 +411,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL3_NewFrame", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL3_NewFrame", "ov_cimguiname": "ImGui_ImplOpenGL3_NewFrame", @@ -453,7 +431,6 @@ "argsoriginal": "(ImDrawData* draw_data)", "call_args": "(draw_data)", "cimguiname": "ImGui_ImplOpenGL3_RenderDrawData", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL3_RenderDrawData", "ov_cimguiname": "ImGui_ImplOpenGL3_RenderDrawData", @@ -469,7 +446,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL3_Shutdown", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL3_Shutdown", "ov_cimguiname": "ImGui_ImplOpenGL3_Shutdown", @@ -494,7 +470,6 @@ "argsoriginal": "(SDL_Window* window,void* sdl_gl_context)", "call_args": "(window,sdl_gl_context)", "cimguiname": "ImGui_ImplSDL2_InitForOpenGL", - "comment": "", "defaults": [], "funcname": "ImGui_ImplSDL2_InitForOpenGL", "ov_cimguiname": "ImGui_ImplSDL2_InitForOpenGL", @@ -515,7 +490,6 @@ "argsoriginal": "(SDL_Window* window)", "call_args": "(window)", "cimguiname": "ImGui_ImplSDL2_InitForVulkan", - "comment": "", "defaults": [], "funcname": "ImGui_ImplSDL2_InitForVulkan", "ov_cimguiname": "ImGui_ImplSDL2_InitForVulkan", @@ -536,7 +510,6 @@ "argsoriginal": "(SDL_Window* window)", "call_args": "(window)", "cimguiname": "ImGui_ImplSDL2_NewFrame", - "comment": "", "defaults": [], "funcname": "ImGui_ImplSDL2_NewFrame", "ov_cimguiname": "ImGui_ImplSDL2_NewFrame", @@ -557,7 +530,6 @@ "argsoriginal": "(const SDL_Event* event)", "call_args": "(event)", "cimguiname": "ImGui_ImplSDL2_ProcessEvent", - "comment": "", "defaults": [], "funcname": "ImGui_ImplSDL2_ProcessEvent", "ov_cimguiname": "ImGui_ImplSDL2_ProcessEvent", @@ -573,7 +545,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplSDL2_Shutdown", - "comment": "", "defaults": [], "funcname": "ImGui_ImplSDL2_Shutdown", "ov_cimguiname": "ImGui_ImplSDL2_Shutdown", diff --git a/generator/output/impl_definitions.lua b/generator/output/impl_definitions.lua index d3bcdd8..f27ecb1 100644 --- a/generator/output/impl_definitions.lua +++ b/generator/output/impl_definitions.lua @@ -12,7 +12,6 @@ defs["ImGui_ImplGlfw_CharCallback"][1]["argsT"][2]["type"] = "unsigned int" defs["ImGui_ImplGlfw_CharCallback"][1]["argsoriginal"] = "(GLFWwindow* window,unsigned int c)" defs["ImGui_ImplGlfw_CharCallback"][1]["call_args"] = "(window,c)" defs["ImGui_ImplGlfw_CharCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CharCallback" -defs["ImGui_ImplGlfw_CharCallback"][1]["comment"] = "" defs["ImGui_ImplGlfw_CharCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_CharCallback"][1]["funcname"] = "ImGui_ImplGlfw_CharCallback" defs["ImGui_ImplGlfw_CharCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CharCallback" @@ -33,7 +32,6 @@ defs["ImGui_ImplGlfw_InitForOpenGL"][1]["argsT"][2]["type"] = "bool" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["argsoriginal"] = "(GLFWwindow* window,bool install_callbacks)" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["call_args"] = "(window,install_callbacks)" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForOpenGL" -defs["ImGui_ImplGlfw_InitForOpenGL"][1]["comment"] = "" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InitForOpenGL"][1]["funcname"] = "ImGui_ImplGlfw_InitForOpenGL" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForOpenGL" @@ -54,7 +52,6 @@ defs["ImGui_ImplGlfw_InitForVulkan"][1]["argsT"][2]["type"] = "bool" defs["ImGui_ImplGlfw_InitForVulkan"][1]["argsoriginal"] = "(GLFWwindow* window,bool install_callbacks)" defs["ImGui_ImplGlfw_InitForVulkan"][1]["call_args"] = "(window,install_callbacks)" defs["ImGui_ImplGlfw_InitForVulkan"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForVulkan" -defs["ImGui_ImplGlfw_InitForVulkan"][1]["comment"] = "" defs["ImGui_ImplGlfw_InitForVulkan"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InitForVulkan"][1]["funcname"] = "ImGui_ImplGlfw_InitForVulkan" defs["ImGui_ImplGlfw_InitForVulkan"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForVulkan" @@ -84,7 +81,6 @@ defs["ImGui_ImplGlfw_KeyCallback"][1]["argsT"][5]["type"] = "int" defs["ImGui_ImplGlfw_KeyCallback"][1]["argsoriginal"] = "(GLFWwindow* window,int key,int scancode,int action,int mods)" defs["ImGui_ImplGlfw_KeyCallback"][1]["call_args"] = "(window,key,scancode,action,mods)" defs["ImGui_ImplGlfw_KeyCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_KeyCallback" -defs["ImGui_ImplGlfw_KeyCallback"][1]["comment"] = "" defs["ImGui_ImplGlfw_KeyCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_KeyCallback"][1]["funcname"] = "ImGui_ImplGlfw_KeyCallback" defs["ImGui_ImplGlfw_KeyCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_KeyCallback" @@ -111,7 +107,6 @@ defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["argsT"][4]["type"] = "int" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["argsoriginal"] = "(GLFWwindow* window,int button,int action,int mods)" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["call_args"] = "(window,button,action,mods)" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_MouseButtonCallback" -defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["comment"] = "" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["funcname"] = "ImGui_ImplGlfw_MouseButtonCallback" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_MouseButtonCallback" @@ -126,7 +121,6 @@ defs["ImGui_ImplGlfw_NewFrame"][1]["argsT"] = {} defs["ImGui_ImplGlfw_NewFrame"][1]["argsoriginal"] = "()" defs["ImGui_ImplGlfw_NewFrame"][1]["call_args"] = "()" defs["ImGui_ImplGlfw_NewFrame"][1]["cimguiname"] = "ImGui_ImplGlfw_NewFrame" -defs["ImGui_ImplGlfw_NewFrame"][1]["comment"] = "" defs["ImGui_ImplGlfw_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplGlfw_NewFrame"][1]["funcname"] = "ImGui_ImplGlfw_NewFrame" defs["ImGui_ImplGlfw_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_NewFrame" @@ -150,7 +144,6 @@ defs["ImGui_ImplGlfw_ScrollCallback"][1]["argsT"][3]["type"] = "double" defs["ImGui_ImplGlfw_ScrollCallback"][1]["argsoriginal"] = "(GLFWwindow* window,double xoffset,double yoffset)" defs["ImGui_ImplGlfw_ScrollCallback"][1]["call_args"] = "(window,xoffset,yoffset)" defs["ImGui_ImplGlfw_ScrollCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_ScrollCallback" -defs["ImGui_ImplGlfw_ScrollCallback"][1]["comment"] = "" defs["ImGui_ImplGlfw_ScrollCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_ScrollCallback"][1]["funcname"] = "ImGui_ImplGlfw_ScrollCallback" defs["ImGui_ImplGlfw_ScrollCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_ScrollCallback" @@ -165,7 +158,6 @@ defs["ImGui_ImplGlfw_Shutdown"][1]["argsT"] = {} defs["ImGui_ImplGlfw_Shutdown"][1]["argsoriginal"] = "()" defs["ImGui_ImplGlfw_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplGlfw_Shutdown"][1]["cimguiname"] = "ImGui_ImplGlfw_Shutdown" -defs["ImGui_ImplGlfw_Shutdown"][1]["comment"] = "" defs["ImGui_ImplGlfw_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplGlfw_Shutdown"][1]["funcname"] = "ImGui_ImplGlfw_Shutdown" defs["ImGui_ImplGlfw_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_Shutdown" @@ -180,7 +172,6 @@ defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["argsT"] = {} defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["argsoriginal"] = "()" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL2_CreateDeviceObjects" -defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["comment"] = "" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL2_CreateDeviceObjects" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_CreateDeviceObjects" @@ -195,7 +186,6 @@ defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["argsT"] = {} defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["argsoriginal"] = "()" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL2_CreateFontsTexture" -defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["comment"] = "" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL2_CreateFontsTexture" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_CreateFontsTexture" @@ -210,7 +200,6 @@ defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["argsT"] = {} defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["argsoriginal"] = "()" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL2_DestroyDeviceObjects" -defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["comment"] = "" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL2_DestroyDeviceObjects" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_DestroyDeviceObjects" @@ -225,7 +214,6 @@ defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["argsT"] = {} defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["argsoriginal"] = "()" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL2_DestroyFontsTexture" -defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["comment"] = "" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL2_DestroyFontsTexture" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_DestroyFontsTexture" @@ -240,7 +228,6 @@ defs["ImGui_ImplOpenGL2_Init"][1]["argsT"] = {} defs["ImGui_ImplOpenGL2_Init"][1]["argsoriginal"] = "()" defs["ImGui_ImplOpenGL2_Init"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_Init"][1]["cimguiname"] = "ImGui_ImplOpenGL2_Init" -defs["ImGui_ImplOpenGL2_Init"][1]["comment"] = "" defs["ImGui_ImplOpenGL2_Init"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_Init"][1]["funcname"] = "ImGui_ImplOpenGL2_Init" defs["ImGui_ImplOpenGL2_Init"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_Init" @@ -255,7 +242,6 @@ defs["ImGui_ImplOpenGL2_NewFrame"][1]["argsT"] = {} defs["ImGui_ImplOpenGL2_NewFrame"][1]["argsoriginal"] = "()" defs["ImGui_ImplOpenGL2_NewFrame"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_NewFrame"][1]["cimguiname"] = "ImGui_ImplOpenGL2_NewFrame" -defs["ImGui_ImplOpenGL2_NewFrame"][1]["comment"] = "" defs["ImGui_ImplOpenGL2_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_NewFrame"][1]["funcname"] = "ImGui_ImplOpenGL2_NewFrame" defs["ImGui_ImplOpenGL2_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_NewFrame" @@ -273,7 +259,6 @@ defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["argsT"][1]["type"] = "ImDrawData*" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["argsoriginal"] = "(ImDrawData* draw_data)" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["call_args"] = "(draw_data)" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["cimguiname"] = "ImGui_ImplOpenGL2_RenderDrawData" -defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["comment"] = "" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["funcname"] = "ImGui_ImplOpenGL2_RenderDrawData" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_RenderDrawData" @@ -288,7 +273,6 @@ defs["ImGui_ImplOpenGL2_Shutdown"][1]["argsT"] = {} defs["ImGui_ImplOpenGL2_Shutdown"][1]["argsoriginal"] = "()" defs["ImGui_ImplOpenGL2_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_Shutdown"][1]["cimguiname"] = "ImGui_ImplOpenGL2_Shutdown" -defs["ImGui_ImplOpenGL2_Shutdown"][1]["comment"] = "" defs["ImGui_ImplOpenGL2_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_Shutdown"][1]["funcname"] = "ImGui_ImplOpenGL2_Shutdown" defs["ImGui_ImplOpenGL2_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_Shutdown" @@ -303,7 +287,6 @@ defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["argsT"] = {} defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["argsoriginal"] = "()" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL3_CreateDeviceObjects" -defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["comment"] = "" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL3_CreateDeviceObjects" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_CreateDeviceObjects" @@ -318,7 +301,6 @@ defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["argsT"] = {} defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["argsoriginal"] = "()" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL3_CreateFontsTexture" -defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["comment"] = "" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL3_CreateFontsTexture" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_CreateFontsTexture" @@ -333,7 +315,6 @@ defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["argsT"] = {} defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["argsoriginal"] = "()" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL3_DestroyDeviceObjects" -defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["comment"] = "" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL3_DestroyDeviceObjects" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_DestroyDeviceObjects" @@ -348,7 +329,6 @@ defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["argsT"] = {} defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["argsoriginal"] = "()" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL3_DestroyFontsTexture" -defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["comment"] = "" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL3_DestroyFontsTexture" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_DestroyFontsTexture" @@ -366,7 +346,6 @@ defs["ImGui_ImplOpenGL3_Init"][1]["argsT"][1]["type"] = "const char*" defs["ImGui_ImplOpenGL3_Init"][1]["argsoriginal"] = "(const char* glsl_version=NULL)" defs["ImGui_ImplOpenGL3_Init"][1]["call_args"] = "(glsl_version)" defs["ImGui_ImplOpenGL3_Init"][1]["cimguiname"] = "ImGui_ImplOpenGL3_Init" -defs["ImGui_ImplOpenGL3_Init"][1]["comment"] = "" defs["ImGui_ImplOpenGL3_Init"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_Init"][1]["defaults"]["glsl_version"] = "NULL" defs["ImGui_ImplOpenGL3_Init"][1]["funcname"] = "ImGui_ImplOpenGL3_Init" @@ -382,7 +361,6 @@ defs["ImGui_ImplOpenGL3_NewFrame"][1]["argsT"] = {} defs["ImGui_ImplOpenGL3_NewFrame"][1]["argsoriginal"] = "()" defs["ImGui_ImplOpenGL3_NewFrame"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_NewFrame"][1]["cimguiname"] = "ImGui_ImplOpenGL3_NewFrame" -defs["ImGui_ImplOpenGL3_NewFrame"][1]["comment"] = "" defs["ImGui_ImplOpenGL3_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_NewFrame"][1]["funcname"] = "ImGui_ImplOpenGL3_NewFrame" defs["ImGui_ImplOpenGL3_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_NewFrame" @@ -400,7 +378,6 @@ defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["argsT"][1]["type"] = "ImDrawData*" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["argsoriginal"] = "(ImDrawData* draw_data)" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["call_args"] = "(draw_data)" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["cimguiname"] = "ImGui_ImplOpenGL3_RenderDrawData" -defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["comment"] = "" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["funcname"] = "ImGui_ImplOpenGL3_RenderDrawData" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_RenderDrawData" @@ -415,7 +392,6 @@ defs["ImGui_ImplOpenGL3_Shutdown"][1]["argsT"] = {} defs["ImGui_ImplOpenGL3_Shutdown"][1]["argsoriginal"] = "()" defs["ImGui_ImplOpenGL3_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_Shutdown"][1]["cimguiname"] = "ImGui_ImplOpenGL3_Shutdown" -defs["ImGui_ImplOpenGL3_Shutdown"][1]["comment"] = "" defs["ImGui_ImplOpenGL3_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_Shutdown"][1]["funcname"] = "ImGui_ImplOpenGL3_Shutdown" defs["ImGui_ImplOpenGL3_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_Shutdown" @@ -436,7 +412,6 @@ defs["ImGui_ImplSDL2_InitForOpenGL"][1]["argsT"][2]["type"] = "void*" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["argsoriginal"] = "(SDL_Window* window,void* sdl_gl_context)" 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]["comment"] = "" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForOpenGL"][1]["funcname"] = "ImGui_ImplSDL2_InitForOpenGL" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForOpenGL" @@ -454,7 +429,6 @@ defs["ImGui_ImplSDL2_InitForVulkan"][1]["argsT"][1]["type"] = "SDL_Window*" defs["ImGui_ImplSDL2_InitForVulkan"][1]["argsoriginal"] = "(SDL_Window* window)" defs["ImGui_ImplSDL2_InitForVulkan"][1]["call_args"] = "(window)" defs["ImGui_ImplSDL2_InitForVulkan"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForVulkan" -defs["ImGui_ImplSDL2_InitForVulkan"][1]["comment"] = "" defs["ImGui_ImplSDL2_InitForVulkan"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForVulkan"][1]["funcname"] = "ImGui_ImplSDL2_InitForVulkan" defs["ImGui_ImplSDL2_InitForVulkan"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForVulkan" @@ -472,7 +446,6 @@ defs["ImGui_ImplSDL2_NewFrame"][1]["argsT"][1]["type"] = "SDL_Window*" defs["ImGui_ImplSDL2_NewFrame"][1]["argsoriginal"] = "(SDL_Window* window)" defs["ImGui_ImplSDL2_NewFrame"][1]["call_args"] = "(window)" defs["ImGui_ImplSDL2_NewFrame"][1]["cimguiname"] = "ImGui_ImplSDL2_NewFrame" -defs["ImGui_ImplSDL2_NewFrame"][1]["comment"] = "" defs["ImGui_ImplSDL2_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplSDL2_NewFrame"][1]["funcname"] = "ImGui_ImplSDL2_NewFrame" defs["ImGui_ImplSDL2_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_NewFrame" @@ -490,7 +463,6 @@ defs["ImGui_ImplSDL2_ProcessEvent"][1]["argsT"][1]["type"] = "const SDL_Event*" defs["ImGui_ImplSDL2_ProcessEvent"][1]["argsoriginal"] = "(const SDL_Event* event)" defs["ImGui_ImplSDL2_ProcessEvent"][1]["call_args"] = "(event)" defs["ImGui_ImplSDL2_ProcessEvent"][1]["cimguiname"] = "ImGui_ImplSDL2_ProcessEvent" -defs["ImGui_ImplSDL2_ProcessEvent"][1]["comment"] = "" defs["ImGui_ImplSDL2_ProcessEvent"][1]["defaults"] = {} defs["ImGui_ImplSDL2_ProcessEvent"][1]["funcname"] = "ImGui_ImplSDL2_ProcessEvent" defs["ImGui_ImplSDL2_ProcessEvent"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_ProcessEvent" @@ -505,7 +477,6 @@ defs["ImGui_ImplSDL2_Shutdown"][1]["argsT"] = {} defs["ImGui_ImplSDL2_Shutdown"][1]["argsoriginal"] = "()" defs["ImGui_ImplSDL2_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplSDL2_Shutdown"][1]["cimguiname"] = "ImGui_ImplSDL2_Shutdown" -defs["ImGui_ImplSDL2_Shutdown"][1]["comment"] = "" defs["ImGui_ImplSDL2_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplSDL2_Shutdown"][1]["funcname"] = "ImGui_ImplSDL2_Shutdown" defs["ImGui_ImplSDL2_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_Shutdown" From 806ff124a157372adff4632920bc8a9a02a6c2d9 Mon Sep 17 00:00:00 2001 From: sonoro1234 Date: Mon, 18 Feb 2019 12:33:12 +0100 Subject: [PATCH 11/12] build test -Wall std=99 -Wpedantic --- testbuildc/build.bat | 6 +++--- testbuildc/cimguitest.c | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/testbuildc/build.bat b/testbuildc/build.bat index b7b6758..057cfd0 100644 --- a/testbuildc/build.bat +++ b/testbuildc/build.bat @@ -1,6 +1,6 @@ -set PATH=%PATH%;C:\mingw32\bin; -::set PATH=%PATH%;C:\i686-7.2.0-release-posix-dwarf-rt_v5-rev1\mingw32\bin; +:: set PATH=%PATH%;C:\mingw32\bin; +set PATH=%PATH%;C:\i686-7.2.0-release-posix-dwarf-rt_v5-rev1\mingw32\bin; ::gcc -std=c99 -DCIMGUI_DEFINE_ENUMS_AND_STRUCTS cimgui.h ::gcc -DCIMGUI_DEFINE_ENUMS_AND_STRUCTS cimgui.h -gcc -DCIMGUI_DEFINE_ENUMS_AND_STRUCTS cimguitest.c +gcc -std=c99 -Wall -Wpedantic -DCIMGUI_DEFINE_ENUMS_AND_STRUCTS cimguitest.c cmd /k \ No newline at end of file diff --git a/testbuildc/cimguitest.c b/testbuildc/cimguitest.c index 30621b2..abfeb0c 100644 --- a/testbuildc/cimguitest.c +++ b/testbuildc/cimguitest.c @@ -1,5 +1,6 @@ #include "../cimgui.h" -void main(void) +int main(void) { + return 0; } \ No newline at end of file From 666a687e0f84c692e3e204d801d164c418fad5c5 Mon Sep 17 00:00:00 2001 From: sonoro1234 Date: Tue, 19 Feb 2019 13:11:06 +0100 Subject: [PATCH 12/12] pull imgui 1.68 --- cimgui.cpp | 38 +-- cimgui.h | 41 ++-- generator/generator2.lua | 3 +- generator/output/cimgui.cpp | 38 +-- generator/output/cimgui.h | 41 ++-- generator/output/definitions.json | 54 ++++- generator/output/definitions.lua | 47 +++- generator/output/overloads.txt | 44 ++-- generator/output/structs_and_enums.json | 85 +++---- generator/output/structs_and_enums.lua | 298 ++++++++++++------------ imgui | 2 +- 11 files changed, 404 insertions(+), 287 deletions(-) diff --git a/cimgui.cpp b/cimgui.cpp index 21c9a00..cb68ddd 100644 --- a/cimgui.cpp +++ b/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.67" from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.68" from Dear ImGui https://github.com/ocornut/imgui #include "./imgui/imgui.h" #include "cimgui.h" @@ -1211,6 +1211,10 @@ CIMGUI_API bool igIsItemEdited() { return ImGui::IsItemEdited(); } +CIMGUI_API bool igIsItemActivated() +{ + return ImGui::IsItemActivated(); +} CIMGUI_API bool igIsItemDeactivated() { return ImGui::IsItemDeactivated(); @@ -1603,6 +1607,10 @@ CIMGUI_API const char* ImGuiTextBuffer_c_str(ImGuiTextBuffer* self) { return self->c_str(); } +CIMGUI_API void ImGuiTextBuffer_append(ImGuiTextBuffer* self,const char* str,const char* str_end) +{ + return self->append(str,str_end); +} CIMGUI_API void ImGuiTextBuffer_appendfv(ImGuiTextBuffer* self,const char* fmt,va_list args) { return self->appendfv(fmt,args); @@ -1971,9 +1979,9 @@ CIMGUI_API void ImDrawData_DeIndexAllBuffers(ImDrawData* self) { return self->DeIndexAllBuffers(); } -CIMGUI_API void ImDrawData_ScaleClipRects(ImDrawData* self,const ImVec2 sc) +CIMGUI_API void ImDrawData_ScaleClipRects(ImDrawData* self,const ImVec2 fb_scale) { - return self->ScaleClipRects(sc); + return self->ScaleClipRects(fb_scale); } CIMGUI_API ImFontConfig* ImFontConfig_ImFontConfig(void) { @@ -2151,14 +2159,6 @@ CIMGUI_API void ImFont_destroy(ImFont* self) { IM_DELETE(self); } -CIMGUI_API void ImFont_ClearOutputData(ImFont* self) -{ - return self->ClearOutputData(); -} -CIMGUI_API void ImFont_BuildLookupTable(ImFont* self) -{ - return self->BuildLookupTable(); -} CIMGUI_API const ImFontGlyph* ImFont_FindGlyph(ImFont* self,ImWchar c) { return self->FindGlyph(c); @@ -2167,10 +2167,6 @@ CIMGUI_API const ImFontGlyph* ImFont_FindGlyphNoFallback(ImFont* self,ImWchar c) { return self->FindGlyphNoFallback(c); } -CIMGUI_API void ImFont_SetFallbackChar(ImFont* self,ImWchar c) -{ - return self->SetFallbackChar(c); -} CIMGUI_API float ImFont_GetCharAdvance(ImFont* self,ImWchar c) { return self->GetCharAdvance(c); @@ -2199,6 +2195,14 @@ CIMGUI_API void ImFont_RenderText(ImFont* self,ImDrawList* draw_list,float size, { return self->RenderText(draw_list,size,pos,col,clip_rect,text_begin,text_end,wrap_width,cpu_fine_clip); } +CIMGUI_API void ImFont_BuildLookupTable(ImFont* self) +{ + return self->BuildLookupTable(); +} +CIMGUI_API void ImFont_ClearOutputData(ImFont* self) +{ + return self->ClearOutputData(); +} CIMGUI_API void ImFont_GrowIndex(ImFont* self,int new_size) { return self->GrowIndex(new_size); @@ -2211,6 +2215,10 @@ CIMGUI_API void ImFont_AddRemapChar(ImFont* self,ImWchar dst,ImWchar src,bool ov { return self->AddRemapChar(dst,src,overwrite_dst); } +CIMGUI_API void ImFont_SetFallbackChar(ImFont* self,ImWchar c) +{ + return self->SetFallbackChar(c); +} CIMGUI_API void igGetWindowPos_nonUDT(ImVec2 *pOut) { *pOut = ImGui::GetWindowPos(); diff --git a/cimgui.h b/cimgui.h index e4c188e..0a0fa72 100644 --- a/cimgui.h +++ b/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.67" from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.68" from Dear ImGui https://github.com/ocornut/imgui #ifndef CIMGUI_INCLUDED #define CIMGUI_INCLUDED #include @@ -255,8 +255,8 @@ enum ImGuiTabBarFlags_ ImGuiTabBarFlags_None = 0, ImGuiTabBarFlags_Reorderable = 1 << 0, ImGuiTabBarFlags_AutoSelectNewTabs = 1 << 1, - ImGuiTabBarFlags_NoCloseWithMiddleMouseButton = 1 << 2, - ImGuiTabBarFlags_NoTabListPopupButton = 1 << 3, + ImGuiTabBarFlags_TabListPopupButton = 1 << 2, + ImGuiTabBarFlags_NoCloseWithMiddleMouseButton = 1 << 3, ImGuiTabBarFlags_NoTabListScrollingButtons = 1 << 4, ImGuiTabBarFlags_NoTooltip = 1 << 5, ImGuiTabBarFlags_FittingPolicyResizeDown = 1 << 6, @@ -472,6 +472,7 @@ enum ImGuiStyleVar_ ImGuiStyleVar_GrabRounding, ImGuiStyleVar_TabRounding, ImGuiStyleVar_ButtonTextAlign, + ImGuiStyleVar_SelectableTextAlign, ImGuiStyleVar_COUNT }; enum ImGuiColorEditFlags_ @@ -549,6 +550,7 @@ struct ImGuiStyle float TabRounding; float TabBorderSize; ImVec2 ButtonTextAlign; + ImVec2 SelectableTextAlign; ImVec2 DisplayWindowPadding; ImVec2 DisplaySafeAreaPadding; float MouseCursorScale; @@ -578,8 +580,6 @@ struct ImGuiIO bool FontAllowUserScaling; ImFont* FontDefault; ImVec2 DisplayFramebufferScale; - ImVec2 DisplayVisibleMin; - ImVec2 DisplayVisibleMax; bool MouseDrawCursor; bool ConfigMacOSXBehaviors; bool ConfigInputTextCursorBlink; @@ -762,6 +762,7 @@ struct ImDrawData int TotalVtxCount; ImVec2 DisplayPos; ImVec2 DisplaySize; + ImVec2 FramebufferScale; }; struct ImFontConfig { @@ -821,21 +822,21 @@ struct ImFontAtlas }; struct ImFont { - float FontSize; - float Scale; - ImVec2 DisplayOffset; - ImVector_ImFontGlyph Glyphs; ImVector_float IndexAdvanceX; - ImVector_ImWchar IndexLookup; - const ImFontGlyph* FallbackGlyph; float FallbackAdvanceX; - ImWchar FallbackChar; - short ConfigDataCount; - ImFontConfig* ConfigData; + float FontSize; + ImVector_ImWchar IndexLookup; + ImVector_ImFontGlyph Glyphs; + const ImFontGlyph* FallbackGlyph; + ImVec2 DisplayOffset; ImFontAtlas* ContainerAtlas; + const ImFontConfig* ConfigData; + short ConfigDataCount; + ImWchar FallbackChar; + float Scale; float Ascent, Descent; - bool DirtyLookupTables; int MetricsTotalSurface; + bool DirtyLookupTables; }; struct TextRange { @@ -1198,6 +1199,7 @@ CIMGUI_API bool igIsItemFocused(void); CIMGUI_API bool igIsItemClicked(int mouse_button); CIMGUI_API bool igIsItemVisible(void); CIMGUI_API bool igIsItemEdited(void); +CIMGUI_API bool igIsItemActivated(void); CIMGUI_API bool igIsItemDeactivated(void); CIMGUI_API bool igIsItemDeactivatedAfterEdit(void); CIMGUI_API bool igIsAnyItemHovered(void); @@ -1296,6 +1298,7 @@ CIMGUI_API bool ImGuiTextBuffer_empty(ImGuiTextBuffer* self); CIMGUI_API void ImGuiTextBuffer_clear(ImGuiTextBuffer* self); CIMGUI_API void ImGuiTextBuffer_reserve(ImGuiTextBuffer* self,int capacity); CIMGUI_API const char* ImGuiTextBuffer_c_str(ImGuiTextBuffer* self); +CIMGUI_API void ImGuiTextBuffer_append(ImGuiTextBuffer* self,const char* str,const char* str_end); CIMGUI_API void ImGuiTextBuffer_appendfv(ImGuiTextBuffer* self,const char* fmt,va_list args); CIMGUI_API Pair* Pair_PairInt(ImGuiID _key,int _val_i); CIMGUI_API void Pair_destroy(Pair* self); @@ -1388,7 +1391,7 @@ CIMGUI_API ImDrawData* ImDrawData_ImDrawData(void); CIMGUI_API void ImDrawData_destroy(ImDrawData* self); CIMGUI_API void ImDrawData_Clear(ImDrawData* self); CIMGUI_API void ImDrawData_DeIndexAllBuffers(ImDrawData* self); -CIMGUI_API void ImDrawData_ScaleClipRects(ImDrawData* self,const ImVec2 sc); +CIMGUI_API void ImDrawData_ScaleClipRects(ImDrawData* self,const ImVec2 fb_scale); CIMGUI_API ImFontConfig* ImFontConfig_ImFontConfig(void); CIMGUI_API void ImFontConfig_destroy(ImFontConfig* self); CIMGUI_API ImFontGlyphRangesBuilder* ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder(void); @@ -1433,11 +1436,8 @@ CIMGUI_API void ImFontAtlas_CalcCustomRectUV(ImFontAtlas* self,const CustomRect* CIMGUI_API bool ImFontAtlas_GetMouseCursorTexData(ImFontAtlas* self,ImGuiMouseCursor cursor,ImVec2* out_offset,ImVec2* out_size,ImVec2 out_uv_border[2],ImVec2 out_uv_fill[2]); CIMGUI_API ImFont* ImFont_ImFont(void); CIMGUI_API void ImFont_destroy(ImFont* self); -CIMGUI_API void ImFont_ClearOutputData(ImFont* self); -CIMGUI_API void ImFont_BuildLookupTable(ImFont* self); CIMGUI_API const ImFontGlyph* ImFont_FindGlyph(ImFont* self,ImWchar c); CIMGUI_API const ImFontGlyph* ImFont_FindGlyphNoFallback(ImFont* self,ImWchar c); -CIMGUI_API void ImFont_SetFallbackChar(ImFont* self,ImWchar c); CIMGUI_API float ImFont_GetCharAdvance(ImFont* self,ImWchar c); CIMGUI_API bool ImFont_IsLoaded(ImFont* self); CIMGUI_API const char* ImFont_GetDebugName(ImFont* self); @@ -1445,9 +1445,12 @@ CIMGUI_API ImVec2 ImFont_CalcTextSizeA(ImFont* self,float size,float max_width,f CIMGUI_API const char* ImFont_CalcWordWrapPositionA(ImFont* self,float scale,const char* text,const char* text_end,float wrap_width); CIMGUI_API void ImFont_RenderChar(ImFont* self,ImDrawList* draw_list,float size,ImVec2 pos,ImU32 col,ImWchar c); CIMGUI_API void ImFont_RenderText(ImFont* self,ImDrawList* draw_list,float size,ImVec2 pos,ImU32 col,const ImVec4 clip_rect,const char* text_begin,const char* text_end,float wrap_width,bool cpu_fine_clip); +CIMGUI_API void ImFont_BuildLookupTable(ImFont* self); +CIMGUI_API void ImFont_ClearOutputData(ImFont* self); CIMGUI_API void ImFont_GrowIndex(ImFont* self,int new_size); CIMGUI_API void ImFont_AddGlyph(ImFont* self,ImWchar c,float x0,float y0,float x1,float y1,float u0,float v0,float u1,float v1,float advance_x); CIMGUI_API void ImFont_AddRemapChar(ImFont* self,ImWchar dst,ImWchar src,bool overwrite_dst); +CIMGUI_API void ImFont_SetFallbackChar(ImFont* self,ImWchar c); CIMGUI_API void igGetWindowPos_nonUDT(ImVec2 *pOut); CIMGUI_API ImVec2_Simple igGetWindowPos_nonUDT2(void); CIMGUI_API void igGetWindowSize_nonUDT(ImVec2 *pOut); diff --git a/generator/generator2.lua b/generator/generator2.lua index 2c18d4c..b4d9e2e 100644 --- a/generator/generator2.lua +++ b/generator/generator2.lua @@ -454,6 +454,7 @@ local function cimgui_generation(parser) local stname = v[1].stname if not(stname:match"float" or stname:match"int" or stname:match"char") then parser.defsT[k] = nil + --delete also from funcdefs for i,t in ipairs(parser.funcdefs) do if t.cimguiname == k then table.remove(parser.funcdefs, i) @@ -543,7 +544,7 @@ end pipe:close() parser1:do_parse() - +--table.sort(parser1.funcdefs, function(a,b) return a.cimguiname < b.cimguiname end) --parser1:dump_alltypes() --parser1:printItems() diff --git a/generator/output/cimgui.cpp b/generator/output/cimgui.cpp index 21c9a00..cb68ddd 100644 --- a/generator/output/cimgui.cpp +++ b/generator/output/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.67" from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.68" from Dear ImGui https://github.com/ocornut/imgui #include "./imgui/imgui.h" #include "cimgui.h" @@ -1211,6 +1211,10 @@ CIMGUI_API bool igIsItemEdited() { return ImGui::IsItemEdited(); } +CIMGUI_API bool igIsItemActivated() +{ + return ImGui::IsItemActivated(); +} CIMGUI_API bool igIsItemDeactivated() { return ImGui::IsItemDeactivated(); @@ -1603,6 +1607,10 @@ CIMGUI_API const char* ImGuiTextBuffer_c_str(ImGuiTextBuffer* self) { return self->c_str(); } +CIMGUI_API void ImGuiTextBuffer_append(ImGuiTextBuffer* self,const char* str,const char* str_end) +{ + return self->append(str,str_end); +} CIMGUI_API void ImGuiTextBuffer_appendfv(ImGuiTextBuffer* self,const char* fmt,va_list args) { return self->appendfv(fmt,args); @@ -1971,9 +1979,9 @@ CIMGUI_API void ImDrawData_DeIndexAllBuffers(ImDrawData* self) { return self->DeIndexAllBuffers(); } -CIMGUI_API void ImDrawData_ScaleClipRects(ImDrawData* self,const ImVec2 sc) +CIMGUI_API void ImDrawData_ScaleClipRects(ImDrawData* self,const ImVec2 fb_scale) { - return self->ScaleClipRects(sc); + return self->ScaleClipRects(fb_scale); } CIMGUI_API ImFontConfig* ImFontConfig_ImFontConfig(void) { @@ -2151,14 +2159,6 @@ CIMGUI_API void ImFont_destroy(ImFont* self) { IM_DELETE(self); } -CIMGUI_API void ImFont_ClearOutputData(ImFont* self) -{ - return self->ClearOutputData(); -} -CIMGUI_API void ImFont_BuildLookupTable(ImFont* self) -{ - return self->BuildLookupTable(); -} CIMGUI_API const ImFontGlyph* ImFont_FindGlyph(ImFont* self,ImWchar c) { return self->FindGlyph(c); @@ -2167,10 +2167,6 @@ CIMGUI_API const ImFontGlyph* ImFont_FindGlyphNoFallback(ImFont* self,ImWchar c) { return self->FindGlyphNoFallback(c); } -CIMGUI_API void ImFont_SetFallbackChar(ImFont* self,ImWchar c) -{ - return self->SetFallbackChar(c); -} CIMGUI_API float ImFont_GetCharAdvance(ImFont* self,ImWchar c) { return self->GetCharAdvance(c); @@ -2199,6 +2195,14 @@ CIMGUI_API void ImFont_RenderText(ImFont* self,ImDrawList* draw_list,float size, { return self->RenderText(draw_list,size,pos,col,clip_rect,text_begin,text_end,wrap_width,cpu_fine_clip); } +CIMGUI_API void ImFont_BuildLookupTable(ImFont* self) +{ + return self->BuildLookupTable(); +} +CIMGUI_API void ImFont_ClearOutputData(ImFont* self) +{ + return self->ClearOutputData(); +} CIMGUI_API void ImFont_GrowIndex(ImFont* self,int new_size) { return self->GrowIndex(new_size); @@ -2211,6 +2215,10 @@ CIMGUI_API void ImFont_AddRemapChar(ImFont* self,ImWchar dst,ImWchar src,bool ov { return self->AddRemapChar(dst,src,overwrite_dst); } +CIMGUI_API void ImFont_SetFallbackChar(ImFont* self,ImWchar c) +{ + return self->SetFallbackChar(c); +} CIMGUI_API void igGetWindowPos_nonUDT(ImVec2 *pOut) { *pOut = ImGui::GetWindowPos(); diff --git a/generator/output/cimgui.h b/generator/output/cimgui.h index e4c188e..0a0fa72 100644 --- a/generator/output/cimgui.h +++ b/generator/output/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.67" from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.68" from Dear ImGui https://github.com/ocornut/imgui #ifndef CIMGUI_INCLUDED #define CIMGUI_INCLUDED #include @@ -255,8 +255,8 @@ enum ImGuiTabBarFlags_ ImGuiTabBarFlags_None = 0, ImGuiTabBarFlags_Reorderable = 1 << 0, ImGuiTabBarFlags_AutoSelectNewTabs = 1 << 1, - ImGuiTabBarFlags_NoCloseWithMiddleMouseButton = 1 << 2, - ImGuiTabBarFlags_NoTabListPopupButton = 1 << 3, + ImGuiTabBarFlags_TabListPopupButton = 1 << 2, + ImGuiTabBarFlags_NoCloseWithMiddleMouseButton = 1 << 3, ImGuiTabBarFlags_NoTabListScrollingButtons = 1 << 4, ImGuiTabBarFlags_NoTooltip = 1 << 5, ImGuiTabBarFlags_FittingPolicyResizeDown = 1 << 6, @@ -472,6 +472,7 @@ enum ImGuiStyleVar_ ImGuiStyleVar_GrabRounding, ImGuiStyleVar_TabRounding, ImGuiStyleVar_ButtonTextAlign, + ImGuiStyleVar_SelectableTextAlign, ImGuiStyleVar_COUNT }; enum ImGuiColorEditFlags_ @@ -549,6 +550,7 @@ struct ImGuiStyle float TabRounding; float TabBorderSize; ImVec2 ButtonTextAlign; + ImVec2 SelectableTextAlign; ImVec2 DisplayWindowPadding; ImVec2 DisplaySafeAreaPadding; float MouseCursorScale; @@ -578,8 +580,6 @@ struct ImGuiIO bool FontAllowUserScaling; ImFont* FontDefault; ImVec2 DisplayFramebufferScale; - ImVec2 DisplayVisibleMin; - ImVec2 DisplayVisibleMax; bool MouseDrawCursor; bool ConfigMacOSXBehaviors; bool ConfigInputTextCursorBlink; @@ -762,6 +762,7 @@ struct ImDrawData int TotalVtxCount; ImVec2 DisplayPos; ImVec2 DisplaySize; + ImVec2 FramebufferScale; }; struct ImFontConfig { @@ -821,21 +822,21 @@ struct ImFontAtlas }; struct ImFont { - float FontSize; - float Scale; - ImVec2 DisplayOffset; - ImVector_ImFontGlyph Glyphs; ImVector_float IndexAdvanceX; - ImVector_ImWchar IndexLookup; - const ImFontGlyph* FallbackGlyph; float FallbackAdvanceX; - ImWchar FallbackChar; - short ConfigDataCount; - ImFontConfig* ConfigData; + float FontSize; + ImVector_ImWchar IndexLookup; + ImVector_ImFontGlyph Glyphs; + const ImFontGlyph* FallbackGlyph; + ImVec2 DisplayOffset; ImFontAtlas* ContainerAtlas; + const ImFontConfig* ConfigData; + short ConfigDataCount; + ImWchar FallbackChar; + float Scale; float Ascent, Descent; - bool DirtyLookupTables; int MetricsTotalSurface; + bool DirtyLookupTables; }; struct TextRange { @@ -1198,6 +1199,7 @@ CIMGUI_API bool igIsItemFocused(void); CIMGUI_API bool igIsItemClicked(int mouse_button); CIMGUI_API bool igIsItemVisible(void); CIMGUI_API bool igIsItemEdited(void); +CIMGUI_API bool igIsItemActivated(void); CIMGUI_API bool igIsItemDeactivated(void); CIMGUI_API bool igIsItemDeactivatedAfterEdit(void); CIMGUI_API bool igIsAnyItemHovered(void); @@ -1296,6 +1298,7 @@ CIMGUI_API bool ImGuiTextBuffer_empty(ImGuiTextBuffer* self); CIMGUI_API void ImGuiTextBuffer_clear(ImGuiTextBuffer* self); CIMGUI_API void ImGuiTextBuffer_reserve(ImGuiTextBuffer* self,int capacity); CIMGUI_API const char* ImGuiTextBuffer_c_str(ImGuiTextBuffer* self); +CIMGUI_API void ImGuiTextBuffer_append(ImGuiTextBuffer* self,const char* str,const char* str_end); CIMGUI_API void ImGuiTextBuffer_appendfv(ImGuiTextBuffer* self,const char* fmt,va_list args); CIMGUI_API Pair* Pair_PairInt(ImGuiID _key,int _val_i); CIMGUI_API void Pair_destroy(Pair* self); @@ -1388,7 +1391,7 @@ CIMGUI_API ImDrawData* ImDrawData_ImDrawData(void); CIMGUI_API void ImDrawData_destroy(ImDrawData* self); CIMGUI_API void ImDrawData_Clear(ImDrawData* self); CIMGUI_API void ImDrawData_DeIndexAllBuffers(ImDrawData* self); -CIMGUI_API void ImDrawData_ScaleClipRects(ImDrawData* self,const ImVec2 sc); +CIMGUI_API void ImDrawData_ScaleClipRects(ImDrawData* self,const ImVec2 fb_scale); CIMGUI_API ImFontConfig* ImFontConfig_ImFontConfig(void); CIMGUI_API void ImFontConfig_destroy(ImFontConfig* self); CIMGUI_API ImFontGlyphRangesBuilder* ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder(void); @@ -1433,11 +1436,8 @@ CIMGUI_API void ImFontAtlas_CalcCustomRectUV(ImFontAtlas* self,const CustomRect* CIMGUI_API bool ImFontAtlas_GetMouseCursorTexData(ImFontAtlas* self,ImGuiMouseCursor cursor,ImVec2* out_offset,ImVec2* out_size,ImVec2 out_uv_border[2],ImVec2 out_uv_fill[2]); CIMGUI_API ImFont* ImFont_ImFont(void); CIMGUI_API void ImFont_destroy(ImFont* self); -CIMGUI_API void ImFont_ClearOutputData(ImFont* self); -CIMGUI_API void ImFont_BuildLookupTable(ImFont* self); CIMGUI_API const ImFontGlyph* ImFont_FindGlyph(ImFont* self,ImWchar c); CIMGUI_API const ImFontGlyph* ImFont_FindGlyphNoFallback(ImFont* self,ImWchar c); -CIMGUI_API void ImFont_SetFallbackChar(ImFont* self,ImWchar c); CIMGUI_API float ImFont_GetCharAdvance(ImFont* self,ImWchar c); CIMGUI_API bool ImFont_IsLoaded(ImFont* self); CIMGUI_API const char* ImFont_GetDebugName(ImFont* self); @@ -1445,9 +1445,12 @@ CIMGUI_API ImVec2 ImFont_CalcTextSizeA(ImFont* self,float size,float max_width,f CIMGUI_API const char* ImFont_CalcWordWrapPositionA(ImFont* self,float scale,const char* text,const char* text_end,float wrap_width); CIMGUI_API void ImFont_RenderChar(ImFont* self,ImDrawList* draw_list,float size,ImVec2 pos,ImU32 col,ImWchar c); CIMGUI_API void ImFont_RenderText(ImFont* self,ImDrawList* draw_list,float size,ImVec2 pos,ImU32 col,const ImVec4 clip_rect,const char* text_begin,const char* text_end,float wrap_width,bool cpu_fine_clip); +CIMGUI_API void ImFont_BuildLookupTable(ImFont* self); +CIMGUI_API void ImFont_ClearOutputData(ImFont* self); CIMGUI_API void ImFont_GrowIndex(ImFont* self,int new_size); CIMGUI_API void ImFont_AddGlyph(ImFont* self,ImWchar c,float x0,float y0,float x1,float y1,float u0,float v0,float u1,float v1,float advance_x); CIMGUI_API void ImFont_AddRemapChar(ImFont* self,ImWchar dst,ImWchar src,bool overwrite_dst); +CIMGUI_API void ImFont_SetFallbackChar(ImFont* self,ImWchar c); CIMGUI_API void igGetWindowPos_nonUDT(ImVec2 *pOut); CIMGUI_API ImVec2_Simple igGetWindowPos_nonUDT2(void); CIMGUI_API void igGetWindowSize_nonUDT(ImVec2 *pOut); diff --git a/generator/output/definitions.json b/generator/output/definitions.json index 65e081b..31f5ab0 100644 --- a/generator/output/definitions.json +++ b/generator/output/definitions.json @@ -433,19 +433,19 @@ ], "ImDrawData_ScaleClipRects": [ { - "args": "(ImDrawData* self,const ImVec2 sc)", + "args": "(ImDrawData* self,const ImVec2 fb_scale)", "argsT": [ { "name": "self", "type": "ImDrawData*" }, { - "name": "sc", + "name": "fb_scale", "type": "const ImVec2" } ], - "argsoriginal": "(const ImVec2& sc)", - "call_args": "(sc)", + "argsoriginal": "(const ImVec2& fb_scale)", + "call_args": "(fb_scale)", "cimguiname": "ImDrawData_ScaleClipRects", "defaults": [], "funcname": "ScaleClipRects", @@ -4874,6 +4874,36 @@ "stname": "ImGuiTextBuffer" } ], + "ImGuiTextBuffer_append": [ + { + "args": "(ImGuiTextBuffer* self,const char* str,const char* str_end)", + "argsT": [ + { + "name": "self", + "type": "ImGuiTextBuffer*" + }, + { + "name": "str", + "type": "const char*" + }, + { + "name": "str_end", + "type": "const char*" + } + ], + "argsoriginal": "(const char* str,const char* str_end=((void*)0))", + "call_args": "(str,str_end)", + "cimguiname": "ImGuiTextBuffer_append", + "defaults": { + "str_end": "((void*)0)" + }, + "funcname": "append", + "ov_cimguiname": "ImGuiTextBuffer_append", + "ret": "void", + "signature": "(const char*,const char*)", + "stname": "ImGuiTextBuffer" + } + ], "ImGuiTextBuffer_appendf": [ { "args": "(ImGuiTextBuffer* self,const char* fmt,...)", @@ -21818,6 +21848,22 @@ "stname": "" } ], + "igIsItemActivated": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igIsItemActivated", + "defaults": [], + "funcname": "IsItemActivated", + "namespace": "ImGui", + "ov_cimguiname": "igIsItemActivated", + "ret": "bool", + "signature": "()", + "stname": "" + } + ], "igIsItemActive": [ { "args": "()", diff --git a/generator/output/definitions.lua b/generator/output/definitions.lua index 0b4caab..9052450 100644 --- a/generator/output/definitions.lua +++ b/generator/output/definitions.lua @@ -362,16 +362,16 @@ defs["ImDrawData_ImDrawData"][1]["stname"] = "ImDrawData" defs["ImDrawData_ImDrawData"]["()"] = defs["ImDrawData_ImDrawData"][1] defs["ImDrawData_ScaleClipRects"] = {} defs["ImDrawData_ScaleClipRects"][1] = {} -defs["ImDrawData_ScaleClipRects"][1]["args"] = "(ImDrawData* self,const ImVec2 sc)" +defs["ImDrawData_ScaleClipRects"][1]["args"] = "(ImDrawData* self,const ImVec2 fb_scale)" defs["ImDrawData_ScaleClipRects"][1]["argsT"] = {} defs["ImDrawData_ScaleClipRects"][1]["argsT"][1] = {} defs["ImDrawData_ScaleClipRects"][1]["argsT"][1]["name"] = "self" defs["ImDrawData_ScaleClipRects"][1]["argsT"][1]["type"] = "ImDrawData*" defs["ImDrawData_ScaleClipRects"][1]["argsT"][2] = {} -defs["ImDrawData_ScaleClipRects"][1]["argsT"][2]["name"] = "sc" +defs["ImDrawData_ScaleClipRects"][1]["argsT"][2]["name"] = "fb_scale" defs["ImDrawData_ScaleClipRects"][1]["argsT"][2]["type"] = "const ImVec2" -defs["ImDrawData_ScaleClipRects"][1]["argsoriginal"] = "(const ImVec2& sc)" -defs["ImDrawData_ScaleClipRects"][1]["call_args"] = "(sc)" +defs["ImDrawData_ScaleClipRects"][1]["argsoriginal"] = "(const ImVec2& fb_scale)" +defs["ImDrawData_ScaleClipRects"][1]["call_args"] = "(fb_scale)" defs["ImDrawData_ScaleClipRects"][1]["cimguiname"] = "ImDrawData_ScaleClipRects" defs["ImDrawData_ScaleClipRects"][1]["defaults"] = {} defs["ImDrawData_ScaleClipRects"][1]["funcname"] = "ScaleClipRects" @@ -4001,6 +4001,30 @@ defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["ov_cimguiname"] = "ImGuiTextBuffer_I defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["signature"] = "()" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["stname"] = "ImGuiTextBuffer" defs["ImGuiTextBuffer_ImGuiTextBuffer"]["()"] = defs["ImGuiTextBuffer_ImGuiTextBuffer"][1] +defs["ImGuiTextBuffer_append"] = {} +defs["ImGuiTextBuffer_append"][1] = {} +defs["ImGuiTextBuffer_append"][1]["args"] = "(ImGuiTextBuffer* self,const char* str,const char* str_end)" +defs["ImGuiTextBuffer_append"][1]["argsT"] = {} +defs["ImGuiTextBuffer_append"][1]["argsT"][1] = {} +defs["ImGuiTextBuffer_append"][1]["argsT"][1]["name"] = "self" +defs["ImGuiTextBuffer_append"][1]["argsT"][1]["type"] = "ImGuiTextBuffer*" +defs["ImGuiTextBuffer_append"][1]["argsT"][2] = {} +defs["ImGuiTextBuffer_append"][1]["argsT"][2]["name"] = "str" +defs["ImGuiTextBuffer_append"][1]["argsT"][2]["type"] = "const char*" +defs["ImGuiTextBuffer_append"][1]["argsT"][3] = {} +defs["ImGuiTextBuffer_append"][1]["argsT"][3]["name"] = "str_end" +defs["ImGuiTextBuffer_append"][1]["argsT"][3]["type"] = "const char*" +defs["ImGuiTextBuffer_append"][1]["argsoriginal"] = "(const char* str,const char* str_end=((void*)0))" +defs["ImGuiTextBuffer_append"][1]["call_args"] = "(str,str_end)" +defs["ImGuiTextBuffer_append"][1]["cimguiname"] = "ImGuiTextBuffer_append" +defs["ImGuiTextBuffer_append"][1]["defaults"] = {} +defs["ImGuiTextBuffer_append"][1]["defaults"]["str_end"] = "((void*)0)" +defs["ImGuiTextBuffer_append"][1]["funcname"] = "append" +defs["ImGuiTextBuffer_append"][1]["ov_cimguiname"] = "ImGuiTextBuffer_append" +defs["ImGuiTextBuffer_append"][1]["ret"] = "void" +defs["ImGuiTextBuffer_append"][1]["signature"] = "(const char*,const char*)" +defs["ImGuiTextBuffer_append"][1]["stname"] = "ImGuiTextBuffer" +defs["ImGuiTextBuffer_append"]["(const char*,const char*)"] = defs["ImGuiTextBuffer_append"][1] defs["ImGuiTextBuffer_appendf"] = {} defs["ImGuiTextBuffer_appendf"][1] = {} defs["ImGuiTextBuffer_appendf"][1]["args"] = "(ImGuiTextBuffer* self,const char* fmt,...)" @@ -18460,6 +18484,21 @@ defs["igIsAnyMouseDown"][1]["ret"] = "bool" defs["igIsAnyMouseDown"][1]["signature"] = "()" defs["igIsAnyMouseDown"][1]["stname"] = "" defs["igIsAnyMouseDown"]["()"] = defs["igIsAnyMouseDown"][1] +defs["igIsItemActivated"] = {} +defs["igIsItemActivated"][1] = {} +defs["igIsItemActivated"][1]["args"] = "()" +defs["igIsItemActivated"][1]["argsT"] = {} +defs["igIsItemActivated"][1]["argsoriginal"] = "()" +defs["igIsItemActivated"][1]["call_args"] = "()" +defs["igIsItemActivated"][1]["cimguiname"] = "igIsItemActivated" +defs["igIsItemActivated"][1]["defaults"] = {} +defs["igIsItemActivated"][1]["funcname"] = "IsItemActivated" +defs["igIsItemActivated"][1]["namespace"] = "ImGui" +defs["igIsItemActivated"][1]["ov_cimguiname"] = "igIsItemActivated" +defs["igIsItemActivated"][1]["ret"] = "bool" +defs["igIsItemActivated"][1]["signature"] = "()" +defs["igIsItemActivated"][1]["stname"] = "" +defs["igIsItemActivated"]["()"] = defs["igIsItemActivated"][1] defs["igIsItemActive"] = {} defs["igIsItemActive"][1] = {} defs["igIsItemActive"][1]["args"] = "()" diff --git a/generator/output/overloads.txt b/generator/output/overloads.txt index e51c895..84a19f2 100644 --- a/generator/output/overloads.txt +++ b/generator/output/overloads.txt @@ -3,15 +3,15 @@ igCombo 3 1 bool igCombo (const char*,int*,const char* const[],int,int) 2 bool igComboStr (const char*,int*,const char*,int) 3 bool igComboFnPtr (const char*,int*,bool(*)(void*,int,const char**),void*,int,int) -ImVec4_ImVec4 2 -1 nil ImVec4_ImVec4 () -2 nil ImVec4_ImVec4Float (float,float,float,float) TextRange_TextRange 2 1 nil TextRange_TextRange () 2 nil TextRange_TextRangeStr (const char*,const char*) -igTreePush 2 -1 void igTreePushStr (const char*) -2 void igTreePushPtr (const void*) +ImVec4_ImVec4 2 +1 nil ImVec4_ImVec4 () +2 nil ImVec4_ImVec4Float (float,float,float,float) +igSetWindowFocus 2 +1 void igSetWindowFocus () +2 void igSetWindowFocusStr (const char*) igValue 4 1 void igValueBool (const char*,bool) 2 void igValueInt (const char*,int) @@ -32,9 +32,6 @@ igRadioButton 2 igSetWindowSize 2 1 void igSetWindowSizeVec2 (const ImVec2,ImGuiCond) 2 void igSetWindowSizeStr (const char*,const ImVec2,ImGuiCond) -igPushStyleColor 2 -1 void igPushStyleColorU32 (ImGuiCol,ImU32) -2 void igPushStyleColor (ImGuiCol,const ImVec4) ImVector_ImVector 2 1 nil ImVector_ImVector () 2 nil ImVector_ImVectorVector (const ImVector) @@ -69,21 +66,30 @@ ImVector_begin 2 igBeginChild 2 1 bool igBeginChild (const char*,const ImVec2,bool,ImGuiWindowFlags) 2 bool igBeginChildID (ImGuiID,const ImVec2,bool,ImGuiWindowFlags) +igPushStyleColor 2 +1 void igPushStyleColorU32 (ImGuiCol,ImU32) +2 void igPushStyleColor (ImGuiCol,const ImVec4) igSelectable 2 1 bool igSelectable (const char*,bool,ImGuiSelectableFlags,const ImVec2) 2 bool igSelectableBoolPtr (const char*,bool*,ImGuiSelectableFlags,const ImVec2) igListBox 2 1 bool igListBoxStr_arr (const char*,int*,const char* const[],int,int) 2 bool igListBoxFnPtr (const char*,int*,bool(*)(void*,int,const char**),void*,int,int) +Pair_Pair 3 +1 nil Pair_PairInt (ImGuiID,int) +2 nil Pair_PairFloat (ImGuiID,float) +3 nil Pair_PairPtr (ImGuiID,void*) igPushID 4 1 void igPushIDStr (const char*) 2 void igPushIDRange (const char*,const char*) 3 void igPushIDPtr (const void*) 4 void igPushIDInt (int) -Pair_Pair 3 -1 nil Pair_PairInt (ImGuiID,int) -2 nil Pair_PairFloat (ImGuiID,float) -3 nil Pair_PairPtr (ImGuiID,void*) +igSetWindowPos 2 +1 void igSetWindowPosVec2 (const ImVec2,ImGuiCond) +2 void igSetWindowPosStr (const char*,const ImVec2,ImGuiCond) +igListBoxHeader 2 +1 bool igListBoxHeaderVec2 (const char*,const ImVec2) +2 bool igListBoxHeaderInt (const char*,int,int) ImVector_erase 2 1 T* ImVector_erase (const T*) 2 T* ImVector_eraseTPtr (const T*,const T*) @@ -93,6 +99,9 @@ ImVector_resize 2 ImVector_front 2 1 T* ImVector_front () 2 const T* ImVector_front_const ()const +igTreePush 2 +1 void igTreePushStr (const char*) +2 void igTreePushPtr (const void*) ImColor_ImColor 5 1 nil ImColor_ImColor () 2 nil ImColor_ImColorInt (int,int,int,int) @@ -105,19 +114,10 @@ igCollapsingHeader 2 igMenuItem 2 1 bool igMenuItemBool (const char*,const char*,bool,bool) 2 bool igMenuItemBoolPtr (const char*,const char*,bool*,bool) -igSetWindowPos 2 -1 void igSetWindowPosVec2 (const ImVec2,ImGuiCond) -2 void igSetWindowPosStr (const char*,const ImVec2,ImGuiCond) -igSetWindowFocus 2 -1 void igSetWindowFocus () -2 void igSetWindowFocusStr (const char*) igTreeNodeEx 3 1 bool igTreeNodeExStr (const char*,ImGuiTreeNodeFlags) 2 bool igTreeNodeExStrStr (const char*,ImGuiTreeNodeFlags,const char*,...) 3 bool igTreeNodeExPtr (const void*,ImGuiTreeNodeFlags,const char*,...) -igListBoxHeader 2 -1 bool igListBoxHeaderVec2 (const char*,const ImVec2) -2 bool igListBoxHeaderInt (const char*,int,int) igGetColorU32 3 1 ImU32 igGetColorU32 (ImGuiCol,float) 2 ImU32 igGetColorU32Vec4 (const ImVec4) diff --git a/generator/output/structs_and_enums.json b/generator/output/structs_and_enums.json index 11816e8..8385e3e 100644 --- a/generator/output/structs_and_enums.json +++ b/generator/output/structs_and_enums.json @@ -1326,8 +1326,13 @@ }, { "calc_value": 22, - "name": "ImGuiStyleVar_COUNT", + "name": "ImGuiStyleVar_SelectableTextAlign", "value": 22 + }, + { + "calc_value": 23, + "name": "ImGuiStyleVar_COUNT", + "value": 23 } ], "ImGuiTabBarFlags_": [ @@ -1348,12 +1353,12 @@ }, { "calc_value": 4, - "name": "ImGuiTabBarFlags_NoCloseWithMiddleMouseButton", + "name": "ImGuiTabBarFlags_TabListPopupButton", "value": "1 << 2" }, { "calc_value": 8, - "name": "ImGuiTabBarFlags_NoTabListPopupButton", + "name": "ImGuiTabBarFlags_NoCloseWithMiddleMouseButton", "value": "1 << 3" }, { @@ -1742,6 +1747,10 @@ { "name": "DisplaySize", "type": "ImVec2" + }, + { + "name": "FramebufferScale", + "type": "ImVec2" } ], "ImDrawList": [ @@ -1828,56 +1837,56 @@ } ], "ImFont": [ - { - "name": "FontSize", - "type": "float" - }, - { - "name": "Scale", - "type": "float" - }, - { - "name": "DisplayOffset", - "type": "ImVec2" - }, - { - "name": "Glyphs", - "template_type": "ImFontGlyph", - "type": "ImVector_ImFontGlyph" - }, { "name": "IndexAdvanceX", "template_type": "float", "type": "ImVector_float" }, + { + "name": "FallbackAdvanceX", + "type": "float" + }, + { + "name": "FontSize", + "type": "float" + }, { "name": "IndexLookup", "template_type": "ImWchar", "type": "ImVector_ImWchar" }, + { + "name": "Glyphs", + "template_type": "ImFontGlyph", + "type": "ImVector_ImFontGlyph" + }, { "name": "FallbackGlyph", "type": "const ImFontGlyph*" }, { - "name": "FallbackAdvanceX", - "type": "float" + "name": "DisplayOffset", + "type": "ImVec2" }, { - "name": "FallbackChar", - "type": "ImWchar" + "name": "ContainerAtlas", + "type": "ImFontAtlas*" + }, + { + "name": "ConfigData", + "type": "const ImFontConfig*" }, { "name": "ConfigDataCount", "type": "short" }, { - "name": "ConfigData", - "type": "ImFontConfig*" + "name": "FallbackChar", + "type": "ImWchar" }, { - "name": "ContainerAtlas", - "type": "ImFontAtlas*" + "name": "Scale", + "type": "float" }, { "name": "Ascent", @@ -1887,13 +1896,13 @@ "name": "Descent", "type": "float" }, - { - "name": "DirtyLookupTables", - "type": "bool" - }, { "name": "MetricsTotalSurface", "type": "int" + }, + { + "name": "DirtyLookupTables", + "type": "bool" } ], "ImFontAtlas": [ @@ -2164,14 +2173,6 @@ "name": "DisplayFramebufferScale", "type": "ImVec2" }, - { - "name": "DisplayVisibleMin", - "type": "ImVec2" - }, - { - "name": "DisplayVisibleMax", - "type": "ImVec2" - }, { "name": "MouseDrawCursor", "type": "bool" @@ -2658,6 +2659,10 @@ "name": "ButtonTextAlign", "type": "ImVec2" }, + { + "name": "SelectableTextAlign", + "type": "ImVec2" + }, { "name": "DisplayWindowPadding", "type": "ImVec2" diff --git a/generator/output/structs_and_enums.lua b/generator/output/structs_and_enums.lua index c4e7b6d..efde866 100644 --- a/generator/output/structs_and_enums.lua +++ b/generator/output/structs_and_enums.lua @@ -1050,8 +1050,12 @@ defs["enums"]["ImGuiStyleVar_"][22]["name"] = "ImGuiStyleVar_ButtonTextAlign" defs["enums"]["ImGuiStyleVar_"][22]["value"] = 21 defs["enums"]["ImGuiStyleVar_"][23] = {} defs["enums"]["ImGuiStyleVar_"][23]["calc_value"] = 22 -defs["enums"]["ImGuiStyleVar_"][23]["name"] = "ImGuiStyleVar_COUNT" +defs["enums"]["ImGuiStyleVar_"][23]["name"] = "ImGuiStyleVar_SelectableTextAlign" defs["enums"]["ImGuiStyleVar_"][23]["value"] = 22 +defs["enums"]["ImGuiStyleVar_"][24] = {} +defs["enums"]["ImGuiStyleVar_"][24]["calc_value"] = 23 +defs["enums"]["ImGuiStyleVar_"][24]["name"] = "ImGuiStyleVar_COUNT" +defs["enums"]["ImGuiStyleVar_"][24]["value"] = 23 defs["enums"]["ImGuiTabBarFlags_"] = {} defs["enums"]["ImGuiTabBarFlags_"][1] = {} defs["enums"]["ImGuiTabBarFlags_"][1]["calc_value"] = 0 @@ -1067,11 +1071,11 @@ defs["enums"]["ImGuiTabBarFlags_"][3]["name"] = "ImGuiTabBarFlags_AutoSelectNewT defs["enums"]["ImGuiTabBarFlags_"][3]["value"] = "1 << 1" defs["enums"]["ImGuiTabBarFlags_"][4] = {} defs["enums"]["ImGuiTabBarFlags_"][4]["calc_value"] = 4 -defs["enums"]["ImGuiTabBarFlags_"][4]["name"] = "ImGuiTabBarFlags_NoCloseWithMiddleMouseButton" +defs["enums"]["ImGuiTabBarFlags_"][4]["name"] = "ImGuiTabBarFlags_TabListPopupButton" defs["enums"]["ImGuiTabBarFlags_"][4]["value"] = "1 << 2" defs["enums"]["ImGuiTabBarFlags_"][5] = {} defs["enums"]["ImGuiTabBarFlags_"][5]["calc_value"] = 8 -defs["enums"]["ImGuiTabBarFlags_"][5]["name"] = "ImGuiTabBarFlags_NoTabListPopupButton" +defs["enums"]["ImGuiTabBarFlags_"][5]["name"] = "ImGuiTabBarFlags_NoCloseWithMiddleMouseButton" defs["enums"]["ImGuiTabBarFlags_"][5]["value"] = "1 << 3" defs["enums"]["ImGuiTabBarFlags_"][6] = {} defs["enums"]["ImGuiTabBarFlags_"][6]["calc_value"] = 16 @@ -1373,6 +1377,9 @@ defs["structs"]["ImDrawData"][6]["type"] = "ImVec2" defs["structs"]["ImDrawData"][7] = {} defs["structs"]["ImDrawData"][7]["name"] = "DisplaySize" defs["structs"]["ImDrawData"][7]["type"] = "ImVec2" +defs["structs"]["ImDrawData"][8] = {} +defs["structs"]["ImDrawData"][8]["name"] = "FramebufferScale" +defs["structs"]["ImDrawData"][8]["type"] = "ImVec2" defs["structs"]["ImDrawList"] = {} defs["structs"]["ImDrawList"][1] = {} defs["structs"]["ImDrawList"][1]["name"] = "CmdBuffer" @@ -1438,44 +1445,44 @@ defs["structs"]["ImDrawVert"][3]["name"] = "col" defs["structs"]["ImDrawVert"][3]["type"] = "ImU32" defs["structs"]["ImFont"] = {} defs["structs"]["ImFont"][1] = {} -defs["structs"]["ImFont"][1]["name"] = "FontSize" -defs["structs"]["ImFont"][1]["type"] = "float" +defs["structs"]["ImFont"][1]["name"] = "IndexAdvanceX" +defs["structs"]["ImFont"][1]["template_type"] = "float" +defs["structs"]["ImFont"][1]["type"] = "ImVector_float" defs["structs"]["ImFont"][2] = {} -defs["structs"]["ImFont"][2]["name"] = "Scale" +defs["structs"]["ImFont"][2]["name"] = "FallbackAdvanceX" defs["structs"]["ImFont"][2]["type"] = "float" defs["structs"]["ImFont"][3] = {} -defs["structs"]["ImFont"][3]["name"] = "DisplayOffset" -defs["structs"]["ImFont"][3]["type"] = "ImVec2" +defs["structs"]["ImFont"][3]["name"] = "FontSize" +defs["structs"]["ImFont"][3]["type"] = "float" defs["structs"]["ImFont"][4] = {} -defs["structs"]["ImFont"][4]["name"] = "Glyphs" -defs["structs"]["ImFont"][4]["template_type"] = "ImFontGlyph" -defs["structs"]["ImFont"][4]["type"] = "ImVector_ImFontGlyph" +defs["structs"]["ImFont"][4]["name"] = "IndexLookup" +defs["structs"]["ImFont"][4]["template_type"] = "ImWchar" +defs["structs"]["ImFont"][4]["type"] = "ImVector_ImWchar" defs["structs"]["ImFont"][5] = {} -defs["structs"]["ImFont"][5]["name"] = "IndexAdvanceX" -defs["structs"]["ImFont"][5]["template_type"] = "float" -defs["structs"]["ImFont"][5]["type"] = "ImVector_float" +defs["structs"]["ImFont"][5]["name"] = "Glyphs" +defs["structs"]["ImFont"][5]["template_type"] = "ImFontGlyph" +defs["structs"]["ImFont"][5]["type"] = "ImVector_ImFontGlyph" defs["structs"]["ImFont"][6] = {} -defs["structs"]["ImFont"][6]["name"] = "IndexLookup" -defs["structs"]["ImFont"][6]["template_type"] = "ImWchar" -defs["structs"]["ImFont"][6]["type"] = "ImVector_ImWchar" +defs["structs"]["ImFont"][6]["name"] = "FallbackGlyph" +defs["structs"]["ImFont"][6]["type"] = "const ImFontGlyph*" defs["structs"]["ImFont"][7] = {} -defs["structs"]["ImFont"][7]["name"] = "FallbackGlyph" -defs["structs"]["ImFont"][7]["type"] = "const ImFontGlyph*" +defs["structs"]["ImFont"][7]["name"] = "DisplayOffset" +defs["structs"]["ImFont"][7]["type"] = "ImVec2" defs["structs"]["ImFont"][8] = {} -defs["structs"]["ImFont"][8]["name"] = "FallbackAdvanceX" -defs["structs"]["ImFont"][8]["type"] = "float" +defs["structs"]["ImFont"][8]["name"] = "ContainerAtlas" +defs["structs"]["ImFont"][8]["type"] = "ImFontAtlas*" defs["structs"]["ImFont"][9] = {} -defs["structs"]["ImFont"][9]["name"] = "FallbackChar" -defs["structs"]["ImFont"][9]["type"] = "ImWchar" +defs["structs"]["ImFont"][9]["name"] = "ConfigData" +defs["structs"]["ImFont"][9]["type"] = "const ImFontConfig*" defs["structs"]["ImFont"][10] = {} defs["structs"]["ImFont"][10]["name"] = "ConfigDataCount" defs["structs"]["ImFont"][10]["type"] = "short" defs["structs"]["ImFont"][11] = {} -defs["structs"]["ImFont"][11]["name"] = "ConfigData" -defs["structs"]["ImFont"][11]["type"] = "ImFontConfig*" +defs["structs"]["ImFont"][11]["name"] = "FallbackChar" +defs["structs"]["ImFont"][11]["type"] = "ImWchar" defs["structs"]["ImFont"][12] = {} -defs["structs"]["ImFont"][12]["name"] = "ContainerAtlas" -defs["structs"]["ImFont"][12]["type"] = "ImFontAtlas*" +defs["structs"]["ImFont"][12]["name"] = "Scale" +defs["structs"]["ImFont"][12]["type"] = "float" defs["structs"]["ImFont"][13] = {} defs["structs"]["ImFont"][13]["name"] = "Ascent" defs["structs"]["ImFont"][13]["type"] = "float" @@ -1483,11 +1490,11 @@ defs["structs"]["ImFont"][14] = {} defs["structs"]["ImFont"][14]["name"] = "Descent" defs["structs"]["ImFont"][14]["type"] = "float" defs["structs"]["ImFont"][15] = {} -defs["structs"]["ImFont"][15]["name"] = "DirtyLookupTables" -defs["structs"]["ImFont"][15]["type"] = "bool" +defs["structs"]["ImFont"][15]["name"] = "MetricsTotalSurface" +defs["structs"]["ImFont"][15]["type"] = "int" defs["structs"]["ImFont"][16] = {} -defs["structs"]["ImFont"][16]["name"] = "MetricsTotalSurface" -defs["structs"]["ImFont"][16]["type"] = "int" +defs["structs"]["ImFont"][16]["name"] = "DirtyLookupTables" +defs["structs"]["ImFont"][16]["type"] = "bool" defs["structs"]["ImFontAtlas"] = {} defs["structs"]["ImFontAtlas"][1] = {} defs["structs"]["ImFontAtlas"][1]["name"] = "Locked" @@ -1690,197 +1697,191 @@ defs["structs"]["ImGuiIO"][19] = {} defs["structs"]["ImGuiIO"][19]["name"] = "DisplayFramebufferScale" defs["structs"]["ImGuiIO"][19]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][20] = {} -defs["structs"]["ImGuiIO"][20]["name"] = "DisplayVisibleMin" -defs["structs"]["ImGuiIO"][20]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][20]["name"] = "MouseDrawCursor" +defs["structs"]["ImGuiIO"][20]["type"] = "bool" defs["structs"]["ImGuiIO"][21] = {} -defs["structs"]["ImGuiIO"][21]["name"] = "DisplayVisibleMax" -defs["structs"]["ImGuiIO"][21]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][21]["name"] = "ConfigMacOSXBehaviors" +defs["structs"]["ImGuiIO"][21]["type"] = "bool" defs["structs"]["ImGuiIO"][22] = {} -defs["structs"]["ImGuiIO"][22]["name"] = "MouseDrawCursor" +defs["structs"]["ImGuiIO"][22]["name"] = "ConfigInputTextCursorBlink" defs["structs"]["ImGuiIO"][22]["type"] = "bool" defs["structs"]["ImGuiIO"][23] = {} -defs["structs"]["ImGuiIO"][23]["name"] = "ConfigMacOSXBehaviors" +defs["structs"]["ImGuiIO"][23]["name"] = "ConfigWindowsResizeFromEdges" defs["structs"]["ImGuiIO"][23]["type"] = "bool" defs["structs"]["ImGuiIO"][24] = {} -defs["structs"]["ImGuiIO"][24]["name"] = "ConfigInputTextCursorBlink" +defs["structs"]["ImGuiIO"][24]["name"] = "ConfigWindowsMoveFromTitleBarOnly" defs["structs"]["ImGuiIO"][24]["type"] = "bool" defs["structs"]["ImGuiIO"][25] = {} -defs["structs"]["ImGuiIO"][25]["name"] = "ConfigWindowsResizeFromEdges" -defs["structs"]["ImGuiIO"][25]["type"] = "bool" +defs["structs"]["ImGuiIO"][25]["name"] = "BackendPlatformName" +defs["structs"]["ImGuiIO"][25]["type"] = "const char*" defs["structs"]["ImGuiIO"][26] = {} -defs["structs"]["ImGuiIO"][26]["name"] = "ConfigWindowsMoveFromTitleBarOnly" -defs["structs"]["ImGuiIO"][26]["type"] = "bool" +defs["structs"]["ImGuiIO"][26]["name"] = "BackendRendererName" +defs["structs"]["ImGuiIO"][26]["type"] = "const char*" defs["structs"]["ImGuiIO"][27] = {} -defs["structs"]["ImGuiIO"][27]["name"] = "BackendPlatformName" -defs["structs"]["ImGuiIO"][27]["type"] = "const char*" +defs["structs"]["ImGuiIO"][27]["name"] = "BackendPlatformUserData" +defs["structs"]["ImGuiIO"][27]["type"] = "void*" defs["structs"]["ImGuiIO"][28] = {} -defs["structs"]["ImGuiIO"][28]["name"] = "BackendRendererName" -defs["structs"]["ImGuiIO"][28]["type"] = "const char*" +defs["structs"]["ImGuiIO"][28]["name"] = "BackendRendererUserData" +defs["structs"]["ImGuiIO"][28]["type"] = "void*" defs["structs"]["ImGuiIO"][29] = {} -defs["structs"]["ImGuiIO"][29]["name"] = "BackendPlatformUserData" +defs["structs"]["ImGuiIO"][29]["name"] = "BackendLanguageUserData" defs["structs"]["ImGuiIO"][29]["type"] = "void*" defs["structs"]["ImGuiIO"][30] = {} -defs["structs"]["ImGuiIO"][30]["name"] = "BackendRendererUserData" -defs["structs"]["ImGuiIO"][30]["type"] = "void*" +defs["structs"]["ImGuiIO"][30]["name"] = "GetClipboardTextFn" +defs["structs"]["ImGuiIO"][30]["type"] = "const char*(*)(void* user_data)" defs["structs"]["ImGuiIO"][31] = {} -defs["structs"]["ImGuiIO"][31]["name"] = "BackendLanguageUserData" -defs["structs"]["ImGuiIO"][31]["type"] = "void*" +defs["structs"]["ImGuiIO"][31]["name"] = "SetClipboardTextFn" +defs["structs"]["ImGuiIO"][31]["type"] = "void(*)(void* user_data,const char* text)" defs["structs"]["ImGuiIO"][32] = {} -defs["structs"]["ImGuiIO"][32]["name"] = "GetClipboardTextFn" -defs["structs"]["ImGuiIO"][32]["type"] = "const char*(*)(void* user_data)" +defs["structs"]["ImGuiIO"][32]["name"] = "ClipboardUserData" +defs["structs"]["ImGuiIO"][32]["type"] = "void*" defs["structs"]["ImGuiIO"][33] = {} -defs["structs"]["ImGuiIO"][33]["name"] = "SetClipboardTextFn" -defs["structs"]["ImGuiIO"][33]["type"] = "void(*)(void* user_data,const char* text)" +defs["structs"]["ImGuiIO"][33]["name"] = "ImeSetInputScreenPosFn" +defs["structs"]["ImGuiIO"][33]["type"] = "void(*)(int x,int y)" defs["structs"]["ImGuiIO"][34] = {} -defs["structs"]["ImGuiIO"][34]["name"] = "ClipboardUserData" +defs["structs"]["ImGuiIO"][34]["name"] = "ImeWindowHandle" defs["structs"]["ImGuiIO"][34]["type"] = "void*" defs["structs"]["ImGuiIO"][35] = {} -defs["structs"]["ImGuiIO"][35]["name"] = "ImeSetInputScreenPosFn" -defs["structs"]["ImGuiIO"][35]["type"] = "void(*)(int x,int y)" +defs["structs"]["ImGuiIO"][35]["name"] = "RenderDrawListsFnUnused" +defs["structs"]["ImGuiIO"][35]["type"] = "void*" defs["structs"]["ImGuiIO"][36] = {} -defs["structs"]["ImGuiIO"][36]["name"] = "ImeWindowHandle" -defs["structs"]["ImGuiIO"][36]["type"] = "void*" +defs["structs"]["ImGuiIO"][36]["name"] = "MousePos" +defs["structs"]["ImGuiIO"][36]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][37] = {} -defs["structs"]["ImGuiIO"][37]["name"] = "RenderDrawListsFnUnused" -defs["structs"]["ImGuiIO"][37]["type"] = "void*" +defs["structs"]["ImGuiIO"][37]["name"] = "MouseDown[5]" +defs["structs"]["ImGuiIO"][37]["size"] = 5 +defs["structs"]["ImGuiIO"][37]["type"] = "bool" defs["structs"]["ImGuiIO"][38] = {} -defs["structs"]["ImGuiIO"][38]["name"] = "MousePos" -defs["structs"]["ImGuiIO"][38]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][38]["name"] = "MouseWheel" +defs["structs"]["ImGuiIO"][38]["type"] = "float" defs["structs"]["ImGuiIO"][39] = {} -defs["structs"]["ImGuiIO"][39]["name"] = "MouseDown[5]" -defs["structs"]["ImGuiIO"][39]["size"] = 5 -defs["structs"]["ImGuiIO"][39]["type"] = "bool" +defs["structs"]["ImGuiIO"][39]["name"] = "MouseWheelH" +defs["structs"]["ImGuiIO"][39]["type"] = "float" defs["structs"]["ImGuiIO"][40] = {} -defs["structs"]["ImGuiIO"][40]["name"] = "MouseWheel" -defs["structs"]["ImGuiIO"][40]["type"] = "float" +defs["structs"]["ImGuiIO"][40]["name"] = "KeyCtrl" +defs["structs"]["ImGuiIO"][40]["type"] = "bool" defs["structs"]["ImGuiIO"][41] = {} -defs["structs"]["ImGuiIO"][41]["name"] = "MouseWheelH" -defs["structs"]["ImGuiIO"][41]["type"] = "float" +defs["structs"]["ImGuiIO"][41]["name"] = "KeyShift" +defs["structs"]["ImGuiIO"][41]["type"] = "bool" defs["structs"]["ImGuiIO"][42] = {} -defs["structs"]["ImGuiIO"][42]["name"] = "KeyCtrl" +defs["structs"]["ImGuiIO"][42]["name"] = "KeyAlt" defs["structs"]["ImGuiIO"][42]["type"] = "bool" defs["structs"]["ImGuiIO"][43] = {} -defs["structs"]["ImGuiIO"][43]["name"] = "KeyShift" +defs["structs"]["ImGuiIO"][43]["name"] = "KeySuper" defs["structs"]["ImGuiIO"][43]["type"] = "bool" defs["structs"]["ImGuiIO"][44] = {} -defs["structs"]["ImGuiIO"][44]["name"] = "KeyAlt" +defs["structs"]["ImGuiIO"][44]["name"] = "KeysDown[512]" +defs["structs"]["ImGuiIO"][44]["size"] = 512 defs["structs"]["ImGuiIO"][44]["type"] = "bool" defs["structs"]["ImGuiIO"][45] = {} -defs["structs"]["ImGuiIO"][45]["name"] = "KeySuper" -defs["structs"]["ImGuiIO"][45]["type"] = "bool" +defs["structs"]["ImGuiIO"][45]["name"] = "NavInputs[ImGuiNavInput_COUNT]" +defs["structs"]["ImGuiIO"][45]["size"] = 21 +defs["structs"]["ImGuiIO"][45]["type"] = "float" defs["structs"]["ImGuiIO"][46] = {} -defs["structs"]["ImGuiIO"][46]["name"] = "KeysDown[512]" -defs["structs"]["ImGuiIO"][46]["size"] = 512 +defs["structs"]["ImGuiIO"][46]["name"] = "WantCaptureMouse" defs["structs"]["ImGuiIO"][46]["type"] = "bool" defs["structs"]["ImGuiIO"][47] = {} -defs["structs"]["ImGuiIO"][47]["name"] = "NavInputs[ImGuiNavInput_COUNT]" -defs["structs"]["ImGuiIO"][47]["size"] = 21 -defs["structs"]["ImGuiIO"][47]["type"] = "float" +defs["structs"]["ImGuiIO"][47]["name"] = "WantCaptureKeyboard" +defs["structs"]["ImGuiIO"][47]["type"] = "bool" defs["structs"]["ImGuiIO"][48] = {} -defs["structs"]["ImGuiIO"][48]["name"] = "WantCaptureMouse" +defs["structs"]["ImGuiIO"][48]["name"] = "WantTextInput" defs["structs"]["ImGuiIO"][48]["type"] = "bool" defs["structs"]["ImGuiIO"][49] = {} -defs["structs"]["ImGuiIO"][49]["name"] = "WantCaptureKeyboard" +defs["structs"]["ImGuiIO"][49]["name"] = "WantSetMousePos" defs["structs"]["ImGuiIO"][49]["type"] = "bool" defs["structs"]["ImGuiIO"][50] = {} -defs["structs"]["ImGuiIO"][50]["name"] = "WantTextInput" +defs["structs"]["ImGuiIO"][50]["name"] = "WantSaveIniSettings" defs["structs"]["ImGuiIO"][50]["type"] = "bool" defs["structs"]["ImGuiIO"][51] = {} -defs["structs"]["ImGuiIO"][51]["name"] = "WantSetMousePos" +defs["structs"]["ImGuiIO"][51]["name"] = "NavActive" defs["structs"]["ImGuiIO"][51]["type"] = "bool" defs["structs"]["ImGuiIO"][52] = {} -defs["structs"]["ImGuiIO"][52]["name"] = "WantSaveIniSettings" +defs["structs"]["ImGuiIO"][52]["name"] = "NavVisible" defs["structs"]["ImGuiIO"][52]["type"] = "bool" defs["structs"]["ImGuiIO"][53] = {} -defs["structs"]["ImGuiIO"][53]["name"] = "NavActive" -defs["structs"]["ImGuiIO"][53]["type"] = "bool" +defs["structs"]["ImGuiIO"][53]["name"] = "Framerate" +defs["structs"]["ImGuiIO"][53]["type"] = "float" defs["structs"]["ImGuiIO"][54] = {} -defs["structs"]["ImGuiIO"][54]["name"] = "NavVisible" -defs["structs"]["ImGuiIO"][54]["type"] = "bool" +defs["structs"]["ImGuiIO"][54]["name"] = "MetricsRenderVertices" +defs["structs"]["ImGuiIO"][54]["type"] = "int" defs["structs"]["ImGuiIO"][55] = {} -defs["structs"]["ImGuiIO"][55]["name"] = "Framerate" -defs["structs"]["ImGuiIO"][55]["type"] = "float" +defs["structs"]["ImGuiIO"][55]["name"] = "MetricsRenderIndices" +defs["structs"]["ImGuiIO"][55]["type"] = "int" defs["structs"]["ImGuiIO"][56] = {} -defs["structs"]["ImGuiIO"][56]["name"] = "MetricsRenderVertices" +defs["structs"]["ImGuiIO"][56]["name"] = "MetricsRenderWindows" defs["structs"]["ImGuiIO"][56]["type"] = "int" defs["structs"]["ImGuiIO"][57] = {} -defs["structs"]["ImGuiIO"][57]["name"] = "MetricsRenderIndices" +defs["structs"]["ImGuiIO"][57]["name"] = "MetricsActiveWindows" defs["structs"]["ImGuiIO"][57]["type"] = "int" defs["structs"]["ImGuiIO"][58] = {} -defs["structs"]["ImGuiIO"][58]["name"] = "MetricsRenderWindows" +defs["structs"]["ImGuiIO"][58]["name"] = "MetricsActiveAllocations" defs["structs"]["ImGuiIO"][58]["type"] = "int" defs["structs"]["ImGuiIO"][59] = {} -defs["structs"]["ImGuiIO"][59]["name"] = "MetricsActiveWindows" -defs["structs"]["ImGuiIO"][59]["type"] = "int" +defs["structs"]["ImGuiIO"][59]["name"] = "MouseDelta" +defs["structs"]["ImGuiIO"][59]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][60] = {} -defs["structs"]["ImGuiIO"][60]["name"] = "MetricsActiveAllocations" -defs["structs"]["ImGuiIO"][60]["type"] = "int" +defs["structs"]["ImGuiIO"][60]["name"] = "MousePosPrev" +defs["structs"]["ImGuiIO"][60]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][61] = {} -defs["structs"]["ImGuiIO"][61]["name"] = "MouseDelta" +defs["structs"]["ImGuiIO"][61]["name"] = "MouseClickedPos[5]" +defs["structs"]["ImGuiIO"][61]["size"] = 5 defs["structs"]["ImGuiIO"][61]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][62] = {} -defs["structs"]["ImGuiIO"][62]["name"] = "MousePosPrev" -defs["structs"]["ImGuiIO"][62]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][62]["name"] = "MouseClickedTime[5]" +defs["structs"]["ImGuiIO"][62]["size"] = 5 +defs["structs"]["ImGuiIO"][62]["type"] = "double" defs["structs"]["ImGuiIO"][63] = {} -defs["structs"]["ImGuiIO"][63]["name"] = "MouseClickedPos[5]" +defs["structs"]["ImGuiIO"][63]["name"] = "MouseClicked[5]" defs["structs"]["ImGuiIO"][63]["size"] = 5 -defs["structs"]["ImGuiIO"][63]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][63]["type"] = "bool" defs["structs"]["ImGuiIO"][64] = {} -defs["structs"]["ImGuiIO"][64]["name"] = "MouseClickedTime[5]" +defs["structs"]["ImGuiIO"][64]["name"] = "MouseDoubleClicked[5]" defs["structs"]["ImGuiIO"][64]["size"] = 5 -defs["structs"]["ImGuiIO"][64]["type"] = "double" +defs["structs"]["ImGuiIO"][64]["type"] = "bool" defs["structs"]["ImGuiIO"][65] = {} -defs["structs"]["ImGuiIO"][65]["name"] = "MouseClicked[5]" +defs["structs"]["ImGuiIO"][65]["name"] = "MouseReleased[5]" defs["structs"]["ImGuiIO"][65]["size"] = 5 defs["structs"]["ImGuiIO"][65]["type"] = "bool" defs["structs"]["ImGuiIO"][66] = {} -defs["structs"]["ImGuiIO"][66]["name"] = "MouseDoubleClicked[5]" +defs["structs"]["ImGuiIO"][66]["name"] = "MouseDownOwned[5]" defs["structs"]["ImGuiIO"][66]["size"] = 5 defs["structs"]["ImGuiIO"][66]["type"] = "bool" defs["structs"]["ImGuiIO"][67] = {} -defs["structs"]["ImGuiIO"][67]["name"] = "MouseReleased[5]" +defs["structs"]["ImGuiIO"][67]["name"] = "MouseDownDuration[5]" defs["structs"]["ImGuiIO"][67]["size"] = 5 -defs["structs"]["ImGuiIO"][67]["type"] = "bool" +defs["structs"]["ImGuiIO"][67]["type"] = "float" defs["structs"]["ImGuiIO"][68] = {} -defs["structs"]["ImGuiIO"][68]["name"] = "MouseDownOwned[5]" +defs["structs"]["ImGuiIO"][68]["name"] = "MouseDownDurationPrev[5]" defs["structs"]["ImGuiIO"][68]["size"] = 5 -defs["structs"]["ImGuiIO"][68]["type"] = "bool" +defs["structs"]["ImGuiIO"][68]["type"] = "float" defs["structs"]["ImGuiIO"][69] = {} -defs["structs"]["ImGuiIO"][69]["name"] = "MouseDownDuration[5]" +defs["structs"]["ImGuiIO"][69]["name"] = "MouseDragMaxDistanceAbs[5]" defs["structs"]["ImGuiIO"][69]["size"] = 5 -defs["structs"]["ImGuiIO"][69]["type"] = "float" +defs["structs"]["ImGuiIO"][69]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][70] = {} -defs["structs"]["ImGuiIO"][70]["name"] = "MouseDownDurationPrev[5]" +defs["structs"]["ImGuiIO"][70]["name"] = "MouseDragMaxDistanceSqr[5]" defs["structs"]["ImGuiIO"][70]["size"] = 5 defs["structs"]["ImGuiIO"][70]["type"] = "float" defs["structs"]["ImGuiIO"][71] = {} -defs["structs"]["ImGuiIO"][71]["name"] = "MouseDragMaxDistanceAbs[5]" -defs["structs"]["ImGuiIO"][71]["size"] = 5 -defs["structs"]["ImGuiIO"][71]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][71]["name"] = "KeysDownDuration[512]" +defs["structs"]["ImGuiIO"][71]["size"] = 512 +defs["structs"]["ImGuiIO"][71]["type"] = "float" defs["structs"]["ImGuiIO"][72] = {} -defs["structs"]["ImGuiIO"][72]["name"] = "MouseDragMaxDistanceSqr[5]" -defs["structs"]["ImGuiIO"][72]["size"] = 5 +defs["structs"]["ImGuiIO"][72]["name"] = "KeysDownDurationPrev[512]" +defs["structs"]["ImGuiIO"][72]["size"] = 512 defs["structs"]["ImGuiIO"][72]["type"] = "float" defs["structs"]["ImGuiIO"][73] = {} -defs["structs"]["ImGuiIO"][73]["name"] = "KeysDownDuration[512]" -defs["structs"]["ImGuiIO"][73]["size"] = 512 +defs["structs"]["ImGuiIO"][73]["name"] = "NavInputsDownDuration[ImGuiNavInput_COUNT]" +defs["structs"]["ImGuiIO"][73]["size"] = 21 defs["structs"]["ImGuiIO"][73]["type"] = "float" defs["structs"]["ImGuiIO"][74] = {} -defs["structs"]["ImGuiIO"][74]["name"] = "KeysDownDurationPrev[512]" -defs["structs"]["ImGuiIO"][74]["size"] = 512 +defs["structs"]["ImGuiIO"][74]["name"] = "NavInputsDownDurationPrev[ImGuiNavInput_COUNT]" +defs["structs"]["ImGuiIO"][74]["size"] = 21 defs["structs"]["ImGuiIO"][74]["type"] = "float" defs["structs"]["ImGuiIO"][75] = {} -defs["structs"]["ImGuiIO"][75]["name"] = "NavInputsDownDuration[ImGuiNavInput_COUNT]" -defs["structs"]["ImGuiIO"][75]["size"] = 21 -defs["structs"]["ImGuiIO"][75]["type"] = "float" -defs["structs"]["ImGuiIO"][76] = {} -defs["structs"]["ImGuiIO"][76]["name"] = "NavInputsDownDurationPrev[ImGuiNavInput_COUNT]" -defs["structs"]["ImGuiIO"][76]["size"] = 21 -defs["structs"]["ImGuiIO"][76]["type"] = "float" -defs["structs"]["ImGuiIO"][77] = {} -defs["structs"]["ImGuiIO"][77]["name"] = "InputQueueCharacters" -defs["structs"]["ImGuiIO"][77]["template_type"] = "ImWchar" -defs["structs"]["ImGuiIO"][77]["type"] = "ImVector_ImWchar" +defs["structs"]["ImGuiIO"][75]["name"] = "InputQueueCharacters" +defs["structs"]["ImGuiIO"][75]["template_type"] = "ImWchar" +defs["structs"]["ImGuiIO"][75]["type"] = "ImVector_ImWchar" defs["structs"]["ImGuiInputTextCallbackData"] = {} defs["structs"]["ImGuiInputTextCallbackData"][1] = {} defs["structs"]["ImGuiInputTextCallbackData"][1]["name"] = "EventFlag" @@ -2062,27 +2063,30 @@ defs["structs"]["ImGuiStyle"][25] = {} defs["structs"]["ImGuiStyle"][25]["name"] = "ButtonTextAlign" defs["structs"]["ImGuiStyle"][25]["type"] = "ImVec2" defs["structs"]["ImGuiStyle"][26] = {} -defs["structs"]["ImGuiStyle"][26]["name"] = "DisplayWindowPadding" +defs["structs"]["ImGuiStyle"][26]["name"] = "SelectableTextAlign" defs["structs"]["ImGuiStyle"][26]["type"] = "ImVec2" defs["structs"]["ImGuiStyle"][27] = {} -defs["structs"]["ImGuiStyle"][27]["name"] = "DisplaySafeAreaPadding" +defs["structs"]["ImGuiStyle"][27]["name"] = "DisplayWindowPadding" defs["structs"]["ImGuiStyle"][27]["type"] = "ImVec2" defs["structs"]["ImGuiStyle"][28] = {} -defs["structs"]["ImGuiStyle"][28]["name"] = "MouseCursorScale" -defs["structs"]["ImGuiStyle"][28]["type"] = "float" +defs["structs"]["ImGuiStyle"][28]["name"] = "DisplaySafeAreaPadding" +defs["structs"]["ImGuiStyle"][28]["type"] = "ImVec2" defs["structs"]["ImGuiStyle"][29] = {} -defs["structs"]["ImGuiStyle"][29]["name"] = "AntiAliasedLines" -defs["structs"]["ImGuiStyle"][29]["type"] = "bool" +defs["structs"]["ImGuiStyle"][29]["name"] = "MouseCursorScale" +defs["structs"]["ImGuiStyle"][29]["type"] = "float" defs["structs"]["ImGuiStyle"][30] = {} -defs["structs"]["ImGuiStyle"][30]["name"] = "AntiAliasedFill" +defs["structs"]["ImGuiStyle"][30]["name"] = "AntiAliasedLines" defs["structs"]["ImGuiStyle"][30]["type"] = "bool" defs["structs"]["ImGuiStyle"][31] = {} -defs["structs"]["ImGuiStyle"][31]["name"] = "CurveTessellationTol" -defs["structs"]["ImGuiStyle"][31]["type"] = "float" +defs["structs"]["ImGuiStyle"][31]["name"] = "AntiAliasedFill" +defs["structs"]["ImGuiStyle"][31]["type"] = "bool" defs["structs"]["ImGuiStyle"][32] = {} -defs["structs"]["ImGuiStyle"][32]["name"] = "Colors[ImGuiCol_COUNT]" -defs["structs"]["ImGuiStyle"][32]["size"] = 48 -defs["structs"]["ImGuiStyle"][32]["type"] = "ImVec4" +defs["structs"]["ImGuiStyle"][32]["name"] = "CurveTessellationTol" +defs["structs"]["ImGuiStyle"][32]["type"] = "float" +defs["structs"]["ImGuiStyle"][33] = {} +defs["structs"]["ImGuiStyle"][33]["name"] = "Colors[ImGuiCol_COUNT]" +defs["structs"]["ImGuiStyle"][33]["size"] = 48 +defs["structs"]["ImGuiStyle"][33]["type"] = "ImVec4" defs["structs"]["ImGuiTextBuffer"] = {} defs["structs"]["ImGuiTextBuffer"][1] = {} defs["structs"]["ImGuiTextBuffer"][1]["name"] = "Buf" diff --git a/imgui b/imgui index 7a5058e..3c15dff 160000 --- a/imgui +++ b/imgui @@ -1 +1 @@ -Subproject commit 7a5058e3bfea4149acef2ad98d8fdd62605a0f4c +Subproject commit 3c15dffc944419eb4bb17984548468270ca90486