diff --git a/README.md b/README.md index bc76b10..1e39e37 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)) @@ -42,10 +42,11 @@ 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 + * 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: diff --git a/cimgui.cpp b/cimgui.cpp index 17b56d0..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(); @@ -2431,6 +2439,1994 @@ 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_char_contains(const ImVector_char* self,const char v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_int_contains(const ImVector_int* self,const int 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); +} @@ -2470,10 +4466,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 f21a9bb..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 @@ -43,7 +43,6 @@ 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 ImVec4 ImVec4; @@ -71,6 +70,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 +128,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; @@ -235,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, @@ -452,6 +472,7 @@ enum ImGuiStyleVar_ ImGuiStyleVar_GrabRounding, ImGuiStyleVar_TabRounding, ImGuiStyleVar_ButtonTextAlign, + ImGuiStyleVar_SelectableTextAlign, ImGuiStyleVar_COUNT }; enum ImGuiColorEditFlags_ @@ -502,24 +523,6 @@ enum ImGuiCond_ ImGuiCond_FirstUseEver = 1 << 2, ImGuiCond_Appearing = 1 << 3 }; -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 ImGuiStyle { float Alpha; @@ -547,6 +550,7 @@ struct ImGuiStyle float TabRounding; float TabBorderSize; ImVec2 ButtonTextAlign; + ImVec2 SelectableTextAlign; ImVec2 DisplayWindowPadding; ImVec2 DisplaySafeAreaPadding; float MouseCursorScale; @@ -576,8 +580,6 @@ struct ImGuiIO bool FontAllowUserScaling; ImFont* FontDefault; ImVec2 DisplayFramebufferScale; - ImVec2 DisplayVisibleMin; - ImVec2 DisplayVisibleMax; bool MouseDrawCursor; bool ConfigMacOSXBehaviors; bool ConfigInputTextCursorBlink; @@ -696,7 +698,6 @@ struct ImColor { ImVec4 Value; }; -typedef void (*ImDrawCallback)(const ImDrawList* parent_list, const ImDrawCmd* cmd); struct ImDrawCmd { unsigned int ElemCount; @@ -761,6 +762,7 @@ struct ImDrawData int TotalVtxCount; ImVec2 DisplayPos; ImVec2 DisplaySize; + ImVec2 FramebufferScale; }; struct ImFontConfig { @@ -820,21 +822,31 @@ 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 + { + const char* b; + const char* e; +}; + struct Pair + { + ImGuiID key; + union { int val_i; float val_f; void* val_p; }; }; struct CustomRect { @@ -844,18 +856,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; @@ -888,8 +889,23 @@ 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_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); @@ -1183,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); @@ -1281,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); @@ -1373,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); @@ -1418,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); @@ -1430,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); @@ -1477,6 +1495,503 @@ 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_char_contains(const ImVector_char* self,const char v); +CIMGUI_API bool ImVector_int_contains(const ImVector_int* self,const int 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 @@ -1491,7 +2006,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 144667d..9d1a52d 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 @@ -173,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 @@ -261,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) @@ -282,16 +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_]+%)%([^%(%)]*%)" @@ -354,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 @@ -368,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],{}) @@ -379,6 +469,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 @@ -389,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 @@ -462,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 @@ -483,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 @@ -511,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 @@ -587,6 +682,7 @@ function M.Parser() par.embeded_structs = {} par.inerstructs = {} par.templates = {} + par.typenames = {} par.typedefs_dict = {} par.cname_overloads = {} par.manuals = {} @@ -612,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 @@ -643,7 +742,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,8 +758,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 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 @@ -723,10 +829,11 @@ 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 = {} - + 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 @@ -745,7 +852,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 @@ -828,7 +936,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]) @@ -952,9 +1061,113 @@ 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 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}) + 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/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..b4d9e2e 100644 --- a/generator/generator2.lua +++ b/generator/generator2.lua @@ -230,12 +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.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 not manual and not def.templated then + local addcoment = def.comment or "" local empty = def.args:match("^%(%)") --no args if def.constructor then @@ -244,6 +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 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 @@ -260,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") @@ -334,7 +339,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 @@ -439,11 +444,34 @@ 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) + -- 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 + --delete also from funcdefs + 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() - + --parser.templates get completely defined here + --cpp2ffi.prtable(parser.templates) + local outtab = {} generate_templates(outtab,parser.templates) local cstructsstr = outpre..table.concat(outtab,"")..outpost @@ -516,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() @@ -530,6 +558,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/cimgui.cpp b/generator/output/cimgui.cpp index 17b56d0..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(); @@ -2431,6 +2439,1994 @@ 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_char_contains(const ImVector_char* self,const char v) +{ + return self->contains(v); +} +CIMGUI_API bool ImVector_int_contains(const ImVector_int* self,const int 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); +} @@ -2470,10 +4466,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 f21a9bb..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 @@ -43,7 +43,6 @@ 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 ImVec4 ImVec4; @@ -71,6 +70,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 +128,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; @@ -235,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, @@ -452,6 +472,7 @@ enum ImGuiStyleVar_ ImGuiStyleVar_GrabRounding, ImGuiStyleVar_TabRounding, ImGuiStyleVar_ButtonTextAlign, + ImGuiStyleVar_SelectableTextAlign, ImGuiStyleVar_COUNT }; enum ImGuiColorEditFlags_ @@ -502,24 +523,6 @@ enum ImGuiCond_ ImGuiCond_FirstUseEver = 1 << 2, ImGuiCond_Appearing = 1 << 3 }; -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 ImGuiStyle { float Alpha; @@ -547,6 +550,7 @@ struct ImGuiStyle float TabRounding; float TabBorderSize; ImVec2 ButtonTextAlign; + ImVec2 SelectableTextAlign; ImVec2 DisplayWindowPadding; ImVec2 DisplaySafeAreaPadding; float MouseCursorScale; @@ -576,8 +580,6 @@ struct ImGuiIO bool FontAllowUserScaling; ImFont* FontDefault; ImVec2 DisplayFramebufferScale; - ImVec2 DisplayVisibleMin; - ImVec2 DisplayVisibleMax; bool MouseDrawCursor; bool ConfigMacOSXBehaviors; bool ConfigInputTextCursorBlink; @@ -696,7 +698,6 @@ struct ImColor { ImVec4 Value; }; -typedef void (*ImDrawCallback)(const ImDrawList* parent_list, const ImDrawCmd* cmd); struct ImDrawCmd { unsigned int ElemCount; @@ -761,6 +762,7 @@ struct ImDrawData int TotalVtxCount; ImVec2 DisplayPos; ImVec2 DisplaySize; + ImVec2 FramebufferScale; }; struct ImFontConfig { @@ -820,21 +822,31 @@ 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 + { + const char* b; + const char* e; +}; + struct Pair + { + ImGuiID key; + union { int val_i; float val_f; void* val_p; }; }; struct CustomRect { @@ -844,18 +856,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; @@ -888,8 +889,23 @@ 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_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); @@ -1183,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); @@ -1281,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); @@ -1373,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); @@ -1418,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); @@ -1430,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); @@ -1477,6 +1495,503 @@ 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_char_contains(const ImVector_char* self,const char v); +CIMGUI_API bool ImVector_int_contains(const ImVector_int* self,const int 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 @@ -1491,7 +2006,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/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 0cb0248..31f5ab0 100644 --- a/generator/output/definitions.json +++ b/generator/output/definitions.json @@ -6,10 +6,10 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "CustomRect_CustomRect", - "comment": "", "constructor": true, "defaults": [], "funcname": "CustomRect", + "ov_cimguiname": "CustomRect_CustomRect", "signature": "()", "stname": "CustomRect" } @@ -26,11 +26,11 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "CustomRect_IsPacked", - "comment": "", "defaults": [], "funcname": "IsPacked", + "ov_cimguiname": "CustomRect_IsPacked", "ret": "bool", - "signature": "()", + "signature": "()const", "stname": "CustomRect" } ], @@ -81,11 +81,11 @@ "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" }, "funcname": "HSV", + "ov_cimguiname": "ImColor_HSV", "ret": "ImColor", "signature": "(float,float,float,float)", "stname": "ImColor" @@ -121,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" }, @@ -159,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" }, @@ -179,7 +177,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImColor_ImColor", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImColor", @@ -210,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" @@ -231,7 +227,6 @@ "argsoriginal": "(ImU32 rgba)", "call_args": "(rgba)", "cimguiname": "ImColor_ImColor", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImColor", @@ -262,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" @@ -283,7 +277,6 @@ "argsoriginal": "(const ImVec4& col)", "call_args": "(col)", "cimguiname": "ImColor_ImColor", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImColor", @@ -320,11 +313,11 @@ "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" }, "funcname": "SetHSV", + "ov_cimguiname": "ImColor_SetHSV", "ret": "void", "signature": "(float,float,float,float)", "stname": "ImColor" @@ -356,10 +349,10 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawCmd_ImDrawCmd", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImDrawCmd", + "ov_cimguiname": "ImDrawCmd_ImDrawCmd", "signature": "()", "stname": "ImDrawCmd" } @@ -395,9 +388,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawData_Clear", - "comment": "", "defaults": [], "funcname": "Clear", + "ov_cimguiname": "ImDrawData_Clear", "ret": "void", "signature": "()", "stname": "ImDrawData" @@ -415,9 +408,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawData_DeIndexAllBuffers", - "comment": "", "defaults": [], "funcname": "DeIndexAllBuffers", + "ov_cimguiname": "ImDrawData_DeIndexAllBuffers", "ret": "void", "signature": "()", "stname": "ImDrawData" @@ -430,33 +423,33 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawData_ImDrawData", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImDrawData", + "ov_cimguiname": "ImDrawData_ImDrawData", "signature": "()", "stname": "ImDrawData" } ], "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", - "comment": "", "defaults": [], "funcname": "ScaleClipRects", + "ov_cimguiname": "ImDrawData_ScaleClipRects", "ret": "void", "signature": "(const ImVec2)", "stname": "ImDrawData" @@ -521,11 +514,11 @@ "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" }, "funcname": "AddBezierCurve", + "ov_cimguiname": "ImDrawList_AddBezierCurve", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", "stname": "ImDrawList" @@ -551,9 +544,9 @@ "argsoriginal": "(ImDrawCallback callback,void* callback_data)", "call_args": "(callback,callback_data)", "cimguiname": "ImDrawList_AddCallback", - "comment": "", "defaults": [], "funcname": "AddCallback", + "ov_cimguiname": "ImDrawList_AddCallback", "ret": "void", "signature": "(ImDrawCallback,void*)", "stname": "ImDrawList" @@ -591,12 +584,12 @@ "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" }, "funcname": "AddCircle", + "ov_cimguiname": "ImDrawList_AddCircle", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", "stname": "ImDrawList" @@ -630,11 +623,11 @@ "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" }, "funcname": "AddCircleFilled", + "ov_cimguiname": "ImDrawList_AddCircleFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", "stname": "ImDrawList" @@ -664,9 +657,9 @@ "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", "ret": "void", "signature": "(const ImVec2*,const int,ImU32)", "stname": "ImDrawList" @@ -684,9 +677,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_AddDrawCmd", - "comment": "", "defaults": [], "funcname": "AddDrawCmd", + "ov_cimguiname": "ImDrawList_AddDrawCmd", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -728,13 +721,13 @@ "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)", "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" @@ -792,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)", @@ -801,6 +793,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" @@ -850,11 +843,11 @@ "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" }, "funcname": "AddImageRounded", + "ov_cimguiname": "ImDrawList_AddImageRounded", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", "stname": "ImDrawList" @@ -888,11 +881,11 @@ "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" }, "funcname": "AddLine", + "ov_cimguiname": "ImDrawList_AddLine", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float)", "stname": "ImDrawList" @@ -930,9 +923,9 @@ "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", "ret": "void", "signature": "(const ImVec2*,const int,ImU32,bool,float)", "stname": "ImDrawList" @@ -974,11 +967,11 @@ "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" }, "funcname": "AddQuad", + "ov_cimguiname": "ImDrawList_AddQuad", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)", "stname": "ImDrawList" @@ -1016,9 +1009,9 @@ "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", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", "stname": "ImDrawList" @@ -1060,13 +1053,13 @@ "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", "thickness": "1.0f" }, "funcname": "AddRect", + "ov_cimguiname": "ImDrawList_AddRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,int,float)", "stname": "ImDrawList" @@ -1104,12 +1097,12 @@ "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" }, "funcname": "AddRectFilled", + "ov_cimguiname": "ImDrawList_AddRectFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,int)", "stname": "ImDrawList" @@ -1151,9 +1144,9 @@ "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", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)", "stname": "ImDrawList" @@ -1187,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)" }, @@ -1240,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)", @@ -1285,11 +1276,11 @@ "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" }, "funcname": "AddTriangle", + "ov_cimguiname": "ImDrawList_AddTriangle", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)", "stname": "ImDrawList" @@ -1323,9 +1314,9 @@ "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", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32)", "stname": "ImDrawList" @@ -1343,9 +1334,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_ChannelsMerge", - "comment": "", "defaults": [], "funcname": "ChannelsMerge", + "ov_cimguiname": "ImDrawList_ChannelsMerge", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -1367,9 +1358,9 @@ "argsoriginal": "(int channel_index)", "call_args": "(channel_index)", "cimguiname": "ImDrawList_ChannelsSetCurrent", - "comment": "", "defaults": [], "funcname": "ChannelsSetCurrent", + "ov_cimguiname": "ImDrawList_ChannelsSetCurrent", "ret": "void", "signature": "(int)", "stname": "ImDrawList" @@ -1391,9 +1382,9 @@ "argsoriginal": "(int channels_count)", "call_args": "(channels_count)", "cimguiname": "ImDrawList_ChannelsSplit", - "comment": "", "defaults": [], "funcname": "ChannelsSplit", + "ov_cimguiname": "ImDrawList_ChannelsSplit", "ret": "void", "signature": "(int)", "stname": "ImDrawList" @@ -1411,9 +1402,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_Clear", - "comment": "", "defaults": [], "funcname": "Clear", + "ov_cimguiname": "ImDrawList_Clear", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -1431,9 +1422,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_ClearFreeMemory", - "comment": "", "defaults": [], "funcname": "ClearFreeMemory", + "ov_cimguiname": "ImDrawList_ClearFreeMemory", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -1451,11 +1442,11 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_CloneOutput", - "comment": "", "defaults": [], "funcname": "CloneOutput", + "ov_cimguiname": "ImDrawList_CloneOutput", "ret": "ImDrawList*", - "signature": "()", + "signature": "()const", "stname": "ImDrawList" } ], @@ -1471,11 +1462,11 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_GetClipRectMax", - "comment": "", "defaults": [], "funcname": "GetClipRectMax", + "ov_cimguiname": "ImDrawList_GetClipRectMax", "ret": "ImVec2", - "signature": "()", + "signature": "()const", "stname": "ImDrawList" }, { @@ -1493,13 +1484,12 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_GetClipRectMax", - "comment": "", "defaults": [], "funcname": "GetClipRectMax", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMax_nonUDT", "ret": "void", - "signature": "()", + "signature": "()const", "stname": "ImDrawList" }, { @@ -1513,14 +1503,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_GetClipRectMax", - "comment": "", "defaults": [], "funcname": "GetClipRectMax", "nonUDT": 2, "ov_cimguiname": "ImDrawList_GetClipRectMax_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", - "signature": "()", + "signature": "()const", "stname": "ImDrawList" } ], @@ -1536,11 +1525,11 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_GetClipRectMin", - "comment": "", "defaults": [], "funcname": "GetClipRectMin", + "ov_cimguiname": "ImDrawList_GetClipRectMin", "ret": "ImVec2", - "signature": "()", + "signature": "()const", "stname": "ImDrawList" }, { @@ -1558,13 +1547,12 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_GetClipRectMin", - "comment": "", "defaults": [], "funcname": "GetClipRectMin", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMin_nonUDT", "ret": "void", - "signature": "()", + "signature": "()const", "stname": "ImDrawList" }, { @@ -1578,14 +1566,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_GetClipRectMin", - "comment": "", "defaults": [], "funcname": "GetClipRectMin", "nonUDT": 2, "ov_cimguiname": "ImDrawList_GetClipRectMin_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", - "signature": "()", + "signature": "()const", "stname": "ImDrawList" } ], @@ -1601,10 +1588,10 @@ "argsoriginal": "(const ImDrawListSharedData* shared_data)", "call_args": "(shared_data)", "cimguiname": "ImDrawList_ImDrawList", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImDrawList", + "ov_cimguiname": "ImDrawList_ImDrawList", "signature": "(const ImDrawListSharedData*)", "stname": "ImDrawList" } @@ -1641,11 +1628,11 @@ "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" }, "funcname": "PathArcTo", + "ov_cimguiname": "ImDrawList_PathArcTo", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", "stname": "ImDrawList" @@ -1679,9 +1666,9 @@ "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", "ret": "void", "signature": "(const ImVec2,float,int,int)", "stname": "ImDrawList" @@ -1715,11 +1702,11 @@ "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" }, "funcname": "PathBezierCurveTo", + "ov_cimguiname": "ImDrawList_PathBezierCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,int)", "stname": "ImDrawList" @@ -1737,9 +1724,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_PathClear", - "comment": "", "defaults": [], "funcname": "PathClear", + "ov_cimguiname": "ImDrawList_PathClear", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -1761,9 +1748,9 @@ "argsoriginal": "(ImU32 col)", "call_args": "(col)", "cimguiname": "ImDrawList_PathFillConvex", - "comment": "", "defaults": [], "funcname": "PathFillConvex", + "ov_cimguiname": "ImDrawList_PathFillConvex", "ret": "void", "signature": "(ImU32)", "stname": "ImDrawList" @@ -1785,9 +1772,9 @@ "argsoriginal": "(const ImVec2& pos)", "call_args": "(pos)", "cimguiname": "ImDrawList_PathLineTo", - "comment": "", "defaults": [], "funcname": "PathLineTo", + "ov_cimguiname": "ImDrawList_PathLineTo", "ret": "void", "signature": "(const ImVec2)", "stname": "ImDrawList" @@ -1809,9 +1796,9 @@ "argsoriginal": "(const ImVec2& pos)", "call_args": "(pos)", "cimguiname": "ImDrawList_PathLineToMergeDuplicate", - "comment": "", "defaults": [], "funcname": "PathLineToMergeDuplicate", + "ov_cimguiname": "ImDrawList_PathLineToMergeDuplicate", "ret": "void", "signature": "(const ImVec2)", "stname": "ImDrawList" @@ -1845,12 +1832,12 @@ "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" }, "funcname": "PathRect", + "ov_cimguiname": "ImDrawList_PathRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,float,int)", "stname": "ImDrawList" @@ -1880,11 +1867,11 @@ "argsoriginal": "(ImU32 col,bool closed,float thickness=1.0f)", "call_args": "(col,closed,thickness)", "cimguiname": "ImDrawList_PathStroke", - "comment": "", "defaults": { "thickness": "1.0f" }, "funcname": "PathStroke", + "ov_cimguiname": "ImDrawList_PathStroke", "ret": "void", "signature": "(ImU32,bool,float)", "stname": "ImDrawList" @@ -1902,9 +1889,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_PopClipRect", - "comment": "", "defaults": [], "funcname": "PopClipRect", + "ov_cimguiname": "ImDrawList_PopClipRect", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -1922,9 +1909,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_PopTextureID", - "comment": "", "defaults": [], "funcname": "PopTextureID", + "ov_cimguiname": "ImDrawList_PopTextureID", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -1978,9 +1965,9 @@ "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", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", "stname": "ImDrawList" @@ -2010,9 +1997,9 @@ "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", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", "stname": "ImDrawList" @@ -2050,9 +2037,9 @@ "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", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", "stname": "ImDrawList" @@ -2078,9 +2065,9 @@ "argsoriginal": "(int idx_count,int vtx_count)", "call_args": "(idx_count,vtx_count)", "cimguiname": "ImDrawList_PrimReserve", - "comment": "", "defaults": [], "funcname": "PrimReserve", + "ov_cimguiname": "ImDrawList_PrimReserve", "ret": "void", "signature": "(int,int)", "stname": "ImDrawList" @@ -2110,9 +2097,9 @@ "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", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", "stname": "ImDrawList" @@ -2134,9 +2121,9 @@ "argsoriginal": "(ImDrawIdx idx)", "call_args": "(idx)", "cimguiname": "ImDrawList_PrimWriteIdx", - "comment": "", "defaults": [], "funcname": "PrimWriteIdx", + "ov_cimguiname": "ImDrawList_PrimWriteIdx", "ret": "void", "signature": "(ImDrawIdx)", "stname": "ImDrawList" @@ -2166,9 +2153,9 @@ "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", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", "stname": "ImDrawList" @@ -2198,11 +2185,11 @@ "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" }, "funcname": "PushClipRect", + "ov_cimguiname": "ImDrawList_PushClipRect", "ret": "void", "signature": "(ImVec2,ImVec2,bool)", "stname": "ImDrawList" @@ -2220,9 +2207,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_PushClipRectFullScreen", - "comment": "", "defaults": [], "funcname": "PushClipRectFullScreen", + "ov_cimguiname": "ImDrawList_PushClipRectFullScreen", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -2244,9 +2231,9 @@ "argsoriginal": "(ImTextureID texture_id)", "call_args": "(texture_id)", "cimguiname": "ImDrawList_PushTextureID", - "comment": "", "defaults": [], "funcname": "PushTextureID", + "ov_cimguiname": "ImDrawList_PushTextureID", "ret": "void", "signature": "(ImTextureID)", "stname": "ImDrawList" @@ -2264,9 +2251,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_UpdateClipRect", - "comment": "", "defaults": [], "funcname": "UpdateClipRect", + "ov_cimguiname": "ImDrawList_UpdateClipRect", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -2284,9 +2271,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_UpdateTextureID", - "comment": "", "defaults": [], "funcname": "UpdateTextureID", + "ov_cimguiname": "ImDrawList_UpdateTextureID", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -2347,11 +2334,11 @@ "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)" }, "funcname": "AddCustomRectFontGlyph", + "ov_cimguiname": "ImFontAtlas_AddCustomRectFontGlyph", "ret": "int", "signature": "(ImFont*,ImWchar,int,int,float,const ImVec2)", "stname": "ImFontAtlas" @@ -2381,9 +2368,9 @@ "argsoriginal": "(unsigned int id,int width,int height)", "call_args": "(id,width,height)", "cimguiname": "ImFontAtlas_AddCustomRectRegular", - "comment": "", "defaults": [], "funcname": "AddCustomRectRegular", + "ov_cimguiname": "ImFontAtlas_AddCustomRectRegular", "ret": "int", "signature": "(unsigned int,int,int)", "stname": "ImFontAtlas" @@ -2405,9 +2392,9 @@ "argsoriginal": "(const ImFontConfig* font_cfg)", "call_args": "(font_cfg)", "cimguiname": "ImFontAtlas_AddFont", - "comment": "", "defaults": [], "funcname": "AddFont", + "ov_cimguiname": "ImFontAtlas_AddFont", "ret": "ImFont*", "signature": "(const ImFontConfig*)", "stname": "ImFontAtlas" @@ -2429,11 +2416,11 @@ "argsoriginal": "(const ImFontConfig* font_cfg=((void*)0))", "call_args": "(font_cfg)", "cimguiname": "ImFontAtlas_AddFontDefault", - "comment": "", "defaults": { "font_cfg": "((void*)0)" }, "funcname": "AddFontDefault", + "ov_cimguiname": "ImFontAtlas_AddFontDefault", "ret": "ImFont*", "signature": "(const ImFontConfig*)", "stname": "ImFontAtlas" @@ -2467,12 +2454,12 @@ "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)" }, "funcname": "AddFontFromFileTTF", + "ov_cimguiname": "ImFontAtlas_AddFontFromFileTTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", "stname": "ImFontAtlas" @@ -2506,12 +2493,12 @@ "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)" }, "funcname": "AddFontFromMemoryCompressedBase85TTF", + "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", "stname": "ImFontAtlas" @@ -2549,12 +2536,12 @@ "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)" }, "funcname": "AddFontFromMemoryCompressedTTF", + "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedTTF", "ret": "ImFont*", "signature": "(const void*,int,float,const ImFontConfig*,const ImWchar*)", "stname": "ImFontAtlas" @@ -2592,12 +2579,12 @@ "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)" }, "funcname": "AddFontFromMemoryTTF", + "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryTTF", "ret": "ImFont*", "signature": "(void*,int,float,const ImFontConfig*,const ImWchar*)", "stname": "ImFontAtlas" @@ -2615,9 +2602,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_Build", - "comment": "", "defaults": [], "funcname": "Build", + "ov_cimguiname": "ImFontAtlas_Build", "ret": "bool", "signature": "()", "stname": "ImFontAtlas" @@ -2647,9 +2634,9 @@ "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", "ret": "void", "signature": "(const CustomRect*,ImVec2*,ImVec2*)", "stname": "ImFontAtlas" @@ -2667,9 +2654,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_Clear", - "comment": "", "defaults": [], "funcname": "Clear", + "ov_cimguiname": "ImFontAtlas_Clear", "ret": "void", "signature": "()", "stname": "ImFontAtlas" @@ -2687,9 +2674,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_ClearFonts", - "comment": "", "defaults": [], "funcname": "ClearFonts", + "ov_cimguiname": "ImFontAtlas_ClearFonts", "ret": "void", "signature": "()", "stname": "ImFontAtlas" @@ -2707,9 +2694,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_ClearInputData", - "comment": "", "defaults": [], "funcname": "ClearInputData", + "ov_cimguiname": "ImFontAtlas_ClearInputData", "ret": "void", "signature": "()", "stname": "ImFontAtlas" @@ -2727,9 +2714,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_ClearTexData", - "comment": "", "defaults": [], "funcname": "ClearTexData", + "ov_cimguiname": "ImFontAtlas_ClearTexData", "ret": "void", "signature": "()", "stname": "ImFontAtlas" @@ -2751,11 +2738,11 @@ "argsoriginal": "(int index)", "call_args": "(index)", "cimguiname": "ImFontAtlas_GetCustomRectByIndex", - "comment": "", "defaults": [], "funcname": "GetCustomRectByIndex", + "ov_cimguiname": "ImFontAtlas_GetCustomRectByIndex", "ret": "const CustomRect*", - "signature": "(int)", + "signature": "(int)const", "stname": "ImFontAtlas" } ], @@ -2771,9 +2758,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", - "comment": "", "defaults": [], "funcname": "GetGlyphRangesChineseFull", + "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", "ret": "const ImWchar*", "signature": "()", "stname": "ImFontAtlas" @@ -2791,9 +2778,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", - "comment": "", "defaults": [], "funcname": "GetGlyphRangesChineseSimplifiedCommon", + "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", "ret": "const ImWchar*", "signature": "()", "stname": "ImFontAtlas" @@ -2811,9 +2798,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", - "comment": "", "defaults": [], "funcname": "GetGlyphRangesCyrillic", + "ov_cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", "ret": "const ImWchar*", "signature": "()", "stname": "ImFontAtlas" @@ -2831,9 +2818,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesDefault", - "comment": "", "defaults": [], "funcname": "GetGlyphRangesDefault", + "ov_cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "ret": "const ImWchar*", "signature": "()", "stname": "ImFontAtlas" @@ -2851,9 +2838,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", - "comment": "", "defaults": [], "funcname": "GetGlyphRangesJapanese", + "ov_cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", "ret": "const ImWchar*", "signature": "()", "stname": "ImFontAtlas" @@ -2871,9 +2858,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesKorean", - "comment": "", "defaults": [], "funcname": "GetGlyphRangesKorean", + "ov_cimguiname": "ImFontAtlas_GetGlyphRangesKorean", "ret": "const ImWchar*", "signature": "()", "stname": "ImFontAtlas" @@ -2891,9 +2878,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesThai", - "comment": "", "defaults": [], "funcname": "GetGlyphRangesThai", + "ov_cimguiname": "ImFontAtlas_GetGlyphRangesThai", "ret": "const ImWchar*", "signature": "()", "stname": "ImFontAtlas" @@ -2931,9 +2918,9 @@ "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", "ret": "bool", "signature": "(ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])", "stname": "ImFontAtlas" @@ -2967,11 +2954,11 @@ "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)" }, "funcname": "GetTexDataAsAlpha8", + "ov_cimguiname": "ImFontAtlas_GetTexDataAsAlpha8", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", "stname": "ImFontAtlas" @@ -3005,11 +2992,11 @@ "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)" }, "funcname": "GetTexDataAsRGBA32", + "ov_cimguiname": "ImFontAtlas_GetTexDataAsRGBA32", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", "stname": "ImFontAtlas" @@ -3022,10 +3009,10 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_ImFontAtlas", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImFontAtlas", + "ov_cimguiname": "ImFontAtlas_ImFontAtlas", "signature": "()", "stname": "ImFontAtlas" } @@ -3042,9 +3029,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_IsBuilt", - "comment": "", "defaults": [], "funcname": "IsBuilt", + "ov_cimguiname": "ImFontAtlas_IsBuilt", "ret": "bool", "signature": "()", "stname": "ImFontAtlas" @@ -3066,9 +3053,9 @@ "argsoriginal": "(ImTextureID id)", "call_args": "(id)", "cimguiname": "ImFontAtlas_SetTexID", - "comment": "", "defaults": [], "funcname": "SetTexID", + "ov_cimguiname": "ImFontAtlas_SetTexID", "ret": "void", "signature": "(ImTextureID)", "stname": "ImFontAtlas" @@ -3100,10 +3087,10 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontConfig_ImFontConfig", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImFontConfig", + "ov_cimguiname": "ImFontConfig_ImFontConfig", "signature": "()", "stname": "ImFontConfig" } @@ -3143,9 +3130,9 @@ "argsoriginal": "(ImWchar c)", "call_args": "(c)", "cimguiname": "ImFontGlyphRangesBuilder_AddChar", - "comment": "", "defaults": [], "funcname": "AddChar", + "ov_cimguiname": "ImFontGlyphRangesBuilder_AddChar", "ret": "void", "signature": "(ImWchar)", "stname": "ImFontGlyphRangesBuilder" @@ -3167,9 +3154,9 @@ "argsoriginal": "(const ImWchar* ranges)", "call_args": "(ranges)", "cimguiname": "ImFontGlyphRangesBuilder_AddRanges", - "comment": "", "defaults": [], "funcname": "AddRanges", + "ov_cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "ret": "void", "signature": "(const ImWchar*)", "stname": "ImFontGlyphRangesBuilder" @@ -3195,11 +3182,11 @@ "argsoriginal": "(const char* text,const char* text_end=((void*)0))", "call_args": "(text,text_end)", "cimguiname": "ImFontGlyphRangesBuilder_AddText", - "comment": "", "defaults": { "text_end": "((void*)0)" }, "funcname": "AddText", + "ov_cimguiname": "ImFontGlyphRangesBuilder_AddText", "ret": "void", "signature": "(const char*,const char*)", "stname": "ImFontGlyphRangesBuilder" @@ -3221,9 +3208,9 @@ "argsoriginal": "(ImVector* out_ranges)", "call_args": "(out_ranges)", "cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", - "comment": "", "defaults": [], "funcname": "BuildRanges", + "ov_cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "ret": "void", "signature": "(ImVector_ImWchar*)", "stname": "ImFontGlyphRangesBuilder" @@ -3245,11 +3232,11 @@ "argsoriginal": "(int n)", "call_args": "(n)", "cimguiname": "ImFontGlyphRangesBuilder_GetBit", - "comment": "", "defaults": [], "funcname": "GetBit", + "ov_cimguiname": "ImFontGlyphRangesBuilder_GetBit", "ret": "bool", - "signature": "(int)", + "signature": "(int)const", "stname": "ImFontGlyphRangesBuilder" } ], @@ -3260,10 +3247,10 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImFontGlyphRangesBuilder", + "ov_cimguiname": "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder", "signature": "()", "stname": "ImFontGlyphRangesBuilder" } @@ -3284,9 +3271,9 @@ "argsoriginal": "(int n)", "call_args": "(n)", "cimguiname": "ImFontGlyphRangesBuilder_SetBit", - "comment": "", "defaults": [], "funcname": "SetBit", + "ov_cimguiname": "ImFontGlyphRangesBuilder_SetBit", "ret": "void", "signature": "(int)", "stname": "ImFontGlyphRangesBuilder" @@ -3363,9 +3350,9 @@ "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", "ret": "void", "signature": "(ImWchar,float,float,float,float,float,float,float,float,float)", "stname": "ImFont" @@ -3395,11 +3382,11 @@ "argsoriginal": "(ImWchar dst,ImWchar src,bool overwrite_dst=true)", "call_args": "(dst,src,overwrite_dst)", "cimguiname": "ImFont_AddRemapChar", - "comment": "", "defaults": { "overwrite_dst": "true" }, "funcname": "AddRemapChar", + "ov_cimguiname": "ImFont_AddRemapChar", "ret": "void", "signature": "(ImWchar,ImWchar,bool)", "stname": "ImFont" @@ -3417,9 +3404,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFont_BuildLookupTable", - "comment": "", "defaults": [], "funcname": "BuildLookupTable", + "ov_cimguiname": "ImFont_BuildLookupTable", "ret": "void", "signature": "()", "stname": "ImFont" @@ -3461,14 +3448,14 @@ "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)" }, "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" }, { @@ -3510,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)" @@ -3519,7 +3505,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" }, { @@ -3557,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)" @@ -3567,7 +3552,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" } ], @@ -3599,11 +3584,11 @@ "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", "ret": "const char*", - "signature": "(float,const char*,const char*,float)", + "signature": "(float,const char*,const char*,float)const", "stname": "ImFont" } ], @@ -3619,9 +3604,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFont_ClearOutputData", - "comment": "", "defaults": [], "funcname": "ClearOutputData", + "ov_cimguiname": "ImFont_ClearOutputData", "ret": "void", "signature": "()", "stname": "ImFont" @@ -3643,11 +3628,11 @@ "argsoriginal": "(ImWchar c)", "call_args": "(c)", "cimguiname": "ImFont_FindGlyph", - "comment": "", "defaults": [], "funcname": "FindGlyph", + "ov_cimguiname": "ImFont_FindGlyph", "ret": "const ImFontGlyph*", - "signature": "(ImWchar)", + "signature": "(ImWchar)const", "stname": "ImFont" } ], @@ -3667,11 +3652,11 @@ "argsoriginal": "(ImWchar c)", "call_args": "(c)", "cimguiname": "ImFont_FindGlyphNoFallback", - "comment": "", "defaults": [], "funcname": "FindGlyphNoFallback", + "ov_cimguiname": "ImFont_FindGlyphNoFallback", "ret": "const ImFontGlyph*", - "signature": "(ImWchar)", + "signature": "(ImWchar)const", "stname": "ImFont" } ], @@ -3691,11 +3676,11 @@ "argsoriginal": "(ImWchar c)", "call_args": "(c)", "cimguiname": "ImFont_GetCharAdvance", - "comment": "", "defaults": [], "funcname": "GetCharAdvance", + "ov_cimguiname": "ImFont_GetCharAdvance", "ret": "float", - "signature": "(ImWchar)", + "signature": "(ImWchar)const", "stname": "ImFont" } ], @@ -3711,11 +3696,11 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFont_GetDebugName", - "comment": "", "defaults": [], "funcname": "GetDebugName", + "ov_cimguiname": "ImFont_GetDebugName", "ret": "const char*", - "signature": "()", + "signature": "()const", "stname": "ImFont" } ], @@ -3735,9 +3720,9 @@ "argsoriginal": "(int new_size)", "call_args": "(new_size)", "cimguiname": "ImFont_GrowIndex", - "comment": "", "defaults": [], "funcname": "GrowIndex", + "ov_cimguiname": "ImFont_GrowIndex", "ret": "void", "signature": "(int)", "stname": "ImFont" @@ -3750,10 +3735,10 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFont_ImFont", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImFont", + "ov_cimguiname": "ImFont_ImFont", "signature": "()", "stname": "ImFont" } @@ -3770,11 +3755,11 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFont_IsLoaded", - "comment": "", "defaults": [], "funcname": "IsLoaded", + "ov_cimguiname": "ImFont_IsLoaded", "ret": "bool", - "signature": "()", + "signature": "()const", "stname": "ImFont" } ], @@ -3810,11 +3795,11 @@ "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", "ret": "void", - "signature": "(ImDrawList*,float,ImVec2,ImU32,ImWchar)", + "signature": "(ImDrawList*,float,ImVec2,ImU32,ImWchar)const", "stname": "ImFont" } ], @@ -3866,14 +3851,14 @@ "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" }, "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" } ], @@ -3893,9 +3878,9 @@ "argsoriginal": "(ImWchar c)", "call_args": "(c)", "cimguiname": "ImFont_SetFallbackChar", - "comment": "", "defaults": [], "funcname": "SetFallbackChar", + "ov_cimguiname": "ImFont_SetFallbackChar", "ret": "void", "signature": "(ImWchar)", "stname": "ImFont" @@ -3936,9 +3921,9 @@ "argsoriginal": "(ImWchar c)", "call_args": "(c)", "cimguiname": "ImGuiIO_AddInputCharacter", - "comment": "", "defaults": [], "funcname": "AddInputCharacter", + "ov_cimguiname": "ImGuiIO_AddInputCharacter", "ret": "void", "signature": "(ImWchar)", "stname": "ImGuiIO" @@ -3960,9 +3945,9 @@ "argsoriginal": "(const char* str)", "call_args": "(str)", "cimguiname": "ImGuiIO_AddInputCharactersUTF8", - "comment": "", "defaults": [], "funcname": "AddInputCharactersUTF8", + "ov_cimguiname": "ImGuiIO_AddInputCharactersUTF8", "ret": "void", "signature": "(const char*)", "stname": "ImGuiIO" @@ -3980,9 +3965,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiIO_ClearInputCharacters", - "comment": "", "defaults": [], "funcname": "ClearInputCharacters", + "ov_cimguiname": "ImGuiIO_ClearInputCharacters", "ret": "void", "signature": "()", "stname": "ImGuiIO" @@ -3995,10 +3980,10 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiIO_ImGuiIO", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImGuiIO", + "ov_cimguiname": "ImGuiIO_ImGuiIO", "signature": "()", "stname": "ImGuiIO" } @@ -4042,9 +4027,9 @@ "argsoriginal": "(int pos,int bytes_count)", "call_args": "(pos,bytes_count)", "cimguiname": "ImGuiInputTextCallbackData_DeleteChars", - "comment": "", "defaults": [], "funcname": "DeleteChars", + "ov_cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "ret": "void", "signature": "(int,int)", "stname": "ImGuiInputTextCallbackData" @@ -4062,11 +4047,11 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiInputTextCallbackData_HasSelection", - "comment": "", "defaults": [], "funcname": "HasSelection", + "ov_cimguiname": "ImGuiInputTextCallbackData_HasSelection", "ret": "bool", - "signature": "()", + "signature": "()const", "stname": "ImGuiInputTextCallbackData" } ], @@ -4077,10 +4062,10 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImGuiInputTextCallbackData", + "ov_cimguiname": "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData", "signature": "()", "stname": "ImGuiInputTextCallbackData" } @@ -4109,11 +4094,11 @@ "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)" }, "funcname": "InsertChars", + "ov_cimguiname": "ImGuiInputTextCallbackData_InsertChars", "ret": "void", "signature": "(int,const char*,const char*)", "stname": "ImGuiInputTextCallbackData" @@ -4158,11 +4143,11 @@ "argsoriginal": "(int items_count,float items_height=-1.0f)", "call_args": "(items_count,items_height)", "cimguiname": "ImGuiListClipper_Begin", - "comment": "", "defaults": { "items_height": "-1.0f" }, "funcname": "Begin", + "ov_cimguiname": "ImGuiListClipper_Begin", "ret": "void", "signature": "(int,float)", "stname": "ImGuiListClipper" @@ -4180,9 +4165,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiListClipper_End", - "comment": "", "defaults": [], "funcname": "End", + "ov_cimguiname": "ImGuiListClipper_End", "ret": "void", "signature": "()", "stname": "ImGuiListClipper" @@ -4204,13 +4189,13 @@ "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", "items_height": "-1.0f" }, "funcname": "ImGuiListClipper", + "ov_cimguiname": "ImGuiListClipper_ImGuiListClipper", "signature": "(int,float)", "stname": "ImGuiListClipper" } @@ -4227,9 +4212,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiListClipper_Step", - "comment": "", "defaults": [], "funcname": "Step", + "ov_cimguiname": "ImGuiListClipper_Step", "ret": "bool", "signature": "()", "stname": "ImGuiListClipper" @@ -4261,10 +4246,10 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImGuiOnceUponAFrame", + "ov_cimguiname": "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame", "signature": "()", "stname": "ImGuiOnceUponAFrame" } @@ -4300,9 +4285,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiPayload_Clear", - "comment": "", "defaults": [], "funcname": "Clear", + "ov_cimguiname": "ImGuiPayload_Clear", "ret": "void", "signature": "()", "stname": "ImGuiPayload" @@ -4315,10 +4300,10 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiPayload_ImGuiPayload", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImGuiPayload", + "ov_cimguiname": "ImGuiPayload_ImGuiPayload", "signature": "()", "stname": "ImGuiPayload" } @@ -4339,11 +4324,11 @@ "argsoriginal": "(const char* type)", "call_args": "(type)", "cimguiname": "ImGuiPayload_IsDataType", - "comment": "", "defaults": [], "funcname": "IsDataType", + "ov_cimguiname": "ImGuiPayload_IsDataType", "ret": "bool", - "signature": "(const char*)", + "signature": "(const char*)const", "stname": "ImGuiPayload" } ], @@ -4359,11 +4344,11 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiPayload_IsDelivery", - "comment": "", "defaults": [], "funcname": "IsDelivery", + "ov_cimguiname": "ImGuiPayload_IsDelivery", "ret": "bool", - "signature": "()", + "signature": "()const", "stname": "ImGuiPayload" } ], @@ -4379,11 +4364,11 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiPayload_IsPreview", - "comment": "", "defaults": [], "funcname": "IsPreview", + "ov_cimguiname": "ImGuiPayload_IsPreview", "ret": "bool", - "signature": "()", + "signature": "()const", "stname": "ImGuiPayload" } ], @@ -4418,9 +4403,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiStorage_BuildSortByKey", - "comment": "", "defaults": [], "funcname": "BuildSortByKey", + "ov_cimguiname": "ImGuiStorage_BuildSortByKey", "ret": "void", "signature": "()", "stname": "ImGuiStorage" @@ -4438,9 +4423,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiStorage_Clear", - "comment": "", "defaults": [], "funcname": "Clear", + "ov_cimguiname": "ImGuiStorage_Clear", "ret": "void", "signature": "()", "stname": "ImGuiStorage" @@ -4466,13 +4451,13 @@ "argsoriginal": "(ImGuiID key,bool default_val=false)", "call_args": "(key,default_val)", "cimguiname": "ImGuiStorage_GetBool", - "comment": "", "defaults": { "default_val": "false" }, "funcname": "GetBool", + "ov_cimguiname": "ImGuiStorage_GetBool", "ret": "bool", - "signature": "(ImGuiID,bool)", + "signature": "(ImGuiID,bool)const", "stname": "ImGuiStorage" } ], @@ -4496,11 +4481,11 @@ "argsoriginal": "(ImGuiID key,bool default_val=false)", "call_args": "(key,default_val)", "cimguiname": "ImGuiStorage_GetBoolRef", - "comment": "", "defaults": { "default_val": "false" }, "funcname": "GetBoolRef", + "ov_cimguiname": "ImGuiStorage_GetBoolRef", "ret": "bool*", "signature": "(ImGuiID,bool)", "stname": "ImGuiStorage" @@ -4526,13 +4511,13 @@ "argsoriginal": "(ImGuiID key,float default_val=0.0f)", "call_args": "(key,default_val)", "cimguiname": "ImGuiStorage_GetFloat", - "comment": "", "defaults": { "default_val": "0.0f" }, "funcname": "GetFloat", + "ov_cimguiname": "ImGuiStorage_GetFloat", "ret": "float", - "signature": "(ImGuiID,float)", + "signature": "(ImGuiID,float)const", "stname": "ImGuiStorage" } ], @@ -4556,11 +4541,11 @@ "argsoriginal": "(ImGuiID key,float default_val=0.0f)", "call_args": "(key,default_val)", "cimguiname": "ImGuiStorage_GetFloatRef", - "comment": "", "defaults": { "default_val": "0.0f" }, "funcname": "GetFloatRef", + "ov_cimguiname": "ImGuiStorage_GetFloatRef", "ret": "float*", "signature": "(ImGuiID,float)", "stname": "ImGuiStorage" @@ -4586,13 +4571,13 @@ "argsoriginal": "(ImGuiID key,int default_val=0)", "call_args": "(key,default_val)", "cimguiname": "ImGuiStorage_GetInt", - "comment": "", "defaults": { "default_val": "0" }, "funcname": "GetInt", + "ov_cimguiname": "ImGuiStorage_GetInt", "ret": "int", - "signature": "(ImGuiID,int)", + "signature": "(ImGuiID,int)const", "stname": "ImGuiStorage" } ], @@ -4616,11 +4601,11 @@ "argsoriginal": "(ImGuiID key,int default_val=0)", "call_args": "(key,default_val)", "cimguiname": "ImGuiStorage_GetIntRef", - "comment": "", "defaults": { "default_val": "0" }, "funcname": "GetIntRef", + "ov_cimguiname": "ImGuiStorage_GetIntRef", "ret": "int*", "signature": "(ImGuiID,int)", "stname": "ImGuiStorage" @@ -4642,11 +4627,11 @@ "argsoriginal": "(ImGuiID key)", "call_args": "(key)", "cimguiname": "ImGuiStorage_GetVoidPtr", - "comment": "", "defaults": [], "funcname": "GetVoidPtr", + "ov_cimguiname": "ImGuiStorage_GetVoidPtr", "ret": "void*", - "signature": "(ImGuiID)", + "signature": "(ImGuiID)const", "stname": "ImGuiStorage" } ], @@ -4670,11 +4655,11 @@ "argsoriginal": "(ImGuiID key,void* default_val=((void*)0))", "call_args": "(key,default_val)", "cimguiname": "ImGuiStorage_GetVoidPtrRef", - "comment": "", "defaults": { "default_val": "((void*)0)" }, "funcname": "GetVoidPtrRef", + "ov_cimguiname": "ImGuiStorage_GetVoidPtrRef", "ret": "void**", "signature": "(ImGuiID,void*)", "stname": "ImGuiStorage" @@ -4696,9 +4681,9 @@ "argsoriginal": "(int val)", "call_args": "(val)", "cimguiname": "ImGuiStorage_SetAllInt", - "comment": "", "defaults": [], "funcname": "SetAllInt", + "ov_cimguiname": "ImGuiStorage_SetAllInt", "ret": "void", "signature": "(int)", "stname": "ImGuiStorage" @@ -4724,9 +4709,9 @@ "argsoriginal": "(ImGuiID key,bool val)", "call_args": "(key,val)", "cimguiname": "ImGuiStorage_SetBool", - "comment": "", "defaults": [], "funcname": "SetBool", + "ov_cimguiname": "ImGuiStorage_SetBool", "ret": "void", "signature": "(ImGuiID,bool)", "stname": "ImGuiStorage" @@ -4752,9 +4737,9 @@ "argsoriginal": "(ImGuiID key,float val)", "call_args": "(key,val)", "cimguiname": "ImGuiStorage_SetFloat", - "comment": "", "defaults": [], "funcname": "SetFloat", + "ov_cimguiname": "ImGuiStorage_SetFloat", "ret": "void", "signature": "(ImGuiID,float)", "stname": "ImGuiStorage" @@ -4780,9 +4765,9 @@ "argsoriginal": "(ImGuiID key,int val)", "call_args": "(key,val)", "cimguiname": "ImGuiStorage_SetInt", - "comment": "", "defaults": [], "funcname": "SetInt", + "ov_cimguiname": "ImGuiStorage_SetInt", "ret": "void", "signature": "(ImGuiID,int)", "stname": "ImGuiStorage" @@ -4808,9 +4793,9 @@ "argsoriginal": "(ImGuiID key,void* val)", "call_args": "(key,val)", "cimguiname": "ImGuiStorage_SetVoidPtr", - "comment": "", "defaults": [], "funcname": "SetVoidPtr", + "ov_cimguiname": "ImGuiStorage_SetVoidPtr", "ret": "void", "signature": "(ImGuiID,void*)", "stname": "ImGuiStorage" @@ -4823,10 +4808,10 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiStyle_ImGuiStyle", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImGuiStyle", + "ov_cimguiname": "ImGuiStyle_ImGuiStyle", "signature": "()", "stname": "ImGuiStyle" } @@ -4847,9 +4832,9 @@ "argsoriginal": "(float scale_factor)", "call_args": "(scale_factor)", "cimguiname": "ImGuiStyle_ScaleAllSizes", - "comment": "", "defaults": [], "funcname": "ScaleAllSizes", + "ov_cimguiname": "ImGuiStyle_ScaleAllSizes", "ret": "void", "signature": "(float)", "stname": "ImGuiStyle" @@ -4881,14 +4866,44 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextBuffer_ImGuiTextBuffer", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImGuiTextBuffer", + "ov_cimguiname": "ImGuiTextBuffer_ImGuiTextBuffer", "signature": "()", "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,...)", @@ -4909,11 +4924,11 @@ "argsoriginal": "(const char* fmt,...)", "call_args": "(fmt,...)", "cimguiname": "ImGuiTextBuffer_appendf", - "comment": "", "defaults": [], "funcname": "appendf", "isvararg": "...)", "manual": true, + "ov_cimguiname": "ImGuiTextBuffer_appendf", "ret": "void", "signature": "(const char*,...)", "stname": "ImGuiTextBuffer" @@ -4939,9 +4954,9 @@ "argsoriginal": "(const char* fmt,va_list args)", "call_args": "(fmt,args)", "cimguiname": "ImGuiTextBuffer_appendfv", - "comment": "", "defaults": [], "funcname": "appendfv", + "ov_cimguiname": "ImGuiTextBuffer_appendfv", "ret": "void", "signature": "(const char*,va_list)", "stname": "ImGuiTextBuffer" @@ -4959,11 +4974,11 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextBuffer_begin", - "comment": "", "defaults": [], "funcname": "begin", + "ov_cimguiname": "ImGuiTextBuffer_begin", "ret": "const char*", - "signature": "()", + "signature": "()const", "stname": "ImGuiTextBuffer" } ], @@ -4979,11 +4994,11 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextBuffer_c_str", - "comment": "", "defaults": [], "funcname": "c_str", + "ov_cimguiname": "ImGuiTextBuffer_c_str", "ret": "const char*", - "signature": "()", + "signature": "()const", "stname": "ImGuiTextBuffer" } ], @@ -4999,9 +5014,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextBuffer_clear", - "comment": "", "defaults": [], "funcname": "clear", + "ov_cimguiname": "ImGuiTextBuffer_clear", "ret": "void", "signature": "()", "stname": "ImGuiTextBuffer" @@ -5038,9 +5053,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextBuffer_empty", - "comment": "", "defaults": [], "funcname": "empty", + "ov_cimguiname": "ImGuiTextBuffer_empty", "ret": "bool", "signature": "()", "stname": "ImGuiTextBuffer" @@ -5058,11 +5073,11 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextBuffer_end", - "comment": "", "defaults": [], "funcname": "end", + "ov_cimguiname": "ImGuiTextBuffer_end", "ret": "const char*", - "signature": "()", + "signature": "()const", "stname": "ImGuiTextBuffer" } ], @@ -5082,9 +5097,9 @@ "argsoriginal": "(int capacity)", "call_args": "(capacity)", "cimguiname": "ImGuiTextBuffer_reserve", - "comment": "", "defaults": [], "funcname": "reserve", + "ov_cimguiname": "ImGuiTextBuffer_reserve", "ret": "void", "signature": "(int)", "stname": "ImGuiTextBuffer" @@ -5102,11 +5117,11 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextBuffer_size", - "comment": "", "defaults": [], "funcname": "size", + "ov_cimguiname": "ImGuiTextBuffer_size", "ret": "int", - "signature": "()", + "signature": "()const", "stname": "ImGuiTextBuffer" } ], @@ -5122,9 +5137,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextFilter_Build", - "comment": "", "defaults": [], "funcname": "Build", + "ov_cimguiname": "ImGuiTextFilter_Build", "ret": "void", "signature": "()", "stname": "ImGuiTextFilter" @@ -5142,9 +5157,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextFilter_Clear", - "comment": "", "defaults": [], "funcname": "Clear", + "ov_cimguiname": "ImGuiTextFilter_Clear", "ret": "void", "signature": "()", "stname": "ImGuiTextFilter" @@ -5170,12 +5185,12 @@ "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" }, "funcname": "Draw", + "ov_cimguiname": "ImGuiTextFilter_Draw", "ret": "bool", "signature": "(const char*,float)", "stname": "ImGuiTextFilter" @@ -5193,12 +5208,12 @@ "argsoriginal": "(const char* default_filter=\"\")", "call_args": "(default_filter)", "cimguiname": "ImGuiTextFilter_ImGuiTextFilter", - "comment": "", "constructor": true, "defaults": { "default_filter": "\"\"" }, "funcname": "ImGuiTextFilter", + "ov_cimguiname": "ImGuiTextFilter_ImGuiTextFilter", "signature": "(const char*)", "stname": "ImGuiTextFilter" } @@ -5215,11 +5230,11 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextFilter_IsActive", - "comment": "", "defaults": [], "funcname": "IsActive", + "ov_cimguiname": "ImGuiTextFilter_IsActive", "ret": "bool", - "signature": "()", + "signature": "()const", "stname": "ImGuiTextFilter" } ], @@ -5243,13 +5258,13 @@ "argsoriginal": "(const char* text,const char* text_end=((void*)0))", "call_args": "(text,text_end)", "cimguiname": "ImGuiTextFilter_PassFilter", - "comment": "", "defaults": { "text_end": "((void*)0)" }, "funcname": "PassFilter", + "ov_cimguiname": "ImGuiTextFilter_PassFilter", "ret": "bool", - "signature": "(const char*,const char*)", + "signature": "(const char*,const char*)const", "stname": "ImGuiTextFilter" } ], @@ -5279,7 +5294,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVec2_ImVec2", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImVec2", @@ -5302,7 +5316,6 @@ "argsoriginal": "(float _x,float _y)", "call_args": "(_x,_y)", "cimguiname": "ImVec2_ImVec2", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImVec2", @@ -5337,7 +5350,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVec4_ImVec4", - "comment": "", "constructor": true, "defaults": [], "funcname": "ImVec4", @@ -5368,7 +5380,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", @@ -5396,6 +5407,11363 @@ "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_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_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_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_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_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_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_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_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_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_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_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": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_ImVector", + "constructor": true, + "defaults": [], + "funcname": "ImVector", + "ov_cimguiname": "ImVector_ImVector", + "signature": "()", + "stname": "ImVector", + "templated": true + }, + { + "args": "(const ImVector src)", + "argsT": [ + { + "name": "src", + "type": "const ImVector" + } + ], + "argsoriginal": "(const ImVector& src)", + "call_args": "(src)", + "cimguiname": "ImVector_ImVector", + "constructor": true, + "defaults": [], + "funcname": "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_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_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)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + }, + { + "name": "sz", + "type": "int" + } + ], + "argsoriginal": "(int sz)", + "call_args": "(sz)", + "cimguiname": "ImVector__grow_capacity", + "defaults": [], + "funcname": "_grow_capacity", + "ov_cimguiname": "ImVector__grow_capacity", + "ret": "int", + "signature": "(int)const", + "stname": "ImVector", + "templated": true + } + ], + "ImVector_back": [ + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_back", + "ret": "T*", + "retref": "&", + "signature": "()", + "stname": "ImVector", + "templated": true + }, + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_back", + "defaults": [], + "funcname": "back", + "ov_cimguiname": "ImVector_back_const", + "ret": "const T*", + "retref": "&", + "signature": "()const", + "stname": "ImVector", + "templated": true + } + ], + "ImVector_begin": [ + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_begin", + "ret": "T*", + "signature": "()", + "stname": "ImVector", + "templated": true + }, + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_begin", + "defaults": [], + "funcname": "begin", + "ov_cimguiname": "ImVector_begin_const", + "ret": "const T*", + "signature": "()const", + "stname": "ImVector", + "templated": true + } + ], + "ImVector_capacity": [ + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_capacity", + "defaults": [], + "funcname": "capacity", + "ov_cimguiname": "ImVector_capacity", + "ret": "int", + "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)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_clear", + "defaults": [], + "funcname": "clear", + "ov_cimguiname": "ImVector_clear", + "ret": "void", + "signature": "()", + "stname": "ImVector", + "templated": true + } + ], + "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", + "templated": true + } + ], + "ImVector_empty": [ + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_empty", + "defaults": [], + "funcname": "empty", + "ov_cimguiname": "ImVector_empty", + "ret": "bool", + "signature": "()const", + "stname": "ImVector", + "templated": true + } + ], + "ImVector_end": [ + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_end", + "ret": "T*", + "signature": "()", + "stname": "ImVector", + "templated": true + }, + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_end", + "defaults": [], + "funcname": "end", + "ov_cimguiname": "ImVector_end_const", + "ret": "const T*", + "signature": "()const", + "stname": "ImVector", + "templated": true + } + ], + "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", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_erase", + "ret": "T*", + "signature": "(const T*)", + "stname": "ImVector", + "templated": true + }, + { + "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", + "defaults": [], + "funcname": "erase", + "ov_cimguiname": "ImVector_eraseTPtr", + "ret": "T*", + "signature": "(const T*,const T*)", + "stname": "ImVector", + "templated": true + } + ], + "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", + "defaults": [], + "funcname": "erase_unsorted", + "ov_cimguiname": "ImVector_erase_unsorted", + "ret": "T*", + "signature": "(const T*)", + "stname": "ImVector", + "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)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_front", + "ret": "T*", + "retref": "&", + "signature": "()", + "stname": "ImVector", + "templated": true + }, + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_front", + "defaults": [], + "funcname": "front", + "ov_cimguiname": "ImVector_front_const", + "ret": "const T*", + "retref": "&", + "signature": "()const", + "stname": "ImVector", + "templated": true + } + ], + "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", + "defaults": [], + "funcname": "index_from_ptr", + "ov_cimguiname": "ImVector_index_from_ptr", + "ret": "int", + "signature": "(const T*)const", + "stname": "ImVector", + "templated": true + } + ], + "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", + "defaults": [], + "funcname": "insert", + "ov_cimguiname": "ImVector_insert", + "ret": "T*", + "signature": "(const T*,const T)", + "stname": "ImVector", + "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)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_pop_back", + "defaults": [], + "funcname": "pop_back", + "ov_cimguiname": "ImVector_pop_back", + "ret": "void", + "signature": "()", + "stname": "ImVector", + "templated": true + } + ], + "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", + "defaults": [], + "funcname": "push_back", + "ov_cimguiname": "ImVector_push_back", + "ret": "void", + "signature": "(const T)", + "stname": "ImVector", + "templated": true + } + ], + "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", + "defaults": [], + "funcname": "push_front", + "ov_cimguiname": "ImVector_push_front", + "ret": "void", + "signature": "(const T)", + "stname": "ImVector", + "templated": true + } + ], + "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", + "defaults": [], + "funcname": "reserve", + "ov_cimguiname": "ImVector_reserve", + "ret": "void", + "signature": "(int)", + "stname": "ImVector", + "templated": true + } + ], + "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", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_resize", + "ret": "void", + "signature": "(int)", + "stname": "ImVector", + "templated": true + }, + { + "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", + "defaults": [], + "funcname": "resize", + "ov_cimguiname": "ImVector_resizeT", + "ret": "void", + "signature": "(int,const T)", + "stname": "ImVector", + "templated": true + } + ], + "ImVector_size": [ + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_size", + "defaults": [], + "funcname": "size", + "ov_cimguiname": "ImVector_size", + "ret": "int", + "signature": "()const", + "stname": "ImVector", + "templated": true + } + ], + "ImVector_size_in_bytes": [ + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_size_in_bytes", + "defaults": [], + "funcname": "size_in_bytes", + "ov_cimguiname": "ImVector_size_in_bytes", + "ret": "int", + "signature": "()const", + "stname": "ImVector", + "templated": true + } + ], + "ImVector_swap": [ + { + "args": "(ImVector* self,ImVector rhs)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + }, + { + "name": "rhs", + "type": "ImVector&" + } + ], + "argsoriginal": "(ImVector& rhs)", + "call_args": "(rhs)", + "cimguiname": "ImVector_swap", + "defaults": [], + "funcname": "swap", + "ov_cimguiname": "ImVector_swap", + "ret": "void", + "signature": "(ImVector)", + "stname": "ImVector", + "templated": true + } + ], "Pair_Pair": [ { "args": "(ImGuiID _key,int _val_i)", @@ -5412,7 +16780,6 @@ "argsoriginal": "(ImGuiID _key,int _val_i)", "call_args": "(_key,_val_i)", "cimguiname": "Pair_Pair", - "comment": "", "constructor": true, "defaults": [], "funcname": "Pair", @@ -5435,7 +16802,6 @@ "argsoriginal": "(ImGuiID _key,float _val_f)", "call_args": "(_key,_val_f)", "cimguiname": "Pair_Pair", - "comment": "", "constructor": true, "defaults": [], "funcname": "Pair", @@ -5458,7 +16824,6 @@ "argsoriginal": "(ImGuiID _key,void* _val_p)", "call_args": "(_key,_val_p)", "cimguiname": "Pair_Pair", - "comment": "", "constructor": true, "defaults": [], "funcname": "Pair", @@ -5493,7 +16858,6 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "TextRange_TextRange", - "comment": "", "constructor": true, "defaults": [], "funcname": "TextRange", @@ -5516,7 +16880,6 @@ "argsoriginal": "(const char* _b,const char* _e)", "call_args": "(_b,_e)", "cimguiname": "TextRange_TextRange", - "comment": "", "constructor": true, "defaults": [], "funcname": "TextRange", @@ -5537,11 +16900,11 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "TextRange_begin", - "comment": "", "defaults": [], "funcname": "begin", + "ov_cimguiname": "TextRange_begin", "ret": "const char*", - "signature": "()", + "signature": "()const", "stname": "TextRange" } ], @@ -5576,11 +16939,11 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "TextRange_empty", - "comment": "", "defaults": [], "funcname": "empty", + "ov_cimguiname": "TextRange_empty", "ret": "bool", - "signature": "()", + "signature": "()const", "stname": "TextRange" } ], @@ -5596,11 +16959,11 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "TextRange_end", - "comment": "", "defaults": [], "funcname": "end", + "ov_cimguiname": "TextRange_end", "ret": "const char*", - "signature": "()", + "signature": "()const", "stname": "TextRange" } ], @@ -5624,11 +16987,11 @@ "argsoriginal": "(char separator,ImVector* out)", "call_args": "(separator,out)", "cimguiname": "TextRange_split", - "comment": "", "defaults": [], "funcname": "split", + "ov_cimguiname": "TextRange_split", "ret": "void", - "signature": "(char,ImVector_TextRange*)", + "signature": "(char,ImVector_TextRange*)const", "stname": "TextRange" } ], @@ -5648,14 +17011,15 @@ "argsoriginal": "(const char* type,ImGuiDragDropFlags flags=0)", "call_args": "(type,flags)", "cimguiname": "igAcceptDragDropPayload", - "comment": "", "defaults": { "flags": "0" }, "funcname": "AcceptDragDropPayload", + "namespace": "ImGui", + "ov_cimguiname": "igAcceptDragDropPayload", "ret": "const ImGuiPayload*", "signature": "(const char*,ImGuiDragDropFlags)", - "stname": "ImGui" + "stname": "" } ], "igAlignTextToFramePadding": [ @@ -5665,12 +17029,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igAlignTextToFramePadding", - "comment": "", "defaults": [], "funcname": "AlignTextToFramePadding", + "namespace": "ImGui", + "ov_cimguiname": "igAlignTextToFramePadding", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igArrowButton": [ @@ -5689,12 +17054,13 @@ "argsoriginal": "(const char* str_id,ImGuiDir dir)", "call_args": "(str_id,dir)", "cimguiname": "igArrowButton", - "comment": "", "defaults": [], "funcname": "ArrowButton", + "namespace": "ImGui", + "ov_cimguiname": "igArrowButton", "ret": "bool", "signature": "(const char*,ImGuiDir)", - "stname": "ImGui" + "stname": "" } ], "igBegin": [ @@ -5717,15 +17083,16 @@ "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)" }, "funcname": "Begin", + "namespace": "ImGui", + "ov_cimguiname": "igBegin", "ret": "bool", "signature": "(const char*,bool*,ImGuiWindowFlags)", - "stname": "ImGui" + "stname": "" } ], "igBeginChild": [ @@ -5752,17 +17119,17 @@ "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", "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)", @@ -5787,17 +17154,17 @@ "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", "size": "ImVec2(0,0)" }, "funcname": "BeginChild", + "namespace": "ImGui", "ov_cimguiname": "igBeginChildID", "ret": "bool", "signature": "(ImGuiID,const ImVec2,bool,ImGuiWindowFlags)", - "stname": "ImGui" + "stname": "" } ], "igBeginChildFrame": [ @@ -5820,14 +17187,15 @@ "argsoriginal": "(ImGuiID id,const ImVec2& size,ImGuiWindowFlags flags=0)", "call_args": "(id,size,flags)", "cimguiname": "igBeginChildFrame", - "comment": "", "defaults": { "flags": "0" }, "funcname": "BeginChildFrame", + "namespace": "ImGui", + "ov_cimguiname": "igBeginChildFrame", "ret": "bool", "signature": "(ImGuiID,const ImVec2,ImGuiWindowFlags)", - "stname": "ImGui" + "stname": "" } ], "igBeginCombo": [ @@ -5850,14 +17218,15 @@ "argsoriginal": "(const char* label,const char* preview_value,ImGuiComboFlags flags=0)", "call_args": "(label,preview_value,flags)", "cimguiname": "igBeginCombo", - "comment": "", "defaults": { "flags": "0" }, "funcname": "BeginCombo", + "namespace": "ImGui", + "ov_cimguiname": "igBeginCombo", "ret": "bool", "signature": "(const char*,const char*,ImGuiComboFlags)", - "stname": "ImGui" + "stname": "" } ], "igBeginDragDropSource": [ @@ -5872,14 +17241,15 @@ "argsoriginal": "(ImGuiDragDropFlags flags=0)", "call_args": "(flags)", "cimguiname": "igBeginDragDropSource", - "comment": "", "defaults": { "flags": "0" }, "funcname": "BeginDragDropSource", + "namespace": "ImGui", + "ov_cimguiname": "igBeginDragDropSource", "ret": "bool", "signature": "(ImGuiDragDropFlags)", - "stname": "ImGui" + "stname": "" } ], "igBeginDragDropTarget": [ @@ -5889,12 +17259,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igBeginDragDropTarget", - "comment": "", "defaults": [], "funcname": "BeginDragDropTarget", + "namespace": "ImGui", + "ov_cimguiname": "igBeginDragDropTarget", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igBeginGroup": [ @@ -5904,12 +17275,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igBeginGroup", - "comment": "", "defaults": [], "funcname": "BeginGroup", + "namespace": "ImGui", + "ov_cimguiname": "igBeginGroup", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igBeginMainMenuBar": [ @@ -5919,12 +17291,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igBeginMainMenuBar", - "comment": "", "defaults": [], "funcname": "BeginMainMenuBar", + "namespace": "ImGui", + "ov_cimguiname": "igBeginMainMenuBar", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igBeginMenu": [ @@ -5943,14 +17316,15 @@ "argsoriginal": "(const char* label,bool enabled=true)", "call_args": "(label,enabled)", "cimguiname": "igBeginMenu", - "comment": "", "defaults": { "enabled": "true" }, "funcname": "BeginMenu", + "namespace": "ImGui", + "ov_cimguiname": "igBeginMenu", "ret": "bool", "signature": "(const char*,bool)", - "stname": "ImGui" + "stname": "" } ], "igBeginMenuBar": [ @@ -5960,12 +17334,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igBeginMenuBar", - "comment": "", "defaults": [], "funcname": "BeginMenuBar", + "namespace": "ImGui", + "ov_cimguiname": "igBeginMenuBar", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igBeginPopup": [ @@ -5984,14 +17359,15 @@ "argsoriginal": "(const char* str_id,ImGuiWindowFlags flags=0)", "call_args": "(str_id,flags)", "cimguiname": "igBeginPopup", - "comment": "", "defaults": { "flags": "0" }, "funcname": "BeginPopup", + "namespace": "ImGui", + "ov_cimguiname": "igBeginPopup", "ret": "bool", "signature": "(const char*,ImGuiWindowFlags)", - "stname": "ImGui" + "stname": "" } ], "igBeginPopupContextItem": [ @@ -6010,15 +17386,16 @@ "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)" }, "funcname": "BeginPopupContextItem", + "namespace": "ImGui", + "ov_cimguiname": "igBeginPopupContextItem", "ret": "bool", "signature": "(const char*,int)", - "stname": "ImGui" + "stname": "" } ], "igBeginPopupContextVoid": [ @@ -6037,15 +17414,16 @@ "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)" }, "funcname": "BeginPopupContextVoid", + "namespace": "ImGui", + "ov_cimguiname": "igBeginPopupContextVoid", "ret": "bool", "signature": "(const char*,int)", - "stname": "ImGui" + "stname": "" } ], "igBeginPopupContextWindow": [ @@ -6068,16 +17446,17 @@ "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)" }, "funcname": "BeginPopupContextWindow", + "namespace": "ImGui", + "ov_cimguiname": "igBeginPopupContextWindow", "ret": "bool", "signature": "(const char*,int,bool)", - "stname": "ImGui" + "stname": "" } ], "igBeginPopupModal": [ @@ -6100,15 +17479,16 @@ "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)" }, "funcname": "BeginPopupModal", + "namespace": "ImGui", + "ov_cimguiname": "igBeginPopupModal", "ret": "bool", "signature": "(const char*,bool*,ImGuiWindowFlags)", - "stname": "ImGui" + "stname": "" } ], "igBeginTabBar": [ @@ -6127,14 +17507,15 @@ "argsoriginal": "(const char* str_id,ImGuiTabBarFlags flags=0)", "call_args": "(str_id,flags)", "cimguiname": "igBeginTabBar", - "comment": "", "defaults": { "flags": "0" }, "funcname": "BeginTabBar", + "namespace": "ImGui", + "ov_cimguiname": "igBeginTabBar", "ret": "bool", "signature": "(const char*,ImGuiTabBarFlags)", - "stname": "ImGui" + "stname": "" } ], "igBeginTabItem": [ @@ -6157,15 +17538,16 @@ "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)" }, "funcname": "BeginTabItem", + "namespace": "ImGui", + "ov_cimguiname": "igBeginTabItem", "ret": "bool", "signature": "(const char*,bool*,ImGuiTabItemFlags)", - "stname": "ImGui" + "stname": "" } ], "igBeginTooltip": [ @@ -6175,12 +17557,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igBeginTooltip", - "comment": "", "defaults": [], "funcname": "BeginTooltip", + "namespace": "ImGui", + "ov_cimguiname": "igBeginTooltip", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igBullet": [ @@ -6190,12 +17573,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igBullet", - "comment": "", "defaults": [], "funcname": "Bullet", + "namespace": "ImGui", + "ov_cimguiname": "igBullet", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igBulletText": [ @@ -6214,13 +17598,14 @@ "argsoriginal": "(const char* fmt,...)", "call_args": "(fmt,...)", "cimguiname": "igBulletText", - "comment": "", "defaults": [], "funcname": "BulletText", "isvararg": "...)", + "namespace": "ImGui", + "ov_cimguiname": "igBulletText", "ret": "void", "signature": "(const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igBulletTextV": [ @@ -6239,12 +17624,13 @@ "argsoriginal": "(const char* fmt,va_list args)", "call_args": "(fmt,args)", "cimguiname": "igBulletTextV", - "comment": "", "defaults": [], "funcname": "BulletTextV", + "namespace": "ImGui", + "ov_cimguiname": "igBulletTextV", "ret": "void", "signature": "(const char*,va_list)", - "stname": "ImGui" + "stname": "" } ], "igButton": [ @@ -6263,14 +17649,15 @@ "argsoriginal": "(const char* label,const ImVec2& size=ImVec2(0,0))", "call_args": "(label,size)", "cimguiname": "igButton", - "comment": "", "defaults": { "size": "ImVec2(0,0)" }, "funcname": "Button", + "namespace": "ImGui", + "ov_cimguiname": "igButton", "ret": "bool", "signature": "(const char*,const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igCalcItemWidth": [ @@ -6280,12 +17667,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igCalcItemWidth", - "comment": "", "defaults": [], "funcname": "CalcItemWidth", + "namespace": "ImGui", + "ov_cimguiname": "igCalcItemWidth", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igCalcListClipping": [ @@ -6312,12 +17700,13 @@ "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", + "ov_cimguiname": "igCalcListClipping", "ret": "void", "signature": "(int,float,int*,int*)", - "stname": "ImGui" + "stname": "" } ], "igCalcTextSize": [ @@ -6344,16 +17733,17 @@ "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)", "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)", @@ -6382,18 +17772,18 @@ "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)", "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)", @@ -6418,19 +17808,19 @@ "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)", "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": [ @@ -6445,14 +17835,15 @@ "argsoriginal": "(bool want_capture_keyboard_value=true)", "call_args": "(want_capture_keyboard_value)", "cimguiname": "igCaptureKeyboardFromApp", - "comment": "", "defaults": { "want_capture_keyboard_value": "true" }, "funcname": "CaptureKeyboardFromApp", + "namespace": "ImGui", + "ov_cimguiname": "igCaptureKeyboardFromApp", "ret": "void", "signature": "(bool)", - "stname": "ImGui" + "stname": "" } ], "igCaptureMouseFromApp": [ @@ -6467,14 +17858,15 @@ "argsoriginal": "(bool want_capture_mouse_value=true)", "call_args": "(want_capture_mouse_value)", "cimguiname": "igCaptureMouseFromApp", - "comment": "", "defaults": { "want_capture_mouse_value": "true" }, "funcname": "CaptureMouseFromApp", + "namespace": "ImGui", + "ov_cimguiname": "igCaptureMouseFromApp", "ret": "void", "signature": "(bool)", - "stname": "ImGui" + "stname": "" } ], "igCheckbox": [ @@ -6493,12 +17885,13 @@ "argsoriginal": "(const char* label,bool* v)", "call_args": "(label,v)", "cimguiname": "igCheckbox", - "comment": "", "defaults": [], "funcname": "Checkbox", + "namespace": "ImGui", + "ov_cimguiname": "igCheckbox", "ret": "bool", "signature": "(const char*,bool*)", - "stname": "ImGui" + "stname": "" } ], "igCheckboxFlags": [ @@ -6521,12 +17914,13 @@ "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", + "ov_cimguiname": "igCheckboxFlags", "ret": "bool", "signature": "(const char*,unsigned int*,unsigned int)", - "stname": "ImGui" + "stname": "" } ], "igCloseCurrentPopup": [ @@ -6536,12 +17930,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igCloseCurrentPopup", - "comment": "", "defaults": [], "funcname": "CloseCurrentPopup", + "namespace": "ImGui", + "ov_cimguiname": "igCloseCurrentPopup", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igCollapsingHeader": [ @@ -6560,15 +17955,15 @@ "argsoriginal": "(const char* label,ImGuiTreeNodeFlags flags=0)", "call_args": "(label,flags)", "cimguiname": "igCollapsingHeader", - "comment": "", "defaults": { "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)", @@ -6589,15 +17984,15 @@ "argsoriginal": "(const char* label,bool* p_open,ImGuiTreeNodeFlags flags=0)", "call_args": "(label,p_open,flags)", "cimguiname": "igCollapsingHeader", - "comment": "", "defaults": { "flags": "0" }, "funcname": "CollapsingHeader", + "namespace": "ImGui", "ov_cimguiname": "igCollapsingHeaderBoolPtr", "ret": "bool", "signature": "(const char*,bool*,ImGuiTreeNodeFlags)", - "stname": "ImGui" + "stname": "" } ], "igColorButton": [ @@ -6624,15 +18019,16 @@ "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)" }, "funcname": "ColorButton", + "namespace": "ImGui", + "ov_cimguiname": "igColorButton", "ret": "bool", "signature": "(const char*,const ImVec4,ImGuiColorEditFlags,ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igColorConvertFloat4ToU32": [ @@ -6647,12 +18043,13 @@ "argsoriginal": "(const ImVec4& in)", "call_args": "(in)", "cimguiname": "igColorConvertFloat4ToU32", - "comment": "", "defaults": [], "funcname": "ColorConvertFloat4ToU32", + "namespace": "ImGui", + "ov_cimguiname": "igColorConvertFloat4ToU32", "ret": "ImU32", "signature": "(const ImVec4)", - "stname": "ImGui" + "stname": "" } ], "igColorConvertHSVtoRGB": [ @@ -6687,13 +18084,14 @@ "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, + "namespace": "ImGui", + "ov_cimguiname": "igColorConvertHSVtoRGB", "ret": "void", "signature": "(float,float,float,float,float,float)", - "stname": "ImGui" + "stname": "" } ], "igColorConvertRGBtoHSV": [ @@ -6728,13 +18126,14 @@ "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, + "namespace": "ImGui", + "ov_cimguiname": "igColorConvertRGBtoHSV", "ret": "void", "signature": "(float,float,float,float,float,float)", - "stname": "ImGui" + "stname": "" } ], "igColorConvertU32ToFloat4": [ @@ -6749,12 +18148,13 @@ "argsoriginal": "(ImU32 in)", "call_args": "(in)", "cimguiname": "igColorConvertU32ToFloat4", - "comment": "", "defaults": [], "funcname": "ColorConvertU32ToFloat4", + "namespace": "ImGui", + "ov_cimguiname": "igColorConvertU32ToFloat4", "ret": "ImVec4", "signature": "(ImU32)", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec4 *pOut,ImU32 in)", @@ -6771,14 +18171,14 @@ "argsoriginal": "(ImU32 in)", "call_args": "(in)", "cimguiname": "igColorConvertU32ToFloat4", - "comment": "", "defaults": [], "funcname": "ColorConvertU32ToFloat4", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igColorConvertU32ToFloat4_nonUDT", "ret": "void", "signature": "(ImU32)", - "stname": "ImGui" + "stname": "" }, { "args": "(ImU32 in)", @@ -6791,15 +18191,15 @@ "argsoriginal": "(ImU32 in)", "call_args": "(in)", "cimguiname": "igColorConvertU32ToFloat4", - "comment": "", "defaults": [], "funcname": "ColorConvertU32ToFloat4", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igColorConvertU32ToFloat4_nonUDT2", "ret": "ImVec4_Simple", "retorig": "ImVec4", "signature": "(ImU32)", - "stname": "ImGui" + "stname": "" } ], "igColorEdit3": [ @@ -6822,14 +18222,15 @@ "argsoriginal": "(const char* label,float col[3],ImGuiColorEditFlags flags=0)", "call_args": "(label,col,flags)", "cimguiname": "igColorEdit3", - "comment": "", "defaults": { "flags": "0" }, "funcname": "ColorEdit3", + "namespace": "ImGui", + "ov_cimguiname": "igColorEdit3", "ret": "bool", "signature": "(const char*,float[3],ImGuiColorEditFlags)", - "stname": "ImGui" + "stname": "" } ], "igColorEdit4": [ @@ -6852,14 +18253,15 @@ "argsoriginal": "(const char* label,float col[4],ImGuiColorEditFlags flags=0)", "call_args": "(label,col,flags)", "cimguiname": "igColorEdit4", - "comment": "", "defaults": { "flags": "0" }, "funcname": "ColorEdit4", + "namespace": "ImGui", + "ov_cimguiname": "igColorEdit4", "ret": "bool", "signature": "(const char*,float[4],ImGuiColorEditFlags)", - "stname": "ImGui" + "stname": "" } ], "igColorPicker3": [ @@ -6882,14 +18284,15 @@ "argsoriginal": "(const char* label,float col[3],ImGuiColorEditFlags flags=0)", "call_args": "(label,col,flags)", "cimguiname": "igColorPicker3", - "comment": "", "defaults": { "flags": "0" }, "funcname": "ColorPicker3", + "namespace": "ImGui", + "ov_cimguiname": "igColorPicker3", "ret": "bool", "signature": "(const char*,float[3],ImGuiColorEditFlags)", - "stname": "ImGui" + "stname": "" } ], "igColorPicker4": [ @@ -6916,15 +18319,16 @@ "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)" }, "funcname": "ColorPicker4", + "namespace": "ImGui", + "ov_cimguiname": "igColorPicker4", "ret": "bool", "signature": "(const char*,float[4],ImGuiColorEditFlags,const float*)", - "stname": "ImGui" + "stname": "" } ], "igColumns": [ @@ -6947,16 +18351,17 @@ "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)" }, "funcname": "Columns", + "namespace": "ImGui", + "ov_cimguiname": "igColumns", "ret": "void", "signature": "(int,const char*,bool)", - "stname": "ImGui" + "stname": "" } ], "igCombo": [ @@ -6987,15 +18392,15 @@ "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" }, "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)", @@ -7020,15 +18425,15 @@ "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" }, "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)", @@ -7063,15 +18468,15 @@ "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" }, "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": [ @@ -7086,14 +18491,15 @@ "argsoriginal": "(ImFontAtlas* shared_font_atlas=((void*)0))", "call_args": "(shared_font_atlas)", "cimguiname": "igCreateContext", - "comment": "", "defaults": { "shared_font_atlas": "((void*)0)" }, "funcname": "CreateContext", + "namespace": "ImGui", + "ov_cimguiname": "igCreateContext", "ret": "ImGuiContext*", "signature": "(ImFontAtlas*)", - "stname": "ImGui" + "stname": "" } ], "igDebugCheckVersionAndDataLayout": [ @@ -7128,12 +18534,13 @@ "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", + "ov_cimguiname": "igDebugCheckVersionAndDataLayout", "ret": "bool", "signature": "(const char*,size_t,size_t,size_t,size_t,size_t)", - "stname": "ImGui" + "stname": "" } ], "igDestroyContext": [ @@ -7148,14 +18555,15 @@ "argsoriginal": "(ImGuiContext* ctx=((void*)0))", "call_args": "(ctx)", "cimguiname": "igDestroyContext", - "comment": "", "defaults": { "ctx": "((void*)0)" }, "funcname": "DestroyContext", + "namespace": "ImGui", + "ov_cimguiname": "igDestroyContext", "ret": "void", "signature": "(ImGuiContext*)", - "stname": "ImGui" + "stname": "" } ], "igDragFloat": [ @@ -7194,7 +18602,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", @@ -7203,9 +18610,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": [ @@ -7244,7 +18653,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", @@ -7253,9 +18661,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": [ @@ -7294,7 +18704,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", @@ -7303,9 +18712,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": [ @@ -7344,7 +18755,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", @@ -7353,9 +18763,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": [ @@ -7402,7 +18814,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)", @@ -7412,9 +18823,11 @@ "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": [ @@ -7449,7 +18862,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", @@ -7457,9 +18869,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": [ @@ -7494,7 +18908,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", @@ -7502,9 +18915,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": [ @@ -7539,7 +18954,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", @@ -7547,9 +18961,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": [ @@ -7584,7 +19000,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", @@ -7592,9 +19007,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": [ @@ -7637,7 +19054,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)", @@ -7646,9 +19062,11 @@ "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": [ @@ -7691,7 +19109,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", @@ -7699,9 +19116,11 @@ "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": [ @@ -7748,7 +19167,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", @@ -7756,9 +19174,11 @@ "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": [ @@ -7773,12 +19193,13 @@ "argsoriginal": "(const ImVec2& size)", "call_args": "(size)", "cimguiname": "igDummy", - "comment": "", "defaults": [], "funcname": "Dummy", + "namespace": "ImGui", + "ov_cimguiname": "igDummy", "ret": "void", "signature": "(const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igEnd": [ @@ -7788,12 +19209,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEnd", - "comment": "", "defaults": [], "funcname": "End", + "namespace": "ImGui", + "ov_cimguiname": "igEnd", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndChild": [ @@ -7803,12 +19225,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndChild", - "comment": "", "defaults": [], "funcname": "EndChild", + "namespace": "ImGui", + "ov_cimguiname": "igEndChild", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndChildFrame": [ @@ -7818,12 +19241,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndChildFrame", - "comment": "", "defaults": [], "funcname": "EndChildFrame", + "namespace": "ImGui", + "ov_cimguiname": "igEndChildFrame", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndCombo": [ @@ -7833,12 +19257,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndCombo", - "comment": "", "defaults": [], "funcname": "EndCombo", + "namespace": "ImGui", + "ov_cimguiname": "igEndCombo", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndDragDropSource": [ @@ -7848,12 +19273,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndDragDropSource", - "comment": "", "defaults": [], "funcname": "EndDragDropSource", + "namespace": "ImGui", + "ov_cimguiname": "igEndDragDropSource", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndDragDropTarget": [ @@ -7863,12 +19289,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndDragDropTarget", - "comment": "", "defaults": [], "funcname": "EndDragDropTarget", + "namespace": "ImGui", + "ov_cimguiname": "igEndDragDropTarget", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndFrame": [ @@ -7878,12 +19305,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndFrame", - "comment": "", "defaults": [], "funcname": "EndFrame", + "namespace": "ImGui", + "ov_cimguiname": "igEndFrame", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndGroup": [ @@ -7893,12 +19321,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndGroup", - "comment": "", "defaults": [], "funcname": "EndGroup", + "namespace": "ImGui", + "ov_cimguiname": "igEndGroup", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndMainMenuBar": [ @@ -7908,12 +19337,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndMainMenuBar", - "comment": "", "defaults": [], "funcname": "EndMainMenuBar", + "namespace": "ImGui", + "ov_cimguiname": "igEndMainMenuBar", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndMenu": [ @@ -7923,12 +19353,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndMenu", - "comment": "", "defaults": [], "funcname": "EndMenu", + "namespace": "ImGui", + "ov_cimguiname": "igEndMenu", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndMenuBar": [ @@ -7938,12 +19369,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndMenuBar", - "comment": "", "defaults": [], "funcname": "EndMenuBar", + "namespace": "ImGui", + "ov_cimguiname": "igEndMenuBar", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndPopup": [ @@ -7953,12 +19385,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndPopup", - "comment": "", "defaults": [], "funcname": "EndPopup", + "namespace": "ImGui", + "ov_cimguiname": "igEndPopup", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndTabBar": [ @@ -7968,12 +19401,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndTabBar", - "comment": "", "defaults": [], "funcname": "EndTabBar", + "namespace": "ImGui", + "ov_cimguiname": "igEndTabBar", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndTabItem": [ @@ -7983,12 +19417,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndTabItem", - "comment": "", "defaults": [], "funcname": "EndTabItem", + "namespace": "ImGui", + "ov_cimguiname": "igEndTabItem", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndTooltip": [ @@ -7998,12 +19433,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndTooltip", - "comment": "", "defaults": [], "funcname": "EndTooltip", + "namespace": "ImGui", + "ov_cimguiname": "igEndTooltip", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetClipboardText": [ @@ -8013,12 +19449,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetClipboardText", - "comment": "", "defaults": [], "funcname": "GetClipboardText", + "namespace": "ImGui", + "ov_cimguiname": "igGetClipboardText", "ret": "const char*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetColorU32": [ @@ -8037,15 +19474,15 @@ "argsoriginal": "(ImGuiCol idx,float alpha_mul=1.0f)", "call_args": "(idx,alpha_mul)", "cimguiname": "igGetColorU32", - "comment": "", "defaults": { "alpha_mul": "1.0f" }, "funcname": "GetColorU32", + "namespace": "ImGui", "ov_cimguiname": "igGetColorU32", "ret": "ImU32", "signature": "(ImGuiCol,float)", - "stname": "ImGui" + "stname": "" }, { "args": "(const ImVec4 col)", @@ -8058,13 +19495,13 @@ "argsoriginal": "(const ImVec4& col)", "call_args": "(col)", "cimguiname": "igGetColorU32", - "comment": "", "defaults": [], "funcname": "GetColorU32", + "namespace": "ImGui", "ov_cimguiname": "igGetColorU32Vec4", "ret": "ImU32", "signature": "(const ImVec4)", - "stname": "ImGui" + "stname": "" }, { "args": "(ImU32 col)", @@ -8077,13 +19514,13 @@ "argsoriginal": "(ImU32 col)", "call_args": "(col)", "cimguiname": "igGetColorU32", - "comment": "", "defaults": [], "funcname": "GetColorU32", + "namespace": "ImGui", "ov_cimguiname": "igGetColorU32U32", "ret": "ImU32", "signature": "(ImU32)", - "stname": "ImGui" + "stname": "" } ], "igGetColumnIndex": [ @@ -8093,12 +19530,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetColumnIndex", - "comment": "", "defaults": [], "funcname": "GetColumnIndex", + "namespace": "ImGui", + "ov_cimguiname": "igGetColumnIndex", "ret": "int", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetColumnOffset": [ @@ -8113,14 +19551,15 @@ "argsoriginal": "(int column_index=-1)", "call_args": "(column_index)", "cimguiname": "igGetColumnOffset", - "comment": "", "defaults": { "column_index": "-1" }, "funcname": "GetColumnOffset", + "namespace": "ImGui", + "ov_cimguiname": "igGetColumnOffset", "ret": "float", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igGetColumnWidth": [ @@ -8135,14 +19574,15 @@ "argsoriginal": "(int column_index=-1)", "call_args": "(column_index)", "cimguiname": "igGetColumnWidth", - "comment": "", "defaults": { "column_index": "-1" }, "funcname": "GetColumnWidth", + "namespace": "ImGui", + "ov_cimguiname": "igGetColumnWidth", "ret": "float", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igGetColumnsCount": [ @@ -8152,12 +19592,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetColumnsCount", - "comment": "", "defaults": [], "funcname": "GetColumnsCount", + "namespace": "ImGui", + "ov_cimguiname": "igGetColumnsCount", "ret": "int", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetContentRegionAvail": [ @@ -8167,12 +19608,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetContentRegionAvail", - "comment": "", "defaults": [], "funcname": "GetContentRegionAvail", + "namespace": "ImGui", + "ov_cimguiname": "igGetContentRegionAvail", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -8185,14 +19627,14 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetContentRegionAvail", - "comment": "", "defaults": [], "funcname": "GetContentRegionAvail", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionAvail_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -8200,15 +19642,15 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetContentRegionAvail", - "comment": "", "defaults": [], "funcname": "GetContentRegionAvail", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetContentRegionAvail_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetContentRegionAvailWidth": [ @@ -8218,12 +19660,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetContentRegionAvailWidth", - "comment": "", "defaults": [], "funcname": "GetContentRegionAvailWidth", + "namespace": "ImGui", + "ov_cimguiname": "igGetContentRegionAvailWidth", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetContentRegionMax": [ @@ -8233,12 +19676,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetContentRegionMax", - "comment": "", "defaults": [], "funcname": "GetContentRegionMax", + "namespace": "ImGui", + "ov_cimguiname": "igGetContentRegionMax", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -8251,14 +19695,14 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetContentRegionMax", - "comment": "", "defaults": [], "funcname": "GetContentRegionMax", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionMax_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -8266,15 +19710,15 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetContentRegionMax", - "comment": "", "defaults": [], "funcname": "GetContentRegionMax", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetContentRegionMax_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetCurrentContext": [ @@ -8284,12 +19728,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCurrentContext", - "comment": "", "defaults": [], "funcname": "GetCurrentContext", + "namespace": "ImGui", + "ov_cimguiname": "igGetCurrentContext", "ret": "ImGuiContext*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetCursorPos": [ @@ -8299,12 +19744,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorPos", - "comment": "", "defaults": [], "funcname": "GetCursorPos", + "namespace": "ImGui", + "ov_cimguiname": "igGetCursorPos", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -8317,14 +19763,14 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorPos", - "comment": "", "defaults": [], "funcname": "GetCursorPos", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorPos_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -8332,15 +19778,15 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorPos", - "comment": "", "defaults": [], "funcname": "GetCursorPos", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetCursorPos_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetCursorPosX": [ @@ -8350,12 +19796,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorPosX", - "comment": "", "defaults": [], "funcname": "GetCursorPosX", + "namespace": "ImGui", + "ov_cimguiname": "igGetCursorPosX", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetCursorPosY": [ @@ -8365,12 +19812,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorPosY", - "comment": "", "defaults": [], "funcname": "GetCursorPosY", + "namespace": "ImGui", + "ov_cimguiname": "igGetCursorPosY", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetCursorScreenPos": [ @@ -8380,12 +19828,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorScreenPos", - "comment": "", "defaults": [], "funcname": "GetCursorScreenPos", + "namespace": "ImGui", + "ov_cimguiname": "igGetCursorScreenPos", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -8398,14 +19847,14 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorScreenPos", - "comment": "", "defaults": [], "funcname": "GetCursorScreenPos", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorScreenPos_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -8413,15 +19862,15 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorScreenPos", - "comment": "", "defaults": [], "funcname": "GetCursorScreenPos", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetCursorScreenPos_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetCursorStartPos": [ @@ -8431,12 +19880,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorStartPos", - "comment": "", "defaults": [], "funcname": "GetCursorStartPos", + "namespace": "ImGui", + "ov_cimguiname": "igGetCursorStartPos", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -8449,14 +19899,14 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorStartPos", - "comment": "", "defaults": [], "funcname": "GetCursorStartPos", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorStartPos_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -8464,15 +19914,15 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorStartPos", - "comment": "", "defaults": [], "funcname": "GetCursorStartPos", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetCursorStartPos_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetDragDropPayload": [ @@ -8482,12 +19932,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetDragDropPayload", - "comment": "", "defaults": [], "funcname": "GetDragDropPayload", + "namespace": "ImGui", + "ov_cimguiname": "igGetDragDropPayload", "ret": "const ImGuiPayload*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetDrawData": [ @@ -8497,12 +19948,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetDrawData", - "comment": "", "defaults": [], "funcname": "GetDrawData", + "namespace": "ImGui", + "ov_cimguiname": "igGetDrawData", "ret": "ImDrawData*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetDrawListSharedData": [ @@ -8512,12 +19964,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetDrawListSharedData", - "comment": "", "defaults": [], "funcname": "GetDrawListSharedData", + "namespace": "ImGui", + "ov_cimguiname": "igGetDrawListSharedData", "ret": "ImDrawListSharedData*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetFont": [ @@ -8527,12 +19980,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFont", - "comment": "", "defaults": [], "funcname": "GetFont", + "namespace": "ImGui", + "ov_cimguiname": "igGetFont", "ret": "ImFont*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetFontSize": [ @@ -8542,12 +19996,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFontSize", - "comment": "", "defaults": [], "funcname": "GetFontSize", + "namespace": "ImGui", + "ov_cimguiname": "igGetFontSize", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetFontTexUvWhitePixel": [ @@ -8557,12 +20012,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFontTexUvWhitePixel", - "comment": "", "defaults": [], "funcname": "GetFontTexUvWhitePixel", + "namespace": "ImGui", + "ov_cimguiname": "igGetFontTexUvWhitePixel", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -8575,14 +20031,14 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFontTexUvWhitePixel", - "comment": "", "defaults": [], "funcname": "GetFontTexUvWhitePixel", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetFontTexUvWhitePixel_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -8590,15 +20046,15 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFontTexUvWhitePixel", - "comment": "", "defaults": [], "funcname": "GetFontTexUvWhitePixel", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetFontTexUvWhitePixel_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetFrameCount": [ @@ -8608,12 +20064,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFrameCount", - "comment": "", "defaults": [], "funcname": "GetFrameCount", + "namespace": "ImGui", + "ov_cimguiname": "igGetFrameCount", "ret": "int", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetFrameHeight": [ @@ -8623,12 +20080,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFrameHeight", - "comment": "", "defaults": [], "funcname": "GetFrameHeight", + "namespace": "ImGui", + "ov_cimguiname": "igGetFrameHeight", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetFrameHeightWithSpacing": [ @@ -8638,12 +20096,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFrameHeightWithSpacing", - "comment": "", "defaults": [], "funcname": "GetFrameHeightWithSpacing", + "namespace": "ImGui", + "ov_cimguiname": "igGetFrameHeightWithSpacing", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetID": [ @@ -8658,13 +20117,13 @@ "argsoriginal": "(const char* str_id)", "call_args": "(str_id)", "cimguiname": "igGetID", - "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)", @@ -8681,13 +20140,13 @@ "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", "ov_cimguiname": "igGetIDRange", "ret": "ImGuiID", "signature": "(const char*,const char*)", - "stname": "ImGui" + "stname": "" }, { "args": "(const void* ptr_id)", @@ -8700,13 +20159,13 @@ "argsoriginal": "(const void* ptr_id)", "call_args": "(ptr_id)", "cimguiname": "igGetID", - "comment": "", "defaults": [], "funcname": "GetID", + "namespace": "ImGui", "ov_cimguiname": "igGetIDPtr", "ret": "ImGuiID", "signature": "(const void*)", - "stname": "ImGui" + "stname": "" } ], "igGetIO": [ @@ -8716,13 +20175,14 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetIO", - "comment": "", "defaults": [], "funcname": "GetIO", + "namespace": "ImGui", + "ov_cimguiname": "igGetIO", "ret": "ImGuiIO*", "retref": "&", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetItemRectMax": [ @@ -8732,12 +20192,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetItemRectMax", - "comment": "", "defaults": [], "funcname": "GetItemRectMax", + "namespace": "ImGui", + "ov_cimguiname": "igGetItemRectMax", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -8750,14 +20211,14 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetItemRectMax", - "comment": "", "defaults": [], "funcname": "GetItemRectMax", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMax_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -8765,15 +20226,15 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetItemRectMax", - "comment": "", "defaults": [], "funcname": "GetItemRectMax", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetItemRectMax_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetItemRectMin": [ @@ -8783,12 +20244,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetItemRectMin", - "comment": "", "defaults": [], "funcname": "GetItemRectMin", + "namespace": "ImGui", + "ov_cimguiname": "igGetItemRectMin", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -8801,14 +20263,14 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetItemRectMin", - "comment": "", "defaults": [], "funcname": "GetItemRectMin", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMin_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -8816,15 +20278,15 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetItemRectMin", - "comment": "", "defaults": [], "funcname": "GetItemRectMin", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetItemRectMin_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetItemRectSize": [ @@ -8834,12 +20296,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetItemRectSize", - "comment": "", "defaults": [], "funcname": "GetItemRectSize", + "namespace": "ImGui", + "ov_cimguiname": "igGetItemRectSize", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -8852,14 +20315,14 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetItemRectSize", - "comment": "", "defaults": [], "funcname": "GetItemRectSize", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectSize_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -8867,15 +20330,15 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetItemRectSize", - "comment": "", "defaults": [], "funcname": "GetItemRectSize", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetItemRectSize_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetKeyIndex": [ @@ -8890,12 +20353,13 @@ "argsoriginal": "(ImGuiKey imgui_key)", "call_args": "(imgui_key)", "cimguiname": "igGetKeyIndex", - "comment": "", "defaults": [], "funcname": "GetKeyIndex", + "namespace": "ImGui", + "ov_cimguiname": "igGetKeyIndex", "ret": "int", "signature": "(ImGuiKey)", - "stname": "ImGui" + "stname": "" } ], "igGetKeyPressedAmount": [ @@ -8918,12 +20382,13 @@ "argsoriginal": "(int key_index,float repeat_delay,float rate)", "call_args": "(key_index,repeat_delay,rate)", "cimguiname": "igGetKeyPressedAmount", - "comment": "", "defaults": [], "funcname": "GetKeyPressedAmount", + "namespace": "ImGui", + "ov_cimguiname": "igGetKeyPressedAmount", "ret": "int", "signature": "(int,float,float)", - "stname": "ImGui" + "stname": "" } ], "igGetMouseCursor": [ @@ -8933,12 +20398,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetMouseCursor", - "comment": "", "defaults": [], "funcname": "GetMouseCursor", + "namespace": "ImGui", + "ov_cimguiname": "igGetMouseCursor", "ret": "ImGuiMouseCursor", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetMouseDragDelta": [ @@ -8957,15 +20423,16 @@ "argsoriginal": "(int button=0,float lock_threshold=-1.0f)", "call_args": "(button,lock_threshold)", "cimguiname": "igGetMouseDragDelta", - "comment": "", "defaults": { "button": "0", "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)", @@ -8986,17 +20453,17 @@ "argsoriginal": "(int button=0,float lock_threshold=-1.0f)", "call_args": "(button,lock_threshold)", "cimguiname": "igGetMouseDragDelta", - "comment": "", "defaults": { "button": "0", "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)", @@ -9013,18 +20480,18 @@ "argsoriginal": "(int button=0,float lock_threshold=-1.0f)", "call_args": "(button,lock_threshold)", "cimguiname": "igGetMouseDragDelta", - "comment": "", "defaults": { "button": "0", "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": [ @@ -9034,12 +20501,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetMousePos", - "comment": "", "defaults": [], "funcname": "GetMousePos", + "namespace": "ImGui", + "ov_cimguiname": "igGetMousePos", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -9052,14 +20520,14 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetMousePos", - "comment": "", "defaults": [], "funcname": "GetMousePos", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePos_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -9067,15 +20535,15 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetMousePos", - "comment": "", "defaults": [], "funcname": "GetMousePos", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetMousePos_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetMousePosOnOpeningCurrentPopup": [ @@ -9085,12 +20553,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetMousePosOnOpeningCurrentPopup", - "comment": "", "defaults": [], "funcname": "GetMousePosOnOpeningCurrentPopup", + "namespace": "ImGui", + "ov_cimguiname": "igGetMousePosOnOpeningCurrentPopup", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -9103,14 +20572,14 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetMousePosOnOpeningCurrentPopup", - "comment": "", "defaults": [], "funcname": "GetMousePosOnOpeningCurrentPopup", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePosOnOpeningCurrentPopup_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -9118,15 +20587,15 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetMousePosOnOpeningCurrentPopup", - "comment": "", "defaults": [], "funcname": "GetMousePosOnOpeningCurrentPopup", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetMousePosOnOpeningCurrentPopup_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetOverlayDrawList": [ @@ -9136,12 +20605,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetOverlayDrawList", - "comment": "", "defaults": [], "funcname": "GetOverlayDrawList", + "namespace": "ImGui", + "ov_cimguiname": "igGetOverlayDrawList", "ret": "ImDrawList*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetScrollMaxX": [ @@ -9151,12 +20621,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetScrollMaxX", - "comment": "", "defaults": [], "funcname": "GetScrollMaxX", + "namespace": "ImGui", + "ov_cimguiname": "igGetScrollMaxX", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetScrollMaxY": [ @@ -9166,12 +20637,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetScrollMaxY", - "comment": "", "defaults": [], "funcname": "GetScrollMaxY", + "namespace": "ImGui", + "ov_cimguiname": "igGetScrollMaxY", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetScrollX": [ @@ -9181,12 +20653,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetScrollX", - "comment": "", "defaults": [], "funcname": "GetScrollX", + "namespace": "ImGui", + "ov_cimguiname": "igGetScrollX", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetScrollY": [ @@ -9196,12 +20669,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetScrollY", - "comment": "", "defaults": [], "funcname": "GetScrollY", + "namespace": "ImGui", + "ov_cimguiname": "igGetScrollY", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetStateStorage": [ @@ -9211,12 +20685,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetStateStorage", - "comment": "", "defaults": [], "funcname": "GetStateStorage", + "namespace": "ImGui", + "ov_cimguiname": "igGetStateStorage", "ret": "ImGuiStorage*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetStyle": [ @@ -9226,13 +20701,14 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetStyle", - "comment": "", "defaults": [], "funcname": "GetStyle", + "namespace": "ImGui", + "ov_cimguiname": "igGetStyle", "ret": "ImGuiStyle*", "retref": "&", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetStyleColorName": [ @@ -9247,12 +20723,13 @@ "argsoriginal": "(ImGuiCol idx)", "call_args": "(idx)", "cimguiname": "igGetStyleColorName", - "comment": "", "defaults": [], "funcname": "GetStyleColorName", + "namespace": "ImGui", + "ov_cimguiname": "igGetStyleColorName", "ret": "const char*", "signature": "(ImGuiCol)", - "stname": "ImGui" + "stname": "" } ], "igGetStyleColorVec4": [ @@ -9267,13 +20744,14 @@ "argsoriginal": "(ImGuiCol idx)", "call_args": "(idx)", "cimguiname": "igGetStyleColorVec4", - "comment": "", "defaults": [], "funcname": "GetStyleColorVec4", + "namespace": "ImGui", + "ov_cimguiname": "igGetStyleColorVec4", "ret": "const ImVec4*", "retref": "&", "signature": "(ImGuiCol)", - "stname": "ImGui" + "stname": "" } ], "igGetTextLineHeight": [ @@ -9283,12 +20761,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetTextLineHeight", - "comment": "", "defaults": [], "funcname": "GetTextLineHeight", + "namespace": "ImGui", + "ov_cimguiname": "igGetTextLineHeight", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetTextLineHeightWithSpacing": [ @@ -9298,12 +20777,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetTextLineHeightWithSpacing", - "comment": "", "defaults": [], "funcname": "GetTextLineHeightWithSpacing", + "namespace": "ImGui", + "ov_cimguiname": "igGetTextLineHeightWithSpacing", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetTime": [ @@ -9313,12 +20793,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetTime", - "comment": "", "defaults": [], "funcname": "GetTime", + "namespace": "ImGui", + "ov_cimguiname": "igGetTime", "ret": "double", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetTreeNodeToLabelSpacing": [ @@ -9328,12 +20809,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetTreeNodeToLabelSpacing", - "comment": "", "defaults": [], "funcname": "GetTreeNodeToLabelSpacing", + "namespace": "ImGui", + "ov_cimguiname": "igGetTreeNodeToLabelSpacing", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetVersion": [ @@ -9343,12 +20825,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetVersion", - "comment": "", "defaults": [], "funcname": "GetVersion", + "namespace": "ImGui", + "ov_cimguiname": "igGetVersion", "ret": "const char*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetWindowContentRegionMax": [ @@ -9358,12 +20841,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowContentRegionMax", - "comment": "", "defaults": [], "funcname": "GetWindowContentRegionMax", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowContentRegionMax", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -9376,14 +20860,14 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowContentRegionMax", - "comment": "", "defaults": [], "funcname": "GetWindowContentRegionMax", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowContentRegionMax_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -9391,15 +20875,15 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowContentRegionMax", - "comment": "", "defaults": [], "funcname": "GetWindowContentRegionMax", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetWindowContentRegionMax_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetWindowContentRegionMin": [ @@ -9409,12 +20893,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowContentRegionMin", - "comment": "", "defaults": [], "funcname": "GetWindowContentRegionMin", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowContentRegionMin", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -9427,14 +20912,14 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowContentRegionMin", - "comment": "", "defaults": [], "funcname": "GetWindowContentRegionMin", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowContentRegionMin_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -9442,15 +20927,15 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowContentRegionMin", - "comment": "", "defaults": [], "funcname": "GetWindowContentRegionMin", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetWindowContentRegionMin_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetWindowContentRegionWidth": [ @@ -9460,12 +20945,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowContentRegionWidth", - "comment": "", "defaults": [], "funcname": "GetWindowContentRegionWidth", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowContentRegionWidth", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetWindowDrawList": [ @@ -9475,12 +20961,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowDrawList", - "comment": "", "defaults": [], "funcname": "GetWindowDrawList", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowDrawList", "ret": "ImDrawList*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetWindowHeight": [ @@ -9490,12 +20977,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowHeight", - "comment": "", "defaults": [], "funcname": "GetWindowHeight", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowHeight", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetWindowPos": [ @@ -9505,12 +20993,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowPos", - "comment": "", "defaults": [], "funcname": "GetWindowPos", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowPos", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -9523,14 +21012,14 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowPos", - "comment": "", "defaults": [], "funcname": "GetWindowPos", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowPos_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -9538,15 +21027,15 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowPos", - "comment": "", "defaults": [], "funcname": "GetWindowPos", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetWindowPos_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetWindowSize": [ @@ -9556,12 +21045,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowSize", - "comment": "", "defaults": [], "funcname": "GetWindowSize", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowSize", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -9574,14 +21064,14 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowSize", - "comment": "", "defaults": [], "funcname": "GetWindowSize", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowSize_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -9589,15 +21079,15 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowSize", - "comment": "", "defaults": [], "funcname": "GetWindowSize", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetWindowSize_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetWindowWidth": [ @@ -9607,12 +21097,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowWidth", - "comment": "", "defaults": [], "funcname": "GetWindowWidth", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowWidth", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igImage": [ @@ -9647,7 +21138,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)", @@ -9655,9 +21145,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": [ @@ -9696,7 +21188,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", @@ -9705,9 +21196,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": [ @@ -9722,14 +21215,15 @@ "argsoriginal": "(float indent_w=0.0f)", "call_args": "(indent_w)", "cimguiname": "igIndent", - "comment": "", "defaults": { "indent_w": "0.0f" }, "funcname": "Indent", + "namespace": "ImGui", + "ov_cimguiname": "igIndent", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igInputDouble": [ @@ -9764,7 +21258,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\"", @@ -9772,9 +21265,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": [ @@ -9809,7 +21304,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\"", @@ -9817,9 +21311,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": [ @@ -9846,15 +21342,16 @@ "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\"" }, "funcname": "InputFloat2", + "namespace": "ImGui", + "ov_cimguiname": "igInputFloat2", "ret": "bool", "signature": "(const char*,float[2],const char*,ImGuiInputTextFlags)", - "stname": "ImGui" + "stname": "" } ], "igInputFloat3": [ @@ -9881,15 +21378,16 @@ "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\"" }, "funcname": "InputFloat3", + "namespace": "ImGui", + "ov_cimguiname": "igInputFloat3", "ret": "bool", "signature": "(const char*,float[3],const char*,ImGuiInputTextFlags)", - "stname": "ImGui" + "stname": "" } ], "igInputFloat4": [ @@ -9916,15 +21414,16 @@ "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\"" }, "funcname": "InputFloat4", + "namespace": "ImGui", + "ov_cimguiname": "igInputFloat4", "ret": "bool", "signature": "(const char*,float[4],const char*,ImGuiInputTextFlags)", - "stname": "ImGui" + "stname": "" } ], "igInputInt": [ @@ -9955,16 +21454,17 @@ "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", "step_fast": "100" }, "funcname": "InputInt", + "namespace": "ImGui", + "ov_cimguiname": "igInputInt", "ret": "bool", "signature": "(const char*,int*,int,int,ImGuiInputTextFlags)", - "stname": "ImGui" + "stname": "" } ], "igInputInt2": [ @@ -9987,14 +21487,15 @@ "argsoriginal": "(const char* label,int v[2],ImGuiInputTextFlags flags=0)", "call_args": "(label,v,flags)", "cimguiname": "igInputInt2", - "comment": "", "defaults": { "flags": "0" }, "funcname": "InputInt2", + "namespace": "ImGui", + "ov_cimguiname": "igInputInt2", "ret": "bool", "signature": "(const char*,int[2],ImGuiInputTextFlags)", - "stname": "ImGui" + "stname": "" } ], "igInputInt3": [ @@ -10017,14 +21518,15 @@ "argsoriginal": "(const char* label,int v[3],ImGuiInputTextFlags flags=0)", "call_args": "(label,v,flags)", "cimguiname": "igInputInt3", - "comment": "", "defaults": { "flags": "0" }, "funcname": "InputInt3", + "namespace": "ImGui", + "ov_cimguiname": "igInputInt3", "ret": "bool", "signature": "(const char*,int[3],ImGuiInputTextFlags)", - "stname": "ImGui" + "stname": "" } ], "igInputInt4": [ @@ -10047,14 +21549,15 @@ "argsoriginal": "(const char* label,int v[4],ImGuiInputTextFlags flags=0)", "call_args": "(label,v,flags)", "cimguiname": "igInputInt4", - "comment": "", "defaults": { "flags": "0" }, "funcname": "InputInt4", + "namespace": "ImGui", + "ov_cimguiname": "igInputInt4", "ret": "bool", "signature": "(const char*,int[4],ImGuiInputTextFlags)", - "stname": "ImGui" + "stname": "" } ], "igInputScalar": [ @@ -10093,7 +21596,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)", @@ -10101,9 +21603,11 @@ "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": [ @@ -10146,7 +21650,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)", @@ -10154,9 +21657,11 @@ "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": [ @@ -10191,16 +21696,17 @@ "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", "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": [ @@ -10239,7 +21745,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", @@ -10247,9 +21752,11 @@ "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": [ @@ -10268,12 +21775,13 @@ "argsoriginal": "(const char* str_id,const ImVec2& size)", "call_args": "(str_id,size)", "cimguiname": "igInvisibleButton", - "comment": "", "defaults": [], "funcname": "InvisibleButton", + "namespace": "ImGui", + "ov_cimguiname": "igInvisibleButton", "ret": "bool", "signature": "(const char*,const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igIsAnyItemActive": [ @@ -10283,12 +21791,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsAnyItemActive", - "comment": "", "defaults": [], "funcname": "IsAnyItemActive", + "namespace": "ImGui", + "ov_cimguiname": "igIsAnyItemActive", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsAnyItemFocused": [ @@ -10298,12 +21807,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsAnyItemFocused", - "comment": "", "defaults": [], "funcname": "IsAnyItemFocused", + "namespace": "ImGui", + "ov_cimguiname": "igIsAnyItemFocused", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsAnyItemHovered": [ @@ -10313,12 +21823,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsAnyItemHovered", - "comment": "", "defaults": [], "funcname": "IsAnyItemHovered", + "namespace": "ImGui", + "ov_cimguiname": "igIsAnyItemHovered", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsAnyMouseDown": [ @@ -10328,12 +21839,29 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsAnyMouseDown", - "comment": "", "defaults": [], "funcname": "IsAnyMouseDown", + "namespace": "ImGui", + "ov_cimguiname": "igIsAnyMouseDown", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" + } + ], + "igIsItemActivated": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igIsItemActivated", + "defaults": [], + "funcname": "IsItemActivated", + "namespace": "ImGui", + "ov_cimguiname": "igIsItemActivated", + "ret": "bool", + "signature": "()", + "stname": "" } ], "igIsItemActive": [ @@ -10343,12 +21871,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsItemActive", - "comment": "", "defaults": [], "funcname": "IsItemActive", + "namespace": "ImGui", + "ov_cimguiname": "igIsItemActive", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsItemClicked": [ @@ -10363,14 +21892,15 @@ "argsoriginal": "(int mouse_button=0)", "call_args": "(mouse_button)", "cimguiname": "igIsItemClicked", - "comment": "", "defaults": { "mouse_button": "0" }, "funcname": "IsItemClicked", + "namespace": "ImGui", + "ov_cimguiname": "igIsItemClicked", "ret": "bool", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igIsItemDeactivated": [ @@ -10380,12 +21910,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsItemDeactivated", - "comment": "", "defaults": [], "funcname": "IsItemDeactivated", + "namespace": "ImGui", + "ov_cimguiname": "igIsItemDeactivated", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsItemDeactivatedAfterEdit": [ @@ -10395,12 +21926,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsItemDeactivatedAfterEdit", - "comment": "", "defaults": [], "funcname": "IsItemDeactivatedAfterEdit", + "namespace": "ImGui", + "ov_cimguiname": "igIsItemDeactivatedAfterEdit", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsItemEdited": [ @@ -10410,12 +21942,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsItemEdited", - "comment": "", "defaults": [], "funcname": "IsItemEdited", + "namespace": "ImGui", + "ov_cimguiname": "igIsItemEdited", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsItemFocused": [ @@ -10425,12 +21958,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsItemFocused", - "comment": "", "defaults": [], "funcname": "IsItemFocused", + "namespace": "ImGui", + "ov_cimguiname": "igIsItemFocused", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsItemHovered": [ @@ -10445,14 +21979,15 @@ "argsoriginal": "(ImGuiHoveredFlags flags=0)", "call_args": "(flags)", "cimguiname": "igIsItemHovered", - "comment": "", "defaults": { "flags": "0" }, "funcname": "IsItemHovered", + "namespace": "ImGui", + "ov_cimguiname": "igIsItemHovered", "ret": "bool", "signature": "(ImGuiHoveredFlags)", - "stname": "ImGui" + "stname": "" } ], "igIsItemVisible": [ @@ -10462,12 +21997,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsItemVisible", - "comment": "", "defaults": [], "funcname": "IsItemVisible", + "namespace": "ImGui", + "ov_cimguiname": "igIsItemVisible", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsKeyDown": [ @@ -10482,12 +22018,13 @@ "argsoriginal": "(int user_key_index)", "call_args": "(user_key_index)", "cimguiname": "igIsKeyDown", - "comment": "", "defaults": [], "funcname": "IsKeyDown", + "namespace": "ImGui", + "ov_cimguiname": "igIsKeyDown", "ret": "bool", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igIsKeyPressed": [ @@ -10506,14 +22043,15 @@ "argsoriginal": "(int user_key_index,bool repeat=true)", "call_args": "(user_key_index,repeat)", "cimguiname": "igIsKeyPressed", - "comment": "", "defaults": { "repeat": "true" }, "funcname": "IsKeyPressed", + "namespace": "ImGui", + "ov_cimguiname": "igIsKeyPressed", "ret": "bool", "signature": "(int,bool)", - "stname": "ImGui" + "stname": "" } ], "igIsKeyReleased": [ @@ -10528,12 +22066,13 @@ "argsoriginal": "(int user_key_index)", "call_args": "(user_key_index)", "cimguiname": "igIsKeyReleased", - "comment": "", "defaults": [], "funcname": "IsKeyReleased", + "namespace": "ImGui", + "ov_cimguiname": "igIsKeyReleased", "ret": "bool", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igIsMouseClicked": [ @@ -10552,14 +22091,15 @@ "argsoriginal": "(int button,bool repeat=false)", "call_args": "(button,repeat)", "cimguiname": "igIsMouseClicked", - "comment": "", "defaults": { "repeat": "false" }, "funcname": "IsMouseClicked", + "namespace": "ImGui", + "ov_cimguiname": "igIsMouseClicked", "ret": "bool", "signature": "(int,bool)", - "stname": "ImGui" + "stname": "" } ], "igIsMouseDoubleClicked": [ @@ -10574,12 +22114,13 @@ "argsoriginal": "(int button)", "call_args": "(button)", "cimguiname": "igIsMouseDoubleClicked", - "comment": "", "defaults": [], "funcname": "IsMouseDoubleClicked", + "namespace": "ImGui", + "ov_cimguiname": "igIsMouseDoubleClicked", "ret": "bool", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igIsMouseDown": [ @@ -10594,12 +22135,13 @@ "argsoriginal": "(int button)", "call_args": "(button)", "cimguiname": "igIsMouseDown", - "comment": "", "defaults": [], "funcname": "IsMouseDown", + "namespace": "ImGui", + "ov_cimguiname": "igIsMouseDown", "ret": "bool", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igIsMouseDragging": [ @@ -10618,15 +22160,16 @@ "argsoriginal": "(int button=0,float lock_threshold=-1.0f)", "call_args": "(button,lock_threshold)", "cimguiname": "igIsMouseDragging", - "comment": "", "defaults": { "button": "0", "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragging", + "namespace": "ImGui", + "ov_cimguiname": "igIsMouseDragging", "ret": "bool", "signature": "(int,float)", - "stname": "ImGui" + "stname": "" } ], "igIsMouseHoveringRect": [ @@ -10649,14 +22192,15 @@ "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" }, "funcname": "IsMouseHoveringRect", + "namespace": "ImGui", + "ov_cimguiname": "igIsMouseHoveringRect", "ret": "bool", "signature": "(const ImVec2,const ImVec2,bool)", - "stname": "ImGui" + "stname": "" } ], "igIsMousePosValid": [ @@ -10671,14 +22215,15 @@ "argsoriginal": "(const ImVec2* mouse_pos=((void*)0))", "call_args": "(mouse_pos)", "cimguiname": "igIsMousePosValid", - "comment": "", "defaults": { "mouse_pos": "((void*)0)" }, "funcname": "IsMousePosValid", + "namespace": "ImGui", + "ov_cimguiname": "igIsMousePosValid", "ret": "bool", "signature": "(const ImVec2*)", - "stname": "ImGui" + "stname": "" } ], "igIsMouseReleased": [ @@ -10693,12 +22238,13 @@ "argsoriginal": "(int button)", "call_args": "(button)", "cimguiname": "igIsMouseReleased", - "comment": "", "defaults": [], "funcname": "IsMouseReleased", + "namespace": "ImGui", + "ov_cimguiname": "igIsMouseReleased", "ret": "bool", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igIsPopupOpen": [ @@ -10713,12 +22259,13 @@ "argsoriginal": "(const char* str_id)", "call_args": "(str_id)", "cimguiname": "igIsPopupOpen", - "comment": "", "defaults": [], "funcname": "IsPopupOpen", + "namespace": "ImGui", + "ov_cimguiname": "igIsPopupOpen", "ret": "bool", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igIsRectVisible": [ @@ -10733,13 +22280,13 @@ "argsoriginal": "(const ImVec2& size)", "call_args": "(size)", "cimguiname": "igIsRectVisible", - "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)", @@ -10756,13 +22303,13 @@ "argsoriginal": "(const ImVec2& rect_min,const ImVec2& rect_max)", "call_args": "(rect_min,rect_max)", "cimguiname": "igIsRectVisible", - "comment": "", "defaults": [], "funcname": "IsRectVisible", + "namespace": "ImGui", "ov_cimguiname": "igIsRectVisibleVec2", "ret": "bool", "signature": "(const ImVec2,const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igIsWindowAppearing": [ @@ -10772,12 +22319,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsWindowAppearing", - "comment": "", "defaults": [], "funcname": "IsWindowAppearing", + "namespace": "ImGui", + "ov_cimguiname": "igIsWindowAppearing", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsWindowCollapsed": [ @@ -10787,12 +22335,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsWindowCollapsed", - "comment": "", "defaults": [], "funcname": "IsWindowCollapsed", + "namespace": "ImGui", + "ov_cimguiname": "igIsWindowCollapsed", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsWindowFocused": [ @@ -10807,14 +22356,15 @@ "argsoriginal": "(ImGuiFocusedFlags flags=0)", "call_args": "(flags)", "cimguiname": "igIsWindowFocused", - "comment": "", "defaults": { "flags": "0" }, "funcname": "IsWindowFocused", + "namespace": "ImGui", + "ov_cimguiname": "igIsWindowFocused", "ret": "bool", "signature": "(ImGuiFocusedFlags)", - "stname": "ImGui" + "stname": "" } ], "igIsWindowHovered": [ @@ -10829,14 +22379,15 @@ "argsoriginal": "(ImGuiHoveredFlags flags=0)", "call_args": "(flags)", "cimguiname": "igIsWindowHovered", - "comment": "", "defaults": { "flags": "0" }, "funcname": "IsWindowHovered", + "namespace": "ImGui", + "ov_cimguiname": "igIsWindowHovered", "ret": "bool", "signature": "(ImGuiHoveredFlags)", - "stname": "ImGui" + "stname": "" } ], "igLabelText": [ @@ -10859,13 +22410,14 @@ "argsoriginal": "(const char* label,const char* fmt,...)", "call_args": "(label,fmt,...)", "cimguiname": "igLabelText", - "comment": "", "defaults": [], "funcname": "LabelText", "isvararg": "...)", + "namespace": "ImGui", + "ov_cimguiname": "igLabelText", "ret": "void", "signature": "(const char*,const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igLabelTextV": [ @@ -10888,12 +22440,13 @@ "argsoriginal": "(const char* label,const char* fmt,va_list args)", "call_args": "(label,fmt,args)", "cimguiname": "igLabelTextV", - "comment": "", "defaults": [], "funcname": "LabelTextV", + "namespace": "ImGui", + "ov_cimguiname": "igLabelTextV", "ret": "void", "signature": "(const char*,const char*,va_list)", - "stname": "ImGui" + "stname": "" } ], "igListBox": [ @@ -10924,15 +22477,15 @@ "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" }, "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)", @@ -10967,15 +22520,15 @@ "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" }, "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": [ @@ -10985,12 +22538,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igListBoxFooter", - "comment": "", "defaults": [], "funcname": "ListBoxFooter", + "namespace": "ImGui", + "ov_cimguiname": "igListBoxFooter", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igListBoxHeader": [ @@ -11009,15 +22563,15 @@ "argsoriginal": "(const char* label,const ImVec2& size=ImVec2(0,0))", "call_args": "(label,size)", "cimguiname": "igListBoxHeader", - "comment": "", "defaults": { "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)", @@ -11038,15 +22592,15 @@ "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" }, "funcname": "ListBoxHeader", + "namespace": "ImGui", "ov_cimguiname": "igListBoxHeaderInt", "ret": "bool", "signature": "(const char*,int,int)", - "stname": "ImGui" + "stname": "" } ], "igLoadIniSettingsFromDisk": [ @@ -11061,12 +22615,13 @@ "argsoriginal": "(const char* ini_filename)", "call_args": "(ini_filename)", "cimguiname": "igLoadIniSettingsFromDisk", - "comment": "", "defaults": [], "funcname": "LoadIniSettingsFromDisk", + "namespace": "ImGui", + "ov_cimguiname": "igLoadIniSettingsFromDisk", "ret": "void", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igLoadIniSettingsFromMemory": [ @@ -11085,14 +22640,15 @@ "argsoriginal": "(const char* ini_data,size_t ini_size=0)", "call_args": "(ini_data,ini_size)", "cimguiname": "igLoadIniSettingsFromMemory", - "comment": "", "defaults": { "ini_size": "0" }, "funcname": "LoadIniSettingsFromMemory", + "namespace": "ImGui", + "ov_cimguiname": "igLoadIniSettingsFromMemory", "ret": "void", "signature": "(const char*,size_t)", - "stname": "ImGui" + "stname": "" } ], "igLogButtons": [ @@ -11102,12 +22658,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igLogButtons", - "comment": "", "defaults": [], "funcname": "LogButtons", + "namespace": "ImGui", + "ov_cimguiname": "igLogButtons", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igLogFinish": [ @@ -11117,12 +22674,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igLogFinish", - "comment": "", "defaults": [], "funcname": "LogFinish", + "namespace": "ImGui", + "ov_cimguiname": "igLogFinish", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igLogText": [ @@ -11141,14 +22699,15 @@ "argsoriginal": "(const char* fmt,...)", "call_args": "(fmt,...)", "cimguiname": "igLogText", - "comment": "", "defaults": [], "funcname": "LogText", "isvararg": "...)", "manual": true, + "namespace": "ImGui", + "ov_cimguiname": "igLogText", "ret": "void", "signature": "(const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igLogToClipboard": [ @@ -11163,14 +22722,15 @@ "argsoriginal": "(int max_depth=-1)", "call_args": "(max_depth)", "cimguiname": "igLogToClipboard", - "comment": "", "defaults": { "max_depth": "-1" }, "funcname": "LogToClipboard", + "namespace": "ImGui", + "ov_cimguiname": "igLogToClipboard", "ret": "void", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igLogToFile": [ @@ -11189,15 +22749,16 @@ "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" }, "funcname": "LogToFile", + "namespace": "ImGui", + "ov_cimguiname": "igLogToFile", "ret": "void", "signature": "(int,const char*)", - "stname": "ImGui" + "stname": "" } ], "igLogToTTY": [ @@ -11212,14 +22773,15 @@ "argsoriginal": "(int max_depth=-1)", "call_args": "(max_depth)", "cimguiname": "igLogToTTY", - "comment": "", "defaults": { "max_depth": "-1" }, "funcname": "LogToTTY", + "namespace": "ImGui", + "ov_cimguiname": "igLogToTTY", "ret": "void", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igMemAlloc": [ @@ -11234,12 +22796,13 @@ "argsoriginal": "(size_t size)", "call_args": "(size)", "cimguiname": "igMemAlloc", - "comment": "", "defaults": [], "funcname": "MemAlloc", + "namespace": "ImGui", + "ov_cimguiname": "igMemAlloc", "ret": "void*", "signature": "(size_t)", - "stname": "ImGui" + "stname": "" } ], "igMemFree": [ @@ -11254,12 +22817,13 @@ "argsoriginal": "(void* ptr)", "call_args": "(ptr)", "cimguiname": "igMemFree", - "comment": "", "defaults": [], "funcname": "MemFree", + "namespace": "ImGui", + "ov_cimguiname": "igMemFree", "ret": "void", "signature": "(void*)", - "stname": "ImGui" + "stname": "" } ], "igMenuItem": [ @@ -11286,17 +22850,17 @@ "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)" }, "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)", @@ -11321,15 +22885,15 @@ "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" }, "funcname": "MenuItem", + "namespace": "ImGui", "ov_cimguiname": "igMenuItemBoolPtr", "ret": "bool", "signature": "(const char*,const char*,bool*,bool)", - "stname": "ImGui" + "stname": "" } ], "igNewFrame": [ @@ -11339,12 +22903,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igNewFrame", - "comment": "", "defaults": [], "funcname": "NewFrame", + "namespace": "ImGui", + "ov_cimguiname": "igNewFrame", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igNewLine": [ @@ -11354,12 +22919,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igNewLine", - "comment": "", "defaults": [], "funcname": "NewLine", + "namespace": "ImGui", + "ov_cimguiname": "igNewLine", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igNextColumn": [ @@ -11369,12 +22935,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igNextColumn", - "comment": "", "defaults": [], "funcname": "NextColumn", + "namespace": "ImGui", + "ov_cimguiname": "igNextColumn", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igOpenPopup": [ @@ -11389,12 +22956,13 @@ "argsoriginal": "(const char* str_id)", "call_args": "(str_id)", "cimguiname": "igOpenPopup", - "comment": "", "defaults": [], "funcname": "OpenPopup", + "namespace": "ImGui", + "ov_cimguiname": "igOpenPopup", "ret": "void", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igOpenPopupOnItemClick": [ @@ -11413,15 +22981,16 @@ "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)" }, "funcname": "OpenPopupOnItemClick", + "namespace": "ImGui", + "ov_cimguiname": "igOpenPopupOnItemClick", "ret": "bool", "signature": "(const char*,int)", - "stname": "ImGui" + "stname": "" } ], "igPlotHistogram": [ @@ -11465,10 +23034,9 @@ "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)", @@ -11478,10 +23046,11 @@ "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)", @@ -11525,10 +23094,9 @@ "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)", @@ -11537,10 +23105,11 @@ "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": [ @@ -11584,10 +23153,9 @@ "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)", @@ -11597,10 +23165,11 @@ "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)", @@ -11644,10 +23213,9 @@ "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)", @@ -11656,10 +23224,11 @@ "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": [ @@ -11669,12 +23238,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopAllowKeyboardFocus", - "comment": "", "defaults": [], "funcname": "PopAllowKeyboardFocus", + "namespace": "ImGui", + "ov_cimguiname": "igPopAllowKeyboardFocus", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igPopButtonRepeat": [ @@ -11684,12 +23254,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopButtonRepeat", - "comment": "", "defaults": [], "funcname": "PopButtonRepeat", + "namespace": "ImGui", + "ov_cimguiname": "igPopButtonRepeat", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igPopClipRect": [ @@ -11699,12 +23270,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopClipRect", - "comment": "", "defaults": [], "funcname": "PopClipRect", + "namespace": "ImGui", + "ov_cimguiname": "igPopClipRect", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igPopFont": [ @@ -11714,12 +23286,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopFont", - "comment": "", "defaults": [], "funcname": "PopFont", + "namespace": "ImGui", + "ov_cimguiname": "igPopFont", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igPopID": [ @@ -11729,12 +23302,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopID", - "comment": "", "defaults": [], "funcname": "PopID", + "namespace": "ImGui", + "ov_cimguiname": "igPopID", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igPopItemWidth": [ @@ -11744,12 +23318,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopItemWidth", - "comment": "", "defaults": [], "funcname": "PopItemWidth", + "namespace": "ImGui", + "ov_cimguiname": "igPopItemWidth", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igPopStyleColor": [ @@ -11764,14 +23339,15 @@ "argsoriginal": "(int count=1)", "call_args": "(count)", "cimguiname": "igPopStyleColor", - "comment": "", "defaults": { "count": "1" }, "funcname": "PopStyleColor", + "namespace": "ImGui", + "ov_cimguiname": "igPopStyleColor", "ret": "void", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igPopStyleVar": [ @@ -11786,14 +23362,15 @@ "argsoriginal": "(int count=1)", "call_args": "(count)", "cimguiname": "igPopStyleVar", - "comment": "", "defaults": { "count": "1" }, "funcname": "PopStyleVar", + "namespace": "ImGui", + "ov_cimguiname": "igPopStyleVar", "ret": "void", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igPopTextWrapPos": [ @@ -11803,12 +23380,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopTextWrapPos", - "comment": "", "defaults": [], "funcname": "PopTextWrapPos", + "namespace": "ImGui", + "ov_cimguiname": "igPopTextWrapPos", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igProgressBar": [ @@ -11831,15 +23409,16 @@ "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)" }, "funcname": "ProgressBar", + "namespace": "ImGui", + "ov_cimguiname": "igProgressBar", "ret": "void", "signature": "(float,const ImVec2,const char*)", - "stname": "ImGui" + "stname": "" } ], "igPushAllowKeyboardFocus": [ @@ -11854,12 +23433,13 @@ "argsoriginal": "(bool allow_keyboard_focus)", "call_args": "(allow_keyboard_focus)", "cimguiname": "igPushAllowKeyboardFocus", - "comment": "", "defaults": [], "funcname": "PushAllowKeyboardFocus", + "namespace": "ImGui", + "ov_cimguiname": "igPushAllowKeyboardFocus", "ret": "void", "signature": "(bool)", - "stname": "ImGui" + "stname": "" } ], "igPushButtonRepeat": [ @@ -11874,12 +23454,13 @@ "argsoriginal": "(bool repeat)", "call_args": "(repeat)", "cimguiname": "igPushButtonRepeat", - "comment": "", "defaults": [], "funcname": "PushButtonRepeat", + "namespace": "ImGui", + "ov_cimguiname": "igPushButtonRepeat", "ret": "void", "signature": "(bool)", - "stname": "ImGui" + "stname": "" } ], "igPushClipRect": [ @@ -11902,12 +23483,13 @@ "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", + "ov_cimguiname": "igPushClipRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,bool)", - "stname": "ImGui" + "stname": "" } ], "igPushFont": [ @@ -11922,12 +23504,13 @@ "argsoriginal": "(ImFont* font)", "call_args": "(font)", "cimguiname": "igPushFont", - "comment": "", "defaults": [], "funcname": "PushFont", + "namespace": "ImGui", + "ov_cimguiname": "igPushFont", "ret": "void", "signature": "(ImFont*)", - "stname": "ImGui" + "stname": "" } ], "igPushID": [ @@ -11942,13 +23525,13 @@ "argsoriginal": "(const char* str_id)", "call_args": "(str_id)", "cimguiname": "igPushID", - "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)", @@ -11965,13 +23548,13 @@ "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", "ov_cimguiname": "igPushIDRange", "ret": "void", "signature": "(const char*,const char*)", - "stname": "ImGui" + "stname": "" }, { "args": "(const void* ptr_id)", @@ -11984,13 +23567,13 @@ "argsoriginal": "(const void* ptr_id)", "call_args": "(ptr_id)", "cimguiname": "igPushID", - "comment": "", "defaults": [], "funcname": "PushID", + "namespace": "ImGui", "ov_cimguiname": "igPushIDPtr", "ret": "void", "signature": "(const void*)", - "stname": "ImGui" + "stname": "" }, { "args": "(int int_id)", @@ -12003,13 +23586,13 @@ "argsoriginal": "(int int_id)", "call_args": "(int_id)", "cimguiname": "igPushID", - "comment": "", "defaults": [], "funcname": "PushID", + "namespace": "ImGui", "ov_cimguiname": "igPushIDInt", "ret": "void", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igPushItemWidth": [ @@ -12024,12 +23607,13 @@ "argsoriginal": "(float item_width)", "call_args": "(item_width)", "cimguiname": "igPushItemWidth", - "comment": "", "defaults": [], "funcname": "PushItemWidth", + "namespace": "ImGui", + "ov_cimguiname": "igPushItemWidth", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igPushStyleColor": [ @@ -12048,13 +23632,13 @@ "argsoriginal": "(ImGuiCol idx,ImU32 col)", "call_args": "(idx,col)", "cimguiname": "igPushStyleColor", - "comment": "", "defaults": [], "funcname": "PushStyleColor", + "namespace": "ImGui", "ov_cimguiname": "igPushStyleColorU32", "ret": "void", "signature": "(ImGuiCol,ImU32)", - "stname": "ImGui" + "stname": "" }, { "args": "(ImGuiCol idx,const ImVec4 col)", @@ -12071,13 +23655,13 @@ "argsoriginal": "(ImGuiCol idx,const ImVec4& col)", "call_args": "(idx,col)", "cimguiname": "igPushStyleColor", - "comment": "", "defaults": [], "funcname": "PushStyleColor", + "namespace": "ImGui", "ov_cimguiname": "igPushStyleColor", "ret": "void", "signature": "(ImGuiCol,const ImVec4)", - "stname": "ImGui" + "stname": "" } ], "igPushStyleVar": [ @@ -12096,13 +23680,13 @@ "argsoriginal": "(ImGuiStyleVar idx,float val)", "call_args": "(idx,val)", "cimguiname": "igPushStyleVar", - "comment": "", "defaults": [], "funcname": "PushStyleVar", + "namespace": "ImGui", "ov_cimguiname": "igPushStyleVarFloat", "ret": "void", "signature": "(ImGuiStyleVar,float)", - "stname": "ImGui" + "stname": "" }, { "args": "(ImGuiStyleVar idx,const ImVec2 val)", @@ -12119,13 +23703,13 @@ "argsoriginal": "(ImGuiStyleVar idx,const ImVec2& val)", "call_args": "(idx,val)", "cimguiname": "igPushStyleVar", - "comment": "", "defaults": [], "funcname": "PushStyleVar", + "namespace": "ImGui", "ov_cimguiname": "igPushStyleVarVec2", "ret": "void", "signature": "(ImGuiStyleVar,const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igPushTextWrapPos": [ @@ -12140,14 +23724,15 @@ "argsoriginal": "(float wrap_local_pos_x=0.0f)", "call_args": "(wrap_local_pos_x)", "cimguiname": "igPushTextWrapPos", - "comment": "", "defaults": { "wrap_local_pos_x": "0.0f" }, "funcname": "PushTextWrapPos", + "namespace": "ImGui", + "ov_cimguiname": "igPushTextWrapPos", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igRadioButton": [ @@ -12166,13 +23751,13 @@ "argsoriginal": "(const char* label,bool active)", "call_args": "(label,active)", "cimguiname": "igRadioButton", - "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)", @@ -12193,13 +23778,13 @@ "argsoriginal": "(const char* label,int* v,int v_button)", "call_args": "(label,v,v_button)", "cimguiname": "igRadioButton", - "comment": "", "defaults": [], "funcname": "RadioButton", + "namespace": "ImGui", "ov_cimguiname": "igRadioButtonIntPtr", "ret": "bool", "signature": "(const char*,int*,int)", - "stname": "ImGui" + "stname": "" } ], "igRender": [ @@ -12209,12 +23794,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igRender", - "comment": "", "defaults": [], "funcname": "Render", + "namespace": "ImGui", + "ov_cimguiname": "igRender", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igResetMouseDragDelta": [ @@ -12229,14 +23815,15 @@ "argsoriginal": "(int button=0)", "call_args": "(button)", "cimguiname": "igResetMouseDragDelta", - "comment": "", "defaults": { "button": "0" }, "funcname": "ResetMouseDragDelta", + "namespace": "ImGui", + "ov_cimguiname": "igResetMouseDragDelta", "ret": "void", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igSameLine": [ @@ -12255,15 +23842,16 @@ "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" }, "funcname": "SameLine", + "namespace": "ImGui", + "ov_cimguiname": "igSameLine", "ret": "void", "signature": "(float,float)", - "stname": "ImGui" + "stname": "" } ], "igSaveIniSettingsToDisk": [ @@ -12278,12 +23866,13 @@ "argsoriginal": "(const char* ini_filename)", "call_args": "(ini_filename)", "cimguiname": "igSaveIniSettingsToDisk", - "comment": "", "defaults": [], "funcname": "SaveIniSettingsToDisk", + "namespace": "ImGui", + "ov_cimguiname": "igSaveIniSettingsToDisk", "ret": "void", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igSaveIniSettingsToMemory": [ @@ -12298,14 +23887,15 @@ "argsoriginal": "(size_t* out_ini_size=((void*)0))", "call_args": "(out_ini_size)", "cimguiname": "igSaveIniSettingsToMemory", - "comment": "", "defaults": { "out_ini_size": "((void*)0)" }, "funcname": "SaveIniSettingsToMemory", + "namespace": "ImGui", + "ov_cimguiname": "igSaveIniSettingsToMemory", "ret": "const char*", "signature": "(size_t*)", - "stname": "ImGui" + "stname": "" } ], "igSelectable": [ @@ -12332,17 +23922,17 @@ "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", "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)", @@ -12367,16 +23957,16 @@ "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)" }, "funcname": "Selectable", + "namespace": "ImGui", "ov_cimguiname": "igSelectableBoolPtr", "ret": "bool", "signature": "(const char*,bool*,ImGuiSelectableFlags,const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igSeparator": [ @@ -12386,12 +23976,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igSeparator", - "comment": "", "defaults": [], "funcname": "Separator", + "namespace": "ImGui", + "ov_cimguiname": "igSeparator", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igSetAllocatorFunctions": [ @@ -12418,14 +24009,15 @@ "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)" }, "funcname": "SetAllocatorFunctions", + "namespace": "ImGui", + "ov_cimguiname": "igSetAllocatorFunctions", "ret": "void", "signature": "(void*(*)(size_t,void*),void(*)(void*,void*),void*)", - "stname": "ImGui" + "stname": "" } ], "igSetClipboardText": [ @@ -12440,12 +24032,13 @@ "argsoriginal": "(const char* text)", "call_args": "(text)", "cimguiname": "igSetClipboardText", - "comment": "", "defaults": [], "funcname": "SetClipboardText", + "namespace": "ImGui", + "ov_cimguiname": "igSetClipboardText", "ret": "void", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igSetColorEditOptions": [ @@ -12460,12 +24053,13 @@ "argsoriginal": "(ImGuiColorEditFlags flags)", "call_args": "(flags)", "cimguiname": "igSetColorEditOptions", - "comment": "", "defaults": [], "funcname": "SetColorEditOptions", + "namespace": "ImGui", + "ov_cimguiname": "igSetColorEditOptions", "ret": "void", "signature": "(ImGuiColorEditFlags)", - "stname": "ImGui" + "stname": "" } ], "igSetColumnOffset": [ @@ -12484,12 +24078,13 @@ "argsoriginal": "(int column_index,float offset_x)", "call_args": "(column_index,offset_x)", "cimguiname": "igSetColumnOffset", - "comment": "", "defaults": [], "funcname": "SetColumnOffset", + "namespace": "ImGui", + "ov_cimguiname": "igSetColumnOffset", "ret": "void", "signature": "(int,float)", - "stname": "ImGui" + "stname": "" } ], "igSetColumnWidth": [ @@ -12508,12 +24103,13 @@ "argsoriginal": "(int column_index,float width)", "call_args": "(column_index,width)", "cimguiname": "igSetColumnWidth", - "comment": "", "defaults": [], "funcname": "SetColumnWidth", + "namespace": "ImGui", + "ov_cimguiname": "igSetColumnWidth", "ret": "void", "signature": "(int,float)", - "stname": "ImGui" + "stname": "" } ], "igSetCurrentContext": [ @@ -12528,12 +24124,13 @@ "argsoriginal": "(ImGuiContext* ctx)", "call_args": "(ctx)", "cimguiname": "igSetCurrentContext", - "comment": "", "defaults": [], "funcname": "SetCurrentContext", + "namespace": "ImGui", + "ov_cimguiname": "igSetCurrentContext", "ret": "void", "signature": "(ImGuiContext*)", - "stname": "ImGui" + "stname": "" } ], "igSetCursorPos": [ @@ -12548,12 +24145,13 @@ "argsoriginal": "(const ImVec2& local_pos)", "call_args": "(local_pos)", "cimguiname": "igSetCursorPos", - "comment": "", "defaults": [], "funcname": "SetCursorPos", + "namespace": "ImGui", + "ov_cimguiname": "igSetCursorPos", "ret": "void", "signature": "(const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igSetCursorPosX": [ @@ -12568,12 +24166,13 @@ "argsoriginal": "(float local_x)", "call_args": "(local_x)", "cimguiname": "igSetCursorPosX", - "comment": "", "defaults": [], "funcname": "SetCursorPosX", + "namespace": "ImGui", + "ov_cimguiname": "igSetCursorPosX", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igSetCursorPosY": [ @@ -12588,12 +24187,13 @@ "argsoriginal": "(float local_y)", "call_args": "(local_y)", "cimguiname": "igSetCursorPosY", - "comment": "", "defaults": [], "funcname": "SetCursorPosY", + "namespace": "ImGui", + "ov_cimguiname": "igSetCursorPosY", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igSetCursorScreenPos": [ @@ -12608,12 +24208,13 @@ "argsoriginal": "(const ImVec2& pos)", "call_args": "(pos)", "cimguiname": "igSetCursorScreenPos", - "comment": "", "defaults": [], "funcname": "SetCursorScreenPos", + "namespace": "ImGui", + "ov_cimguiname": "igSetCursorScreenPos", "ret": "void", "signature": "(const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igSetDragDropPayload": [ @@ -12640,14 +24241,15 @@ "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" }, "funcname": "SetDragDropPayload", + "namespace": "ImGui", + "ov_cimguiname": "igSetDragDropPayload", "ret": "bool", "signature": "(const char*,const void*,size_t,ImGuiCond)", - "stname": "ImGui" + "stname": "" } ], "igSetItemAllowOverlap": [ @@ -12657,12 +24259,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igSetItemAllowOverlap", - "comment": "", "defaults": [], "funcname": "SetItemAllowOverlap", + "namespace": "ImGui", + "ov_cimguiname": "igSetItemAllowOverlap", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igSetItemDefaultFocus": [ @@ -12672,12 +24275,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igSetItemDefaultFocus", - "comment": "", "defaults": [], "funcname": "SetItemDefaultFocus", + "namespace": "ImGui", + "ov_cimguiname": "igSetItemDefaultFocus", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igSetKeyboardFocusHere": [ @@ -12692,14 +24296,15 @@ "argsoriginal": "(int offset=0)", "call_args": "(offset)", "cimguiname": "igSetKeyboardFocusHere", - "comment": "", "defaults": { "offset": "0" }, "funcname": "SetKeyboardFocusHere", + "namespace": "ImGui", + "ov_cimguiname": "igSetKeyboardFocusHere", "ret": "void", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igSetMouseCursor": [ @@ -12714,12 +24319,13 @@ "argsoriginal": "(ImGuiMouseCursor type)", "call_args": "(type)", "cimguiname": "igSetMouseCursor", - "comment": "", "defaults": [], "funcname": "SetMouseCursor", + "namespace": "ImGui", + "ov_cimguiname": "igSetMouseCursor", "ret": "void", "signature": "(ImGuiMouseCursor)", - "stname": "ImGui" + "stname": "" } ], "igSetNextTreeNodeOpen": [ @@ -12738,14 +24344,15 @@ "argsoriginal": "(bool is_open,ImGuiCond cond=0)", "call_args": "(is_open,cond)", "cimguiname": "igSetNextTreeNodeOpen", - "comment": "", "defaults": { "cond": "0" }, "funcname": "SetNextTreeNodeOpen", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextTreeNodeOpen", "ret": "void", "signature": "(bool,ImGuiCond)", - "stname": "ImGui" + "stname": "" } ], "igSetNextWindowBgAlpha": [ @@ -12760,12 +24367,13 @@ "argsoriginal": "(float alpha)", "call_args": "(alpha)", "cimguiname": "igSetNextWindowBgAlpha", - "comment": "", "defaults": [], "funcname": "SetNextWindowBgAlpha", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextWindowBgAlpha", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igSetNextWindowCollapsed": [ @@ -12784,14 +24392,15 @@ "argsoriginal": "(bool collapsed,ImGuiCond cond=0)", "call_args": "(collapsed,cond)", "cimguiname": "igSetNextWindowCollapsed", - "comment": "", "defaults": { "cond": "0" }, "funcname": "SetNextWindowCollapsed", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextWindowCollapsed", "ret": "void", "signature": "(bool,ImGuiCond)", - "stname": "ImGui" + "stname": "" } ], "igSetNextWindowContentSize": [ @@ -12806,12 +24415,13 @@ "argsoriginal": "(const ImVec2& size)", "call_args": "(size)", "cimguiname": "igSetNextWindowContentSize", - "comment": "", "defaults": [], "funcname": "SetNextWindowContentSize", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextWindowContentSize", "ret": "void", "signature": "(const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igSetNextWindowFocus": [ @@ -12821,12 +24431,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igSetNextWindowFocus", - "comment": "", "defaults": [], "funcname": "SetNextWindowFocus", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextWindowFocus", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igSetNextWindowPos": [ @@ -12849,15 +24460,16 @@ "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)" }, "funcname": "SetNextWindowPos", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextWindowPos", "ret": "void", "signature": "(const ImVec2,ImGuiCond,const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igSetNextWindowSize": [ @@ -12876,14 +24488,15 @@ "argsoriginal": "(const ImVec2& size,ImGuiCond cond=0)", "call_args": "(size,cond)", "cimguiname": "igSetNextWindowSize", - "comment": "", "defaults": { "cond": "0" }, "funcname": "SetNextWindowSize", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextWindowSize", "ret": "void", "signature": "(const ImVec2,ImGuiCond)", - "stname": "ImGui" + "stname": "" } ], "igSetNextWindowSizeConstraints": [ @@ -12910,15 +24523,16 @@ "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)" }, "funcname": "SetNextWindowSizeConstraints", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextWindowSizeConstraints", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImGuiSizeCallback,void*)", - "stname": "ImGui" + "stname": "" } ], "igSetScrollFromPosY": [ @@ -12937,14 +24551,15 @@ "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" }, "funcname": "SetScrollFromPosY", + "namespace": "ImGui", + "ov_cimguiname": "igSetScrollFromPosY", "ret": "void", "signature": "(float,float)", - "stname": "ImGui" + "stname": "" } ], "igSetScrollHereY": [ @@ -12959,14 +24574,15 @@ "argsoriginal": "(float center_y_ratio=0.5f)", "call_args": "(center_y_ratio)", "cimguiname": "igSetScrollHereY", - "comment": "", "defaults": { "center_y_ratio": "0.5f" }, "funcname": "SetScrollHereY", + "namespace": "ImGui", + "ov_cimguiname": "igSetScrollHereY", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igSetScrollX": [ @@ -12981,12 +24597,13 @@ "argsoriginal": "(float scroll_x)", "call_args": "(scroll_x)", "cimguiname": "igSetScrollX", - "comment": "", "defaults": [], "funcname": "SetScrollX", + "namespace": "ImGui", + "ov_cimguiname": "igSetScrollX", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igSetScrollY": [ @@ -13001,12 +24618,13 @@ "argsoriginal": "(float scroll_y)", "call_args": "(scroll_y)", "cimguiname": "igSetScrollY", - "comment": "", "defaults": [], "funcname": "SetScrollY", + "namespace": "ImGui", + "ov_cimguiname": "igSetScrollY", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igSetStateStorage": [ @@ -13021,12 +24639,13 @@ "argsoriginal": "(ImGuiStorage* storage)", "call_args": "(storage)", "cimguiname": "igSetStateStorage", - "comment": "", "defaults": [], "funcname": "SetStateStorage", + "namespace": "ImGui", + "ov_cimguiname": "igSetStateStorage", "ret": "void", "signature": "(ImGuiStorage*)", - "stname": "ImGui" + "stname": "" } ], "igSetTabItemClosed": [ @@ -13041,12 +24660,13 @@ "argsoriginal": "(const char* tab_or_docked_window_label)", "call_args": "(tab_or_docked_window_label)", "cimguiname": "igSetTabItemClosed", - "comment": "", "defaults": [], "funcname": "SetTabItemClosed", + "namespace": "ImGui", + "ov_cimguiname": "igSetTabItemClosed", "ret": "void", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igSetTooltip": [ @@ -13065,13 +24685,14 @@ "argsoriginal": "(const char* fmt,...)", "call_args": "(fmt,...)", "cimguiname": "igSetTooltip", - "comment": "", "defaults": [], "funcname": "SetTooltip", "isvararg": "...)", + "namespace": "ImGui", + "ov_cimguiname": "igSetTooltip", "ret": "void", "signature": "(const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igSetTooltipV": [ @@ -13090,12 +24711,13 @@ "argsoriginal": "(const char* fmt,va_list args)", "call_args": "(fmt,args)", "cimguiname": "igSetTooltipV", - "comment": "", "defaults": [], "funcname": "SetTooltipV", + "namespace": "ImGui", + "ov_cimguiname": "igSetTooltipV", "ret": "void", "signature": "(const char*,va_list)", - "stname": "ImGui" + "stname": "" } ], "igSetWindowCollapsed": [ @@ -13114,15 +24736,15 @@ "argsoriginal": "(bool collapsed,ImGuiCond cond=0)", "call_args": "(collapsed,cond)", "cimguiname": "igSetWindowCollapsed", - "comment": "", "defaults": { "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)", @@ -13143,15 +24765,15 @@ "argsoriginal": "(const char* name,bool collapsed,ImGuiCond cond=0)", "call_args": "(name,collapsed,cond)", "cimguiname": "igSetWindowCollapsed", - "comment": "", "defaults": { "cond": "0" }, "funcname": "SetWindowCollapsed", + "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsedStr", "ret": "void", "signature": "(const char*,bool,ImGuiCond)", - "stname": "ImGui" + "stname": "" } ], "igSetWindowFocus": [ @@ -13161,13 +24783,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igSetWindowFocus", - "comment": "", "defaults": [], "funcname": "SetWindowFocus", + "namespace": "ImGui", "ov_cimguiname": "igSetWindowFocus", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* name)", @@ -13180,13 +24802,13 @@ "argsoriginal": "(const char* name)", "call_args": "(name)", "cimguiname": "igSetWindowFocus", - "comment": "", "defaults": [], "funcname": "SetWindowFocus", + "namespace": "ImGui", "ov_cimguiname": "igSetWindowFocusStr", "ret": "void", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igSetWindowFontScale": [ @@ -13201,12 +24823,13 @@ "argsoriginal": "(float scale)", "call_args": "(scale)", "cimguiname": "igSetWindowFontScale", - "comment": "", "defaults": [], "funcname": "SetWindowFontScale", + "namespace": "ImGui", + "ov_cimguiname": "igSetWindowFontScale", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igSetWindowPos": [ @@ -13225,15 +24848,15 @@ "argsoriginal": "(const ImVec2& pos,ImGuiCond cond=0)", "call_args": "(pos,cond)", "cimguiname": "igSetWindowPos", - "comment": "", "defaults": { "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)", @@ -13254,15 +24877,15 @@ "argsoriginal": "(const char* name,const ImVec2& pos,ImGuiCond cond=0)", "call_args": "(name,pos,cond)", "cimguiname": "igSetWindowPos", - "comment": "", "defaults": { "cond": "0" }, "funcname": "SetWindowPos", + "namespace": "ImGui", "ov_cimguiname": "igSetWindowPosStr", "ret": "void", "signature": "(const char*,const ImVec2,ImGuiCond)", - "stname": "ImGui" + "stname": "" } ], "igSetWindowSize": [ @@ -13281,15 +24904,15 @@ "argsoriginal": "(const ImVec2& size,ImGuiCond cond=0)", "call_args": "(size,cond)", "cimguiname": "igSetWindowSize", - "comment": "", "defaults": { "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)", @@ -13310,15 +24933,15 @@ "argsoriginal": "(const char* name,const ImVec2& size,ImGuiCond cond=0)", "call_args": "(name,size,cond)", "cimguiname": "igSetWindowSize", - "comment": "", "defaults": { "cond": "0" }, "funcname": "SetWindowSize", + "namespace": "ImGui", "ov_cimguiname": "igSetWindowSizeStr", "ret": "void", "signature": "(const char*,const ImVec2,ImGuiCond)", - "stname": "ImGui" + "stname": "" } ], "igShowAboutWindow": [ @@ -13333,14 +24956,15 @@ "argsoriginal": "(bool* p_open=((void*)0))", "call_args": "(p_open)", "cimguiname": "igShowAboutWindow", - "comment": "", "defaults": { "p_open": "((void*)0)" }, "funcname": "ShowAboutWindow", + "namespace": "ImGui", + "ov_cimguiname": "igShowAboutWindow", "ret": "void", "signature": "(bool*)", - "stname": "ImGui" + "stname": "" } ], "igShowDemoWindow": [ @@ -13355,14 +24979,15 @@ "argsoriginal": "(bool* p_open=((void*)0))", "call_args": "(p_open)", "cimguiname": "igShowDemoWindow", - "comment": "", "defaults": { "p_open": "((void*)0)" }, "funcname": "ShowDemoWindow", + "namespace": "ImGui", + "ov_cimguiname": "igShowDemoWindow", "ret": "void", "signature": "(bool*)", - "stname": "ImGui" + "stname": "" } ], "igShowFontSelector": [ @@ -13377,12 +25002,13 @@ "argsoriginal": "(const char* label)", "call_args": "(label)", "cimguiname": "igShowFontSelector", - "comment": "", "defaults": [], "funcname": "ShowFontSelector", + "namespace": "ImGui", + "ov_cimguiname": "igShowFontSelector", "ret": "void", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igShowMetricsWindow": [ @@ -13397,14 +25023,15 @@ "argsoriginal": "(bool* p_open=((void*)0))", "call_args": "(p_open)", "cimguiname": "igShowMetricsWindow", - "comment": "", "defaults": { "p_open": "((void*)0)" }, "funcname": "ShowMetricsWindow", + "namespace": "ImGui", + "ov_cimguiname": "igShowMetricsWindow", "ret": "void", "signature": "(bool*)", - "stname": "ImGui" + "stname": "" } ], "igShowStyleEditor": [ @@ -13419,14 +25046,15 @@ "argsoriginal": "(ImGuiStyle* ref=((void*)0))", "call_args": "(ref)", "cimguiname": "igShowStyleEditor", - "comment": "", "defaults": { "ref": "((void*)0)" }, "funcname": "ShowStyleEditor", + "namespace": "ImGui", + "ov_cimguiname": "igShowStyleEditor", "ret": "void", "signature": "(ImGuiStyle*)", - "stname": "ImGui" + "stname": "" } ], "igShowStyleSelector": [ @@ -13441,12 +25069,13 @@ "argsoriginal": "(const char* label)", "call_args": "(label)", "cimguiname": "igShowStyleSelector", - "comment": "", "defaults": [], "funcname": "ShowStyleSelector", + "namespace": "ImGui", + "ov_cimguiname": "igShowStyleSelector", "ret": "bool", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igShowUserGuide": [ @@ -13456,12 +25085,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igShowUserGuide", - "comment": "", "defaults": [], "funcname": "ShowUserGuide", + "namespace": "ImGui", + "ov_cimguiname": "igShowUserGuide", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igSliderAngle": [ @@ -13492,16 +25122,17 @@ "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", "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": [ @@ -13536,15 +25167,16 @@ "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" }, "funcname": "SliderFloat", + "namespace": "ImGui", + "ov_cimguiname": "igSliderFloat", "ret": "bool", "signature": "(const char*,float*,float,float,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igSliderFloat2": [ @@ -13579,15 +25211,16 @@ "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" }, "funcname": "SliderFloat2", + "namespace": "ImGui", + "ov_cimguiname": "igSliderFloat2", "ret": "bool", "signature": "(const char*,float[2],float,float,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igSliderFloat3": [ @@ -13622,15 +25255,16 @@ "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" }, "funcname": "SliderFloat3", + "namespace": "ImGui", + "ov_cimguiname": "igSliderFloat3", "ret": "bool", "signature": "(const char*,float[3],float,float,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igSliderFloat4": [ @@ -13665,15 +25299,16 @@ "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" }, "funcname": "SliderFloat4", + "namespace": "ImGui", + "ov_cimguiname": "igSliderFloat4", "ret": "bool", "signature": "(const char*,float[4],float,float,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igSliderInt": [ @@ -13704,14 +25339,15 @@ "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\"" }, "funcname": "SliderInt", + "namespace": "ImGui", + "ov_cimguiname": "igSliderInt", "ret": "bool", "signature": "(const char*,int*,int,int,const char*)", - "stname": "ImGui" + "stname": "" } ], "igSliderInt2": [ @@ -13742,14 +25378,15 @@ "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\"" }, "funcname": "SliderInt2", + "namespace": "ImGui", + "ov_cimguiname": "igSliderInt2", "ret": "bool", "signature": "(const char*,int[2],int,int,const char*)", - "stname": "ImGui" + "stname": "" } ], "igSliderInt3": [ @@ -13780,14 +25417,15 @@ "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\"" }, "funcname": "SliderInt3", + "namespace": "ImGui", + "ov_cimguiname": "igSliderInt3", "ret": "bool", "signature": "(const char*,int[3],int,int,const char*)", - "stname": "ImGui" + "stname": "" } ], "igSliderInt4": [ @@ -13818,14 +25456,15 @@ "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\"" }, "funcname": "SliderInt4", + "namespace": "ImGui", + "ov_cimguiname": "igSliderInt4", "ret": "bool", "signature": "(const char*,int[4],int,int,const char*)", - "stname": "ImGui" + "stname": "" } ], "igSliderScalar": [ @@ -13864,15 +25503,16 @@ "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" }, "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": [ @@ -13915,15 +25555,16 @@ "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" }, "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": [ @@ -13938,12 +25579,13 @@ "argsoriginal": "(const char* label)", "call_args": "(label)", "cimguiname": "igSmallButton", - "comment": "", "defaults": [], "funcname": "SmallButton", + "namespace": "ImGui", + "ov_cimguiname": "igSmallButton", "ret": "bool", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igSpacing": [ @@ -13953,12 +25595,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igSpacing", - "comment": "", "defaults": [], "funcname": "Spacing", + "namespace": "ImGui", + "ov_cimguiname": "igSpacing", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igStyleColorsClassic": [ @@ -13973,14 +25616,15 @@ "argsoriginal": "(ImGuiStyle* dst=((void*)0))", "call_args": "(dst)", "cimguiname": "igStyleColorsClassic", - "comment": "", "defaults": { "dst": "((void*)0)" }, "funcname": "StyleColorsClassic", + "namespace": "ImGui", + "ov_cimguiname": "igStyleColorsClassic", "ret": "void", "signature": "(ImGuiStyle*)", - "stname": "ImGui" + "stname": "" } ], "igStyleColorsDark": [ @@ -13995,14 +25639,15 @@ "argsoriginal": "(ImGuiStyle* dst=((void*)0))", "call_args": "(dst)", "cimguiname": "igStyleColorsDark", - "comment": "", "defaults": { "dst": "((void*)0)" }, "funcname": "StyleColorsDark", + "namespace": "ImGui", + "ov_cimguiname": "igStyleColorsDark", "ret": "void", "signature": "(ImGuiStyle*)", - "stname": "ImGui" + "stname": "" } ], "igStyleColorsLight": [ @@ -14017,14 +25662,15 @@ "argsoriginal": "(ImGuiStyle* dst=((void*)0))", "call_args": "(dst)", "cimguiname": "igStyleColorsLight", - "comment": "", "defaults": { "dst": "((void*)0)" }, "funcname": "StyleColorsLight", + "namespace": "ImGui", + "ov_cimguiname": "igStyleColorsLight", "ret": "void", "signature": "(ImGuiStyle*)", - "stname": "ImGui" + "stname": "" } ], "igText": [ @@ -14043,13 +25689,14 @@ "argsoriginal": "(const char* fmt,...)", "call_args": "(fmt,...)", "cimguiname": "igText", - "comment": "", "defaults": [], "funcname": "Text", "isvararg": "...)", + "namespace": "ImGui", + "ov_cimguiname": "igText", "ret": "void", "signature": "(const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igTextColored": [ @@ -14072,13 +25719,14 @@ "argsoriginal": "(const ImVec4& col,const char* fmt,...)", "call_args": "(col,fmt,...)", "cimguiname": "igTextColored", - "comment": "", "defaults": [], "funcname": "TextColored", "isvararg": "...)", + "namespace": "ImGui", + "ov_cimguiname": "igTextColored", "ret": "void", "signature": "(const ImVec4,const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igTextColoredV": [ @@ -14101,12 +25749,13 @@ "argsoriginal": "(const ImVec4& col,const char* fmt,va_list args)", "call_args": "(col,fmt,args)", "cimguiname": "igTextColoredV", - "comment": "", "defaults": [], "funcname": "TextColoredV", + "namespace": "ImGui", + "ov_cimguiname": "igTextColoredV", "ret": "void", "signature": "(const ImVec4,const char*,va_list)", - "stname": "ImGui" + "stname": "" } ], "igTextDisabled": [ @@ -14125,13 +25774,14 @@ "argsoriginal": "(const char* fmt,...)", "call_args": "(fmt,...)", "cimguiname": "igTextDisabled", - "comment": "", "defaults": [], "funcname": "TextDisabled", "isvararg": "...)", + "namespace": "ImGui", + "ov_cimguiname": "igTextDisabled", "ret": "void", "signature": "(const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igTextDisabledV": [ @@ -14150,12 +25800,13 @@ "argsoriginal": "(const char* fmt,va_list args)", "call_args": "(fmt,args)", "cimguiname": "igTextDisabledV", - "comment": "", "defaults": [], "funcname": "TextDisabledV", + "namespace": "ImGui", + "ov_cimguiname": "igTextDisabledV", "ret": "void", "signature": "(const char*,va_list)", - "stname": "ImGui" + "stname": "" } ], "igTextUnformatted": [ @@ -14174,14 +25825,15 @@ "argsoriginal": "(const char* text,const char* text_end=((void*)0))", "call_args": "(text,text_end)", "cimguiname": "igTextUnformatted", - "comment": "", "defaults": { "text_end": "((void*)0)" }, "funcname": "TextUnformatted", + "namespace": "ImGui", + "ov_cimguiname": "igTextUnformatted", "ret": "void", "signature": "(const char*,const char*)", - "stname": "ImGui" + "stname": "" } ], "igTextV": [ @@ -14200,12 +25852,13 @@ "argsoriginal": "(const char* fmt,va_list args)", "call_args": "(fmt,args)", "cimguiname": "igTextV", - "comment": "", "defaults": [], "funcname": "TextV", + "namespace": "ImGui", + "ov_cimguiname": "igTextV", "ret": "void", "signature": "(const char*,va_list)", - "stname": "ImGui" + "stname": "" } ], "igTextWrapped": [ @@ -14224,13 +25877,14 @@ "argsoriginal": "(const char* fmt,...)", "call_args": "(fmt,...)", "cimguiname": "igTextWrapped", - "comment": "", "defaults": [], "funcname": "TextWrapped", "isvararg": "...)", + "namespace": "ImGui", + "ov_cimguiname": "igTextWrapped", "ret": "void", "signature": "(const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igTextWrappedV": [ @@ -14249,12 +25903,13 @@ "argsoriginal": "(const char* fmt,va_list args)", "call_args": "(fmt,args)", "cimguiname": "igTextWrappedV", - "comment": "", "defaults": [], "funcname": "TextWrappedV", + "namespace": "ImGui", + "ov_cimguiname": "igTextWrappedV", "ret": "void", "signature": "(const char*,va_list)", - "stname": "ImGui" + "stname": "" } ], "igTreeAdvanceToLabelPos": [ @@ -14264,12 +25919,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igTreeAdvanceToLabelPos", - "comment": "", "defaults": [], "funcname": "TreeAdvanceToLabelPos", + "namespace": "ImGui", + "ov_cimguiname": "igTreeAdvanceToLabelPos", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igTreeNode": [ @@ -14284,13 +25940,13 @@ "argsoriginal": "(const char* label)", "call_args": "(label)", "cimguiname": "igTreeNode", - "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,...)", @@ -14311,14 +25967,14 @@ "argsoriginal": "(const char* str_id,const char* fmt,...)", "call_args": "(str_id,fmt,...)", "cimguiname": "igTreeNode", - "comment": "", "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,...)", @@ -14339,14 +25995,14 @@ "argsoriginal": "(const void* ptr_id,const char* fmt,...)", "call_args": "(ptr_id,fmt,...)", "cimguiname": "igTreeNode", - "comment": "", "defaults": [], "funcname": "TreeNode", "isvararg": "...)", + "namespace": "ImGui", "ov_cimguiname": "igTreeNodePtr", "ret": "bool", "signature": "(const void*,const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igTreeNodeEx": [ @@ -14365,15 +26021,15 @@ "argsoriginal": "(const char* label,ImGuiTreeNodeFlags flags=0)", "call_args": "(label,flags)", "cimguiname": "igTreeNodeEx", - "comment": "", "defaults": { "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,...)", @@ -14398,14 +26054,14 @@ "argsoriginal": "(const char* str_id,ImGuiTreeNodeFlags flags,const char* fmt,...)", "call_args": "(str_id,flags,fmt,...)", "cimguiname": "igTreeNodeEx", - "comment": "", "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,...)", @@ -14430,14 +26086,14 @@ "argsoriginal": "(const void* ptr_id,ImGuiTreeNodeFlags flags,const char* fmt,...)", "call_args": "(ptr_id,flags,fmt,...)", "cimguiname": "igTreeNodeEx", - "comment": "", "defaults": [], "funcname": "TreeNodeEx", "isvararg": "...)", + "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExPtr", "ret": "bool", "signature": "(const void*,ImGuiTreeNodeFlags,const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igTreeNodeExV": [ @@ -14464,13 +26120,13 @@ "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", "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)", @@ -14495,13 +26151,13 @@ "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", "ov_cimguiname": "igTreeNodeExVPtr", "ret": "bool", "signature": "(const void*,ImGuiTreeNodeFlags,const char*,va_list)", - "stname": "ImGui" + "stname": "" } ], "igTreeNodeV": [ @@ -14524,13 +26180,13 @@ "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", "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)", @@ -14551,13 +26207,13 @@ "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", "ov_cimguiname": "igTreeNodeVPtr", "ret": "bool", "signature": "(const void*,const char*,va_list)", - "stname": "ImGui" + "stname": "" } ], "igTreePop": [ @@ -14567,12 +26223,13 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igTreePop", - "comment": "", "defaults": [], "funcname": "TreePop", + "namespace": "ImGui", + "ov_cimguiname": "igTreePop", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igTreePush": [ @@ -14587,13 +26244,13 @@ "argsoriginal": "(const char* str_id)", "call_args": "(str_id)", "cimguiname": "igTreePush", - "comment": "", "defaults": [], "funcname": "TreePush", + "namespace": "ImGui", "ov_cimguiname": "igTreePushStr", "ret": "void", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" }, { "args": "(const void* ptr_id)", @@ -14606,15 +26263,15 @@ "argsoriginal": "(const void* ptr_id=((void*)0))", "call_args": "(ptr_id)", "cimguiname": "igTreePush", - "comment": "", "defaults": { "ptr_id": "((void*)0)" }, "funcname": "TreePush", + "namespace": "ImGui", "ov_cimguiname": "igTreePushPtr", "ret": "void", "signature": "(const void*)", - "stname": "ImGui" + "stname": "" } ], "igUnindent": [ @@ -14629,14 +26286,15 @@ "argsoriginal": "(float indent_w=0.0f)", "call_args": "(indent_w)", "cimguiname": "igUnindent", - "comment": "", "defaults": { "indent_w": "0.0f" }, "funcname": "Unindent", + "namespace": "ImGui", + "ov_cimguiname": "igUnindent", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igVSliderFloat": [ @@ -14675,15 +26333,16 @@ "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" }, "funcname": "VSliderFloat", + "namespace": "ImGui", + "ov_cimguiname": "igVSliderFloat", "ret": "bool", "signature": "(const char*,const ImVec2,float*,float,float,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igVSliderInt": [ @@ -14718,14 +26377,15 @@ "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\"" }, "funcname": "VSliderInt", + "namespace": "ImGui", + "ov_cimguiname": "igVSliderInt", "ret": "bool", "signature": "(const char*,const ImVec2,int*,int,int,const char*)", - "stname": "ImGui" + "stname": "" } ], "igVSliderScalar": [ @@ -14768,15 +26428,16 @@ "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" }, "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": [ @@ -14795,13 +26456,13 @@ "argsoriginal": "(const char* prefix,bool b)", "call_args": "(prefix,b)", "cimguiname": "igValue", - "comment": "", "defaults": [], "funcname": "Value", + "namespace": "ImGui", "ov_cimguiname": "igValueBool", "ret": "void", "signature": "(const char*,bool)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* prefix,int v)", @@ -14818,13 +26479,13 @@ "argsoriginal": "(const char* prefix,int v)", "call_args": "(prefix,v)", "cimguiname": "igValue", - "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)", @@ -14841,13 +26502,13 @@ "argsoriginal": "(const char* prefix,unsigned int v)", "call_args": "(prefix,v)", "cimguiname": "igValue", - "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)", @@ -14868,15 +26529,15 @@ "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)" }, "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 8c03ca9..9052450 100644 --- a/generator/output/definitions.lua +++ b/generator/output/definitions.lua @@ -6,10 +6,10 @@ 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" +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] @@ -23,13 +23,13 @@ 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" 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)" @@ -68,10 +68,10 @@ 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" +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" @@ -99,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 @@ -128,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 @@ -147,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" @@ -172,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" @@ -189,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" @@ -214,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" @@ -231,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" @@ -265,10 +258,10 @@ 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" +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" @@ -296,10 +289,10 @@ 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" +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] @@ -329,9 +322,9 @@ 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" defs["ImDrawData_Clear"][1]["ret"] = "void" defs["ImDrawData_Clear"][1]["signature"] = "()" defs["ImDrawData_Clear"][1]["stname"] = "ImDrawData" @@ -346,9 +339,9 @@ 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" defs["ImDrawData_DeIndexAllBuffers"][1]["ret"] = "void" defs["ImDrawData_DeIndexAllBuffers"][1]["signature"] = "()" defs["ImDrawData_DeIndexAllBuffers"][1]["stname"] = "ImDrawData" @@ -360,29 +353,29 @@ 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" +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] 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]["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" @@ -434,10 +427,10 @@ 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" +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" @@ -458,9 +451,9 @@ 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" defs["ImDrawList_AddCallback"][1]["ret"] = "void" defs["ImDrawList_AddCallback"][1]["signature"] = "(ImDrawCallback,void*)" defs["ImDrawList_AddCallback"][1]["stname"] = "ImDrawList" @@ -490,11 +483,11 @@ 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" 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" @@ -521,10 +514,10 @@ 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" +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" @@ -548,9 +541,9 @@ 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" defs["ImDrawList_AddConvexPolyFilled"][1]["ret"] = "void" defs["ImDrawList_AddConvexPolyFilled"][1]["signature"] = "(const ImVec2*,const int,ImU32)" defs["ImDrawList_AddConvexPolyFilled"][1]["stname"] = "ImDrawList" @@ -565,9 +558,9 @@ 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" defs["ImDrawList_AddDrawCmd"][1]["ret"] = "void" defs["ImDrawList_AddDrawCmd"][1]["signature"] = "()" defs["ImDrawList_AddDrawCmd"][1]["stname"] = "ImDrawList" @@ -600,12 +593,12 @@ 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)" 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" @@ -650,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)" @@ -658,6 +650,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" @@ -696,10 +689,10 @@ 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" +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" @@ -726,10 +719,10 @@ 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" +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" @@ -759,9 +752,9 @@ 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" defs["ImDrawList_AddPolyline"][1]["ret"] = "void" defs["ImDrawList_AddPolyline"][1]["signature"] = "(const ImVec2*,const int,ImU32,bool,float)" defs["ImDrawList_AddPolyline"][1]["stname"] = "ImDrawList" @@ -794,10 +787,10 @@ 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" +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" @@ -827,9 +820,9 @@ 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" 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" @@ -862,12 +855,12 @@ 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" 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" @@ -897,11 +890,11 @@ 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" 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" @@ -934,9 +927,9 @@ 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" 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" @@ -963,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" @@ -1004,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)" @@ -1041,10 +1032,10 @@ 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" +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" @@ -1071,9 +1062,9 @@ 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" defs["ImDrawList_AddTriangleFilled"][1]["ret"] = "void" defs["ImDrawList_AddTriangleFilled"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32)" defs["ImDrawList_AddTriangleFilled"][1]["stname"] = "ImDrawList" @@ -1088,9 +1079,9 @@ 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" defs["ImDrawList_ChannelsMerge"][1]["ret"] = "void" defs["ImDrawList_ChannelsMerge"][1]["signature"] = "()" defs["ImDrawList_ChannelsMerge"][1]["stname"] = "ImDrawList" @@ -1108,9 +1099,9 @@ 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" defs["ImDrawList_ChannelsSetCurrent"][1]["ret"] = "void" defs["ImDrawList_ChannelsSetCurrent"][1]["signature"] = "(int)" defs["ImDrawList_ChannelsSetCurrent"][1]["stname"] = "ImDrawList" @@ -1128,9 +1119,9 @@ 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" defs["ImDrawList_ChannelsSplit"][1]["ret"] = "void" defs["ImDrawList_ChannelsSplit"][1]["signature"] = "(int)" defs["ImDrawList_ChannelsSplit"][1]["stname"] = "ImDrawList" @@ -1145,9 +1136,9 @@ 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" defs["ImDrawList_Clear"][1]["ret"] = "void" defs["ImDrawList_Clear"][1]["signature"] = "()" defs["ImDrawList_Clear"][1]["stname"] = "ImDrawList" @@ -1162,9 +1153,9 @@ 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" defs["ImDrawList_ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawList_ClearFreeMemory"][1]["signature"] = "()" defs["ImDrawList_ClearFreeMemory"][1]["stname"] = "ImDrawList" @@ -1179,13 +1170,13 @@ 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" 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)" @@ -1196,11 +1187,11 @@ 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" 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)" @@ -1214,13 +1205,12 @@ 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 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)" @@ -1231,18 +1221,17 @@ 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 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)" @@ -1253,11 +1242,11 @@ 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" 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)" @@ -1271,13 +1260,12 @@ 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 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)" @@ -1288,18 +1276,17 @@ 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 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)" @@ -1310,10 +1297,10 @@ 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" +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] @@ -1342,10 +1329,10 @@ 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" +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" @@ -1372,9 +1359,9 @@ 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" defs["ImDrawList_PathArcToFast"][1]["ret"] = "void" defs["ImDrawList_PathArcToFast"][1]["signature"] = "(const ImVec2,float,int,int)" defs["ImDrawList_PathArcToFast"][1]["stname"] = "ImDrawList" @@ -1401,10 +1388,10 @@ 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" +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" @@ -1419,9 +1406,9 @@ 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" defs["ImDrawList_PathClear"][1]["ret"] = "void" defs["ImDrawList_PathClear"][1]["signature"] = "()" defs["ImDrawList_PathClear"][1]["stname"] = "ImDrawList" @@ -1439,9 +1426,9 @@ 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" defs["ImDrawList_PathFillConvex"][1]["ret"] = "void" defs["ImDrawList_PathFillConvex"][1]["signature"] = "(ImU32)" defs["ImDrawList_PathFillConvex"][1]["stname"] = "ImDrawList" @@ -1459,9 +1446,9 @@ 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" defs["ImDrawList_PathLineTo"][1]["ret"] = "void" defs["ImDrawList_PathLineTo"][1]["signature"] = "(const ImVec2)" defs["ImDrawList_PathLineTo"][1]["stname"] = "ImDrawList" @@ -1479,9 +1466,9 @@ 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" defs["ImDrawList_PathLineToMergeDuplicate"][1]["ret"] = "void" defs["ImDrawList_PathLineToMergeDuplicate"][1]["signature"] = "(const ImVec2)" defs["ImDrawList_PathLineToMergeDuplicate"][1]["stname"] = "ImDrawList" @@ -1508,11 +1495,11 @@ 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" 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" @@ -1536,10 +1523,10 @@ 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" +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" @@ -1554,9 +1541,9 @@ 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" defs["ImDrawList_PopClipRect"][1]["ret"] = "void" defs["ImDrawList_PopClipRect"][1]["signature"] = "()" defs["ImDrawList_PopClipRect"][1]["stname"] = "ImDrawList" @@ -1571,9 +1558,9 @@ 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" defs["ImDrawList_PopTextureID"][1]["ret"] = "void" defs["ImDrawList_PopTextureID"][1]["signature"] = "()" defs["ImDrawList_PopTextureID"][1]["stname"] = "ImDrawList" @@ -1615,9 +1602,9 @@ 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" 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" @@ -1641,9 +1628,9 @@ 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" defs["ImDrawList_PrimRect"][1]["ret"] = "void" defs["ImDrawList_PrimRect"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" defs["ImDrawList_PrimRect"][1]["stname"] = "ImDrawList" @@ -1673,9 +1660,9 @@ 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" 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" @@ -1696,9 +1683,9 @@ 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" defs["ImDrawList_PrimReserve"][1]["ret"] = "void" defs["ImDrawList_PrimReserve"][1]["signature"] = "(int,int)" defs["ImDrawList_PrimReserve"][1]["stname"] = "ImDrawList" @@ -1722,9 +1709,9 @@ 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" defs["ImDrawList_PrimVtx"][1]["ret"] = "void" defs["ImDrawList_PrimVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" defs["ImDrawList_PrimVtx"][1]["stname"] = "ImDrawList" @@ -1742,9 +1729,9 @@ 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" defs["ImDrawList_PrimWriteIdx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteIdx"][1]["signature"] = "(ImDrawIdx)" defs["ImDrawList_PrimWriteIdx"][1]["stname"] = "ImDrawList" @@ -1768,9 +1755,9 @@ 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" defs["ImDrawList_PrimWriteVtx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" defs["ImDrawList_PrimWriteVtx"][1]["stname"] = "ImDrawList" @@ -1794,10 +1781,10 @@ 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" +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" @@ -1812,9 +1799,9 @@ 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" defs["ImDrawList_PushClipRectFullScreen"][1]["ret"] = "void" defs["ImDrawList_PushClipRectFullScreen"][1]["signature"] = "()" defs["ImDrawList_PushClipRectFullScreen"][1]["stname"] = "ImDrawList" @@ -1832,9 +1819,9 @@ 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" defs["ImDrawList_PushTextureID"][1]["ret"] = "void" defs["ImDrawList_PushTextureID"][1]["signature"] = "(ImTextureID)" defs["ImDrawList_PushTextureID"][1]["stname"] = "ImDrawList" @@ -1849,9 +1836,9 @@ 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" defs["ImDrawList_UpdateClipRect"][1]["ret"] = "void" defs["ImDrawList_UpdateClipRect"][1]["signature"] = "()" defs["ImDrawList_UpdateClipRect"][1]["stname"] = "ImDrawList" @@ -1866,9 +1853,9 @@ 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" defs["ImDrawList_UpdateTextureID"][1]["ret"] = "void" defs["ImDrawList_UpdateTextureID"][1]["signature"] = "()" defs["ImDrawList_UpdateTextureID"][1]["stname"] = "ImDrawList" @@ -1917,10 +1904,10 @@ 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" +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" @@ -1944,9 +1931,9 @@ 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" defs["ImFontAtlas_AddCustomRectRegular"][1]["ret"] = "int" defs["ImFontAtlas_AddCustomRectRegular"][1]["signature"] = "(unsigned int,int,int)" defs["ImFontAtlas_AddCustomRectRegular"][1]["stname"] = "ImFontAtlas" @@ -1964,9 +1951,9 @@ 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" defs["ImFontAtlas_AddFont"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFont"][1]["signature"] = "(const ImFontConfig*)" defs["ImFontAtlas_AddFont"][1]["stname"] = "ImFontAtlas" @@ -1984,10 +1971,10 @@ 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" +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" @@ -2014,11 +2001,11 @@ 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)" 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" @@ -2045,11 +2032,11 @@ 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)" 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" @@ -2079,11 +2066,11 @@ 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)" 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" @@ -2113,11 +2100,11 @@ 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)" 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" @@ -2132,9 +2119,9 @@ 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" defs["ImFontAtlas_Build"][1]["ret"] = "bool" defs["ImFontAtlas_Build"][1]["signature"] = "()" defs["ImFontAtlas_Build"][1]["stname"] = "ImFontAtlas" @@ -2158,9 +2145,9 @@ 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" defs["ImFontAtlas_CalcCustomRectUV"][1]["ret"] = "void" defs["ImFontAtlas_CalcCustomRectUV"][1]["signature"] = "(const CustomRect*,ImVec2*,ImVec2*)" defs["ImFontAtlas_CalcCustomRectUV"][1]["stname"] = "ImFontAtlas" @@ -2175,9 +2162,9 @@ 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" defs["ImFontAtlas_Clear"][1]["ret"] = "void" defs["ImFontAtlas_Clear"][1]["signature"] = "()" defs["ImFontAtlas_Clear"][1]["stname"] = "ImFontAtlas" @@ -2192,9 +2179,9 @@ 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" defs["ImFontAtlas_ClearFonts"][1]["ret"] = "void" defs["ImFontAtlas_ClearFonts"][1]["signature"] = "()" defs["ImFontAtlas_ClearFonts"][1]["stname"] = "ImFontAtlas" @@ -2209,9 +2196,9 @@ 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" defs["ImFontAtlas_ClearInputData"][1]["ret"] = "void" defs["ImFontAtlas_ClearInputData"][1]["signature"] = "()" defs["ImFontAtlas_ClearInputData"][1]["stname"] = "ImFontAtlas" @@ -2226,9 +2213,9 @@ 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" defs["ImFontAtlas_ClearTexData"][1]["ret"] = "void" defs["ImFontAtlas_ClearTexData"][1]["signature"] = "()" defs["ImFontAtlas_ClearTexData"][1]["stname"] = "ImFontAtlas" @@ -2246,13 +2233,13 @@ 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" 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)" @@ -2263,9 +2250,9 @@ 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" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["signature"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["stname"] = "ImFontAtlas" @@ -2280,9 +2267,9 @@ 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" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["signature"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["stname"] = "ImFontAtlas" @@ -2297,9 +2284,9 @@ 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" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["signature"] = "()" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["stname"] = "ImFontAtlas" @@ -2314,9 +2301,9 @@ 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" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["signature"] = "()" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["stname"] = "ImFontAtlas" @@ -2331,9 +2318,9 @@ 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" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["signature"] = "()" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["stname"] = "ImFontAtlas" @@ -2348,9 +2335,9 @@ 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" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["signature"] = "()" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["stname"] = "ImFontAtlas" @@ -2365,9 +2352,9 @@ 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" defs["ImFontAtlas_GetGlyphRangesThai"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesThai"][1]["signature"] = "()" defs["ImFontAtlas_GetGlyphRangesThai"][1]["stname"] = "ImFontAtlas" @@ -2397,9 +2384,9 @@ 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" defs["ImFontAtlas_GetMouseCursorTexData"][1]["ret"] = "bool" defs["ImFontAtlas_GetMouseCursorTexData"][1]["signature"] = "(ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])" defs["ImFontAtlas_GetMouseCursorTexData"][1]["stname"] = "ImFontAtlas" @@ -2426,10 +2413,10 @@ 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" +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" @@ -2456,10 +2443,10 @@ 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" +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" @@ -2471,10 +2458,10 @@ 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" +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] @@ -2488,9 +2475,9 @@ 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" defs["ImFontAtlas_IsBuilt"][1]["ret"] = "bool" defs["ImFontAtlas_IsBuilt"][1]["signature"] = "()" defs["ImFontAtlas_IsBuilt"][1]["stname"] = "ImFontAtlas" @@ -2508,9 +2495,9 @@ 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" defs["ImFontAtlas_SetTexID"][1]["ret"] = "void" defs["ImFontAtlas_SetTexID"][1]["signature"] = "(ImTextureID)" defs["ImFontAtlas_SetTexID"][1]["stname"] = "ImFontAtlas" @@ -2538,10 +2525,10 @@ 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" +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] @@ -2574,9 +2561,9 @@ 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" defs["ImFontGlyphRangesBuilder_AddChar"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddChar"][1]["signature"] = "(ImWchar)" defs["ImFontGlyphRangesBuilder_AddChar"][1]["stname"] = "ImFontGlyphRangesBuilder" @@ -2594,9 +2581,9 @@ 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" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["signature"] = "(const ImWchar*)" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["stname"] = "ImFontGlyphRangesBuilder" @@ -2617,10 +2604,10 @@ 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" +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" @@ -2638,9 +2625,9 @@ 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" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["signature"] = "(ImVector_ImWchar*)" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["stname"] = "ImFontGlyphRangesBuilder" @@ -2658,13 +2645,13 @@ 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" 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"] = "()" @@ -2672,10 +2659,10 @@ 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" +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] @@ -2692,9 +2679,9 @@ 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" defs["ImFontGlyphRangesBuilder_SetBit"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_SetBit"][1]["signature"] = "(int)" defs["ImFontGlyphRangesBuilder_SetBit"][1]["stname"] = "ImFontGlyphRangesBuilder" @@ -2755,9 +2742,9 @@ 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" 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" @@ -2781,10 +2768,10 @@ 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" +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" @@ -2799,9 +2786,9 @@ 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" defs["ImFont_BuildLookupTable"][1]["ret"] = "void" defs["ImFont_BuildLookupTable"][1]["signature"] = "()" defs["ImFont_BuildLookupTable"][1]["stname"] = "ImFont" @@ -2834,13 +2821,13 @@ 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)" 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)" @@ -2872,13 +2859,12 @@ 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 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)" @@ -2907,18 +2893,17 @@ 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 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)" @@ -2941,13 +2926,13 @@ 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" 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)" @@ -2958,9 +2943,9 @@ 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" defs["ImFont_ClearOutputData"][1]["ret"] = "void" defs["ImFont_ClearOutputData"][1]["signature"] = "()" defs["ImFont_ClearOutputData"][1]["stname"] = "ImFont" @@ -2978,13 +2963,13 @@ 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" 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)" @@ -2998,13 +2983,13 @@ 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" 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)" @@ -3018,13 +3003,13 @@ 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" 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)" @@ -3035,13 +3020,13 @@ 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" 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)" @@ -3055,9 +3040,9 @@ 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" defs["ImFont_GrowIndex"][1]["ret"] = "void" defs["ImFont_GrowIndex"][1]["signature"] = "(int)" defs["ImFont_GrowIndex"][1]["stname"] = "ImFont" @@ -3069,10 +3054,10 @@ 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" +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] @@ -3086,13 +3071,13 @@ 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" 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)" @@ -3118,13 +3103,13 @@ 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" 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)" @@ -3162,15 +3147,15 @@ 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" 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)" @@ -3184,9 +3169,9 @@ 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" defs["ImFont_SetFallbackChar"][1]["ret"] = "void" defs["ImFont_SetFallbackChar"][1]["signature"] = "(ImWchar)" defs["ImFont_SetFallbackChar"][1]["stname"] = "ImFont" @@ -3220,9 +3205,9 @@ 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" defs["ImGuiIO_AddInputCharacter"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharacter"][1]["signature"] = "(ImWchar)" defs["ImGuiIO_AddInputCharacter"][1]["stname"] = "ImGuiIO" @@ -3240,9 +3225,9 @@ 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" defs["ImGuiIO_AddInputCharactersUTF8"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharactersUTF8"][1]["signature"] = "(const char*)" defs["ImGuiIO_AddInputCharactersUTF8"][1]["stname"] = "ImGuiIO" @@ -3257,9 +3242,9 @@ 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" defs["ImGuiIO_ClearInputCharacters"][1]["ret"] = "void" defs["ImGuiIO_ClearInputCharacters"][1]["signature"] = "()" defs["ImGuiIO_ClearInputCharacters"][1]["stname"] = "ImGuiIO" @@ -3271,10 +3256,10 @@ 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" +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] @@ -3310,9 +3295,9 @@ 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" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["signature"] = "(int,int)" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["stname"] = "ImGuiInputTextCallbackData" @@ -3327,13 +3312,13 @@ 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" 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"] = "()" @@ -3341,10 +3326,10 @@ 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" +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] @@ -3367,10 +3352,10 @@ 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" +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" @@ -3407,10 +3392,10 @@ 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" +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" @@ -3425,9 +3410,9 @@ 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" defs["ImGuiListClipper_End"][1]["ret"] = "void" defs["ImGuiListClipper_End"][1]["signature"] = "()" defs["ImGuiListClipper_End"][1]["stname"] = "ImGuiListClipper" @@ -3445,12 +3430,12 @@ 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" 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] @@ -3464,9 +3449,9 @@ 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" defs["ImGuiListClipper_Step"][1]["ret"] = "bool" defs["ImGuiListClipper_Step"][1]["signature"] = "()" defs["ImGuiListClipper_Step"][1]["stname"] = "ImGuiListClipper" @@ -3494,10 +3479,10 @@ 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" +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] @@ -3527,9 +3512,9 @@ 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" defs["ImGuiPayload_Clear"][1]["ret"] = "void" defs["ImGuiPayload_Clear"][1]["signature"] = "()" defs["ImGuiPayload_Clear"][1]["stname"] = "ImGuiPayload" @@ -3541,10 +3526,10 @@ 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" +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] @@ -3561,13 +3546,13 @@ 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" 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)" @@ -3578,13 +3563,13 @@ 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" 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)" @@ -3595,13 +3580,13 @@ 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" 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)" @@ -3628,9 +3613,9 @@ 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" defs["ImGuiStorage_BuildSortByKey"][1]["ret"] = "void" defs["ImGuiStorage_BuildSortByKey"][1]["signature"] = "()" defs["ImGuiStorage_BuildSortByKey"][1]["stname"] = "ImGuiStorage" @@ -3645,9 +3630,9 @@ 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" defs["ImGuiStorage_Clear"][1]["ret"] = "void" defs["ImGuiStorage_Clear"][1]["signature"] = "()" defs["ImGuiStorage_Clear"][1]["stname"] = "ImGuiStorage" @@ -3668,14 +3653,14 @@ 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" +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)" @@ -3692,10 +3677,10 @@ 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" +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" @@ -3716,14 +3701,14 @@ 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" +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)" @@ -3740,10 +3725,10 @@ 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" +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" @@ -3764,14 +3749,14 @@ 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" +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)" @@ -3788,10 +3773,10 @@ 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" +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" @@ -3809,13 +3794,13 @@ 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" 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)" @@ -3832,10 +3817,10 @@ 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" +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" @@ -3853,9 +3838,9 @@ 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" defs["ImGuiStorage_SetAllInt"][1]["ret"] = "void" defs["ImGuiStorage_SetAllInt"][1]["signature"] = "(int)" defs["ImGuiStorage_SetAllInt"][1]["stname"] = "ImGuiStorage" @@ -3876,9 +3861,9 @@ 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" defs["ImGuiStorage_SetBool"][1]["ret"] = "void" defs["ImGuiStorage_SetBool"][1]["signature"] = "(ImGuiID,bool)" defs["ImGuiStorage_SetBool"][1]["stname"] = "ImGuiStorage" @@ -3899,9 +3884,9 @@ 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" defs["ImGuiStorage_SetFloat"][1]["ret"] = "void" defs["ImGuiStorage_SetFloat"][1]["signature"] = "(ImGuiID,float)" defs["ImGuiStorage_SetFloat"][1]["stname"] = "ImGuiStorage" @@ -3922,9 +3907,9 @@ 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" defs["ImGuiStorage_SetInt"][1]["ret"] = "void" defs["ImGuiStorage_SetInt"][1]["signature"] = "(ImGuiID,int)" defs["ImGuiStorage_SetInt"][1]["stname"] = "ImGuiStorage" @@ -3945,9 +3930,9 @@ 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" defs["ImGuiStorage_SetVoidPtr"][1]["ret"] = "void" defs["ImGuiStorage_SetVoidPtr"][1]["signature"] = "(ImGuiID,void*)" defs["ImGuiStorage_SetVoidPtr"][1]["stname"] = "ImGuiStorage" @@ -3959,10 +3944,10 @@ 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" +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] @@ -3979,9 +3964,9 @@ 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" defs["ImGuiStyle_ScaleAllSizes"][1]["ret"] = "void" defs["ImGuiStyle_ScaleAllSizes"][1]["signature"] = "(float)" defs["ImGuiStyle_ScaleAllSizes"][1]["stname"] = "ImGuiStyle" @@ -4009,13 +3994,37 @@ 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" +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] +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,...)" @@ -4032,11 +4041,11 @@ 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"] = "...)" 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" @@ -4057,9 +4066,9 @@ 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" defs["ImGuiTextBuffer_appendfv"][1]["ret"] = "void" defs["ImGuiTextBuffer_appendfv"][1]["signature"] = "(const char*,va_list)" defs["ImGuiTextBuffer_appendfv"][1]["stname"] = "ImGuiTextBuffer" @@ -4074,13 +4083,13 @@ 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" 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)" @@ -4091,13 +4100,13 @@ 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" 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)" @@ -4108,9 +4117,9 @@ 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" defs["ImGuiTextBuffer_clear"][1]["ret"] = "void" defs["ImGuiTextBuffer_clear"][1]["signature"] = "()" defs["ImGuiTextBuffer_clear"][1]["stname"] = "ImGuiTextBuffer" @@ -4141,9 +4150,9 @@ 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" defs["ImGuiTextBuffer_empty"][1]["ret"] = "bool" defs["ImGuiTextBuffer_empty"][1]["signature"] = "()" defs["ImGuiTextBuffer_empty"][1]["stname"] = "ImGuiTextBuffer" @@ -4158,13 +4167,13 @@ 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" 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)" @@ -4178,9 +4187,9 @@ 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" defs["ImGuiTextBuffer_reserve"][1]["ret"] = "void" defs["ImGuiTextBuffer_reserve"][1]["signature"] = "(int)" defs["ImGuiTextBuffer_reserve"][1]["stname"] = "ImGuiTextBuffer" @@ -4195,13 +4204,13 @@ 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" 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)" @@ -4212,9 +4221,9 @@ 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" defs["ImGuiTextFilter_Build"][1]["ret"] = "void" defs["ImGuiTextFilter_Build"][1]["signature"] = "()" defs["ImGuiTextFilter_Build"][1]["stname"] = "ImGuiTextFilter" @@ -4229,9 +4238,9 @@ 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" defs["ImGuiTextFilter_Clear"][1]["ret"] = "void" defs["ImGuiTextFilter_Clear"][1]["signature"] = "()" defs["ImGuiTextFilter_Clear"][1]["stname"] = "ImGuiTextFilter" @@ -4252,11 +4261,11 @@ 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" 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" @@ -4271,11 +4280,11 @@ 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"] = "\"\"" 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] @@ -4289,13 +4298,13 @@ 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" 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)" @@ -4312,14 +4321,14 @@ 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" +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)" @@ -4343,7 +4352,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" @@ -4362,7 +4370,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" @@ -4394,7 +4401,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" @@ -4419,7 +4425,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" @@ -4444,6 +4449,9673 @@ 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_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_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_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_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_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_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_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_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_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_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_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"] = "()" +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]["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]["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_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_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_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)" +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]["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)const" +defs["ImVector__grow_capacity"][1]["stname"] = "ImVector" +defs["ImVector__grow_capacity"][1]["templated"] = true +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)" +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]["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"][1]["templated"] = true +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]["defaults"] = {} +defs["ImVector_back"][2]["funcname"] = "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"] = "()const" +defs["ImVector_back"][2]["stname"] = "ImVector" +defs["ImVector_back"][2]["templated"] = true +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)" +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]["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"][1]["templated"] = true +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]["defaults"] = {} +defs["ImVector_begin"][2]["funcname"] = "begin" +defs["ImVector_begin"][2]["ov_cimguiname"] = "ImVector_begin_const" +defs["ImVector_begin"][2]["ret"] = "const T*" +defs["ImVector_begin"][2]["signature"] = "()const" +defs["ImVector_begin"][2]["stname"] = "ImVector" +defs["ImVector_begin"][2]["templated"] = true +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)" +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]["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"] = "()const" +defs["ImVector_capacity"][1]["stname"] = "ImVector" +defs["ImVector_capacity"][1]["templated"] = true +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)" +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]["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_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"][1]["templated"] = true +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]["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"] = "()const" +defs["ImVector_empty"][1]["stname"] = "ImVector" +defs["ImVector_empty"][1]["templated"] = true +defs["ImVector_empty"]["()const"] = 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]["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"][1]["templated"] = true +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]["defaults"] = {} +defs["ImVector_end"][2]["funcname"] = "end" +defs["ImVector_end"][2]["ov_cimguiname"] = "ImVector_end_const" +defs["ImVector_end"][2]["ret"] = "const T*" +defs["ImVector_end"][2]["signature"] = "()const" +defs["ImVector_end"][2]["stname"] = "ImVector" +defs["ImVector_end"][2]["templated"] = true +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)" +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]["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"][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"] = {} +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]["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"][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"] = {} +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]["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_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)" +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]["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"][1]["templated"] = true +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]["defaults"] = {} +defs["ImVector_front"][2]["funcname"] = "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"] = "()const" +defs["ImVector_front"][2]["stname"] = "ImVector" +defs["ImVector_front"][2]["templated"] = true +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)" +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]["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*)const" +defs["ImVector_index_from_ptr"][1]["stname"] = "ImVector" +defs["ImVector_index_from_ptr"][1]["templated"] = true +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)" +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]["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_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)" +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]["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] = {} +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]["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] = {} +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]["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] = {} +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]["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] = {} +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]["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"][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"] = {} +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]["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"][2]["templated"] = true +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]["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"] = "()const" +defs["ImVector_size"][1]["stname"] = "ImVector" +defs["ImVector_size"][1]["templated"] = true +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)" +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]["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"] = "()const" +defs["ImVector_size_in_bytes"][1]["stname"] = "ImVector" +defs["ImVector_size_in_bytes"][1]["templated"] = true +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]["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]["argsoriginal"] = "(ImVector& rhs)" +defs["ImVector_swap"][1]["call_args"] = "(rhs)" +defs["ImVector_swap"][1]["cimguiname"] = "ImVector_swap" +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]["stname"] = "ImVector" +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)" @@ -4457,7 +14129,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" @@ -4476,7 +14147,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" @@ -4495,7 +14165,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" @@ -4528,7 +14197,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" @@ -4547,7 +14215,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" @@ -4566,13 +14233,13 @@ 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" 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)" @@ -4599,13 +14266,13 @@ 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" 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)" @@ -4616,13 +14283,13 @@ 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" 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)" @@ -4639,13 +14306,13 @@ 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" 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)" @@ -4659,13 +14326,14 @@ 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" +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] = {} @@ -4674,12 +14342,13 @@ 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" +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] = {} @@ -4694,12 +14363,13 @@ 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" +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] = {} @@ -4717,14 +14387,15 @@ 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)" 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] = {} @@ -4745,16 +14416,16 @@ 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" 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"] = {} @@ -4773,16 +14444,16 @@ 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" 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"] = {} @@ -4801,13 +14472,14 @@ 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" +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] = {} @@ -4825,13 +14497,14 @@ 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" +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] = {} @@ -4843,13 +14516,14 @@ 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" +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] = {} @@ -4858,12 +14532,13 @@ 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" +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] = {} @@ -4872,12 +14547,13 @@ 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" +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] = {} @@ -4886,12 +14562,13 @@ 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" +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] = {} @@ -4906,13 +14583,14 @@ 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" +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] = {} @@ -4921,12 +14599,13 @@ 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" +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] = {} @@ -4941,13 +14620,14 @@ 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" +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] = {} @@ -4962,14 +14642,15 @@ 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)" 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] = {} @@ -4984,14 +14665,15 @@ 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)" 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] = {} @@ -5009,15 +14691,16 @@ 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" 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] = {} @@ -5035,14 +14718,15 @@ 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)" 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] = {} @@ -5057,13 +14741,14 @@ 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" +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] = {} @@ -5081,14 +14766,15 @@ 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)" 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] = {} @@ -5097,12 +14783,13 @@ 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" +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] = {} @@ -5111,12 +14798,13 @@ 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" +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] = {} @@ -5131,13 +14819,14 @@ 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"] = "...)" +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] = {} @@ -5152,12 +14841,13 @@ 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" +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] = {} @@ -5172,13 +14862,14 @@ 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" +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] = {} @@ -5187,12 +14878,13 @@ 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" +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] = {} @@ -5213,12 +14905,13 @@ 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" +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] = {} @@ -5239,15 +14932,16 @@ 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)" 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"] = {} @@ -5269,14 +14963,14 @@ 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" 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"] = {} @@ -5295,15 +14989,15 @@ 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" 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] @@ -5317,13 +15011,14 @@ 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" +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] = {} @@ -5335,13 +15030,14 @@ 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" +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] = {} @@ -5356,12 +15052,13 @@ 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" +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] = {} @@ -5379,12 +15076,13 @@ 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" +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] = {} @@ -5393,12 +15091,13 @@ 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" +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] = {} @@ -5413,14 +15112,14 @@ 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" +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"] = {} @@ -5436,14 +15135,14 @@ 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" +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"] = {} @@ -5465,14 +15164,15 @@ 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)" 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] = {} @@ -5484,12 +15184,13 @@ 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" +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] = {} @@ -5516,13 +15217,14 @@ 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 +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] = {} @@ -5549,13 +15251,14 @@ 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 +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] = {} @@ -5567,12 +15270,13 @@ 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" +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"] = {} @@ -5585,14 +15289,14 @@ 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" 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"] = {} @@ -5602,15 +15306,15 @@ 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" 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] @@ -5630,13 +15334,14 @@ 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" +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] = {} @@ -5654,13 +15359,14 @@ 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" +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] = {} @@ -5678,13 +15384,14 @@ 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" +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] = {} @@ -5705,14 +15412,15 @@ 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)" 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] = {} @@ -5730,15 +15438,16 @@ 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" 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] = {} @@ -5762,14 +15471,14 @@ 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" +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"] = {} @@ -5788,14 +15497,14 @@ 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" +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"] = {} @@ -5822,14 +15531,14 @@ 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" +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] @@ -5843,13 +15552,14 @@ 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" +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] = {} @@ -5876,12 +15586,13 @@ 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" +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] = {} @@ -5893,13 +15604,14 @@ 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" +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] = {} @@ -5929,7 +15641,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" @@ -5937,9 +15648,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] = {} @@ -5969,7 +15682,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" @@ -5977,9 +15689,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] = {} @@ -6009,7 +15723,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" @@ -6017,9 +15730,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] = {} @@ -6049,7 +15764,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" @@ -6057,9 +15771,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] = {} @@ -6095,7 +15811,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)" @@ -6104,9 +15819,11 @@ 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] = {} @@ -6133,16 +15850,17 @@ 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" 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] = {} @@ -6169,16 +15887,17 @@ 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" 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] = {} @@ -6205,16 +15924,17 @@ 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" 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] = {} @@ -6241,16 +15961,17 @@ 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" 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] = {} @@ -6283,7 +16004,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)" @@ -6291,9 +16011,11 @@ 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] = {} @@ -6326,16 +16048,17 @@ 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" 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] = {} @@ -6371,16 +16094,17 @@ 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" 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] = {} @@ -6392,12 +16116,13 @@ 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" +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] = {} @@ -6406,12 +16131,13 @@ 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" +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] = {} @@ -6420,12 +16146,13 @@ 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" +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] = {} @@ -6434,12 +16161,13 @@ 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" +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] = {} @@ -6448,12 +16176,13 @@ 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" +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] = {} @@ -6462,12 +16191,13 @@ 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" +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] = {} @@ -6476,12 +16206,13 @@ 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" +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] = {} @@ -6490,12 +16221,13 @@ 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" +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] = {} @@ -6504,12 +16236,13 @@ 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" +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] = {} @@ -6518,12 +16251,13 @@ 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" +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] = {} @@ -6532,12 +16266,13 @@ 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" +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] = {} @@ -6546,12 +16281,13 @@ 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" +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] = {} @@ -6560,12 +16296,13 @@ 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" +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] = {} @@ -6574,12 +16311,13 @@ 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" +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] = {} @@ -6588,12 +16326,13 @@ 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" +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] = {} @@ -6602,12 +16341,13 @@ 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" +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] = {} @@ -6616,12 +16356,13 @@ 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" +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] = {} @@ -6636,14 +16377,14 @@ 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" +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"] = {} @@ -6653,13 +16394,13 @@ 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" 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"] = {} @@ -6669,13 +16410,13 @@ 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" 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] @@ -6686,12 +16427,13 @@ 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" +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] = {} @@ -6703,13 +16445,14 @@ 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" +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] = {} @@ -6721,13 +16464,14 @@ 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" +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] = {} @@ -6736,12 +16480,13 @@ 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" +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] = {} @@ -6750,12 +16495,13 @@ 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" +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"] = {} @@ -6765,29 +16511,29 @@ 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" 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"] = {} 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" 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] @@ -6798,12 +16544,13 @@ 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" +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] = {} @@ -6812,12 +16559,13 @@ 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" +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"] = {} @@ -6827,29 +16575,29 @@ 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" 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"] = {} 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" 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] @@ -6860,12 +16608,13 @@ 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" +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] = {} @@ -6874,12 +16623,13 @@ 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" +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"] = {} @@ -6889,29 +16639,29 @@ 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" 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"] = {} 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" 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] @@ -6922,12 +16672,13 @@ 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" +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] = {} @@ -6936,12 +16687,13 @@ 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" +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] = {} @@ -6950,12 +16702,13 @@ 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" +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"] = {} @@ -6965,29 +16718,29 @@ 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" 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"] = {} 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" 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] @@ -6998,12 +16751,13 @@ 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" +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"] = {} @@ -7013,29 +16767,29 @@ 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" 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"] = {} 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" 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] @@ -7046,12 +16800,13 @@ 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" +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] = {} @@ -7060,12 +16815,13 @@ 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" +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] = {} @@ -7074,12 +16830,13 @@ 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" +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] = {} @@ -7088,12 +16845,13 @@ 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" +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] = {} @@ -7102,12 +16860,13 @@ 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" +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] = {} @@ -7116,12 +16875,13 @@ 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" +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"] = {} @@ -7131,29 +16891,29 @@ 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" 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"] = {} 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" 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] @@ -7164,12 +16924,13 @@ 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" +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] = {} @@ -7178,12 +16939,13 @@ 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" +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] = {} @@ -7192,12 +16954,13 @@ 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" +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] = {} @@ -7209,13 +16972,13 @@ 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" 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"] = {} @@ -7228,13 +16991,13 @@ 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" 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"] = {} @@ -7244,13 +17007,13 @@ 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" 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] @@ -7261,13 +17024,14 @@ 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" +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] = {} @@ -7276,12 +17040,13 @@ 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" +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"] = {} @@ -7291,29 +17056,29 @@ 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" 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"] = {} 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" 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] @@ -7324,12 +17089,13 @@ 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" +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"] = {} @@ -7339,29 +17105,29 @@ 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" 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"] = {} 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" 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] @@ -7372,12 +17138,13 @@ 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" +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"] = {} @@ -7387,29 +17154,29 @@ 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" 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"] = {} 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" 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] @@ -7423,12 +17190,13 @@ 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" +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] = {} @@ -7446,12 +17214,13 @@ 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" +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] = {} @@ -7460,12 +17229,13 @@ 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" +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] = {} @@ -7480,14 +17250,15 @@ 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" 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"] = {} @@ -7503,14 +17274,14 @@ 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" 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"] = {} @@ -7523,15 +17294,15 @@ 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" 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] @@ -7542,12 +17313,13 @@ 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" +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"] = {} @@ -7557,29 +17329,29 @@ 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" 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"] = {} 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" 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] @@ -7590,12 +17362,13 @@ 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" +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"] = {} @@ -7605,29 +17378,29 @@ 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" 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"] = {} 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" 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] @@ -7638,12 +17411,13 @@ 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" +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] = {} @@ -7652,12 +17426,13 @@ 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" +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] = {} @@ -7666,12 +17441,13 @@ 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" +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] = {} @@ -7680,12 +17456,13 @@ 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" +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] = {} @@ -7694,12 +17471,13 @@ 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" +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] = {} @@ -7708,12 +17486,13 @@ 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" +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] = {} @@ -7722,13 +17501,14 @@ 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" +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] = {} @@ -7740,12 +17520,13 @@ 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" +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] = {} @@ -7757,13 +17538,14 @@ 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" +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] = {} @@ -7772,12 +17554,13 @@ 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" +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] = {} @@ -7786,12 +17569,13 @@ 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" +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] = {} @@ -7800,12 +17584,13 @@ 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" +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] = {} @@ -7814,12 +17599,13 @@ 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" +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] = {} @@ -7828,12 +17614,13 @@ 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" +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] = {} @@ -7842,12 +17629,13 @@ 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" +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"] = {} @@ -7857,29 +17645,29 @@ 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" 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"] = {} 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" 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] @@ -7890,12 +17678,13 @@ 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" +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"] = {} @@ -7905,29 +17694,29 @@ 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" 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"] = {} 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" 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] @@ -7938,12 +17727,13 @@ 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" +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] = {} @@ -7952,12 +17742,13 @@ 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" +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] = {} @@ -7966,12 +17757,13 @@ 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" +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] = {} @@ -7980,12 +17772,13 @@ 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" +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"] = {} @@ -7995,29 +17788,29 @@ 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" 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"] = {} 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" 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] @@ -8028,12 +17821,13 @@ 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" +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"] = {} @@ -8043,29 +17837,29 @@ 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" 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"] = {} 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" 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] @@ -8076,12 +17870,13 @@ 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" +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] = {} @@ -8108,16 +17903,17 @@ 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)" 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] = {} @@ -8147,7 +17943,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" @@ -8155,9 +17950,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] = {} @@ -8169,13 +17966,14 @@ 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" +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] = {} @@ -8202,16 +18000,17 @@ 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\"" 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] = {} @@ -8238,16 +18037,17 @@ 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\"" 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] = {} @@ -8268,14 +18068,15 @@ 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\"" 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] = {} @@ -8296,14 +18097,15 @@ 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\"" 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] = {} @@ -8324,14 +18126,15 @@ 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\"" 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] = {} @@ -8355,15 +18158,16 @@ 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" 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] = {} @@ -8381,13 +18185,14 @@ 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" +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] = {} @@ -8405,13 +18210,14 @@ 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" +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] = {} @@ -8429,13 +18235,14 @@ 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" +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] = {} @@ -8465,16 +18272,17 @@ 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)" 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] = {} @@ -8507,16 +18315,17 @@ 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)" 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] = {} @@ -8543,15 +18352,16 @@ 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" 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] = {} @@ -8581,16 +18391,17 @@ 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" defs["igInputTextMultiline"][1]["defaults"]["size"] = "ImVec2(0,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] = {} @@ -8605,12 +18416,13 @@ 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" +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] = {} @@ -8619,12 +18431,13 @@ 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" +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] = {} @@ -8633,12 +18446,13 @@ 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" +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] = {} @@ -8647,12 +18461,13 @@ 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" +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] = {} @@ -8661,13 +18476,29 @@ 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" +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["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"] = "()" @@ -8675,12 +18506,13 @@ 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" +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] = {} @@ -8692,13 +18524,14 @@ 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" +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] = {} @@ -8707,12 +18540,13 @@ 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" +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] = {} @@ -8721,12 +18555,13 @@ 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" +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] = {} @@ -8735,12 +18570,13 @@ 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" +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] = {} @@ -8749,12 +18585,13 @@ 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" +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] = {} @@ -8766,13 +18603,14 @@ 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" +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] = {} @@ -8781,12 +18619,13 @@ 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" +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] = {} @@ -8798,12 +18637,13 @@ 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" +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] = {} @@ -8818,13 +18658,14 @@ 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" +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] = {} @@ -8836,12 +18677,13 @@ 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" +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] = {} @@ -8856,13 +18698,14 @@ 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" +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] = {} @@ -8874,12 +18717,13 @@ 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" +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] = {} @@ -8891,12 +18735,13 @@ 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" +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] = {} @@ -8911,14 +18756,15 @@ 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" 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] = {} @@ -8936,13 +18782,14 @@ 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" +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] = {} @@ -8954,13 +18801,14 @@ 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" +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] = {} @@ -8972,12 +18820,13 @@ 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" +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] = {} @@ -8989,12 +18838,13 @@ 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" +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] = {} @@ -9006,13 +18856,13 @@ 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" 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"] = {} @@ -9025,13 +18875,13 @@ 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" 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"] = {} @@ -9041,12 +18891,13 @@ 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" +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] = {} @@ -9055,12 +18906,13 @@ 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" +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] = {} @@ -9072,13 +18924,14 @@ 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" +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] = {} @@ -9090,13 +18943,14 @@ 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" +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] = {} @@ -9114,13 +18968,14 @@ 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"] = "...)" +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] = {} @@ -9138,12 +18993,13 @@ 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" +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] = {} @@ -9167,14 +19023,14 @@ 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" +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"] = {} @@ -9201,14 +19057,14 @@ 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" +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"] = {} @@ -9218,12 +19074,13 @@ 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" +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] = {} @@ -9238,14 +19095,14 @@ 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" +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"] = {} @@ -9261,14 +19118,14 @@ 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" +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"] = {} @@ -9281,12 +19138,13 @@ 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" +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] = {} @@ -9301,13 +19159,14 @@ 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" +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] = {} @@ -9316,12 +19175,13 @@ 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" +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] = {} @@ -9330,12 +19190,13 @@ 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" +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] = {} @@ -9350,14 +19211,15 @@ 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"] = "...)" 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] = {} @@ -9369,13 +19231,14 @@ 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" +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] = {} @@ -9390,14 +19253,15 @@ 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" 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] = {} @@ -9409,13 +19273,14 @@ 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" +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] = {} @@ -9427,12 +19292,13 @@ 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" +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] = {} @@ -9444,12 +19310,13 @@ 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" +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] = {} @@ -9470,16 +19337,16 @@ 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" 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"] = {} @@ -9498,14 +19365,14 @@ 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" +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"] = {} @@ -9515,12 +19382,13 @@ 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" +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] = {} @@ -9529,12 +19397,13 @@ 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" +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] = {} @@ -9543,12 +19412,13 @@ 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" +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] = {} @@ -9560,12 +19430,13 @@ 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" +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] = {} @@ -9580,14 +19451,15 @@ 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)" 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] = {} @@ -9620,10 +19492,9 @@ 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)" @@ -9632,10 +19503,11 @@ 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"] = {} @@ -9668,10 +19540,9 @@ 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)" @@ -9679,10 +19550,11 @@ 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"] = {} @@ -9716,10 +19588,9 @@ 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)" @@ -9728,10 +19599,11 @@ 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"] = {} @@ -9764,10 +19636,9 @@ 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)" @@ -9775,10 +19646,11 @@ 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"] = {} @@ -9788,12 +19660,13 @@ 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" +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] = {} @@ -9802,12 +19675,13 @@ 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" +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] = {} @@ -9816,12 +19690,13 @@ 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" +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] = {} @@ -9830,12 +19705,13 @@ 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" +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] = {} @@ -9844,12 +19720,13 @@ 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" +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] = {} @@ -9858,12 +19735,13 @@ 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" +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] = {} @@ -9875,13 +19753,14 @@ 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" +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] = {} @@ -9893,13 +19772,14 @@ 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" +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] = {} @@ -9908,12 +19788,13 @@ 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" +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] = {} @@ -9931,14 +19812,15 @@ 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)" 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] = {} @@ -9950,12 +19832,13 @@ 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" +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] = {} @@ -9967,12 +19850,13 @@ 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" +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] = {} @@ -9990,12 +19874,13 @@ 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" +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] = {} @@ -10007,12 +19892,13 @@ 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" +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] = {} @@ -10024,13 +19910,13 @@ 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" 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"] = {} @@ -10043,13 +19929,13 @@ 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" 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"] = {} @@ -10059,13 +19945,13 @@ 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" 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"] = {} @@ -10075,13 +19961,13 @@ 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" 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] @@ -10096,12 +19982,13 @@ 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" +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] = {} @@ -10116,13 +20003,13 @@ 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" 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"] = {} @@ -10135,13 +20022,13 @@ 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" 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"] = {} @@ -10157,13 +20044,13 @@ 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" 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"] = {} @@ -10176,13 +20063,13 @@ 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" 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"] = {} @@ -10195,13 +20082,14 @@ 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" +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] = {} @@ -10216,13 +20104,13 @@ 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" 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"] = {} @@ -10238,13 +20126,13 @@ 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" 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"] = {} @@ -10254,12 +20142,13 @@ 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" +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] = {} @@ -10271,13 +20160,14 @@ 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" +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] = {} @@ -10292,14 +20182,15 @@ 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" 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] = {} @@ -10311,12 +20202,13 @@ 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" +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] = {} @@ -10328,13 +20220,14 @@ 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" +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] = {} @@ -10355,16 +20248,16 @@ 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" 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"] = {} @@ -10383,15 +20276,15 @@ 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)" 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"] = {} @@ -10401,12 +20294,13 @@ 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" +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] = {} @@ -10428,13 +20322,14 @@ 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" +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] = {} @@ -10446,12 +20341,13 @@ 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" +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] = {} @@ -10463,12 +20359,13 @@ 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" +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] = {} @@ -10483,12 +20380,13 @@ 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" +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] = {} @@ -10503,12 +20401,13 @@ 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" +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] = {} @@ -10520,12 +20419,13 @@ 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" +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] = {} @@ -10537,12 +20437,13 @@ 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" +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] = {} @@ -10554,12 +20455,13 @@ 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" +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] = {} @@ -10571,12 +20473,13 @@ 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" +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] = {} @@ -10588,12 +20491,13 @@ 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" +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] = {} @@ -10614,13 +20518,14 @@ 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" +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] = {} @@ -10629,12 +20534,13 @@ 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" +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] = {} @@ -10643,12 +20549,13 @@ 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" +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] = {} @@ -10660,13 +20567,14 @@ 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" +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] = {} @@ -10678,12 +20586,13 @@ 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" +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] = {} @@ -10698,13 +20607,14 @@ 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" +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] = {} @@ -10716,12 +20626,13 @@ 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" +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] = {} @@ -10736,13 +20647,14 @@ 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" +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] = {} @@ -10754,12 +20666,13 @@ 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" +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] = {} @@ -10768,12 +20681,13 @@ 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" +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] = {} @@ -10791,14 +20705,15 @@ 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)" 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] = {} @@ -10813,13 +20728,14 @@ 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" +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] = {} @@ -10840,14 +20756,15 @@ 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)" 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] = {} @@ -10862,13 +20779,14 @@ 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" +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] = {} @@ -10880,13 +20798,14 @@ 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" +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] = {} @@ -10898,12 +20817,13 @@ 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" +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] = {} @@ -10915,12 +20835,13 @@ 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" +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] = {} @@ -10932,12 +20853,13 @@ 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" +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] = {} @@ -10949,12 +20871,13 @@ 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" +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] = {} @@ -10969,13 +20892,14 @@ 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"] = "...)" +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] = {} @@ -10990,12 +20914,13 @@ 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" +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] = {} @@ -11010,14 +20935,14 @@ 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" +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"] = {} @@ -11033,14 +20958,14 @@ 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" +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"] = {} @@ -11050,13 +20975,13 @@ 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" 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"] = {} @@ -11066,13 +20991,13 @@ 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" 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"] = {} @@ -11085,12 +21010,13 @@ 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" +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] = {} @@ -11105,14 +21031,14 @@ 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" +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"] = {} @@ -11128,14 +21054,14 @@ 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" +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"] = {} @@ -11151,14 +21077,14 @@ 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" +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"] = {} @@ -11174,14 +21100,14 @@ 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" +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"] = {} @@ -11194,13 +21120,14 @@ 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" +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] = {} @@ -11212,13 +21139,14 @@ 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" +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] = {} @@ -11230,12 +21158,13 @@ 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" +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] = {} @@ -11247,13 +21176,14 @@ 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" +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] = {} @@ -11265,13 +21195,14 @@ 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" +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] = {} @@ -11283,12 +21214,13 @@ 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" +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] = {} @@ -11297,12 +21229,13 @@ 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" +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] = {} @@ -11326,15 +21259,16 @@ 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" 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] = {} @@ -11361,14 +21295,15 @@ 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" 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] = {} @@ -11395,14 +21330,15 @@ 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" 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] = {} @@ -11429,14 +21365,15 @@ 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" 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] = {} @@ -11463,14 +21400,15 @@ 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" 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] = {} @@ -11494,13 +21432,14 @@ 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" +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] = {} @@ -11524,13 +21463,14 @@ 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" +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] = {} @@ -11554,13 +21494,14 @@ 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" +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] = {} @@ -11584,13 +21525,14 @@ 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" +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] = {} @@ -11620,14 +21562,15 @@ 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" 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] = {} @@ -11660,14 +21603,15 @@ 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" 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] = {} @@ -11679,12 +21623,13 @@ 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" +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] = {} @@ -11693,12 +21638,13 @@ 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" +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] = {} @@ -11710,13 +21656,14 @@ 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" +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] = {} @@ -11728,13 +21675,14 @@ 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" +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] = {} @@ -11746,13 +21694,14 @@ 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" +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] = {} @@ -11767,13 +21716,14 @@ 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"] = "...)" +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] = {} @@ -11791,13 +21741,14 @@ 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"] = "...)" +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] = {} @@ -11815,12 +21766,13 @@ 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" +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] = {} @@ -11835,13 +21787,14 @@ 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"] = "...)" +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] = {} @@ -11856,12 +21809,13 @@ 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" +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] = {} @@ -11876,13 +21830,14 @@ 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" +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] = {} @@ -11897,12 +21852,13 @@ 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" +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] = {} @@ -11917,13 +21873,14 @@ 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"] = "...)" +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] = {} @@ -11938,12 +21895,13 @@ 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" +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] = {} @@ -11952,12 +21910,13 @@ 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" +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] = {} @@ -11969,13 +21928,13 @@ 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" 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"] = {} @@ -11991,14 +21950,14 @@ 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"] = "...)" +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"] = {} @@ -12014,14 +21973,14 @@ 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"] = "...)" +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] @@ -12038,14 +21997,14 @@ 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" +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"] = {} @@ -12064,14 +22023,14 @@ 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"] = "...)" +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"] = {} @@ -12090,14 +22049,14 @@ 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"] = "...)" +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] @@ -12120,13 +22079,13 @@ 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" 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"] = {} @@ -12145,13 +22104,13 @@ 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" 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"] = {} @@ -12170,13 +22129,13 @@ 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" 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"] = {} @@ -12192,13 +22151,13 @@ 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" 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"] = {} @@ -12208,12 +22167,13 @@ 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" +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] = {} @@ -12225,13 +22185,13 @@ 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" 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"] = {} @@ -12241,14 +22201,14 @@ 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" +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"] = {} @@ -12261,13 +22221,14 @@ 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" +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] = {} @@ -12297,14 +22258,15 @@ 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" 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] = {} @@ -12331,13 +22293,14 @@ 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" +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] = {} @@ -12370,14 +22333,15 @@ 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" 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] = {} @@ -12392,13 +22356,13 @@ 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" 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"] = {} @@ -12411,13 +22375,13 @@ 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" 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"] = {} @@ -12430,13 +22394,13 @@ 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" 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"] = {} @@ -12452,14 +22416,14 @@ 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" +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..9094d77 100644 --- a/generator/output/impl_definitions.json +++ b/generator/output/impl_definitions.json @@ -15,10 +15,9 @@ "argsoriginal": "(GLFWwindow* window,unsigned int c)", "call_args": "(window,c)", "cimguiname": "ImGui_ImplGlfw_CharCallback", - "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_CharCallback", - "location": "imgui_impl_glfw", + "ov_cimguiname": "ImGui_ImplGlfw_CharCallback", "ret": "void", "signature": "(GLFWwindow*,unsigned int)", "stname": "" @@ -40,10 +39,9 @@ "argsoriginal": "(GLFWwindow* window,bool install_callbacks)", "call_args": "(window,install_callbacks)", "cimguiname": "ImGui_ImplGlfw_InitForOpenGL", - "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_InitForOpenGL", - "location": "imgui_impl_glfw", + "ov_cimguiname": "ImGui_ImplGlfw_InitForOpenGL", "ret": "bool", "signature": "(GLFWwindow*,bool)", "stname": "" @@ -65,10 +63,9 @@ "argsoriginal": "(GLFWwindow* window,bool install_callbacks)", "call_args": "(window,install_callbacks)", "cimguiname": "ImGui_ImplGlfw_InitForVulkan", - "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_InitForVulkan", - "location": "imgui_impl_glfw", + "ov_cimguiname": "ImGui_ImplGlfw_InitForVulkan", "ret": "bool", "signature": "(GLFWwindow*,bool)", "stname": "" @@ -102,10 +99,9 @@ "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", - "location": "imgui_impl_glfw", + "ov_cimguiname": "ImGui_ImplGlfw_KeyCallback", "ret": "void", "signature": "(GLFWwindow*,int,int,int,int)", "stname": "" @@ -135,10 +131,9 @@ "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", - "location": "imgui_impl_glfw", + "ov_cimguiname": "ImGui_ImplGlfw_MouseButtonCallback", "ret": "void", "signature": "(GLFWwindow*,int,int,int)", "stname": "" @@ -151,10 +146,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplGlfw_NewFrame", - "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_NewFrame", - "location": "imgui_impl_glfw", + "ov_cimguiname": "ImGui_ImplGlfw_NewFrame", "ret": "void", "signature": "()", "stname": "" @@ -180,10 +174,9 @@ "argsoriginal": "(GLFWwindow* window,double xoffset,double yoffset)", "call_args": "(window,xoffset,yoffset)", "cimguiname": "ImGui_ImplGlfw_ScrollCallback", - "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_ScrollCallback", - "location": "imgui_impl_glfw", + "ov_cimguiname": "ImGui_ImplGlfw_ScrollCallback", "ret": "void", "signature": "(GLFWwindow*,double,double)", "stname": "" @@ -196,10 +189,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplGlfw_Shutdown", - "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_Shutdown", - "location": "imgui_impl_glfw", + "ov_cimguiname": "ImGui_ImplGlfw_Shutdown", "ret": "void", "signature": "()", "stname": "" @@ -212,10 +204,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL2_CreateDeviceObjects", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_CreateDeviceObjects", - "location": "imgui_impl_opengl2", + "ov_cimguiname": "ImGui_ImplOpenGL2_CreateDeviceObjects", "ret": "bool", "signature": "()", "stname": "" @@ -228,10 +219,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL2_CreateFontsTexture", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_CreateFontsTexture", - "location": "imgui_impl_opengl2", + "ov_cimguiname": "ImGui_ImplOpenGL2_CreateFontsTexture", "ret": "bool", "signature": "()", "stname": "" @@ -244,10 +234,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", - "location": "imgui_impl_opengl2", + "ov_cimguiname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", "ret": "void", "signature": "()", "stname": "" @@ -260,10 +249,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL2_DestroyFontsTexture", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_DestroyFontsTexture", - "location": "imgui_impl_opengl2", + "ov_cimguiname": "ImGui_ImplOpenGL2_DestroyFontsTexture", "ret": "void", "signature": "()", "stname": "" @@ -276,10 +264,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL2_Init", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_Init", - "location": "imgui_impl_opengl2", + "ov_cimguiname": "ImGui_ImplOpenGL2_Init", "ret": "bool", "signature": "()", "stname": "" @@ -292,10 +279,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL2_NewFrame", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_NewFrame", - "location": "imgui_impl_opengl2", + "ov_cimguiname": "ImGui_ImplOpenGL2_NewFrame", "ret": "void", "signature": "()", "stname": "" @@ -313,10 +299,9 @@ "argsoriginal": "(ImDrawData* draw_data)", "call_args": "(draw_data)", "cimguiname": "ImGui_ImplOpenGL2_RenderDrawData", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_RenderDrawData", - "location": "imgui_impl_opengl2", + "ov_cimguiname": "ImGui_ImplOpenGL2_RenderDrawData", "ret": "void", "signature": "(ImDrawData*)", "stname": "" @@ -329,10 +314,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL2_Shutdown", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_Shutdown", - "location": "imgui_impl_opengl2", + "ov_cimguiname": "ImGui_ImplOpenGL2_Shutdown", "ret": "void", "signature": "()", "stname": "" @@ -345,10 +329,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL3_CreateDeviceObjects", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL3_CreateDeviceObjects", - "location": "imgui_impl_opengl3", + "ov_cimguiname": "ImGui_ImplOpenGL3_CreateDeviceObjects", "ret": "bool", "signature": "()", "stname": "" @@ -361,10 +344,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL3_CreateFontsTexture", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL3_CreateFontsTexture", - "location": "imgui_impl_opengl3", + "ov_cimguiname": "ImGui_ImplOpenGL3_CreateFontsTexture", "ret": "bool", "signature": "()", "stname": "" @@ -377,10 +359,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", - "location": "imgui_impl_opengl3", + "ov_cimguiname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", "ret": "void", "signature": "()", "stname": "" @@ -393,10 +374,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL3_DestroyFontsTexture", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL3_DestroyFontsTexture", - "location": "imgui_impl_opengl3", + "ov_cimguiname": "ImGui_ImplOpenGL3_DestroyFontsTexture", "ret": "void", "signature": "()", "stname": "" @@ -414,12 +394,11 @@ "argsoriginal": "(const char* glsl_version=NULL)", "call_args": "(glsl_version)", "cimguiname": "ImGui_ImplOpenGL3_Init", - "comment": "", "defaults": { "glsl_version": "NULL" }, "funcname": "ImGui_ImplOpenGL3_Init", - "location": "imgui_impl_opengl3", + "ov_cimguiname": "ImGui_ImplOpenGL3_Init", "ret": "bool", "signature": "(const char*)", "stname": "" @@ -432,10 +411,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL3_NewFrame", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL3_NewFrame", - "location": "imgui_impl_opengl3", + "ov_cimguiname": "ImGui_ImplOpenGL3_NewFrame", "ret": "void", "signature": "()", "stname": "" @@ -453,10 +431,9 @@ "argsoriginal": "(ImDrawData* draw_data)", "call_args": "(draw_data)", "cimguiname": "ImGui_ImplOpenGL3_RenderDrawData", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL3_RenderDrawData", - "location": "imgui_impl_opengl3", + "ov_cimguiname": "ImGui_ImplOpenGL3_RenderDrawData", "ret": "void", "signature": "(ImDrawData*)", "stname": "" @@ -469,10 +446,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL3_Shutdown", - "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL3_Shutdown", - "location": "imgui_impl_opengl3", + "ov_cimguiname": "ImGui_ImplOpenGL3_Shutdown", "ret": "void", "signature": "()", "stname": "" @@ -494,10 +470,9 @@ "argsoriginal": "(SDL_Window* window,void* sdl_gl_context)", "call_args": "(window,sdl_gl_context)", "cimguiname": "ImGui_ImplSDL2_InitForOpenGL", - "comment": "", "defaults": [], "funcname": "ImGui_ImplSDL2_InitForOpenGL", - "location": "imgui_impl_sdl", + "ov_cimguiname": "ImGui_ImplSDL2_InitForOpenGL", "ret": "bool", "signature": "(SDL_Window*,void*)", "stname": "" @@ -515,10 +490,9 @@ "argsoriginal": "(SDL_Window* window)", "call_args": "(window)", "cimguiname": "ImGui_ImplSDL2_InitForVulkan", - "comment": "", "defaults": [], "funcname": "ImGui_ImplSDL2_InitForVulkan", - "location": "imgui_impl_sdl", + "ov_cimguiname": "ImGui_ImplSDL2_InitForVulkan", "ret": "bool", "signature": "(SDL_Window*)", "stname": "" @@ -536,10 +510,9 @@ "argsoriginal": "(SDL_Window* window)", "call_args": "(window)", "cimguiname": "ImGui_ImplSDL2_NewFrame", - "comment": "", "defaults": [], "funcname": "ImGui_ImplSDL2_NewFrame", - "location": "imgui_impl_sdl", + "ov_cimguiname": "ImGui_ImplSDL2_NewFrame", "ret": "void", "signature": "(SDL_Window*)", "stname": "" @@ -557,10 +530,9 @@ "argsoriginal": "(const SDL_Event* event)", "call_args": "(event)", "cimguiname": "ImGui_ImplSDL2_ProcessEvent", - "comment": "", "defaults": [], "funcname": "ImGui_ImplSDL2_ProcessEvent", - "location": "imgui_impl_sdl", + "ov_cimguiname": "ImGui_ImplSDL2_ProcessEvent", "ret": "bool", "signature": "(const SDL_Event*)", "stname": "" @@ -573,10 +545,9 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplSDL2_Shutdown", - "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..f27ecb1 100644 --- a/generator/output/impl_definitions.lua +++ b/generator/output/impl_definitions.lua @@ -12,10 +12,9 @@ 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]["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"] = "" @@ -33,10 +32,9 @@ 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]["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"] = "" @@ -54,10 +52,9 @@ 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]["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"] = "" @@ -84,10 +81,9 @@ 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]["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"] = "" @@ -111,10 +107,9 @@ 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]["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"] = "" @@ -126,10 +121,9 @@ 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]["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"] = "" @@ -150,10 +144,9 @@ 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]["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"] = "" @@ -165,10 +158,9 @@ 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]["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"] = "" @@ -180,10 +172,9 @@ 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]["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"] = "" @@ -195,10 +186,9 @@ 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]["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"] = "" @@ -210,10 +200,9 @@ 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]["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"] = "" @@ -225,10 +214,9 @@ 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]["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"] = "" @@ -240,10 +228,9 @@ 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]["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"] = "" @@ -255,10 +242,9 @@ 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]["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"] = "" @@ -273,10 +259,9 @@ 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]["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"] = "" @@ -288,10 +273,9 @@ 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]["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"] = "" @@ -303,10 +287,9 @@ 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]["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"] = "" @@ -318,10 +301,9 @@ 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]["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"] = "" @@ -333,10 +315,9 @@ 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]["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"] = "" @@ -348,10 +329,9 @@ 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]["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"] = "" @@ -366,11 +346,10 @@ 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" -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"] = "" @@ -382,10 +361,9 @@ 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]["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"] = "" @@ -400,10 +378,9 @@ 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]["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"] = "" @@ -415,10 +392,9 @@ 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]["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"] = "" @@ -436,10 +412,9 @@ 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]["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"] = "" @@ -454,10 +429,9 @@ 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]["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"] = "" @@ -472,10 +446,9 @@ 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]["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"] = "" @@ -490,10 +463,9 @@ 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]["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"] = "" @@ -505,10 +477,9 @@ 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]["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 ee9f7bb..84a19f2 100644 --- a/generator/output/overloads.txt +++ b/generator/output/overloads.txt @@ -3,9 +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) +TextRange_TextRange 2 +1 nil TextRange_TextRange () +2 nil TextRange_TextRangeStr (const char*,const char*) 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) @@ -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_const ()const 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) +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) @@ -35,43 +44,64 @@ 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_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) 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_const ()const +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*) -TextRange_TextRange 2 -1 nil TextRange_TextRange () -2 nil TextRange_TextRangeStr (const char*,const char*) +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*) +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_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) @@ -84,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) @@ -108,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) -77 overloaded \ No newline at end of file +91 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..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" @@ -2739,15 +2744,14 @@ "type": "float" } ], - "ImVector": [], "Pair": [ { "name": "key", "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 75cbdb2..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" @@ -2120,14 +2124,13 @@ 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"]["Pair"] = {} 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" diff --git a/imgui b/imgui index 7a5058e..3c15dff 160000 --- a/imgui +++ b/imgui @@ -1 +1 @@ -Subproject commit 7a5058e3bfea4149acef2ad98d8fdd62605a0f4c +Subproject commit 3c15dffc944419eb4bb17984548468270ca90486 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