From 23f2a1f026722a9328c3c5ca84e1683e2bc6715b Mon Sep 17 00:00:00 2001 From: sonoro1234 Date: Tue, 12 Feb 2019 19:40:00 +0100 Subject: [PATCH] get template typenames generated --- cimgui.cpp | 6 +- cimgui.h | 94 +- generator/generator2.lua | 1 + generator/output/cimgui.cpp | 6 +- generator/output/cimgui.h | 94 +- generator/output/cimgui_impl.h | 5 +- generator/output/definitions.json | 1997 +++++++++++++++++------- generator/output/definitions.lua | 1929 +++++++++++++++++------ generator/output/impl_definitions.json | 58 +- generator/output/impl_definitions.lua | 58 +- generator/output/overloads.txt | 5 +- generator/output/typedefs_dict.json | 1 + generator/output/typedefs_dict.lua | 1 + 13 files changed, 3049 insertions(+), 1206 deletions(-) diff --git a/cimgui.cpp b/cimgui.cpp index 473a04e..36cad03 100644 --- a/cimgui.cpp +++ b/cimgui.cpp @@ -1435,6 +1435,10 @@ CIMGUI_API void ImVector_destroy(ImVector* self) { IM_DELETE(self); } +CIMGUI_API ImVector* ImVector_ImVectorVector_(const ImVector_ src) +{ + return IM_NEW(ImVector)(src); +} CIMGUI_API bool ImVector_empty(ImVector* self) { return self->empty(); @@ -1487,7 +1491,7 @@ CIMGUI_API const T* ImVector_back(ImVector* self) { return &self->back(); } -CIMGUI_API void ImVector_swap(ImVector* self,ImVector_T rhs) +CIMGUI_API void ImVector_swap(ImVector* self,ImVector_ rhs) { return self->swap(rhs); } diff --git a/cimgui.h b/cimgui.h index 7128493..98a8fdf 100644 --- a/cimgui.h +++ b/cimgui.h @@ -43,9 +43,9 @@ typedef struct ImColor_Simple { ImVec4_Simple Value;} ImColor_Simple; #ifdef CIMGUI_DEFINE_ENUMS_AND_STRUCTS typedef struct CustomRect CustomRect; -typedef unsigned short ImDrawIdx;; typedef struct Pair Pair; typedef struct TextRange TextRange; +typedef struct ImVector ImVector; typedef struct ImVec4 ImVec4; typedef struct ImVec2 ImVec2; typedef struct ImGuiTextFilter ImGuiTextFilter; @@ -71,6 +71,7 @@ typedef struct ImDrawList ImDrawList; typedef struct ImDrawData ImDrawData; typedef struct ImDrawCmd ImDrawCmd; typedef struct ImDrawChannel ImDrawChannel; + struct ImDrawChannel; struct ImDrawCmd; struct ImDrawData; @@ -128,6 +129,26 @@ typedef signed int ImS32; typedef unsigned int ImU32; typedef int64_t ImS64; typedef uint64_t ImU64; +typedef void (*ImDrawCallback)(const ImDrawList* parent_list, const ImDrawCmd* cmd); +typedef unsigned short ImDrawIdx;typedef struct ImVector{int Size;int Capacity;void* Data;} ImVector; +typedef struct ImVector_float {int Size;int Capacity;float* Data;} ImVector_float; +typedef struct ImVector_ImWchar {int Size;int Capacity;ImWchar* Data;} ImVector_ImWchar; +typedef struct ImVector_ImFontConfig {int Size;int Capacity;ImFontConfig* Data;} ImVector_ImFontConfig; +typedef struct ImVector_ImFontGlyph {int Size;int Capacity;ImFontGlyph* Data;} ImVector_ImFontGlyph; +typedef struct ImVector_TextRange {int Size;int Capacity;TextRange* Data;} ImVector_TextRange; +typedef struct ImVector_CustomRect {int Size;int Capacity;CustomRect* Data;} ImVector_CustomRect; +typedef struct ImVector_ImDrawChannel {int Size;int Capacity;ImDrawChannel* Data;} ImVector_ImDrawChannel; +typedef struct ImVector_char {int Size;int Capacity;char* Data;} ImVector_char; +typedef struct ImVector_ImTextureID {int Size;int Capacity;ImTextureID* Data;} ImVector_ImTextureID; +typedef struct ImVector_ImDrawVert {int Size;int Capacity;ImDrawVert* Data;} ImVector_ImDrawVert; +typedef struct ImVector_int {int Size;int Capacity;int* Data;} ImVector_int; +typedef struct ImVector_Pair {int Size;int Capacity;Pair* Data;} ImVector_Pair; +typedef struct ImVector_ImFontPtr {int Size;int Capacity;ImFont** Data;} ImVector_ImFontPtr; +typedef struct ImVector_ImVec4 {int Size;int Capacity;ImVec4* Data;} ImVector_ImVec4; +typedef struct ImVector_ImDrawCmd {int Size;int Capacity;ImDrawCmd* Data;} ImVector_ImDrawCmd; +typedef struct ImVector_ImDrawIdx {int Size;int Capacity;ImDrawIdx* Data;} ImVector_ImDrawIdx; +typedef struct ImVector_ImVec2 {int Size;int Capacity;ImVec2* Data;} ImVector_ImVec2; + struct ImVec2 { float x, y; @@ -502,26 +523,16 @@ enum ImGuiCond_ ImGuiCond_FirstUseEver = 1 << 2, ImGuiCond_Appearing = 1 << 3 }; +template struct ImVector -typedef struct ImVector{int Size;int Capacity;void* Data;} ImVector; -typedef struct ImVector_float {int Size;int Capacity;float* Data;} ImVector_float; -typedef struct ImVector_ImWchar {int Size;int Capacity;ImWchar* Data;} ImVector_ImWchar; -typedef struct ImVector_ImFontConfig {int Size;int Capacity;ImFontConfig* Data;} ImVector_ImFontConfig; -typedef struct ImVector_ImFontGlyph {int Size;int Capacity;ImFontGlyph* Data;} ImVector_ImFontGlyph; -typedef struct ImVector_TextRange {int Size;int Capacity;TextRange* Data;} ImVector_TextRange; -typedef struct ImVector_T {int Size;int Capacity;T* Data;} ImVector_T; -typedef struct ImVector_CustomRect {int Size;int Capacity;CustomRect* Data;} ImVector_CustomRect; -typedef struct ImVector_ImDrawChannel {int Size;int Capacity;ImDrawChannel* Data;} ImVector_ImDrawChannel; -typedef struct ImVector_char {int Size;int Capacity;char* Data;} ImVector_char; -typedef struct ImVector_ImTextureID {int Size;int Capacity;ImTextureID* Data;} ImVector_ImTextureID; -typedef struct ImVector_ImDrawVert {int Size;int Capacity;ImDrawVert* Data;} ImVector_ImDrawVert; -typedef struct ImVector_int {int Size;int Capacity;int* Data;} ImVector_int; -typedef struct ImVector_Pair {int Size;int Capacity;Pair* Data;} ImVector_Pair; -typedef struct ImVector_ImFontPtr {int Size;int Capacity;ImFont** Data;} ImVector_ImFontPtr; -typedef struct ImVector_ImVec4 {int Size;int Capacity;ImVec4* Data;} ImVector_ImVec4; -typedef struct ImVector_ImDrawCmd {int Size;int Capacity;ImDrawCmd* Data;} ImVector_ImDrawCmd; -typedef struct ImVector_ImDrawIdx {int Size;int Capacity;ImDrawIdx* Data;} ImVector_ImDrawIdx; -typedef struct ImVector_ImVec2 {int Size;int Capacity;ImVec2* Data;} ImVector_ImVec2; +{ + int Size; + int Capacity; + T* Data; + typedef T value_type; + typedef value_type* iterator; + typedef const value_type* const_iterator; +}; struct ImGuiStyle { float Alpha; @@ -698,7 +709,6 @@ struct ImColor { ImVec4 Value; }; -typedef void (*ImDrawCallback)(const ImDrawList* parent_list, const ImDrawCmd* cmd); struct ImDrawCmd { unsigned int ElemCount; @@ -837,6 +847,16 @@ struct ImFont float Ascent, Descent; bool DirtyLookupTables; int MetricsTotalSurface; +}; + struct TextRange + { + const char* b; + const char* e; +}; + struct Pair + { + ImGuiID key; + union { int val_i; float val_f; void* val_p; }; }; struct CustomRect { @@ -846,18 +866,7 @@ struct ImFont float GlyphAdvanceX; ImVec2 GlyphOffset; ImFont* Font; - }; - struct TextRange - { - const char* b; - const char* e; - }; - struct Pair - { - ImGuiID key; - union { int val_i; float val_f; void* val_p; }; - }; - +}; #else struct GLFWwindow; struct SDL_Window; @@ -890,9 +899,23 @@ inline ImColor_Simple ImColorToSimple(ImColor col) typedef ImFontAtlas::CustomRect CustomRect; typedef ImGuiTextFilter::TextRange TextRange; typedef ImGuiStorage::Pair Pair; -typedef ImVector ImVector_T; +typedef ImVector ImVector_float; typedef ImVector ImVector_ImWchar; +typedef ImVector ImVector_ImFontConfig; +typedef ImVector ImVector_ImFontGlyph; typedef ImVector ImVector_TextRange; +typedef ImVector ImVector_CustomRect; +typedef ImVector ImVector_ImDrawChannel; +typedef ImVector ImVector_char; +typedef ImVector ImVector_ImTextureID; +typedef ImVector ImVector_ImDrawVert; +typedef ImVector ImVector_int; +typedef ImVector ImVector_Pair; +typedef ImVector ImVector_ImFontPtr; +typedef ImVector ImVector_ImVec4; +typedef ImVector ImVector_ImDrawCmd; +typedef ImVector ImVector_ImDrawIdx; +typedef ImVector ImVector_ImVec2; #endif //CIMGUI_DEFINE_ENUMS_AND_STRUCTS CIMGUI_API ImVec2* ImVec2_ImVec2(void); CIMGUI_API void ImVec2_destroy(ImVec2* self); @@ -1242,6 +1265,7 @@ CIMGUI_API void* igMemAlloc(size_t size); CIMGUI_API void igMemFree(void* ptr); CIMGUI_API ImVector* ImVector_ImVector(void); CIMGUI_API void ImVector_destroy(ImVector* self); +CIMGUI_API ImVector* ImVector_ImVectorVector_(const ImVector_ src); CIMGUI_API bool ImVector_empty(ImVector* self); CIMGUI_API int ImVector_size(ImVector* self); CIMGUI_API int ImVector_size_in_bytes(ImVector* self); @@ -1255,7 +1279,7 @@ CIMGUI_API const T* ImVector_front(ImVector* self); CIMGUI_API const T* ImVector_front(ImVector* self); CIMGUI_API const T* ImVector_back(ImVector* self); CIMGUI_API const T* ImVector_back(ImVector* self); -CIMGUI_API void ImVector_swap(ImVector* self,ImVector_T rhs); +CIMGUI_API void ImVector_swap(ImVector* self,ImVector_ rhs); CIMGUI_API int ImVector__grow_capacity(ImVector* self,int sz); CIMGUI_API void ImVector_resize(ImVector* self,int new_size); CIMGUI_API void ImVector_resizeT(ImVector* self,int new_size,const T v); diff --git a/generator/generator2.lua b/generator/generator2.lua index 5e69a8d..a2b9fd4 100644 --- a/generator/generator2.lua +++ b/generator/generator2.lua @@ -450,6 +450,7 @@ cpp2ffi.prtable(parser.typenames) local outpre,outpost = parser:gen_structs_and_enums() --parser.templates get completely defined here --cpp2ffi.prtable(parser.templates) + local outtab = {} generate_templates(outtab,parser.templates) local cstructsstr = outpre..table.concat(outtab,"")..outpost diff --git a/generator/output/cimgui.cpp b/generator/output/cimgui.cpp index 473a04e..36cad03 100644 --- a/generator/output/cimgui.cpp +++ b/generator/output/cimgui.cpp @@ -1435,6 +1435,10 @@ CIMGUI_API void ImVector_destroy(ImVector* self) { IM_DELETE(self); } +CIMGUI_API ImVector* ImVector_ImVectorVector_(const ImVector_ src) +{ + return IM_NEW(ImVector)(src); +} CIMGUI_API bool ImVector_empty(ImVector* self) { return self->empty(); @@ -1487,7 +1491,7 @@ CIMGUI_API const T* ImVector_back(ImVector* self) { return &self->back(); } -CIMGUI_API void ImVector_swap(ImVector* self,ImVector_T rhs) +CIMGUI_API void ImVector_swap(ImVector* self,ImVector_ rhs) { return self->swap(rhs); } diff --git a/generator/output/cimgui.h b/generator/output/cimgui.h index 7128493..98a8fdf 100644 --- a/generator/output/cimgui.h +++ b/generator/output/cimgui.h @@ -43,9 +43,9 @@ typedef struct ImColor_Simple { ImVec4_Simple Value;} ImColor_Simple; #ifdef CIMGUI_DEFINE_ENUMS_AND_STRUCTS typedef struct CustomRect CustomRect; -typedef unsigned short ImDrawIdx;; typedef struct Pair Pair; typedef struct TextRange TextRange; +typedef struct ImVector ImVector; typedef struct ImVec4 ImVec4; typedef struct ImVec2 ImVec2; typedef struct ImGuiTextFilter ImGuiTextFilter; @@ -71,6 +71,7 @@ typedef struct ImDrawList ImDrawList; typedef struct ImDrawData ImDrawData; typedef struct ImDrawCmd ImDrawCmd; typedef struct ImDrawChannel ImDrawChannel; + struct ImDrawChannel; struct ImDrawCmd; struct ImDrawData; @@ -128,6 +129,26 @@ typedef signed int ImS32; typedef unsigned int ImU32; typedef int64_t ImS64; typedef uint64_t ImU64; +typedef void (*ImDrawCallback)(const ImDrawList* parent_list, const ImDrawCmd* cmd); +typedef unsigned short ImDrawIdx;typedef struct ImVector{int Size;int Capacity;void* Data;} ImVector; +typedef struct ImVector_float {int Size;int Capacity;float* Data;} ImVector_float; +typedef struct ImVector_ImWchar {int Size;int Capacity;ImWchar* Data;} ImVector_ImWchar; +typedef struct ImVector_ImFontConfig {int Size;int Capacity;ImFontConfig* Data;} ImVector_ImFontConfig; +typedef struct ImVector_ImFontGlyph {int Size;int Capacity;ImFontGlyph* Data;} ImVector_ImFontGlyph; +typedef struct ImVector_TextRange {int Size;int Capacity;TextRange* Data;} ImVector_TextRange; +typedef struct ImVector_CustomRect {int Size;int Capacity;CustomRect* Data;} ImVector_CustomRect; +typedef struct ImVector_ImDrawChannel {int Size;int Capacity;ImDrawChannel* Data;} ImVector_ImDrawChannel; +typedef struct ImVector_char {int Size;int Capacity;char* Data;} ImVector_char; +typedef struct ImVector_ImTextureID {int Size;int Capacity;ImTextureID* Data;} ImVector_ImTextureID; +typedef struct ImVector_ImDrawVert {int Size;int Capacity;ImDrawVert* Data;} ImVector_ImDrawVert; +typedef struct ImVector_int {int Size;int Capacity;int* Data;} ImVector_int; +typedef struct ImVector_Pair {int Size;int Capacity;Pair* Data;} ImVector_Pair; +typedef struct ImVector_ImFontPtr {int Size;int Capacity;ImFont** Data;} ImVector_ImFontPtr; +typedef struct ImVector_ImVec4 {int Size;int Capacity;ImVec4* Data;} ImVector_ImVec4; +typedef struct ImVector_ImDrawCmd {int Size;int Capacity;ImDrawCmd* Data;} ImVector_ImDrawCmd; +typedef struct ImVector_ImDrawIdx {int Size;int Capacity;ImDrawIdx* Data;} ImVector_ImDrawIdx; +typedef struct ImVector_ImVec2 {int Size;int Capacity;ImVec2* Data;} ImVector_ImVec2; + struct ImVec2 { float x, y; @@ -502,26 +523,16 @@ enum ImGuiCond_ ImGuiCond_FirstUseEver = 1 << 2, ImGuiCond_Appearing = 1 << 3 }; +template struct ImVector -typedef struct ImVector{int Size;int Capacity;void* Data;} ImVector; -typedef struct ImVector_float {int Size;int Capacity;float* Data;} ImVector_float; -typedef struct ImVector_ImWchar {int Size;int Capacity;ImWchar* Data;} ImVector_ImWchar; -typedef struct ImVector_ImFontConfig {int Size;int Capacity;ImFontConfig* Data;} ImVector_ImFontConfig; -typedef struct ImVector_ImFontGlyph {int Size;int Capacity;ImFontGlyph* Data;} ImVector_ImFontGlyph; -typedef struct ImVector_TextRange {int Size;int Capacity;TextRange* Data;} ImVector_TextRange; -typedef struct ImVector_T {int Size;int Capacity;T* Data;} ImVector_T; -typedef struct ImVector_CustomRect {int Size;int Capacity;CustomRect* Data;} ImVector_CustomRect; -typedef struct ImVector_ImDrawChannel {int Size;int Capacity;ImDrawChannel* Data;} ImVector_ImDrawChannel; -typedef struct ImVector_char {int Size;int Capacity;char* Data;} ImVector_char; -typedef struct ImVector_ImTextureID {int Size;int Capacity;ImTextureID* Data;} ImVector_ImTextureID; -typedef struct ImVector_ImDrawVert {int Size;int Capacity;ImDrawVert* Data;} ImVector_ImDrawVert; -typedef struct ImVector_int {int Size;int Capacity;int* Data;} ImVector_int; -typedef struct ImVector_Pair {int Size;int Capacity;Pair* Data;} ImVector_Pair; -typedef struct ImVector_ImFontPtr {int Size;int Capacity;ImFont** Data;} ImVector_ImFontPtr; -typedef struct ImVector_ImVec4 {int Size;int Capacity;ImVec4* Data;} ImVector_ImVec4; -typedef struct ImVector_ImDrawCmd {int Size;int Capacity;ImDrawCmd* Data;} ImVector_ImDrawCmd; -typedef struct ImVector_ImDrawIdx {int Size;int Capacity;ImDrawIdx* Data;} ImVector_ImDrawIdx; -typedef struct ImVector_ImVec2 {int Size;int Capacity;ImVec2* Data;} ImVector_ImVec2; +{ + int Size; + int Capacity; + T* Data; + typedef T value_type; + typedef value_type* iterator; + typedef const value_type* const_iterator; +}; struct ImGuiStyle { float Alpha; @@ -698,7 +709,6 @@ struct ImColor { ImVec4 Value; }; -typedef void (*ImDrawCallback)(const ImDrawList* parent_list, const ImDrawCmd* cmd); struct ImDrawCmd { unsigned int ElemCount; @@ -837,6 +847,16 @@ struct ImFont float Ascent, Descent; bool DirtyLookupTables; int MetricsTotalSurface; +}; + struct TextRange + { + const char* b; + const char* e; +}; + struct Pair + { + ImGuiID key; + union { int val_i; float val_f; void* val_p; }; }; struct CustomRect { @@ -846,18 +866,7 @@ struct ImFont float GlyphAdvanceX; ImVec2 GlyphOffset; ImFont* Font; - }; - struct TextRange - { - const char* b; - const char* e; - }; - struct Pair - { - ImGuiID key; - union { int val_i; float val_f; void* val_p; }; - }; - +}; #else struct GLFWwindow; struct SDL_Window; @@ -890,9 +899,23 @@ inline ImColor_Simple ImColorToSimple(ImColor col) typedef ImFontAtlas::CustomRect CustomRect; typedef ImGuiTextFilter::TextRange TextRange; typedef ImGuiStorage::Pair Pair; -typedef ImVector ImVector_T; +typedef ImVector ImVector_float; typedef ImVector ImVector_ImWchar; +typedef ImVector ImVector_ImFontConfig; +typedef ImVector ImVector_ImFontGlyph; typedef ImVector ImVector_TextRange; +typedef ImVector ImVector_CustomRect; +typedef ImVector ImVector_ImDrawChannel; +typedef ImVector ImVector_char; +typedef ImVector ImVector_ImTextureID; +typedef ImVector ImVector_ImDrawVert; +typedef ImVector ImVector_int; +typedef ImVector ImVector_Pair; +typedef ImVector ImVector_ImFontPtr; +typedef ImVector ImVector_ImVec4; +typedef ImVector ImVector_ImDrawCmd; +typedef ImVector ImVector_ImDrawIdx; +typedef ImVector ImVector_ImVec2; #endif //CIMGUI_DEFINE_ENUMS_AND_STRUCTS CIMGUI_API ImVec2* ImVec2_ImVec2(void); CIMGUI_API void ImVec2_destroy(ImVec2* self); @@ -1242,6 +1265,7 @@ CIMGUI_API void* igMemAlloc(size_t size); CIMGUI_API void igMemFree(void* ptr); CIMGUI_API ImVector* ImVector_ImVector(void); CIMGUI_API void ImVector_destroy(ImVector* self); +CIMGUI_API ImVector* ImVector_ImVectorVector_(const ImVector_ src); CIMGUI_API bool ImVector_empty(ImVector* self); CIMGUI_API int ImVector_size(ImVector* self); CIMGUI_API int ImVector_size_in_bytes(ImVector* self); @@ -1255,7 +1279,7 @@ CIMGUI_API const T* ImVector_front(ImVector* self); CIMGUI_API const T* ImVector_front(ImVector* self); CIMGUI_API const T* ImVector_back(ImVector* self); CIMGUI_API const T* ImVector_back(ImVector* self); -CIMGUI_API void ImVector_swap(ImVector* self,ImVector_T rhs); +CIMGUI_API void ImVector_swap(ImVector* self,ImVector_ rhs); CIMGUI_API int ImVector__grow_capacity(ImVector* self,int sz); CIMGUI_API void ImVector_resize(ImVector* self,int new_size); CIMGUI_API void ImVector_resizeT(ImVector* self,int new_size,const T v); diff --git a/generator/output/cimgui_impl.h b/generator/output/cimgui_impl.h index 77aba11..2704212 100644 --- a/generator/output/cimgui_impl.h +++ b/generator/output/cimgui_impl.h @@ -1,9 +1,10 @@ typedef struct SDL_Window SDL_Window; typedef struct GLFWwindow GLFWwindow; + struct GLFWwindow; + struct SDL_Window; -typedef union SDL_Event SDL_Event; -CIMGUI_API bool ImGui_ImplGlfw_InitForOpenGL(GLFWwindow* window,bool install_callbacks); +typedef union SDL_Event SDL_Event;CIMGUI_API bool ImGui_ImplGlfw_InitForOpenGL(GLFWwindow* window,bool install_callbacks); CIMGUI_API bool ImGui_ImplGlfw_InitForVulkan(GLFWwindow* window,bool install_callbacks); CIMGUI_API void ImGui_ImplGlfw_Shutdown(); CIMGUI_API void ImGui_ImplGlfw_NewFrame(); diff --git a/generator/output/definitions.json b/generator/output/definitions.json index 8fb9991..04b34a9 100644 --- a/generator/output/definitions.json +++ b/generator/output/definitions.json @@ -10,6 +10,7 @@ "constructor": true, "defaults": [], "funcname": "CustomRect", + "ov_cimguiname": "CustomRect_CustomRect", "signature": "()", "stname": "CustomRect" } @@ -29,6 +30,7 @@ "comment": "", "defaults": [], "funcname": "IsPacked", + "ov_cimguiname": "CustomRect_IsPacked", "ret": "bool", "signature": "()", "stname": "CustomRect" @@ -86,6 +88,7 @@ "a": "1.0f" }, "funcname": "HSV", + "ov_cimguiname": "ImColor_HSV", "ret": "ImColor", "signature": "(float,float,float,float)", "stname": "ImColor" @@ -325,6 +328,7 @@ "a": "1.0f" }, "funcname": "SetHSV", + "ov_cimguiname": "ImColor_SetHSV", "ret": "void", "signature": "(float,float,float,float)", "stname": "ImColor" @@ -360,6 +364,7 @@ "constructor": true, "defaults": [], "funcname": "ImDrawCmd", + "ov_cimguiname": "ImDrawCmd_ImDrawCmd", "signature": "()", "stname": "ImDrawCmd" } @@ -398,6 +403,7 @@ "comment": "", "defaults": [], "funcname": "Clear", + "ov_cimguiname": "ImDrawData_Clear", "ret": "void", "signature": "()", "stname": "ImDrawData" @@ -418,6 +424,7 @@ "comment": "", "defaults": [], "funcname": "DeIndexAllBuffers", + "ov_cimguiname": "ImDrawData_DeIndexAllBuffers", "ret": "void", "signature": "()", "stname": "ImDrawData" @@ -434,6 +441,7 @@ "constructor": true, "defaults": [], "funcname": "ImDrawData", + "ov_cimguiname": "ImDrawData_ImDrawData", "signature": "()", "stname": "ImDrawData" } @@ -457,6 +465,7 @@ "comment": "", "defaults": [], "funcname": "ScaleClipRects", + "ov_cimguiname": "ImDrawData_ScaleClipRects", "ret": "void", "signature": "(const ImVec2)", "stname": "ImDrawData" @@ -526,6 +535,7 @@ "num_segments": "0" }, "funcname": "AddBezierCurve", + "ov_cimguiname": "ImDrawList_AddBezierCurve", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", "stname": "ImDrawList" @@ -554,6 +564,7 @@ "comment": "", "defaults": [], "funcname": "AddCallback", + "ov_cimguiname": "ImDrawList_AddCallback", "ret": "void", "signature": "(ImDrawCallback,void*)", "stname": "ImDrawList" @@ -597,6 +608,7 @@ "thickness": "1.0f" }, "funcname": "AddCircle", + "ov_cimguiname": "ImDrawList_AddCircle", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", "stname": "ImDrawList" @@ -635,6 +647,7 @@ "num_segments": "12" }, "funcname": "AddCircleFilled", + "ov_cimguiname": "ImDrawList_AddCircleFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", "stname": "ImDrawList" @@ -667,6 +680,7 @@ "comment": "", "defaults": [], "funcname": "AddConvexPolyFilled", + "ov_cimguiname": "ImDrawList_AddConvexPolyFilled", "ret": "void", "signature": "(const ImVec2*,const int,ImU32)", "stname": "ImDrawList" @@ -687,6 +701,7 @@ "comment": "", "defaults": [], "funcname": "AddDrawCmd", + "ov_cimguiname": "ImDrawList_AddDrawCmd", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -735,6 +750,7 @@ "uv_b": "ImVec2(1,1)" }, "funcname": "AddImage", + "ov_cimguiname": "ImDrawList_AddImage", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", "stname": "ImDrawList" @@ -801,6 +817,7 @@ "uv_d": "ImVec2(0,1)" }, "funcname": "AddImageQuad", + "ov_cimguiname": "ImDrawList_AddImageQuad", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", "stname": "ImDrawList" @@ -855,6 +872,7 @@ "rounding_corners": "ImDrawCornerFlags_All" }, "funcname": "AddImageRounded", + "ov_cimguiname": "ImDrawList_AddImageRounded", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", "stname": "ImDrawList" @@ -893,6 +911,7 @@ "thickness": "1.0f" }, "funcname": "AddLine", + "ov_cimguiname": "ImDrawList_AddLine", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float)", "stname": "ImDrawList" @@ -933,6 +952,7 @@ "comment": "", "defaults": [], "funcname": "AddPolyline", + "ov_cimguiname": "ImDrawList_AddPolyline", "ret": "void", "signature": "(const ImVec2*,const int,ImU32,bool,float)", "stname": "ImDrawList" @@ -979,6 +999,7 @@ "thickness": "1.0f" }, "funcname": "AddQuad", + "ov_cimguiname": "ImDrawList_AddQuad", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)", "stname": "ImDrawList" @@ -1019,6 +1040,7 @@ "comment": "", "defaults": [], "funcname": "AddQuadFilled", + "ov_cimguiname": "ImDrawList_AddQuadFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", "stname": "ImDrawList" @@ -1067,6 +1089,7 @@ "thickness": "1.0f" }, "funcname": "AddRect", + "ov_cimguiname": "ImDrawList_AddRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,int,float)", "stname": "ImDrawList" @@ -1110,6 +1133,7 @@ "rounding_corners_flags": "ImDrawCornerFlags_All" }, "funcname": "AddRectFilled", + "ov_cimguiname": "ImDrawList_AddRectFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,int)", "stname": "ImDrawList" @@ -1154,6 +1178,7 @@ "comment": "", "defaults": [], "funcname": "AddRectFilledMultiColor", + "ov_cimguiname": "ImDrawList_AddRectFilledMultiColor", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)", "stname": "ImDrawList" @@ -1184,12 +1209,12 @@ "type": "const char*" } ], - "argsoriginal": "(const ImVec2& pos,ImU32 col,const char* text_begin,const char* text_end=((void *)0))", + "argsoriginal": "(const ImVec2& pos,ImU32 col,const char* text_begin,const char* text_end=((void*)0))", "call_args": "(pos,col,text_begin,text_end)", "cimguiname": "ImDrawList_AddText", "comment": "", "defaults": { - "text_end": "((void *)0)" + "text_end": "((void*)0)" }, "funcname": "AddText", "ov_cimguiname": "ImDrawList_AddText", @@ -1237,13 +1262,13 @@ "type": "const ImVec4*" } ], - "argsoriginal": "(const ImFont* font,float font_size,const ImVec2& pos,ImU32 col,const char* text_begin,const char* text_end=((void *)0),float wrap_width=0.0f,const ImVec4* cpu_fine_clip_rect=((void *)0))", + "argsoriginal": "(const ImFont* font,float font_size,const ImVec2& pos,ImU32 col,const char* text_begin,const char* text_end=((void*)0),float wrap_width=0.0f,const ImVec4* cpu_fine_clip_rect=((void*)0))", "call_args": "(font,font_size,pos,col,text_begin,text_end,wrap_width,cpu_fine_clip_rect)", "cimguiname": "ImDrawList_AddText", "comment": "", "defaults": { - "cpu_fine_clip_rect": "((void *)0)", - "text_end": "((void *)0)", + "cpu_fine_clip_rect": "((void*)0)", + "text_end": "((void*)0)", "wrap_width": "0.0f" }, "funcname": "AddText", @@ -1290,6 +1315,7 @@ "thickness": "1.0f" }, "funcname": "AddTriangle", + "ov_cimguiname": "ImDrawList_AddTriangle", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)", "stname": "ImDrawList" @@ -1326,6 +1352,7 @@ "comment": "", "defaults": [], "funcname": "AddTriangleFilled", + "ov_cimguiname": "ImDrawList_AddTriangleFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32)", "stname": "ImDrawList" @@ -1346,6 +1373,7 @@ "comment": "", "defaults": [], "funcname": "ChannelsMerge", + "ov_cimguiname": "ImDrawList_ChannelsMerge", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -1370,6 +1398,7 @@ "comment": "", "defaults": [], "funcname": "ChannelsSetCurrent", + "ov_cimguiname": "ImDrawList_ChannelsSetCurrent", "ret": "void", "signature": "(int)", "stname": "ImDrawList" @@ -1394,6 +1423,7 @@ "comment": "", "defaults": [], "funcname": "ChannelsSplit", + "ov_cimguiname": "ImDrawList_ChannelsSplit", "ret": "void", "signature": "(int)", "stname": "ImDrawList" @@ -1414,6 +1444,7 @@ "comment": "", "defaults": [], "funcname": "Clear", + "ov_cimguiname": "ImDrawList_Clear", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -1434,6 +1465,7 @@ "comment": "", "defaults": [], "funcname": "ClearFreeMemory", + "ov_cimguiname": "ImDrawList_ClearFreeMemory", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -1454,6 +1486,7 @@ "comment": "", "defaults": [], "funcname": "CloneOutput", + "ov_cimguiname": "ImDrawList_CloneOutput", "ret": "ImDrawList*", "signature": "()", "stname": "ImDrawList" @@ -1474,6 +1507,7 @@ "comment": "", "defaults": [], "funcname": "GetClipRectMax", + "ov_cimguiname": "ImDrawList_GetClipRectMax", "ret": "ImVec2", "signature": "()", "stname": "ImDrawList" @@ -1539,6 +1573,7 @@ "comment": "", "defaults": [], "funcname": "GetClipRectMin", + "ov_cimguiname": "ImDrawList_GetClipRectMin", "ret": "ImVec2", "signature": "()", "stname": "ImDrawList" @@ -1605,6 +1640,7 @@ "constructor": true, "defaults": [], "funcname": "ImDrawList", + "ov_cimguiname": "ImDrawList_ImDrawList", "signature": "(const ImDrawListSharedData*)", "stname": "ImDrawList" } @@ -1646,6 +1682,7 @@ "num_segments": "10" }, "funcname": "PathArcTo", + "ov_cimguiname": "ImDrawList_PathArcTo", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", "stname": "ImDrawList" @@ -1682,6 +1719,7 @@ "comment": "", "defaults": [], "funcname": "PathArcToFast", + "ov_cimguiname": "ImDrawList_PathArcToFast", "ret": "void", "signature": "(const ImVec2,float,int,int)", "stname": "ImDrawList" @@ -1720,6 +1758,7 @@ "num_segments": "0" }, "funcname": "PathBezierCurveTo", + "ov_cimguiname": "ImDrawList_PathBezierCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,int)", "stname": "ImDrawList" @@ -1740,6 +1779,7 @@ "comment": "", "defaults": [], "funcname": "PathClear", + "ov_cimguiname": "ImDrawList_PathClear", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -1764,6 +1804,7 @@ "comment": "", "defaults": [], "funcname": "PathFillConvex", + "ov_cimguiname": "ImDrawList_PathFillConvex", "ret": "void", "signature": "(ImU32)", "stname": "ImDrawList" @@ -1788,6 +1829,7 @@ "comment": "", "defaults": [], "funcname": "PathLineTo", + "ov_cimguiname": "ImDrawList_PathLineTo", "ret": "void", "signature": "(const ImVec2)", "stname": "ImDrawList" @@ -1812,6 +1854,7 @@ "comment": "", "defaults": [], "funcname": "PathLineToMergeDuplicate", + "ov_cimguiname": "ImDrawList_PathLineToMergeDuplicate", "ret": "void", "signature": "(const ImVec2)", "stname": "ImDrawList" @@ -1851,6 +1894,7 @@ "rounding_corners_flags": "ImDrawCornerFlags_All" }, "funcname": "PathRect", + "ov_cimguiname": "ImDrawList_PathRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,float,int)", "stname": "ImDrawList" @@ -1885,6 +1929,7 @@ "thickness": "1.0f" }, "funcname": "PathStroke", + "ov_cimguiname": "ImDrawList_PathStroke", "ret": "void", "signature": "(ImU32,bool,float)", "stname": "ImDrawList" @@ -1905,6 +1950,7 @@ "comment": "", "defaults": [], "funcname": "PopClipRect", + "ov_cimguiname": "ImDrawList_PopClipRect", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -1925,6 +1971,7 @@ "comment": "", "defaults": [], "funcname": "PopTextureID", + "ov_cimguiname": "ImDrawList_PopTextureID", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -1981,6 +2028,7 @@ "comment": "", "defaults": [], "funcname": "PrimQuadUV", + "ov_cimguiname": "ImDrawList_PrimQuadUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", "stname": "ImDrawList" @@ -2013,6 +2061,7 @@ "comment": "", "defaults": [], "funcname": "PrimRect", + "ov_cimguiname": "ImDrawList_PrimRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", "stname": "ImDrawList" @@ -2053,6 +2102,7 @@ "comment": "", "defaults": [], "funcname": "PrimRectUV", + "ov_cimguiname": "ImDrawList_PrimRectUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", "stname": "ImDrawList" @@ -2081,6 +2131,7 @@ "comment": "", "defaults": [], "funcname": "PrimReserve", + "ov_cimguiname": "ImDrawList_PrimReserve", "ret": "void", "signature": "(int,int)", "stname": "ImDrawList" @@ -2113,6 +2164,7 @@ "comment": "", "defaults": [], "funcname": "PrimVtx", + "ov_cimguiname": "ImDrawList_PrimVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", "stname": "ImDrawList" @@ -2137,6 +2189,7 @@ "comment": "", "defaults": [], "funcname": "PrimWriteIdx", + "ov_cimguiname": "ImDrawList_PrimWriteIdx", "ret": "void", "signature": "(ImDrawIdx)", "stname": "ImDrawList" @@ -2169,6 +2222,7 @@ "comment": "", "defaults": [], "funcname": "PrimWriteVtx", + "ov_cimguiname": "ImDrawList_PrimWriteVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", "stname": "ImDrawList" @@ -2203,6 +2257,7 @@ "intersect_with_current_clip_rect": "false" }, "funcname": "PushClipRect", + "ov_cimguiname": "ImDrawList_PushClipRect", "ret": "void", "signature": "(ImVec2,ImVec2,bool)", "stname": "ImDrawList" @@ -2223,6 +2278,7 @@ "comment": "", "defaults": [], "funcname": "PushClipRectFullScreen", + "ov_cimguiname": "ImDrawList_PushClipRectFullScreen", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -2247,6 +2303,7 @@ "comment": "", "defaults": [], "funcname": "PushTextureID", + "ov_cimguiname": "ImDrawList_PushTextureID", "ret": "void", "signature": "(ImTextureID)", "stname": "ImDrawList" @@ -2267,6 +2324,7 @@ "comment": "", "defaults": [], "funcname": "UpdateClipRect", + "ov_cimguiname": "ImDrawList_UpdateClipRect", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -2287,6 +2345,7 @@ "comment": "", "defaults": [], "funcname": "UpdateTextureID", + "ov_cimguiname": "ImDrawList_UpdateTextureID", "ret": "void", "signature": "()", "stname": "ImDrawList" @@ -2352,6 +2411,7 @@ "offset": "ImVec2(0,0)" }, "funcname": "AddCustomRectFontGlyph", + "ov_cimguiname": "ImFontAtlas_AddCustomRectFontGlyph", "ret": "int", "signature": "(ImFont*,ImWchar,int,int,float,const ImVec2)", "stname": "ImFontAtlas" @@ -2384,6 +2444,7 @@ "comment": "", "defaults": [], "funcname": "AddCustomRectRegular", + "ov_cimguiname": "ImFontAtlas_AddCustomRectRegular", "ret": "int", "signature": "(unsigned int,int,int)", "stname": "ImFontAtlas" @@ -2408,6 +2469,7 @@ "comment": "", "defaults": [], "funcname": "AddFont", + "ov_cimguiname": "ImFontAtlas_AddFont", "ret": "ImFont*", "signature": "(const ImFontConfig*)", "stname": "ImFontAtlas" @@ -2426,14 +2488,15 @@ "type": "const ImFontConfig*" } ], - "argsoriginal": "(const ImFontConfig* font_cfg=((void *)0))", + "argsoriginal": "(const ImFontConfig* font_cfg=((void*)0))", "call_args": "(font_cfg)", "cimguiname": "ImFontAtlas_AddFontDefault", "comment": "", "defaults": { - "font_cfg": "((void *)0)" + "font_cfg": "((void*)0)" }, "funcname": "AddFontDefault", + "ov_cimguiname": "ImFontAtlas_AddFontDefault", "ret": "ImFont*", "signature": "(const ImFontConfig*)", "stname": "ImFontAtlas" @@ -2464,15 +2527,16 @@ "type": "const ImWchar*" } ], - "argsoriginal": "(const char* filename,float size_pixels,const ImFontConfig* font_cfg=((void *)0),const ImWchar* glyph_ranges=((void *)0))", + "argsoriginal": "(const char* filename,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", "call_args": "(filename,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromFileTTF", "comment": "", "defaults": { - "font_cfg": "((void *)0)", - "glyph_ranges": "((void *)0)" + "font_cfg": "((void*)0)", + "glyph_ranges": "((void*)0)" }, "funcname": "AddFontFromFileTTF", + "ov_cimguiname": "ImFontAtlas_AddFontFromFileTTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", "stname": "ImFontAtlas" @@ -2503,15 +2567,16 @@ "type": "const ImWchar*" } ], - "argsoriginal": "(const char* compressed_font_data_base85,float size_pixels,const ImFontConfig* font_cfg=((void *)0),const ImWchar* glyph_ranges=((void *)0))", + "argsoriginal": "(const char* compressed_font_data_base85,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", "call_args": "(compressed_font_data_base85,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF", "comment": "", "defaults": { - "font_cfg": "((void *)0)", - "glyph_ranges": "((void *)0)" + "font_cfg": "((void*)0)", + "glyph_ranges": "((void*)0)" }, "funcname": "AddFontFromMemoryCompressedBase85TTF", + "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", "stname": "ImFontAtlas" @@ -2546,15 +2611,16 @@ "type": "const ImWchar*" } ], - "argsoriginal": "(const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg=((void *)0),const ImWchar* glyph_ranges=((void *)0))", + "argsoriginal": "(const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", "call_args": "(compressed_font_data,compressed_font_size,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedTTF", "comment": "", "defaults": { - "font_cfg": "((void *)0)", - "glyph_ranges": "((void *)0)" + "font_cfg": "((void*)0)", + "glyph_ranges": "((void*)0)" }, "funcname": "AddFontFromMemoryCompressedTTF", + "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedTTF", "ret": "ImFont*", "signature": "(const void*,int,float,const ImFontConfig*,const ImWchar*)", "stname": "ImFontAtlas" @@ -2589,15 +2655,16 @@ "type": "const ImWchar*" } ], - "argsoriginal": "(void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg=((void *)0),const ImWchar* glyph_ranges=((void *)0))", + "argsoriginal": "(void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", "call_args": "(font_data,font_size,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromMemoryTTF", "comment": "", "defaults": { - "font_cfg": "((void *)0)", - "glyph_ranges": "((void *)0)" + "font_cfg": "((void*)0)", + "glyph_ranges": "((void*)0)" }, "funcname": "AddFontFromMemoryTTF", + "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryTTF", "ret": "ImFont*", "signature": "(void*,int,float,const ImFontConfig*,const ImWchar*)", "stname": "ImFontAtlas" @@ -2618,6 +2685,7 @@ "comment": "", "defaults": [], "funcname": "Build", + "ov_cimguiname": "ImFontAtlas_Build", "ret": "bool", "signature": "()", "stname": "ImFontAtlas" @@ -2650,6 +2718,7 @@ "comment": "", "defaults": [], "funcname": "CalcCustomRectUV", + "ov_cimguiname": "ImFontAtlas_CalcCustomRectUV", "ret": "void", "signature": "(const CustomRect*,ImVec2*,ImVec2*)", "stname": "ImFontAtlas" @@ -2670,6 +2739,7 @@ "comment": "", "defaults": [], "funcname": "Clear", + "ov_cimguiname": "ImFontAtlas_Clear", "ret": "void", "signature": "()", "stname": "ImFontAtlas" @@ -2690,6 +2760,7 @@ "comment": "", "defaults": [], "funcname": "ClearFonts", + "ov_cimguiname": "ImFontAtlas_ClearFonts", "ret": "void", "signature": "()", "stname": "ImFontAtlas" @@ -2710,6 +2781,7 @@ "comment": "", "defaults": [], "funcname": "ClearInputData", + "ov_cimguiname": "ImFontAtlas_ClearInputData", "ret": "void", "signature": "()", "stname": "ImFontAtlas" @@ -2730,6 +2802,7 @@ "comment": "", "defaults": [], "funcname": "ClearTexData", + "ov_cimguiname": "ImFontAtlas_ClearTexData", "ret": "void", "signature": "()", "stname": "ImFontAtlas" @@ -2754,6 +2827,7 @@ "comment": "", "defaults": [], "funcname": "GetCustomRectByIndex", + "ov_cimguiname": "ImFontAtlas_GetCustomRectByIndex", "ret": "const CustomRect*", "signature": "(int)", "stname": "ImFontAtlas" @@ -2774,6 +2848,7 @@ "comment": "", "defaults": [], "funcname": "GetGlyphRangesChineseFull", + "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", "ret": "const ImWchar*", "signature": "()", "stname": "ImFontAtlas" @@ -2794,6 +2869,7 @@ "comment": "", "defaults": [], "funcname": "GetGlyphRangesChineseSimplifiedCommon", + "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", "ret": "const ImWchar*", "signature": "()", "stname": "ImFontAtlas" @@ -2814,6 +2890,7 @@ "comment": "", "defaults": [], "funcname": "GetGlyphRangesCyrillic", + "ov_cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", "ret": "const ImWchar*", "signature": "()", "stname": "ImFontAtlas" @@ -2834,6 +2911,7 @@ "comment": "", "defaults": [], "funcname": "GetGlyphRangesDefault", + "ov_cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "ret": "const ImWchar*", "signature": "()", "stname": "ImFontAtlas" @@ -2854,6 +2932,7 @@ "comment": "", "defaults": [], "funcname": "GetGlyphRangesJapanese", + "ov_cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", "ret": "const ImWchar*", "signature": "()", "stname": "ImFontAtlas" @@ -2874,6 +2953,7 @@ "comment": "", "defaults": [], "funcname": "GetGlyphRangesKorean", + "ov_cimguiname": "ImFontAtlas_GetGlyphRangesKorean", "ret": "const ImWchar*", "signature": "()", "stname": "ImFontAtlas" @@ -2894,6 +2974,7 @@ "comment": "", "defaults": [], "funcname": "GetGlyphRangesThai", + "ov_cimguiname": "ImFontAtlas_GetGlyphRangesThai", "ret": "const ImWchar*", "signature": "()", "stname": "ImFontAtlas" @@ -2934,6 +3015,7 @@ "comment": "", "defaults": [], "funcname": "GetMouseCursorTexData", + "ov_cimguiname": "ImFontAtlas_GetMouseCursorTexData", "ret": "bool", "signature": "(ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])", "stname": "ImFontAtlas" @@ -2964,14 +3046,15 @@ "type": "int*" } ], - "argsoriginal": "(unsigned char** out_pixels,int* out_width,int* out_height,int* out_bytes_per_pixel=((void *)0))", + "argsoriginal": "(unsigned char** out_pixels,int* out_width,int* out_height,int* out_bytes_per_pixel=((void*)0))", "call_args": "(out_pixels,out_width,out_height,out_bytes_per_pixel)", "cimguiname": "ImFontAtlas_GetTexDataAsAlpha8", "comment": "", "defaults": { - "out_bytes_per_pixel": "((void *)0)" + "out_bytes_per_pixel": "((void*)0)" }, "funcname": "GetTexDataAsAlpha8", + "ov_cimguiname": "ImFontAtlas_GetTexDataAsAlpha8", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", "stname": "ImFontAtlas" @@ -3002,14 +3085,15 @@ "type": "int*" } ], - "argsoriginal": "(unsigned char** out_pixels,int* out_width,int* out_height,int* out_bytes_per_pixel=((void *)0))", + "argsoriginal": "(unsigned char** out_pixels,int* out_width,int* out_height,int* out_bytes_per_pixel=((void*)0))", "call_args": "(out_pixels,out_width,out_height,out_bytes_per_pixel)", "cimguiname": "ImFontAtlas_GetTexDataAsRGBA32", "comment": "", "defaults": { - "out_bytes_per_pixel": "((void *)0)" + "out_bytes_per_pixel": "((void*)0)" }, "funcname": "GetTexDataAsRGBA32", + "ov_cimguiname": "ImFontAtlas_GetTexDataAsRGBA32", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", "stname": "ImFontAtlas" @@ -3026,6 +3110,7 @@ "constructor": true, "defaults": [], "funcname": "ImFontAtlas", + "ov_cimguiname": "ImFontAtlas_ImFontAtlas", "signature": "()", "stname": "ImFontAtlas" } @@ -3045,6 +3130,7 @@ "comment": "", "defaults": [], "funcname": "IsBuilt", + "ov_cimguiname": "ImFontAtlas_IsBuilt", "ret": "bool", "signature": "()", "stname": "ImFontAtlas" @@ -3069,6 +3155,7 @@ "comment": "", "defaults": [], "funcname": "SetTexID", + "ov_cimguiname": "ImFontAtlas_SetTexID", "ret": "void", "signature": "(ImTextureID)", "stname": "ImFontAtlas" @@ -3104,6 +3191,7 @@ "constructor": true, "defaults": [], "funcname": "ImFontConfig", + "ov_cimguiname": "ImFontConfig_ImFontConfig", "signature": "()", "stname": "ImFontConfig" } @@ -3146,6 +3234,7 @@ "comment": "", "defaults": [], "funcname": "AddChar", + "ov_cimguiname": "ImFontGlyphRangesBuilder_AddChar", "ret": "void", "signature": "(ImWchar)", "stname": "ImFontGlyphRangesBuilder" @@ -3170,6 +3259,7 @@ "comment": "", "defaults": [], "funcname": "AddRanges", + "ov_cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "ret": "void", "signature": "(const ImWchar*)", "stname": "ImFontGlyphRangesBuilder" @@ -3192,14 +3282,15 @@ "type": "const char*" } ], - "argsoriginal": "(const char* text,const char* text_end=((void *)0))", + "argsoriginal": "(const char* text,const char* text_end=((void*)0))", "call_args": "(text,text_end)", "cimguiname": "ImFontGlyphRangesBuilder_AddText", "comment": "", "defaults": { - "text_end": "((void *)0)" + "text_end": "((void*)0)" }, "funcname": "AddText", + "ov_cimguiname": "ImFontGlyphRangesBuilder_AddText", "ret": "void", "signature": "(const char*,const char*)", "stname": "ImFontGlyphRangesBuilder" @@ -3224,6 +3315,7 @@ "comment": "", "defaults": [], "funcname": "BuildRanges", + "ov_cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "ret": "void", "signature": "(ImVector_ImWchar*)", "stname": "ImFontGlyphRangesBuilder" @@ -3248,6 +3340,7 @@ "comment": "", "defaults": [], "funcname": "GetBit", + "ov_cimguiname": "ImFontGlyphRangesBuilder_GetBit", "ret": "bool", "signature": "(int)", "stname": "ImFontGlyphRangesBuilder" @@ -3264,6 +3357,7 @@ "constructor": true, "defaults": [], "funcname": "ImFontGlyphRangesBuilder", + "ov_cimguiname": "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder", "signature": "()", "stname": "ImFontGlyphRangesBuilder" } @@ -3287,6 +3381,7 @@ "comment": "", "defaults": [], "funcname": "SetBit", + "ov_cimguiname": "ImFontGlyphRangesBuilder_SetBit", "ret": "void", "signature": "(int)", "stname": "ImFontGlyphRangesBuilder" @@ -3366,6 +3461,7 @@ "comment": "", "defaults": [], "funcname": "AddGlyph", + "ov_cimguiname": "ImFont_AddGlyph", "ret": "void", "signature": "(ImWchar,float,float,float,float,float,float,float,float,float)", "stname": "ImFont" @@ -3400,6 +3496,7 @@ "overwrite_dst": "true" }, "funcname": "AddRemapChar", + "ov_cimguiname": "ImFont_AddRemapChar", "ret": "void", "signature": "(ImWchar,ImWchar,bool)", "stname": "ImFont" @@ -3420,6 +3517,7 @@ "comment": "", "defaults": [], "funcname": "BuildLookupTable", + "ov_cimguiname": "ImFont_BuildLookupTable", "ret": "void", "signature": "()", "stname": "ImFont" @@ -3458,15 +3556,16 @@ "type": "const char**" } ], - "argsoriginal": "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void *)0),const char** remaining=((void *)0))", + "argsoriginal": "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void*)0),const char** remaining=((void*)0))", "call_args": "(size,max_width,wrap_width,text_begin,text_end,remaining)", "cimguiname": "ImFont_CalcTextSizeA", "comment": "", "defaults": { - "remaining": "((void *)0)", - "text_end": "((void *)0)" + "remaining": "((void*)0)", + "text_end": "((void*)0)" }, "funcname": "CalcTextSizeA", + "ov_cimguiname": "ImFont_CalcTextSizeA", "ret": "ImVec2", "signature": "(float,float,float,const char*,const char*,const char**)", "stname": "ImFont" @@ -3507,13 +3606,13 @@ "type": "const char**" } ], - "argsoriginal": "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void *)0),const char** remaining=((void *)0))", + "argsoriginal": "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void*)0),const char** remaining=((void*)0))", "call_args": "(size,max_width,wrap_width,text_begin,text_end,remaining)", "cimguiname": "ImFont_CalcTextSizeA", "comment": "", "defaults": { - "remaining": "((void *)0)", - "text_end": "((void *)0)" + "remaining": "((void*)0)", + "text_end": "((void*)0)" }, "funcname": "CalcTextSizeA", "nonUDT": 1, @@ -3554,13 +3653,13 @@ "type": "const char**" } ], - "argsoriginal": "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void *)0),const char** remaining=((void *)0))", + "argsoriginal": "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void*)0),const char** remaining=((void*)0))", "call_args": "(size,max_width,wrap_width,text_begin,text_end,remaining)", "cimguiname": "ImFont_CalcTextSizeA", "comment": "", "defaults": { - "remaining": "((void *)0)", - "text_end": "((void *)0)" + "remaining": "((void*)0)", + "text_end": "((void*)0)" }, "funcname": "CalcTextSizeA", "nonUDT": 2, @@ -3602,6 +3701,7 @@ "comment": "", "defaults": [], "funcname": "CalcWordWrapPositionA", + "ov_cimguiname": "ImFont_CalcWordWrapPositionA", "ret": "const char*", "signature": "(float,const char*,const char*,float)", "stname": "ImFont" @@ -3622,6 +3722,7 @@ "comment": "", "defaults": [], "funcname": "ClearOutputData", + "ov_cimguiname": "ImFont_ClearOutputData", "ret": "void", "signature": "()", "stname": "ImFont" @@ -3646,6 +3747,7 @@ "comment": "", "defaults": [], "funcname": "FindGlyph", + "ov_cimguiname": "ImFont_FindGlyph", "ret": "const ImFontGlyph*", "signature": "(ImWchar)", "stname": "ImFont" @@ -3670,6 +3772,7 @@ "comment": "", "defaults": [], "funcname": "FindGlyphNoFallback", + "ov_cimguiname": "ImFont_FindGlyphNoFallback", "ret": "const ImFontGlyph*", "signature": "(ImWchar)", "stname": "ImFont" @@ -3694,6 +3797,7 @@ "comment": "", "defaults": [], "funcname": "GetCharAdvance", + "ov_cimguiname": "ImFont_GetCharAdvance", "ret": "float", "signature": "(ImWchar)", "stname": "ImFont" @@ -3714,6 +3818,7 @@ "comment": "", "defaults": [], "funcname": "GetDebugName", + "ov_cimguiname": "ImFont_GetDebugName", "ret": "const char*", "signature": "()", "stname": "ImFont" @@ -3738,6 +3843,7 @@ "comment": "", "defaults": [], "funcname": "GrowIndex", + "ov_cimguiname": "ImFont_GrowIndex", "ret": "void", "signature": "(int)", "stname": "ImFont" @@ -3754,6 +3860,7 @@ "constructor": true, "defaults": [], "funcname": "ImFont", + "ov_cimguiname": "ImFont_ImFont", "signature": "()", "stname": "ImFont" } @@ -3773,6 +3880,7 @@ "comment": "", "defaults": [], "funcname": "IsLoaded", + "ov_cimguiname": "ImFont_IsLoaded", "ret": "bool", "signature": "()", "stname": "ImFont" @@ -3813,6 +3921,7 @@ "comment": "", "defaults": [], "funcname": "RenderChar", + "ov_cimguiname": "ImFont_RenderChar", "ret": "void", "signature": "(ImDrawList*,float,ImVec2,ImU32,ImWchar)", "stname": "ImFont" @@ -3872,6 +3981,7 @@ "wrap_width": "0.0f" }, "funcname": "RenderText", + "ov_cimguiname": "ImFont_RenderText", "ret": "void", "signature": "(ImDrawList*,float,ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)", "stname": "ImFont" @@ -3896,6 +4006,7 @@ "comment": "", "defaults": [], "funcname": "SetFallbackChar", + "ov_cimguiname": "ImFont_SetFallbackChar", "ret": "void", "signature": "(ImWchar)", "stname": "ImFont" @@ -3939,6 +4050,7 @@ "comment": "", "defaults": [], "funcname": "AddInputCharacter", + "ov_cimguiname": "ImGuiIO_AddInputCharacter", "ret": "void", "signature": "(ImWchar)", "stname": "ImGuiIO" @@ -3963,6 +4075,7 @@ "comment": "", "defaults": [], "funcname": "AddInputCharactersUTF8", + "ov_cimguiname": "ImGuiIO_AddInputCharactersUTF8", "ret": "void", "signature": "(const char*)", "stname": "ImGuiIO" @@ -3983,6 +4096,7 @@ "comment": "", "defaults": [], "funcname": "ClearInputCharacters", + "ov_cimguiname": "ImGuiIO_ClearInputCharacters", "ret": "void", "signature": "()", "stname": "ImGuiIO" @@ -3999,6 +4113,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiIO", + "ov_cimguiname": "ImGuiIO_ImGuiIO", "signature": "()", "stname": "ImGuiIO" } @@ -4045,6 +4160,7 @@ "comment": "", "defaults": [], "funcname": "DeleteChars", + "ov_cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "ret": "void", "signature": "(int,int)", "stname": "ImGuiInputTextCallbackData" @@ -4065,6 +4181,7 @@ "comment": "", "defaults": [], "funcname": "HasSelection", + "ov_cimguiname": "ImGuiInputTextCallbackData_HasSelection", "ret": "bool", "signature": "()", "stname": "ImGuiInputTextCallbackData" @@ -4081,6 +4198,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiInputTextCallbackData", + "ov_cimguiname": "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData", "signature": "()", "stname": "ImGuiInputTextCallbackData" } @@ -4106,14 +4224,15 @@ "type": "const char*" } ], - "argsoriginal": "(int pos,const char* text,const char* text_end=((void *)0))", + "argsoriginal": "(int pos,const char* text,const char* text_end=((void*)0))", "call_args": "(pos,text,text_end)", "cimguiname": "ImGuiInputTextCallbackData_InsertChars", "comment": "", "defaults": { - "text_end": "((void *)0)" + "text_end": "((void*)0)" }, "funcname": "InsertChars", + "ov_cimguiname": "ImGuiInputTextCallbackData_InsertChars", "ret": "void", "signature": "(int,const char*,const char*)", "stname": "ImGuiInputTextCallbackData" @@ -4163,6 +4282,7 @@ "items_height": "-1.0f" }, "funcname": "Begin", + "ov_cimguiname": "ImGuiListClipper_Begin", "ret": "void", "signature": "(int,float)", "stname": "ImGuiListClipper" @@ -4183,6 +4303,7 @@ "comment": "", "defaults": [], "funcname": "End", + "ov_cimguiname": "ImGuiListClipper_End", "ret": "void", "signature": "()", "stname": "ImGuiListClipper" @@ -4211,6 +4332,7 @@ "items_height": "-1.0f" }, "funcname": "ImGuiListClipper", + "ov_cimguiname": "ImGuiListClipper_ImGuiListClipper", "signature": "(int,float)", "stname": "ImGuiListClipper" } @@ -4230,6 +4352,7 @@ "comment": "", "defaults": [], "funcname": "Step", + "ov_cimguiname": "ImGuiListClipper_Step", "ret": "bool", "signature": "()", "stname": "ImGuiListClipper" @@ -4265,6 +4388,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiOnceUponAFrame", + "ov_cimguiname": "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame", "signature": "()", "stname": "ImGuiOnceUponAFrame" } @@ -4303,6 +4427,7 @@ "comment": "", "defaults": [], "funcname": "Clear", + "ov_cimguiname": "ImGuiPayload_Clear", "ret": "void", "signature": "()", "stname": "ImGuiPayload" @@ -4319,6 +4444,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiPayload", + "ov_cimguiname": "ImGuiPayload_ImGuiPayload", "signature": "()", "stname": "ImGuiPayload" } @@ -4342,6 +4468,7 @@ "comment": "", "defaults": [], "funcname": "IsDataType", + "ov_cimguiname": "ImGuiPayload_IsDataType", "ret": "bool", "signature": "(const char*)", "stname": "ImGuiPayload" @@ -4362,6 +4489,7 @@ "comment": "", "defaults": [], "funcname": "IsDelivery", + "ov_cimguiname": "ImGuiPayload_IsDelivery", "ret": "bool", "signature": "()", "stname": "ImGuiPayload" @@ -4382,6 +4510,7 @@ "comment": "", "defaults": [], "funcname": "IsPreview", + "ov_cimguiname": "ImGuiPayload_IsPreview", "ret": "bool", "signature": "()", "stname": "ImGuiPayload" @@ -4421,6 +4550,7 @@ "comment": "", "defaults": [], "funcname": "BuildSortByKey", + "ov_cimguiname": "ImGuiStorage_BuildSortByKey", "ret": "void", "signature": "()", "stname": "ImGuiStorage" @@ -4441,6 +4571,7 @@ "comment": "", "defaults": [], "funcname": "Clear", + "ov_cimguiname": "ImGuiStorage_Clear", "ret": "void", "signature": "()", "stname": "ImGuiStorage" @@ -4471,6 +4602,7 @@ "default_val": "false" }, "funcname": "GetBool", + "ov_cimguiname": "ImGuiStorage_GetBool", "ret": "bool", "signature": "(ImGuiID,bool)", "stname": "ImGuiStorage" @@ -4501,6 +4633,7 @@ "default_val": "false" }, "funcname": "GetBoolRef", + "ov_cimguiname": "ImGuiStorage_GetBoolRef", "ret": "bool*", "signature": "(ImGuiID,bool)", "stname": "ImGuiStorage" @@ -4531,6 +4664,7 @@ "default_val": "0.0f" }, "funcname": "GetFloat", + "ov_cimguiname": "ImGuiStorage_GetFloat", "ret": "float", "signature": "(ImGuiID,float)", "stname": "ImGuiStorage" @@ -4561,6 +4695,7 @@ "default_val": "0.0f" }, "funcname": "GetFloatRef", + "ov_cimguiname": "ImGuiStorage_GetFloatRef", "ret": "float*", "signature": "(ImGuiID,float)", "stname": "ImGuiStorage" @@ -4591,6 +4726,7 @@ "default_val": "0" }, "funcname": "GetInt", + "ov_cimguiname": "ImGuiStorage_GetInt", "ret": "int", "signature": "(ImGuiID,int)", "stname": "ImGuiStorage" @@ -4621,6 +4757,7 @@ "default_val": "0" }, "funcname": "GetIntRef", + "ov_cimguiname": "ImGuiStorage_GetIntRef", "ret": "int*", "signature": "(ImGuiID,int)", "stname": "ImGuiStorage" @@ -4645,6 +4782,7 @@ "comment": "", "defaults": [], "funcname": "GetVoidPtr", + "ov_cimguiname": "ImGuiStorage_GetVoidPtr", "ret": "void*", "signature": "(ImGuiID)", "stname": "ImGuiStorage" @@ -4667,14 +4805,15 @@ "type": "void*" } ], - "argsoriginal": "(ImGuiID key,void* default_val=((void *)0))", + "argsoriginal": "(ImGuiID key,void* default_val=((void*)0))", "call_args": "(key,default_val)", "cimguiname": "ImGuiStorage_GetVoidPtrRef", "comment": "", "defaults": { - "default_val": "((void *)0)" + "default_val": "((void*)0)" }, "funcname": "GetVoidPtrRef", + "ov_cimguiname": "ImGuiStorage_GetVoidPtrRef", "ret": "void**", "signature": "(ImGuiID,void*)", "stname": "ImGuiStorage" @@ -4699,6 +4838,7 @@ "comment": "", "defaults": [], "funcname": "SetAllInt", + "ov_cimguiname": "ImGuiStorage_SetAllInt", "ret": "void", "signature": "(int)", "stname": "ImGuiStorage" @@ -4727,6 +4867,7 @@ "comment": "", "defaults": [], "funcname": "SetBool", + "ov_cimguiname": "ImGuiStorage_SetBool", "ret": "void", "signature": "(ImGuiID,bool)", "stname": "ImGuiStorage" @@ -4755,6 +4896,7 @@ "comment": "", "defaults": [], "funcname": "SetFloat", + "ov_cimguiname": "ImGuiStorage_SetFloat", "ret": "void", "signature": "(ImGuiID,float)", "stname": "ImGuiStorage" @@ -4783,6 +4925,7 @@ "comment": "", "defaults": [], "funcname": "SetInt", + "ov_cimguiname": "ImGuiStorage_SetInt", "ret": "void", "signature": "(ImGuiID,int)", "stname": "ImGuiStorage" @@ -4811,6 +4954,7 @@ "comment": "", "defaults": [], "funcname": "SetVoidPtr", + "ov_cimguiname": "ImGuiStorage_SetVoidPtr", "ret": "void", "signature": "(ImGuiID,void*)", "stname": "ImGuiStorage" @@ -4827,6 +4971,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiStyle", + "ov_cimguiname": "ImGuiStyle_ImGuiStyle", "signature": "()", "stname": "ImGuiStyle" } @@ -4850,6 +4995,7 @@ "comment": "", "defaults": [], "funcname": "ScaleAllSizes", + "ov_cimguiname": "ImGuiStyle_ScaleAllSizes", "ret": "void", "signature": "(float)", "stname": "ImGuiStyle" @@ -4885,6 +5031,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiTextBuffer", + "ov_cimguiname": "ImGuiTextBuffer_ImGuiTextBuffer", "signature": "()", "stname": "ImGuiTextBuffer" } @@ -4914,6 +5061,7 @@ "funcname": "appendf", "isvararg": "...)", "manual": true, + "ov_cimguiname": "ImGuiTextBuffer_appendf", "ret": "void", "signature": "(const char*,...)", "stname": "ImGuiTextBuffer" @@ -4942,6 +5090,7 @@ "comment": "", "defaults": [], "funcname": "appendfv", + "ov_cimguiname": "ImGuiTextBuffer_appendfv", "ret": "void", "signature": "(const char*,va_list)", "stname": "ImGuiTextBuffer" @@ -4962,6 +5111,7 @@ "comment": "", "defaults": [], "funcname": "begin", + "ov_cimguiname": "ImGuiTextBuffer_begin", "ret": "const char*", "signature": "()", "stname": "ImGuiTextBuffer" @@ -4982,6 +5132,7 @@ "comment": "", "defaults": [], "funcname": "c_str", + "ov_cimguiname": "ImGuiTextBuffer_c_str", "ret": "const char*", "signature": "()", "stname": "ImGuiTextBuffer" @@ -5002,6 +5153,7 @@ "comment": "", "defaults": [], "funcname": "clear", + "ov_cimguiname": "ImGuiTextBuffer_clear", "ret": "void", "signature": "()", "stname": "ImGuiTextBuffer" @@ -5041,6 +5193,7 @@ "comment": "", "defaults": [], "funcname": "empty", + "ov_cimguiname": "ImGuiTextBuffer_empty", "ret": "bool", "signature": "()", "stname": "ImGuiTextBuffer" @@ -5061,6 +5214,7 @@ "comment": "", "defaults": [], "funcname": "end", + "ov_cimguiname": "ImGuiTextBuffer_end", "ret": "const char*", "signature": "()", "stname": "ImGuiTextBuffer" @@ -5085,6 +5239,7 @@ "comment": "", "defaults": [], "funcname": "reserve", + "ov_cimguiname": "ImGuiTextBuffer_reserve", "ret": "void", "signature": "(int)", "stname": "ImGuiTextBuffer" @@ -5105,6 +5260,7 @@ "comment": "", "defaults": [], "funcname": "size", + "ov_cimguiname": "ImGuiTextBuffer_size", "ret": "int", "signature": "()", "stname": "ImGuiTextBuffer" @@ -5125,6 +5281,7 @@ "comment": "", "defaults": [], "funcname": "Build", + "ov_cimguiname": "ImGuiTextFilter_Build", "ret": "void", "signature": "()", "stname": "ImGuiTextFilter" @@ -5145,6 +5302,7 @@ "comment": "", "defaults": [], "funcname": "Clear", + "ov_cimguiname": "ImGuiTextFilter_Clear", "ret": "void", "signature": "()", "stname": "ImGuiTextFilter" @@ -5176,6 +5334,7 @@ "width": "0.0f" }, "funcname": "Draw", + "ov_cimguiname": "ImGuiTextFilter_Draw", "ret": "bool", "signature": "(const char*,float)", "stname": "ImGuiTextFilter" @@ -5199,6 +5358,7 @@ "default_filter": "\"\"" }, "funcname": "ImGuiTextFilter", + "ov_cimguiname": "ImGuiTextFilter_ImGuiTextFilter", "signature": "(const char*)", "stname": "ImGuiTextFilter" } @@ -5218,6 +5378,7 @@ "comment": "", "defaults": [], "funcname": "IsActive", + "ov_cimguiname": "ImGuiTextFilter_IsActive", "ret": "bool", "signature": "()", "stname": "ImGuiTextFilter" @@ -5240,14 +5401,15 @@ "type": "const char*" } ], - "argsoriginal": "(const char* text,const char* text_end=((void *)0))", + "argsoriginal": "(const char* text,const char* text_end=((void*)0))", "call_args": "(text,text_end)", "cimguiname": "ImGuiTextFilter_PassFilter", "comment": "", "defaults": { - "text_end": "((void *)0)" + "text_end": "((void*)0)" }, "funcname": "PassFilter", + "ov_cimguiname": "ImGuiTextFilter_PassFilter", "ret": "bool", "signature": "(const char*,const char*)", "stname": "ImGuiTextFilter" @@ -5407,8 +5569,30 @@ "constructor": true, "defaults": [], "funcname": "ImVector", + "ov_cimguiname": "ImVector_ImVector", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true + }, + { + "args": "(const ImVector_ src)", + "argsT": [ + { + "name": "src", + "type": "const ImVector_" + } + ], + "argsoriginal": "(const ImVector& src)", + "call_args": "(src)", + "cimguiname": "ImVector_ImVector", + "comment": "", + "constructor": true, + "defaults": [], + "funcname": "ImVector", + "ov_cimguiname": "ImVector_ImVectorVector_", + "signature": "(const ImVector_)", + "stname": "ImVector", + "templated": true } ], "ImVector__grow_capacity": [ @@ -5430,9 +5614,11 @@ "comment": "", "defaults": [], "funcname": "_grow_capacity", + "ov_cimguiname": "ImVector__grow_capacity", "ret": "int", "signature": "(int)", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_back": [ @@ -5454,7 +5640,8 @@ "ret": "T*", "retref": "&", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true }, { "args": "(ImVector* self)", @@ -5474,7 +5661,8 @@ "ret": "const T*", "retref": "&", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_begin": [ @@ -5495,7 +5683,8 @@ "ov_cimguiname": "ImVector_begin", "ret": "T*", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true }, { "args": "(ImVector* self)", @@ -5514,7 +5703,8 @@ "ov_cimguiname": "ImVector_begin", "ret": "const T*", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_capacity": [ @@ -5532,9 +5722,11 @@ "comment": "", "defaults": [], "funcname": "capacity", + "ov_cimguiname": "ImVector_capacity", "ret": "int", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_clear": [ @@ -5552,9 +5744,11 @@ "comment": "", "defaults": [], "funcname": "clear", + "ov_cimguiname": "ImVector_clear", "ret": "void", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_contains": [ @@ -5576,9 +5770,11 @@ "comment": "", "defaults": [], "funcname": "contains", + "ov_cimguiname": "ImVector_contains", "ret": "bool", "signature": "(const T)", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_destroy": [ @@ -5615,9 +5811,11 @@ "comment": "", "defaults": [], "funcname": "empty", + "ov_cimguiname": "ImVector_empty", "ret": "bool", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_end": [ @@ -5638,7 +5836,8 @@ "ov_cimguiname": "ImVector_end", "ret": "T*", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true }, { "args": "(ImVector* self)", @@ -5657,7 +5856,8 @@ "ov_cimguiname": "ImVector_end", "ret": "const T*", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_erase": [ @@ -5682,7 +5882,8 @@ "ov_cimguiname": "ImVector_erase", "ret": "T*", "signature": "(const T*)", - "stname": "ImVector" + "stname": "ImVector", + "templated": true }, { "args": "(ImVector* self,const T* it,const T* it_last)", @@ -5709,7 +5910,8 @@ "ov_cimguiname": "ImVector_eraseTPtr", "ret": "T*", "signature": "(const T*,const T*)", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_erase_unsorted": [ @@ -5731,9 +5933,11 @@ "comment": "", "defaults": [], "funcname": "erase_unsorted", + "ov_cimguiname": "ImVector_erase_unsorted", "ret": "T*", "signature": "(const T*)", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_front": [ @@ -5755,7 +5959,8 @@ "ret": "T*", "retref": "&", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true }, { "args": "(ImVector* self)", @@ -5775,7 +5980,8 @@ "ret": "const T*", "retref": "&", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_index_from_ptr": [ @@ -5797,9 +6003,11 @@ "comment": "", "defaults": [], "funcname": "index_from_ptr", + "ov_cimguiname": "ImVector_index_from_ptr", "ret": "int", "signature": "(const T*)", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_insert": [ @@ -5825,9 +6033,11 @@ "comment": "", "defaults": [], "funcname": "insert", + "ov_cimguiname": "ImVector_insert", "ret": "T*", "signature": "(const T*,const T)", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_pop_back": [ @@ -5845,9 +6055,11 @@ "comment": "", "defaults": [], "funcname": "pop_back", + "ov_cimguiname": "ImVector_pop_back", "ret": "void", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_push_back": [ @@ -5869,9 +6081,11 @@ "comment": "", "defaults": [], "funcname": "push_back", + "ov_cimguiname": "ImVector_push_back", "ret": "void", "signature": "(const T)", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_push_front": [ @@ -5893,9 +6107,11 @@ "comment": "", "defaults": [], "funcname": "push_front", + "ov_cimguiname": "ImVector_push_front", "ret": "void", "signature": "(const T)", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_reserve": [ @@ -5917,9 +6133,11 @@ "comment": "", "defaults": [], "funcname": "reserve", + "ov_cimguiname": "ImVector_reserve", "ret": "void", "signature": "(int)", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_resize": [ @@ -5944,7 +6162,8 @@ "ov_cimguiname": "ImVector_resize", "ret": "void", "signature": "(int)", - "stname": "ImVector" + "stname": "ImVector", + "templated": true }, { "args": "(ImVector* self,int new_size,const T v)", @@ -5971,7 +6190,8 @@ "ov_cimguiname": "ImVector_resizeT", "ret": "void", "signature": "(int,const T)", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_size": [ @@ -5989,9 +6209,11 @@ "comment": "", "defaults": [], "funcname": "size", + "ov_cimguiname": "ImVector_size", "ret": "int", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_size_in_bytes": [ @@ -6009,14 +6231,16 @@ "comment": "", "defaults": [], "funcname": "size_in_bytes", + "ov_cimguiname": "ImVector_size_in_bytes", "ret": "int", "signature": "()", - "stname": "ImVector" + "stname": "ImVector", + "templated": true } ], "ImVector_swap": [ { - "args": "(ImVector* self,ImVector_T rhs)", + "args": "(ImVector* self,ImVector_ rhs)", "argsT": [ { "name": "self", @@ -6024,7 +6248,7 @@ }, { "name": "rhs", - "type": "ImVector_T&" + "type": "ImVector_&" } ], "argsoriginal": "(ImVector& rhs)", @@ -6033,9 +6257,11 @@ "comment": "", "defaults": [], "funcname": "swap", + "ov_cimguiname": "ImVector_swap", "ret": "void", - "signature": "(ImVector_T)", - "stname": "ImVector" + "signature": "(ImVector_)", + "stname": "ImVector", + "templated": true } ], "Pair_Pair": [ @@ -6182,6 +6408,7 @@ "comment": "", "defaults": [], "funcname": "begin", + "ov_cimguiname": "TextRange_begin", "ret": "const char*", "signature": "()", "stname": "TextRange" @@ -6221,6 +6448,7 @@ "comment": "", "defaults": [], "funcname": "empty", + "ov_cimguiname": "TextRange_empty", "ret": "bool", "signature": "()", "stname": "TextRange" @@ -6241,6 +6469,7 @@ "comment": "", "defaults": [], "funcname": "end", + "ov_cimguiname": "TextRange_end", "ret": "const char*", "signature": "()", "stname": "TextRange" @@ -6269,6 +6498,7 @@ "comment": "", "defaults": [], "funcname": "split", + "ov_cimguiname": "TextRange_split", "ret": "void", "signature": "(char,ImVector_TextRange*)", "stname": "TextRange" @@ -6295,9 +6525,11 @@ "flags": "0" }, "funcname": "AcceptDragDropPayload", + "namespace": "ImGui", + "ov_cimguiname": "igAcceptDragDropPayload", "ret": "const ImGuiPayload*", "signature": "(const char*,ImGuiDragDropFlags)", - "stname": "ImGui" + "stname": "" } ], "igAlignTextToFramePadding": [ @@ -6310,9 +6542,11 @@ "comment": "", "defaults": [], "funcname": "AlignTextToFramePadding", + "namespace": "ImGui", + "ov_cimguiname": "igAlignTextToFramePadding", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igArrowButton": [ @@ -6334,9 +6568,11 @@ "comment": "", "defaults": [], "funcname": "ArrowButton", + "namespace": "ImGui", + "ov_cimguiname": "igArrowButton", "ret": "bool", "signature": "(const char*,ImGuiDir)", - "stname": "ImGui" + "stname": "" } ], "igBegin": [ @@ -6356,18 +6592,20 @@ "type": "ImGuiWindowFlags" } ], - "argsoriginal": "(const char* name,bool* p_open=((void *)0),ImGuiWindowFlags flags=0)", + "argsoriginal": "(const char* name,bool* p_open=((void*)0),ImGuiWindowFlags flags=0)", "call_args": "(name,p_open,flags)", "cimguiname": "igBegin", "comment": "", "defaults": { "flags": "0", - "p_open": "((void *)0)" + "p_open": "((void*)0)" }, "funcname": "Begin", + "namespace": "ImGui", + "ov_cimguiname": "igBegin", "ret": "bool", "signature": "(const char*,bool*,ImGuiWindowFlags)", - "stname": "ImGui" + "stname": "" } ], "igBeginChild": [ @@ -6401,10 +6639,11 @@ "size": "ImVec2(0,0)" }, "funcname": "BeginChild", + "namespace": "ImGui", "ov_cimguiname": "igBeginChild", "ret": "bool", "signature": "(const char*,const ImVec2,bool,ImGuiWindowFlags)", - "stname": "ImGui" + "stname": "" }, { "args": "(ImGuiID id,const ImVec2 size,bool border,ImGuiWindowFlags flags)", @@ -6436,10 +6675,11 @@ "size": "ImVec2(0,0)" }, "funcname": "BeginChild", + "namespace": "ImGui", "ov_cimguiname": "igBeginChildID", "ret": "bool", "signature": "(ImGuiID,const ImVec2,bool,ImGuiWindowFlags)", - "stname": "ImGui" + "stname": "" } ], "igBeginChildFrame": [ @@ -6467,9 +6707,11 @@ "flags": "0" }, "funcname": "BeginChildFrame", + "namespace": "ImGui", + "ov_cimguiname": "igBeginChildFrame", "ret": "bool", "signature": "(ImGuiID,const ImVec2,ImGuiWindowFlags)", - "stname": "ImGui" + "stname": "" } ], "igBeginCombo": [ @@ -6497,9 +6739,11 @@ "flags": "0" }, "funcname": "BeginCombo", + "namespace": "ImGui", + "ov_cimguiname": "igBeginCombo", "ret": "bool", "signature": "(const char*,const char*,ImGuiComboFlags)", - "stname": "ImGui" + "stname": "" } ], "igBeginDragDropSource": [ @@ -6519,9 +6763,11 @@ "flags": "0" }, "funcname": "BeginDragDropSource", + "namespace": "ImGui", + "ov_cimguiname": "igBeginDragDropSource", "ret": "bool", "signature": "(ImGuiDragDropFlags)", - "stname": "ImGui" + "stname": "" } ], "igBeginDragDropTarget": [ @@ -6534,9 +6780,11 @@ "comment": "", "defaults": [], "funcname": "BeginDragDropTarget", + "namespace": "ImGui", + "ov_cimguiname": "igBeginDragDropTarget", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igBeginGroup": [ @@ -6549,9 +6797,11 @@ "comment": "", "defaults": [], "funcname": "BeginGroup", + "namespace": "ImGui", + "ov_cimguiname": "igBeginGroup", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igBeginMainMenuBar": [ @@ -6564,9 +6814,11 @@ "comment": "", "defaults": [], "funcname": "BeginMainMenuBar", + "namespace": "ImGui", + "ov_cimguiname": "igBeginMainMenuBar", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igBeginMenu": [ @@ -6590,9 +6842,11 @@ "enabled": "true" }, "funcname": "BeginMenu", + "namespace": "ImGui", + "ov_cimguiname": "igBeginMenu", "ret": "bool", "signature": "(const char*,bool)", - "stname": "ImGui" + "stname": "" } ], "igBeginMenuBar": [ @@ -6605,9 +6859,11 @@ "comment": "", "defaults": [], "funcname": "BeginMenuBar", + "namespace": "ImGui", + "ov_cimguiname": "igBeginMenuBar", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igBeginPopup": [ @@ -6631,9 +6887,11 @@ "flags": "0" }, "funcname": "BeginPopup", + "namespace": "ImGui", + "ov_cimguiname": "igBeginPopup", "ret": "bool", "signature": "(const char*,ImGuiWindowFlags)", - "stname": "ImGui" + "stname": "" } ], "igBeginPopupContextItem": [ @@ -6649,18 +6907,20 @@ "type": "int" } ], - "argsoriginal": "(const char* str_id=((void *)0),int mouse_button=1)", + "argsoriginal": "(const char* str_id=((void*)0),int mouse_button=1)", "call_args": "(str_id,mouse_button)", "cimguiname": "igBeginPopupContextItem", "comment": "", "defaults": { "mouse_button": "1", - "str_id": "((void *)0)" + "str_id": "((void*)0)" }, "funcname": "BeginPopupContextItem", + "namespace": "ImGui", + "ov_cimguiname": "igBeginPopupContextItem", "ret": "bool", "signature": "(const char*,int)", - "stname": "ImGui" + "stname": "" } ], "igBeginPopupContextVoid": [ @@ -6676,18 +6936,20 @@ "type": "int" } ], - "argsoriginal": "(const char* str_id=((void *)0),int mouse_button=1)", + "argsoriginal": "(const char* str_id=((void*)0),int mouse_button=1)", "call_args": "(str_id,mouse_button)", "cimguiname": "igBeginPopupContextVoid", "comment": "", "defaults": { "mouse_button": "1", - "str_id": "((void *)0)" + "str_id": "((void*)0)" }, "funcname": "BeginPopupContextVoid", + "namespace": "ImGui", + "ov_cimguiname": "igBeginPopupContextVoid", "ret": "bool", "signature": "(const char*,int)", - "stname": "ImGui" + "stname": "" } ], "igBeginPopupContextWindow": [ @@ -6707,19 +6969,21 @@ "type": "bool" } ], - "argsoriginal": "(const char* str_id=((void *)0),int mouse_button=1,bool also_over_items=true)", + "argsoriginal": "(const char* str_id=((void*)0),int mouse_button=1,bool also_over_items=true)", "call_args": "(str_id,mouse_button,also_over_items)", "cimguiname": "igBeginPopupContextWindow", "comment": "", "defaults": { "also_over_items": "true", "mouse_button": "1", - "str_id": "((void *)0)" + "str_id": "((void*)0)" }, "funcname": "BeginPopupContextWindow", + "namespace": "ImGui", + "ov_cimguiname": "igBeginPopupContextWindow", "ret": "bool", "signature": "(const char*,int,bool)", - "stname": "ImGui" + "stname": "" } ], "igBeginPopupModal": [ @@ -6739,18 +7003,20 @@ "type": "ImGuiWindowFlags" } ], - "argsoriginal": "(const char* name,bool* p_open=((void *)0),ImGuiWindowFlags flags=0)", + "argsoriginal": "(const char* name,bool* p_open=((void*)0),ImGuiWindowFlags flags=0)", "call_args": "(name,p_open,flags)", "cimguiname": "igBeginPopupModal", "comment": "", "defaults": { "flags": "0", - "p_open": "((void *)0)" + "p_open": "((void*)0)" }, "funcname": "BeginPopupModal", + "namespace": "ImGui", + "ov_cimguiname": "igBeginPopupModal", "ret": "bool", "signature": "(const char*,bool*,ImGuiWindowFlags)", - "stname": "ImGui" + "stname": "" } ], "igBeginTabBar": [ @@ -6774,9 +7040,11 @@ "flags": "0" }, "funcname": "BeginTabBar", + "namespace": "ImGui", + "ov_cimguiname": "igBeginTabBar", "ret": "bool", "signature": "(const char*,ImGuiTabBarFlags)", - "stname": "ImGui" + "stname": "" } ], "igBeginTabItem": [ @@ -6796,18 +7064,20 @@ "type": "ImGuiTabItemFlags" } ], - "argsoriginal": "(const char* label,bool* p_open=((void *)0),ImGuiTabItemFlags flags=0)", + "argsoriginal": "(const char* label,bool* p_open=((void*)0),ImGuiTabItemFlags flags=0)", "call_args": "(label,p_open,flags)", "cimguiname": "igBeginTabItem", "comment": "", "defaults": { "flags": "0", - "p_open": "((void *)0)" + "p_open": "((void*)0)" }, "funcname": "BeginTabItem", + "namespace": "ImGui", + "ov_cimguiname": "igBeginTabItem", "ret": "bool", "signature": "(const char*,bool*,ImGuiTabItemFlags)", - "stname": "ImGui" + "stname": "" } ], "igBeginTooltip": [ @@ -6820,9 +7090,11 @@ "comment": "", "defaults": [], "funcname": "BeginTooltip", + "namespace": "ImGui", + "ov_cimguiname": "igBeginTooltip", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igBullet": [ @@ -6835,9 +7107,11 @@ "comment": "", "defaults": [], "funcname": "Bullet", + "namespace": "ImGui", + "ov_cimguiname": "igBullet", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igBulletText": [ @@ -6860,9 +7134,11 @@ "defaults": [], "funcname": "BulletText", "isvararg": "...)", + "namespace": "ImGui", + "ov_cimguiname": "igBulletText", "ret": "void", "signature": "(const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igBulletTextV": [ @@ -6884,9 +7160,11 @@ "comment": "", "defaults": [], "funcname": "BulletTextV", + "namespace": "ImGui", + "ov_cimguiname": "igBulletTextV", "ret": "void", "signature": "(const char*,va_list)", - "stname": "ImGui" + "stname": "" } ], "igButton": [ @@ -6910,9 +7188,11 @@ "size": "ImVec2(0,0)" }, "funcname": "Button", + "namespace": "ImGui", + "ov_cimguiname": "igButton", "ret": "bool", "signature": "(const char*,const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igCalcItemWidth": [ @@ -6925,9 +7205,11 @@ "comment": "", "defaults": [], "funcname": "CalcItemWidth", + "namespace": "ImGui", + "ov_cimguiname": "igCalcItemWidth", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igCalcListClipping": [ @@ -6957,9 +7239,11 @@ "comment": "", "defaults": [], "funcname": "CalcListClipping", + "namespace": "ImGui", + "ov_cimguiname": "igCalcListClipping", "ret": "void", "signature": "(int,float,int*,int*)", - "stname": "ImGui" + "stname": "" } ], "igCalcTextSize": [ @@ -6983,19 +7267,21 @@ "type": "float" } ], - "argsoriginal": "(const char* text,const char* text_end=((void *)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)", + "argsoriginal": "(const char* text,const char* text_end=((void*)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)", "call_args": "(text,text_end,hide_text_after_double_hash,wrap_width)", "cimguiname": "igCalcTextSize", "comment": "", "defaults": { "hide_text_after_double_hash": "false", - "text_end": "((void *)0)", + "text_end": "((void*)0)", "wrap_width": "-1.0f" }, "funcname": "CalcTextSize", + "namespace": "ImGui", + "ov_cimguiname": "igCalcTextSize", "ret": "ImVec2", "signature": "(const char*,const char*,bool,float)", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut,const char* text,const char* text_end,bool hide_text_after_double_hash,float wrap_width)", @@ -7021,21 +7307,22 @@ "type": "float" } ], - "argsoriginal": "(const char* text,const char* text_end=((void *)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)", + "argsoriginal": "(const char* text,const char* text_end=((void*)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)", "call_args": "(text,text_end,hide_text_after_double_hash,wrap_width)", "cimguiname": "igCalcTextSize", "comment": "", "defaults": { "hide_text_after_double_hash": "false", - "text_end": "((void *)0)", + "text_end": "((void*)0)", "wrap_width": "-1.0f" }, "funcname": "CalcTextSize", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcTextSize_nonUDT", "ret": "void", "signature": "(const char*,const char*,bool,float)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* text,const char* text_end,bool hide_text_after_double_hash,float wrap_width)", @@ -7057,22 +7344,23 @@ "type": "float" } ], - "argsoriginal": "(const char* text,const char* text_end=((void *)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)", + "argsoriginal": "(const char* text,const char* text_end=((void*)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)", "call_args": "(text,text_end,hide_text_after_double_hash,wrap_width)", "cimguiname": "igCalcTextSize", "comment": "", "defaults": { "hide_text_after_double_hash": "false", - "text_end": "((void *)0)", + "text_end": "((void*)0)", "wrap_width": "-1.0f" }, "funcname": "CalcTextSize", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igCalcTextSize_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "(const char*,const char*,bool,float)", - "stname": "ImGui" + "stname": "" } ], "igCaptureKeyboardFromApp": [ @@ -7092,9 +7380,11 @@ "want_capture_keyboard_value": "true" }, "funcname": "CaptureKeyboardFromApp", + "namespace": "ImGui", + "ov_cimguiname": "igCaptureKeyboardFromApp", "ret": "void", "signature": "(bool)", - "stname": "ImGui" + "stname": "" } ], "igCaptureMouseFromApp": [ @@ -7114,9 +7404,11 @@ "want_capture_mouse_value": "true" }, "funcname": "CaptureMouseFromApp", + "namespace": "ImGui", + "ov_cimguiname": "igCaptureMouseFromApp", "ret": "void", "signature": "(bool)", - "stname": "ImGui" + "stname": "" } ], "igCheckbox": [ @@ -7138,9 +7430,11 @@ "comment": "", "defaults": [], "funcname": "Checkbox", + "namespace": "ImGui", + "ov_cimguiname": "igCheckbox", "ret": "bool", "signature": "(const char*,bool*)", - "stname": "ImGui" + "stname": "" } ], "igCheckboxFlags": [ @@ -7166,9 +7460,11 @@ "comment": "", "defaults": [], "funcname": "CheckboxFlags", + "namespace": "ImGui", + "ov_cimguiname": "igCheckboxFlags", "ret": "bool", "signature": "(const char*,unsigned int*,unsigned int)", - "stname": "ImGui" + "stname": "" } ], "igCloseCurrentPopup": [ @@ -7181,9 +7477,11 @@ "comment": "", "defaults": [], "funcname": "CloseCurrentPopup", + "namespace": "ImGui", + "ov_cimguiname": "igCloseCurrentPopup", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igCollapsingHeader": [ @@ -7207,10 +7505,11 @@ "flags": "0" }, "funcname": "CollapsingHeader", + "namespace": "ImGui", "ov_cimguiname": "igCollapsingHeader", "ret": "bool", "signature": "(const char*,ImGuiTreeNodeFlags)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* label,bool* p_open,ImGuiTreeNodeFlags flags)", @@ -7236,10 +7535,11 @@ "flags": "0" }, "funcname": "CollapsingHeader", + "namespace": "ImGui", "ov_cimguiname": "igCollapsingHeaderBoolPtr", "ret": "bool", "signature": "(const char*,bool*,ImGuiTreeNodeFlags)", - "stname": "ImGui" + "stname": "" } ], "igColorButton": [ @@ -7272,9 +7572,11 @@ "size": "ImVec2(0,0)" }, "funcname": "ColorButton", + "namespace": "ImGui", + "ov_cimguiname": "igColorButton", "ret": "bool", "signature": "(const char*,const ImVec4,ImGuiColorEditFlags,ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igColorConvertFloat4ToU32": [ @@ -7292,9 +7594,11 @@ "comment": "", "defaults": [], "funcname": "ColorConvertFloat4ToU32", + "namespace": "ImGui", + "ov_cimguiname": "igColorConvertFloat4ToU32", "ret": "ImU32", "signature": "(const ImVec4)", - "stname": "ImGui" + "stname": "" } ], "igColorConvertHSVtoRGB": [ @@ -7333,9 +7637,11 @@ "defaults": [], "funcname": "ColorConvertHSVtoRGB", "manual": true, + "namespace": "ImGui", + "ov_cimguiname": "igColorConvertHSVtoRGB", "ret": "void", "signature": "(float,float,float,float,float,float)", - "stname": "ImGui" + "stname": "" } ], "igColorConvertRGBtoHSV": [ @@ -7374,9 +7680,11 @@ "defaults": [], "funcname": "ColorConvertRGBtoHSV", "manual": true, + "namespace": "ImGui", + "ov_cimguiname": "igColorConvertRGBtoHSV", "ret": "void", "signature": "(float,float,float,float,float,float)", - "stname": "ImGui" + "stname": "" } ], "igColorConvertU32ToFloat4": [ @@ -7394,9 +7702,11 @@ "comment": "", "defaults": [], "funcname": "ColorConvertU32ToFloat4", + "namespace": "ImGui", + "ov_cimguiname": "igColorConvertU32ToFloat4", "ret": "ImVec4", "signature": "(ImU32)", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec4 *pOut,ImU32 in)", @@ -7416,11 +7726,12 @@ "comment": "", "defaults": [], "funcname": "ColorConvertU32ToFloat4", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igColorConvertU32ToFloat4_nonUDT", "ret": "void", "signature": "(ImU32)", - "stname": "ImGui" + "stname": "" }, { "args": "(ImU32 in)", @@ -7436,12 +7747,13 @@ "comment": "", "defaults": [], "funcname": "ColorConvertU32ToFloat4", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igColorConvertU32ToFloat4_nonUDT2", "ret": "ImVec4_Simple", "retorig": "ImVec4", "signature": "(ImU32)", - "stname": "ImGui" + "stname": "" } ], "igColorEdit3": [ @@ -7469,9 +7781,11 @@ "flags": "0" }, "funcname": "ColorEdit3", + "namespace": "ImGui", + "ov_cimguiname": "igColorEdit3", "ret": "bool", "signature": "(const char*,float[3],ImGuiColorEditFlags)", - "stname": "ImGui" + "stname": "" } ], "igColorEdit4": [ @@ -7499,9 +7813,11 @@ "flags": "0" }, "funcname": "ColorEdit4", + "namespace": "ImGui", + "ov_cimguiname": "igColorEdit4", "ret": "bool", "signature": "(const char*,float[4],ImGuiColorEditFlags)", - "stname": "ImGui" + "stname": "" } ], "igColorPicker3": [ @@ -7529,9 +7845,11 @@ "flags": "0" }, "funcname": "ColorPicker3", + "namespace": "ImGui", + "ov_cimguiname": "igColorPicker3", "ret": "bool", "signature": "(const char*,float[3],ImGuiColorEditFlags)", - "stname": "ImGui" + "stname": "" } ], "igColorPicker4": [ @@ -7555,18 +7873,20 @@ "type": "const float*" } ], - "argsoriginal": "(const char* label,float col[4],ImGuiColorEditFlags flags=0,const float* ref_col=((void *)0))", + "argsoriginal": "(const char* label,float col[4],ImGuiColorEditFlags flags=0,const float* ref_col=((void*)0))", "call_args": "(label,col,flags,ref_col)", "cimguiname": "igColorPicker4", "comment": "", "defaults": { "flags": "0", - "ref_col": "((void *)0)" + "ref_col": "((void*)0)" }, "funcname": "ColorPicker4", + "namespace": "ImGui", + "ov_cimguiname": "igColorPicker4", "ret": "bool", "signature": "(const char*,float[4],ImGuiColorEditFlags,const float*)", - "stname": "ImGui" + "stname": "" } ], "igColumns": [ @@ -7586,19 +7906,21 @@ "type": "bool" } ], - "argsoriginal": "(int count=1,const char* id=((void *)0),bool border=true)", + "argsoriginal": "(int count=1,const char* id=((void*)0),bool border=true)", "call_args": "(count,id,border)", "cimguiname": "igColumns", "comment": "", "defaults": { "border": "true", "count": "1", - "id": "((void *)0)" + "id": "((void*)0)" }, "funcname": "Columns", + "namespace": "ImGui", + "ov_cimguiname": "igColumns", "ret": "void", "signature": "(int,const char*,bool)", - "stname": "ImGui" + "stname": "" } ], "igCombo": [ @@ -7634,10 +7956,11 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", + "namespace": "ImGui", "ov_cimguiname": "igCombo", "ret": "bool", "signature": "(const char*,int*,const char* const[],int,int)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* label,int* current_item,const char* items_separated_by_zeros,int popup_max_height_in_items)", @@ -7667,10 +7990,11 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", + "namespace": "ImGui", "ov_cimguiname": "igComboStr", "ret": "bool", "signature": "(const char*,int*,const char*,int)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items)", @@ -7710,10 +8034,11 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", + "namespace": "ImGui", "ov_cimguiname": "igComboFnPtr", "ret": "bool", "signature": "(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)", - "stname": "ImGui" + "stname": "" } ], "igCreateContext": [ @@ -7725,17 +8050,19 @@ "type": "ImFontAtlas*" } ], - "argsoriginal": "(ImFontAtlas* shared_font_atlas=((void *)0))", + "argsoriginal": "(ImFontAtlas* shared_font_atlas=((void*)0))", "call_args": "(shared_font_atlas)", "cimguiname": "igCreateContext", "comment": "", "defaults": { - "shared_font_atlas": "((void *)0)" + "shared_font_atlas": "((void*)0)" }, "funcname": "CreateContext", + "namespace": "ImGui", + "ov_cimguiname": "igCreateContext", "ret": "ImGuiContext*", "signature": "(ImFontAtlas*)", - "stname": "ImGui" + "stname": "" } ], "igDebugCheckVersionAndDataLayout": [ @@ -7773,9 +8100,11 @@ "comment": "", "defaults": [], "funcname": "DebugCheckVersionAndDataLayout", + "namespace": "ImGui", + "ov_cimguiname": "igDebugCheckVersionAndDataLayout", "ret": "bool", "signature": "(const char*,size_t,size_t,size_t,size_t,size_t)", - "stname": "ImGui" + "stname": "" } ], "igDestroyContext": [ @@ -7787,17 +8116,19 @@ "type": "ImGuiContext*" } ], - "argsoriginal": "(ImGuiContext* ctx=((void *)0))", + "argsoriginal": "(ImGuiContext* ctx=((void*)0))", "call_args": "(ctx)", "cimguiname": "igDestroyContext", "comment": "", "defaults": { - "ctx": "((void *)0)" + "ctx": "((void*)0)" }, "funcname": "DestroyContext", + "namespace": "ImGui", + "ov_cimguiname": "igDestroyContext", "ret": "void", "signature": "(ImGuiContext*)", - "stname": "ImGui" + "stname": "" } ], "igDragFloat": [ @@ -7845,9 +8176,11 @@ "v_speed": "1.0f" }, "funcname": "DragFloat", + "namespace": "ImGui", + "ov_cimguiname": "igDragFloat", "ret": "bool", "signature": "(const char*,float*,float,float,float,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igDragFloat2": [ @@ -7895,9 +8228,11 @@ "v_speed": "1.0f" }, "funcname": "DragFloat2", + "namespace": "ImGui", + "ov_cimguiname": "igDragFloat2", "ret": "bool", "signature": "(const char*,float[2],float,float,float,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igDragFloat3": [ @@ -7945,9 +8280,11 @@ "v_speed": "1.0f" }, "funcname": "DragFloat3", + "namespace": "ImGui", + "ov_cimguiname": "igDragFloat3", "ret": "bool", "signature": "(const char*,float[3],float,float,float,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igDragFloat4": [ @@ -7995,9 +8332,11 @@ "v_speed": "1.0f" }, "funcname": "DragFloat4", + "namespace": "ImGui", + "ov_cimguiname": "igDragFloat4", "ret": "bool", "signature": "(const char*,float[4],float,float,float,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igDragFloatRange2": [ @@ -8041,22 +8380,24 @@ "type": "float" } ], - "argsoriginal": "(const char* label,float* v_current_min,float* v_current_max,float v_speed=1.0f,float v_min=0.0f,float v_max=0.0f,const char* format=\"%.3f\",const char* format_max=((void *)0),float power=1.0f)", + "argsoriginal": "(const char* label,float* v_current_min,float* v_current_max,float v_speed=1.0f,float v_min=0.0f,float v_max=0.0f,const char* format=\"%.3f\",const char* format_max=((void*)0),float power=1.0f)", "call_args": "(label,v_current_min,v_current_max,v_speed,v_min,v_max,format,format_max,power)", "cimguiname": "igDragFloatRange2", "comment": "", "defaults": { "format": "\"%.3f\"", - "format_max": "((void *)0)", + "format_max": "((void*)0)", "power": "1.0f", "v_max": "0.0f", "v_min": "0.0f", "v_speed": "1.0f" }, "funcname": "DragFloatRange2", + "namespace": "ImGui", + "ov_cimguiname": "igDragFloatRange2", "ret": "bool", "signature": "(const char*,float*,float*,float,float,float,const char*,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igDragInt": [ @@ -8099,9 +8440,11 @@ "v_speed": "1.0f" }, "funcname": "DragInt", + "namespace": "ImGui", + "ov_cimguiname": "igDragInt", "ret": "bool", "signature": "(const char*,int*,float,int,int,const char*)", - "stname": "ImGui" + "stname": "" } ], "igDragInt2": [ @@ -8144,9 +8487,11 @@ "v_speed": "1.0f" }, "funcname": "DragInt2", + "namespace": "ImGui", + "ov_cimguiname": "igDragInt2", "ret": "bool", "signature": "(const char*,int[2],float,int,int,const char*)", - "stname": "ImGui" + "stname": "" } ], "igDragInt3": [ @@ -8189,9 +8534,11 @@ "v_speed": "1.0f" }, "funcname": "DragInt3", + "namespace": "ImGui", + "ov_cimguiname": "igDragInt3", "ret": "bool", "signature": "(const char*,int[3],float,int,int,const char*)", - "stname": "ImGui" + "stname": "" } ], "igDragInt4": [ @@ -8234,9 +8581,11 @@ "v_speed": "1.0f" }, "funcname": "DragInt4", + "namespace": "ImGui", + "ov_cimguiname": "igDragInt4", "ret": "bool", "signature": "(const char*,int[4],float,int,int,const char*)", - "stname": "ImGui" + "stname": "" } ], "igDragIntRange2": [ @@ -8276,21 +8625,23 @@ "type": "const char*" } ], - "argsoriginal": "(const char* label,int* v_current_min,int* v_current_max,float v_speed=1.0f,int v_min=0,int v_max=0,const char* format=\"%d\",const char* format_max=((void *)0))", + "argsoriginal": "(const char* label,int* v_current_min,int* v_current_max,float v_speed=1.0f,int v_min=0,int v_max=0,const char* format=\"%d\",const char* format_max=((void*)0))", "call_args": "(label,v_current_min,v_current_max,v_speed,v_min,v_max,format,format_max)", "cimguiname": "igDragIntRange2", "comment": "", "defaults": { "format": "\"%d\"", - "format_max": "((void *)0)", + "format_max": "((void*)0)", "v_max": "0", "v_min": "0", "v_speed": "1.0f" }, "funcname": "DragIntRange2", + "namespace": "ImGui", + "ov_cimguiname": "igDragIntRange2", "ret": "bool", "signature": "(const char*,int*,int*,float,int,int,const char*,const char*)", - "stname": "ImGui" + "stname": "" } ], "igDragScalar": [ @@ -8330,20 +8681,22 @@ "type": "float" } ], - "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,float v_speed,const void* v_min=((void *)0),const void* v_max=((void *)0),const char* format=((void *)0),float power=1.0f)", + "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,float v_speed,const void* v_min=((void*)0),const void* v_max=((void*)0),const char* format=((void*)0),float power=1.0f)", "call_args": "(label,data_type,v,v_speed,v_min,v_max,format,power)", "cimguiname": "igDragScalar", "comment": "", "defaults": { - "format": "((void *)0)", + "format": "((void*)0)", "power": "1.0f", - "v_max": "((void *)0)", - "v_min": "((void *)0)" + "v_max": "((void*)0)", + "v_min": "((void*)0)" }, "funcname": "DragScalar", + "namespace": "ImGui", + "ov_cimguiname": "igDragScalar", "ret": "bool", "signature": "(const char*,ImGuiDataType,void*,float,const void*,const void*,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igDragScalarN": [ @@ -8387,20 +8740,22 @@ "type": "float" } ], - "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,int components,float v_speed,const void* v_min=((void *)0),const void* v_max=((void *)0),const char* format=((void *)0),float power=1.0f)", + "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,int components,float v_speed,const void* v_min=((void*)0),const void* v_max=((void*)0),const char* format=((void*)0),float power=1.0f)", "call_args": "(label,data_type,v,components,v_speed,v_min,v_max,format,power)", "cimguiname": "igDragScalarN", "comment": "", "defaults": { - "format": "((void *)0)", + "format": "((void*)0)", "power": "1.0f", - "v_max": "((void *)0)", - "v_min": "((void *)0)" + "v_max": "((void*)0)", + "v_min": "((void*)0)" }, "funcname": "DragScalarN", + "namespace": "ImGui", + "ov_cimguiname": "igDragScalarN", "ret": "bool", "signature": "(const char*,ImGuiDataType,void*,int,float,const void*,const void*,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igDummy": [ @@ -8418,9 +8773,11 @@ "comment": "", "defaults": [], "funcname": "Dummy", + "namespace": "ImGui", + "ov_cimguiname": "igDummy", "ret": "void", "signature": "(const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igEnd": [ @@ -8433,9 +8790,11 @@ "comment": "", "defaults": [], "funcname": "End", + "namespace": "ImGui", + "ov_cimguiname": "igEnd", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndChild": [ @@ -8448,9 +8807,11 @@ "comment": "", "defaults": [], "funcname": "EndChild", + "namespace": "ImGui", + "ov_cimguiname": "igEndChild", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndChildFrame": [ @@ -8463,9 +8824,11 @@ "comment": "", "defaults": [], "funcname": "EndChildFrame", + "namespace": "ImGui", + "ov_cimguiname": "igEndChildFrame", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndCombo": [ @@ -8478,9 +8841,11 @@ "comment": "", "defaults": [], "funcname": "EndCombo", + "namespace": "ImGui", + "ov_cimguiname": "igEndCombo", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndDragDropSource": [ @@ -8493,9 +8858,11 @@ "comment": "", "defaults": [], "funcname": "EndDragDropSource", + "namespace": "ImGui", + "ov_cimguiname": "igEndDragDropSource", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndDragDropTarget": [ @@ -8508,9 +8875,11 @@ "comment": "", "defaults": [], "funcname": "EndDragDropTarget", + "namespace": "ImGui", + "ov_cimguiname": "igEndDragDropTarget", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndFrame": [ @@ -8523,9 +8892,11 @@ "comment": "", "defaults": [], "funcname": "EndFrame", + "namespace": "ImGui", + "ov_cimguiname": "igEndFrame", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndGroup": [ @@ -8538,9 +8909,11 @@ "comment": "", "defaults": [], "funcname": "EndGroup", + "namespace": "ImGui", + "ov_cimguiname": "igEndGroup", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndMainMenuBar": [ @@ -8553,9 +8926,11 @@ "comment": "", "defaults": [], "funcname": "EndMainMenuBar", + "namespace": "ImGui", + "ov_cimguiname": "igEndMainMenuBar", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndMenu": [ @@ -8568,9 +8943,11 @@ "comment": "", "defaults": [], "funcname": "EndMenu", + "namespace": "ImGui", + "ov_cimguiname": "igEndMenu", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndMenuBar": [ @@ -8583,9 +8960,11 @@ "comment": "", "defaults": [], "funcname": "EndMenuBar", + "namespace": "ImGui", + "ov_cimguiname": "igEndMenuBar", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndPopup": [ @@ -8598,9 +8977,11 @@ "comment": "", "defaults": [], "funcname": "EndPopup", + "namespace": "ImGui", + "ov_cimguiname": "igEndPopup", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndTabBar": [ @@ -8613,9 +8994,11 @@ "comment": "", "defaults": [], "funcname": "EndTabBar", + "namespace": "ImGui", + "ov_cimguiname": "igEndTabBar", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndTabItem": [ @@ -8628,9 +9011,11 @@ "comment": "", "defaults": [], "funcname": "EndTabItem", + "namespace": "ImGui", + "ov_cimguiname": "igEndTabItem", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igEndTooltip": [ @@ -8643,9 +9028,11 @@ "comment": "", "defaults": [], "funcname": "EndTooltip", + "namespace": "ImGui", + "ov_cimguiname": "igEndTooltip", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetClipboardText": [ @@ -8658,9 +9045,11 @@ "comment": "", "defaults": [], "funcname": "GetClipboardText", + "namespace": "ImGui", + "ov_cimguiname": "igGetClipboardText", "ret": "const char*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetColorU32": [ @@ -8684,10 +9073,11 @@ "alpha_mul": "1.0f" }, "funcname": "GetColorU32", + "namespace": "ImGui", "ov_cimguiname": "igGetColorU32", "ret": "ImU32", "signature": "(ImGuiCol,float)", - "stname": "ImGui" + "stname": "" }, { "args": "(const ImVec4 col)", @@ -8703,10 +9093,11 @@ "comment": "", "defaults": [], "funcname": "GetColorU32", + "namespace": "ImGui", "ov_cimguiname": "igGetColorU32Vec4", "ret": "ImU32", "signature": "(const ImVec4)", - "stname": "ImGui" + "stname": "" }, { "args": "(ImU32 col)", @@ -8722,10 +9113,11 @@ "comment": "", "defaults": [], "funcname": "GetColorU32", + "namespace": "ImGui", "ov_cimguiname": "igGetColorU32U32", "ret": "ImU32", "signature": "(ImU32)", - "stname": "ImGui" + "stname": "" } ], "igGetColumnIndex": [ @@ -8738,9 +9130,11 @@ "comment": "", "defaults": [], "funcname": "GetColumnIndex", + "namespace": "ImGui", + "ov_cimguiname": "igGetColumnIndex", "ret": "int", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetColumnOffset": [ @@ -8760,9 +9154,11 @@ "column_index": "-1" }, "funcname": "GetColumnOffset", + "namespace": "ImGui", + "ov_cimguiname": "igGetColumnOffset", "ret": "float", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igGetColumnWidth": [ @@ -8782,9 +9178,11 @@ "column_index": "-1" }, "funcname": "GetColumnWidth", + "namespace": "ImGui", + "ov_cimguiname": "igGetColumnWidth", "ret": "float", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igGetColumnsCount": [ @@ -8797,9 +9195,11 @@ "comment": "", "defaults": [], "funcname": "GetColumnsCount", + "namespace": "ImGui", + "ov_cimguiname": "igGetColumnsCount", "ret": "int", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetContentRegionAvail": [ @@ -8812,9 +9212,11 @@ "comment": "", "defaults": [], "funcname": "GetContentRegionAvail", + "namespace": "ImGui", + "ov_cimguiname": "igGetContentRegionAvail", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -8830,11 +9232,12 @@ "comment": "", "defaults": [], "funcname": "GetContentRegionAvail", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionAvail_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -8845,12 +9248,13 @@ "comment": "", "defaults": [], "funcname": "GetContentRegionAvail", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetContentRegionAvail_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetContentRegionAvailWidth": [ @@ -8863,9 +9267,11 @@ "comment": "", "defaults": [], "funcname": "GetContentRegionAvailWidth", + "namespace": "ImGui", + "ov_cimguiname": "igGetContentRegionAvailWidth", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetContentRegionMax": [ @@ -8878,9 +9284,11 @@ "comment": "", "defaults": [], "funcname": "GetContentRegionMax", + "namespace": "ImGui", + "ov_cimguiname": "igGetContentRegionMax", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -8896,11 +9304,12 @@ "comment": "", "defaults": [], "funcname": "GetContentRegionMax", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionMax_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -8911,12 +9320,13 @@ "comment": "", "defaults": [], "funcname": "GetContentRegionMax", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetContentRegionMax_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetCurrentContext": [ @@ -8929,9 +9339,11 @@ "comment": "", "defaults": [], "funcname": "GetCurrentContext", + "namespace": "ImGui", + "ov_cimguiname": "igGetCurrentContext", "ret": "ImGuiContext*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetCursorPos": [ @@ -8944,9 +9356,11 @@ "comment": "", "defaults": [], "funcname": "GetCursorPos", + "namespace": "ImGui", + "ov_cimguiname": "igGetCursorPos", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -8962,11 +9376,12 @@ "comment": "", "defaults": [], "funcname": "GetCursorPos", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorPos_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -8977,12 +9392,13 @@ "comment": "", "defaults": [], "funcname": "GetCursorPos", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetCursorPos_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetCursorPosX": [ @@ -8995,9 +9411,11 @@ "comment": "", "defaults": [], "funcname": "GetCursorPosX", + "namespace": "ImGui", + "ov_cimguiname": "igGetCursorPosX", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetCursorPosY": [ @@ -9010,9 +9428,11 @@ "comment": "", "defaults": [], "funcname": "GetCursorPosY", + "namespace": "ImGui", + "ov_cimguiname": "igGetCursorPosY", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetCursorScreenPos": [ @@ -9025,9 +9445,11 @@ "comment": "", "defaults": [], "funcname": "GetCursorScreenPos", + "namespace": "ImGui", + "ov_cimguiname": "igGetCursorScreenPos", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -9043,11 +9465,12 @@ "comment": "", "defaults": [], "funcname": "GetCursorScreenPos", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorScreenPos_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -9058,12 +9481,13 @@ "comment": "", "defaults": [], "funcname": "GetCursorScreenPos", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetCursorScreenPos_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetCursorStartPos": [ @@ -9076,9 +9500,11 @@ "comment": "", "defaults": [], "funcname": "GetCursorStartPos", + "namespace": "ImGui", + "ov_cimguiname": "igGetCursorStartPos", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -9094,11 +9520,12 @@ "comment": "", "defaults": [], "funcname": "GetCursorStartPos", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorStartPos_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -9109,12 +9536,13 @@ "comment": "", "defaults": [], "funcname": "GetCursorStartPos", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetCursorStartPos_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetDragDropPayload": [ @@ -9127,9 +9555,11 @@ "comment": "", "defaults": [], "funcname": "GetDragDropPayload", + "namespace": "ImGui", + "ov_cimguiname": "igGetDragDropPayload", "ret": "const ImGuiPayload*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetDrawData": [ @@ -9142,9 +9572,11 @@ "comment": "", "defaults": [], "funcname": "GetDrawData", + "namespace": "ImGui", + "ov_cimguiname": "igGetDrawData", "ret": "ImDrawData*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetDrawListSharedData": [ @@ -9157,9 +9589,11 @@ "comment": "", "defaults": [], "funcname": "GetDrawListSharedData", + "namespace": "ImGui", + "ov_cimguiname": "igGetDrawListSharedData", "ret": "ImDrawListSharedData*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetFont": [ @@ -9172,9 +9606,11 @@ "comment": "", "defaults": [], "funcname": "GetFont", + "namespace": "ImGui", + "ov_cimguiname": "igGetFont", "ret": "ImFont*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetFontSize": [ @@ -9187,9 +9623,11 @@ "comment": "", "defaults": [], "funcname": "GetFontSize", + "namespace": "ImGui", + "ov_cimguiname": "igGetFontSize", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetFontTexUvWhitePixel": [ @@ -9202,9 +9640,11 @@ "comment": "", "defaults": [], "funcname": "GetFontTexUvWhitePixel", + "namespace": "ImGui", + "ov_cimguiname": "igGetFontTexUvWhitePixel", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -9220,11 +9660,12 @@ "comment": "", "defaults": [], "funcname": "GetFontTexUvWhitePixel", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetFontTexUvWhitePixel_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -9235,12 +9676,13 @@ "comment": "", "defaults": [], "funcname": "GetFontTexUvWhitePixel", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetFontTexUvWhitePixel_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetFrameCount": [ @@ -9253,9 +9695,11 @@ "comment": "", "defaults": [], "funcname": "GetFrameCount", + "namespace": "ImGui", + "ov_cimguiname": "igGetFrameCount", "ret": "int", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetFrameHeight": [ @@ -9268,9 +9712,11 @@ "comment": "", "defaults": [], "funcname": "GetFrameHeight", + "namespace": "ImGui", + "ov_cimguiname": "igGetFrameHeight", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetFrameHeightWithSpacing": [ @@ -9283,9 +9729,11 @@ "comment": "", "defaults": [], "funcname": "GetFrameHeightWithSpacing", + "namespace": "ImGui", + "ov_cimguiname": "igGetFrameHeightWithSpacing", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetID": [ @@ -9303,10 +9751,11 @@ "comment": "", "defaults": [], "funcname": "GetID", + "namespace": "ImGui", "ov_cimguiname": "igGetIDStr", "ret": "ImGuiID", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* str_id_begin,const char* str_id_end)", @@ -9326,10 +9775,11 @@ "comment": "", "defaults": [], "funcname": "GetID", + "namespace": "ImGui", "ov_cimguiname": "igGetIDRange", "ret": "ImGuiID", "signature": "(const char*,const char*)", - "stname": "ImGui" + "stname": "" }, { "args": "(const void* ptr_id)", @@ -9345,10 +9795,11 @@ "comment": "", "defaults": [], "funcname": "GetID", + "namespace": "ImGui", "ov_cimguiname": "igGetIDPtr", "ret": "ImGuiID", "signature": "(const void*)", - "stname": "ImGui" + "stname": "" } ], "igGetIO": [ @@ -9361,10 +9812,12 @@ "comment": "", "defaults": [], "funcname": "GetIO", + "namespace": "ImGui", + "ov_cimguiname": "igGetIO", "ret": "ImGuiIO*", "retref": "&", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetItemRectMax": [ @@ -9377,9 +9830,11 @@ "comment": "", "defaults": [], "funcname": "GetItemRectMax", + "namespace": "ImGui", + "ov_cimguiname": "igGetItemRectMax", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -9395,11 +9850,12 @@ "comment": "", "defaults": [], "funcname": "GetItemRectMax", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMax_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -9410,12 +9866,13 @@ "comment": "", "defaults": [], "funcname": "GetItemRectMax", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetItemRectMax_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetItemRectMin": [ @@ -9428,9 +9885,11 @@ "comment": "", "defaults": [], "funcname": "GetItemRectMin", + "namespace": "ImGui", + "ov_cimguiname": "igGetItemRectMin", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -9446,11 +9905,12 @@ "comment": "", "defaults": [], "funcname": "GetItemRectMin", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMin_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -9461,12 +9921,13 @@ "comment": "", "defaults": [], "funcname": "GetItemRectMin", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetItemRectMin_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetItemRectSize": [ @@ -9479,9 +9940,11 @@ "comment": "", "defaults": [], "funcname": "GetItemRectSize", + "namespace": "ImGui", + "ov_cimguiname": "igGetItemRectSize", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -9497,11 +9960,12 @@ "comment": "", "defaults": [], "funcname": "GetItemRectSize", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectSize_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -9512,12 +9976,13 @@ "comment": "", "defaults": [], "funcname": "GetItemRectSize", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetItemRectSize_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetKeyIndex": [ @@ -9535,9 +10000,11 @@ "comment": "", "defaults": [], "funcname": "GetKeyIndex", + "namespace": "ImGui", + "ov_cimguiname": "igGetKeyIndex", "ret": "int", "signature": "(ImGuiKey)", - "stname": "ImGui" + "stname": "" } ], "igGetKeyPressedAmount": [ @@ -9563,9 +10030,11 @@ "comment": "", "defaults": [], "funcname": "GetKeyPressedAmount", + "namespace": "ImGui", + "ov_cimguiname": "igGetKeyPressedAmount", "ret": "int", "signature": "(int,float,float)", - "stname": "ImGui" + "stname": "" } ], "igGetMouseCursor": [ @@ -9578,9 +10047,11 @@ "comment": "", "defaults": [], "funcname": "GetMouseCursor", + "namespace": "ImGui", + "ov_cimguiname": "igGetMouseCursor", "ret": "ImGuiMouseCursor", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetMouseDragDelta": [ @@ -9605,9 +10076,11 @@ "lock_threshold": "-1.0f" }, "funcname": "GetMouseDragDelta", + "namespace": "ImGui", + "ov_cimguiname": "igGetMouseDragDelta", "ret": "ImVec2", "signature": "(int,float)", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut,int button,float lock_threshold)", @@ -9634,11 +10107,12 @@ "lock_threshold": "-1.0f" }, "funcname": "GetMouseDragDelta", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMouseDragDelta_nonUDT", "ret": "void", "signature": "(int,float)", - "stname": "ImGui" + "stname": "" }, { "args": "(int button,float lock_threshold)", @@ -9661,12 +10135,13 @@ "lock_threshold": "-1.0f" }, "funcname": "GetMouseDragDelta", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetMouseDragDelta_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "(int,float)", - "stname": "ImGui" + "stname": "" } ], "igGetMousePos": [ @@ -9679,9 +10154,11 @@ "comment": "", "defaults": [], "funcname": "GetMousePos", + "namespace": "ImGui", + "ov_cimguiname": "igGetMousePos", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -9697,11 +10174,12 @@ "comment": "", "defaults": [], "funcname": "GetMousePos", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePos_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -9712,12 +10190,13 @@ "comment": "", "defaults": [], "funcname": "GetMousePos", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetMousePos_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetMousePosOnOpeningCurrentPopup": [ @@ -9730,9 +10209,11 @@ "comment": "", "defaults": [], "funcname": "GetMousePosOnOpeningCurrentPopup", + "namespace": "ImGui", + "ov_cimguiname": "igGetMousePosOnOpeningCurrentPopup", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -9748,11 +10229,12 @@ "comment": "", "defaults": [], "funcname": "GetMousePosOnOpeningCurrentPopup", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePosOnOpeningCurrentPopup_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -9763,12 +10245,13 @@ "comment": "", "defaults": [], "funcname": "GetMousePosOnOpeningCurrentPopup", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetMousePosOnOpeningCurrentPopup_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetOverlayDrawList": [ @@ -9781,9 +10264,11 @@ "comment": "", "defaults": [], "funcname": "GetOverlayDrawList", + "namespace": "ImGui", + "ov_cimguiname": "igGetOverlayDrawList", "ret": "ImDrawList*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetScrollMaxX": [ @@ -9796,9 +10281,11 @@ "comment": "", "defaults": [], "funcname": "GetScrollMaxX", + "namespace": "ImGui", + "ov_cimguiname": "igGetScrollMaxX", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetScrollMaxY": [ @@ -9811,9 +10298,11 @@ "comment": "", "defaults": [], "funcname": "GetScrollMaxY", + "namespace": "ImGui", + "ov_cimguiname": "igGetScrollMaxY", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetScrollX": [ @@ -9826,9 +10315,11 @@ "comment": "", "defaults": [], "funcname": "GetScrollX", + "namespace": "ImGui", + "ov_cimguiname": "igGetScrollX", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetScrollY": [ @@ -9841,9 +10332,11 @@ "comment": "", "defaults": [], "funcname": "GetScrollY", + "namespace": "ImGui", + "ov_cimguiname": "igGetScrollY", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetStateStorage": [ @@ -9856,9 +10349,11 @@ "comment": "", "defaults": [], "funcname": "GetStateStorage", + "namespace": "ImGui", + "ov_cimguiname": "igGetStateStorage", "ret": "ImGuiStorage*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetStyle": [ @@ -9871,10 +10366,12 @@ "comment": "", "defaults": [], "funcname": "GetStyle", + "namespace": "ImGui", + "ov_cimguiname": "igGetStyle", "ret": "ImGuiStyle*", "retref": "&", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetStyleColorName": [ @@ -9892,9 +10389,11 @@ "comment": "", "defaults": [], "funcname": "GetStyleColorName", + "namespace": "ImGui", + "ov_cimguiname": "igGetStyleColorName", "ret": "const char*", "signature": "(ImGuiCol)", - "stname": "ImGui" + "stname": "" } ], "igGetStyleColorVec4": [ @@ -9912,10 +10411,12 @@ "comment": "", "defaults": [], "funcname": "GetStyleColorVec4", + "namespace": "ImGui", + "ov_cimguiname": "igGetStyleColorVec4", "ret": "const ImVec4*", "retref": "&", "signature": "(ImGuiCol)", - "stname": "ImGui" + "stname": "" } ], "igGetTextLineHeight": [ @@ -9928,9 +10429,11 @@ "comment": "", "defaults": [], "funcname": "GetTextLineHeight", + "namespace": "ImGui", + "ov_cimguiname": "igGetTextLineHeight", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetTextLineHeightWithSpacing": [ @@ -9943,9 +10446,11 @@ "comment": "", "defaults": [], "funcname": "GetTextLineHeightWithSpacing", + "namespace": "ImGui", + "ov_cimguiname": "igGetTextLineHeightWithSpacing", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetTime": [ @@ -9958,9 +10463,11 @@ "comment": "", "defaults": [], "funcname": "GetTime", + "namespace": "ImGui", + "ov_cimguiname": "igGetTime", "ret": "double", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetTreeNodeToLabelSpacing": [ @@ -9973,9 +10480,11 @@ "comment": "", "defaults": [], "funcname": "GetTreeNodeToLabelSpacing", + "namespace": "ImGui", + "ov_cimguiname": "igGetTreeNodeToLabelSpacing", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetVersion": [ @@ -9988,9 +10497,11 @@ "comment": "", "defaults": [], "funcname": "GetVersion", + "namespace": "ImGui", + "ov_cimguiname": "igGetVersion", "ret": "const char*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetWindowContentRegionMax": [ @@ -10003,9 +10514,11 @@ "comment": "", "defaults": [], "funcname": "GetWindowContentRegionMax", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowContentRegionMax", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -10021,11 +10534,12 @@ "comment": "", "defaults": [], "funcname": "GetWindowContentRegionMax", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowContentRegionMax_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -10036,12 +10550,13 @@ "comment": "", "defaults": [], "funcname": "GetWindowContentRegionMax", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetWindowContentRegionMax_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetWindowContentRegionMin": [ @@ -10054,9 +10569,11 @@ "comment": "", "defaults": [], "funcname": "GetWindowContentRegionMin", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowContentRegionMin", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -10072,11 +10589,12 @@ "comment": "", "defaults": [], "funcname": "GetWindowContentRegionMin", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowContentRegionMin_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -10087,12 +10605,13 @@ "comment": "", "defaults": [], "funcname": "GetWindowContentRegionMin", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetWindowContentRegionMin_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetWindowContentRegionWidth": [ @@ -10105,9 +10624,11 @@ "comment": "", "defaults": [], "funcname": "GetWindowContentRegionWidth", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowContentRegionWidth", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetWindowDrawList": [ @@ -10120,9 +10641,11 @@ "comment": "", "defaults": [], "funcname": "GetWindowDrawList", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowDrawList", "ret": "ImDrawList*", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetWindowHeight": [ @@ -10135,9 +10658,11 @@ "comment": "", "defaults": [], "funcname": "GetWindowHeight", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowHeight", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetWindowPos": [ @@ -10150,9 +10675,11 @@ "comment": "", "defaults": [], "funcname": "GetWindowPos", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowPos", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -10168,11 +10695,12 @@ "comment": "", "defaults": [], "funcname": "GetWindowPos", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowPos_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -10183,12 +10711,13 @@ "comment": "", "defaults": [], "funcname": "GetWindowPos", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetWindowPos_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetWindowSize": [ @@ -10201,9 +10730,11 @@ "comment": "", "defaults": [], "funcname": "GetWindowSize", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowSize", "ret": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(ImVec2 *pOut)", @@ -10219,11 +10750,12 @@ "comment": "", "defaults": [], "funcname": "GetWindowSize", + "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowSize_nonUDT", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "()", @@ -10234,12 +10766,13 @@ "comment": "", "defaults": [], "funcname": "GetWindowSize", + "namespace": "ImGui", "nonUDT": 2, "ov_cimguiname": "igGetWindowSize_nonUDT2", "ret": "ImVec2_Simple", "retorig": "ImVec2", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igGetWindowWidth": [ @@ -10252,9 +10785,11 @@ "comment": "", "defaults": [], "funcname": "GetWindowWidth", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowWidth", "ret": "float", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igImage": [ @@ -10297,9 +10832,11 @@ "uv1": "ImVec2(1,1)" }, "funcname": "Image", + "namespace": "ImGui", + "ov_cimguiname": "igImage", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4)", - "stname": "ImGui" + "stname": "" } ], "igImageButton": [ @@ -10347,9 +10884,11 @@ "uv1": "ImVec2(1,1)" }, "funcname": "ImageButton", + "namespace": "ImGui", + "ov_cimguiname": "igImageButton", "ret": "bool", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,int,const ImVec4,const ImVec4)", - "stname": "ImGui" + "stname": "" } ], "igIndent": [ @@ -10369,9 +10908,11 @@ "indent_w": "0.0f" }, "funcname": "Indent", + "namespace": "ImGui", + "ov_cimguiname": "igIndent", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igInputDouble": [ @@ -10414,9 +10955,11 @@ "step_fast": "0.0" }, "funcname": "InputDouble", + "namespace": "ImGui", + "ov_cimguiname": "igInputDouble", "ret": "bool", "signature": "(const char*,double*,double,double,const char*,ImGuiInputTextFlags)", - "stname": "ImGui" + "stname": "" } ], "igInputFloat": [ @@ -10459,9 +11002,11 @@ "step_fast": "0.0f" }, "funcname": "InputFloat", + "namespace": "ImGui", + "ov_cimguiname": "igInputFloat", "ret": "bool", "signature": "(const char*,float*,float,float,const char*,ImGuiInputTextFlags)", - "stname": "ImGui" + "stname": "" } ], "igInputFloat2": [ @@ -10494,9 +11039,11 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat2", + "namespace": "ImGui", + "ov_cimguiname": "igInputFloat2", "ret": "bool", "signature": "(const char*,float[2],const char*,ImGuiInputTextFlags)", - "stname": "ImGui" + "stname": "" } ], "igInputFloat3": [ @@ -10529,9 +11076,11 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat3", + "namespace": "ImGui", + "ov_cimguiname": "igInputFloat3", "ret": "bool", "signature": "(const char*,float[3],const char*,ImGuiInputTextFlags)", - "stname": "ImGui" + "stname": "" } ], "igInputFloat4": [ @@ -10564,9 +11113,11 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat4", + "namespace": "ImGui", + "ov_cimguiname": "igInputFloat4", "ret": "bool", "signature": "(const char*,float[4],const char*,ImGuiInputTextFlags)", - "stname": "ImGui" + "stname": "" } ], "igInputInt": [ @@ -10604,9 +11155,11 @@ "step_fast": "100" }, "funcname": "InputInt", + "namespace": "ImGui", + "ov_cimguiname": "igInputInt", "ret": "bool", "signature": "(const char*,int*,int,int,ImGuiInputTextFlags)", - "stname": "ImGui" + "stname": "" } ], "igInputInt2": [ @@ -10634,9 +11187,11 @@ "flags": "0" }, "funcname": "InputInt2", + "namespace": "ImGui", + "ov_cimguiname": "igInputInt2", "ret": "bool", "signature": "(const char*,int[2],ImGuiInputTextFlags)", - "stname": "ImGui" + "stname": "" } ], "igInputInt3": [ @@ -10664,9 +11219,11 @@ "flags": "0" }, "funcname": "InputInt3", + "namespace": "ImGui", + "ov_cimguiname": "igInputInt3", "ret": "bool", "signature": "(const char*,int[3],ImGuiInputTextFlags)", - "stname": "ImGui" + "stname": "" } ], "igInputInt4": [ @@ -10694,9 +11251,11 @@ "flags": "0" }, "funcname": "InputInt4", + "namespace": "ImGui", + "ov_cimguiname": "igInputInt4", "ret": "bool", "signature": "(const char*,int[4],ImGuiInputTextFlags)", - "stname": "ImGui" + "stname": "" } ], "igInputScalar": [ @@ -10732,20 +11291,22 @@ "type": "ImGuiInputTextFlags" } ], - "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,const void* step=((void *)0),const void* step_fast=((void *)0),const char* format=((void *)0),ImGuiInputTextFlags flags=0)", + "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,const void* step=((void*)0),const void* step_fast=((void*)0),const char* format=((void*)0),ImGuiInputTextFlags flags=0)", "call_args": "(label,data_type,v,step,step_fast,format,flags)", "cimguiname": "igInputScalar", "comment": "", "defaults": { "flags": "0", - "format": "((void *)0)", - "step": "((void *)0)", - "step_fast": "((void *)0)" + "format": "((void*)0)", + "step": "((void*)0)", + "step_fast": "((void*)0)" }, "funcname": "InputScalar", + "namespace": "ImGui", + "ov_cimguiname": "igInputScalar", "ret": "bool", "signature": "(const char*,ImGuiDataType,void*,const void*,const void*,const char*,ImGuiInputTextFlags)", - "stname": "ImGui" + "stname": "" } ], "igInputScalarN": [ @@ -10785,20 +11346,22 @@ "type": "ImGuiInputTextFlags" } ], - "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,int components,const void* step=((void *)0),const void* step_fast=((void *)0),const char* format=((void *)0),ImGuiInputTextFlags flags=0)", + "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,int components,const void* step=((void*)0),const void* step_fast=((void*)0),const char* format=((void*)0),ImGuiInputTextFlags flags=0)", "call_args": "(label,data_type,v,components,step,step_fast,format,flags)", "cimguiname": "igInputScalarN", "comment": "", "defaults": { "flags": "0", - "format": "((void *)0)", - "step": "((void *)0)", - "step_fast": "((void *)0)" + "format": "((void*)0)", + "step": "((void*)0)", + "step_fast": "((void*)0)" }, "funcname": "InputScalarN", + "namespace": "ImGui", + "ov_cimguiname": "igInputScalarN", "ret": "bool", "signature": "(const char*,ImGuiDataType,void*,int,const void*,const void*,const char*,ImGuiInputTextFlags)", - "stname": "ImGui" + "stname": "" } ], "igInputText": [ @@ -10830,19 +11393,21 @@ "type": "void*" } ], - "argsoriginal": "(const char* label,char* buf,size_t buf_size,ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void *)0),void* user_data=((void *)0))", + "argsoriginal": "(const char* label,char* buf,size_t buf_size,ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void*)0),void* user_data=((void*)0))", "call_args": "(label,buf,buf_size,flags,callback,user_data)", "cimguiname": "igInputText", "comment": "", "defaults": { - "callback": "((void *)0)", + "callback": "((void*)0)", "flags": "0", - "user_data": "((void *)0)" + "user_data": "((void*)0)" }, "funcname": "InputText", + "namespace": "ImGui", + "ov_cimguiname": "igInputText", "ret": "bool", "signature": "(const char*,char*,size_t,ImGuiInputTextFlags,ImGuiInputTextCallback,void*)", - "stname": "ImGui" + "stname": "" } ], "igInputTextMultiline": [ @@ -10878,20 +11443,22 @@ "type": "void*" } ], - "argsoriginal": "(const char* label,char* buf,size_t buf_size,const ImVec2& size=ImVec2(0,0),ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void *)0),void* user_data=((void *)0))", + "argsoriginal": "(const char* label,char* buf,size_t buf_size,const ImVec2& size=ImVec2(0,0),ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void*)0),void* user_data=((void*)0))", "call_args": "(label,buf,buf_size,size,flags,callback,user_data)", "cimguiname": "igInputTextMultiline", "comment": "", "defaults": { - "callback": "((void *)0)", + "callback": "((void*)0)", "flags": "0", "size": "ImVec2(0,0)", - "user_data": "((void *)0)" + "user_data": "((void*)0)" }, "funcname": "InputTextMultiline", + "namespace": "ImGui", + "ov_cimguiname": "igInputTextMultiline", "ret": "bool", "signature": "(const char*,char*,size_t,const ImVec2,ImGuiInputTextFlags,ImGuiInputTextCallback,void*)", - "stname": "ImGui" + "stname": "" } ], "igInvisibleButton": [ @@ -10913,9 +11480,11 @@ "comment": "", "defaults": [], "funcname": "InvisibleButton", + "namespace": "ImGui", + "ov_cimguiname": "igInvisibleButton", "ret": "bool", "signature": "(const char*,const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igIsAnyItemActive": [ @@ -10928,9 +11497,11 @@ "comment": "", "defaults": [], "funcname": "IsAnyItemActive", + "namespace": "ImGui", + "ov_cimguiname": "igIsAnyItemActive", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsAnyItemFocused": [ @@ -10943,9 +11514,11 @@ "comment": "", "defaults": [], "funcname": "IsAnyItemFocused", + "namespace": "ImGui", + "ov_cimguiname": "igIsAnyItemFocused", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsAnyItemHovered": [ @@ -10958,9 +11531,11 @@ "comment": "", "defaults": [], "funcname": "IsAnyItemHovered", + "namespace": "ImGui", + "ov_cimguiname": "igIsAnyItemHovered", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsAnyMouseDown": [ @@ -10973,9 +11548,11 @@ "comment": "", "defaults": [], "funcname": "IsAnyMouseDown", + "namespace": "ImGui", + "ov_cimguiname": "igIsAnyMouseDown", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsItemActive": [ @@ -10988,9 +11565,11 @@ "comment": "", "defaults": [], "funcname": "IsItemActive", + "namespace": "ImGui", + "ov_cimguiname": "igIsItemActive", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsItemClicked": [ @@ -11010,9 +11589,11 @@ "mouse_button": "0" }, "funcname": "IsItemClicked", + "namespace": "ImGui", + "ov_cimguiname": "igIsItemClicked", "ret": "bool", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igIsItemDeactivated": [ @@ -11025,9 +11606,11 @@ "comment": "", "defaults": [], "funcname": "IsItemDeactivated", + "namespace": "ImGui", + "ov_cimguiname": "igIsItemDeactivated", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsItemDeactivatedAfterEdit": [ @@ -11040,9 +11623,11 @@ "comment": "", "defaults": [], "funcname": "IsItemDeactivatedAfterEdit", + "namespace": "ImGui", + "ov_cimguiname": "igIsItemDeactivatedAfterEdit", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsItemEdited": [ @@ -11055,9 +11640,11 @@ "comment": "", "defaults": [], "funcname": "IsItemEdited", + "namespace": "ImGui", + "ov_cimguiname": "igIsItemEdited", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsItemFocused": [ @@ -11070,9 +11657,11 @@ "comment": "", "defaults": [], "funcname": "IsItemFocused", + "namespace": "ImGui", + "ov_cimguiname": "igIsItemFocused", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsItemHovered": [ @@ -11092,9 +11681,11 @@ "flags": "0" }, "funcname": "IsItemHovered", + "namespace": "ImGui", + "ov_cimguiname": "igIsItemHovered", "ret": "bool", "signature": "(ImGuiHoveredFlags)", - "stname": "ImGui" + "stname": "" } ], "igIsItemVisible": [ @@ -11107,9 +11698,11 @@ "comment": "", "defaults": [], "funcname": "IsItemVisible", + "namespace": "ImGui", + "ov_cimguiname": "igIsItemVisible", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsKeyDown": [ @@ -11127,9 +11720,11 @@ "comment": "", "defaults": [], "funcname": "IsKeyDown", + "namespace": "ImGui", + "ov_cimguiname": "igIsKeyDown", "ret": "bool", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igIsKeyPressed": [ @@ -11153,9 +11748,11 @@ "repeat": "true" }, "funcname": "IsKeyPressed", + "namespace": "ImGui", + "ov_cimguiname": "igIsKeyPressed", "ret": "bool", "signature": "(int,bool)", - "stname": "ImGui" + "stname": "" } ], "igIsKeyReleased": [ @@ -11173,9 +11770,11 @@ "comment": "", "defaults": [], "funcname": "IsKeyReleased", + "namespace": "ImGui", + "ov_cimguiname": "igIsKeyReleased", "ret": "bool", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igIsMouseClicked": [ @@ -11199,9 +11798,11 @@ "repeat": "false" }, "funcname": "IsMouseClicked", + "namespace": "ImGui", + "ov_cimguiname": "igIsMouseClicked", "ret": "bool", "signature": "(int,bool)", - "stname": "ImGui" + "stname": "" } ], "igIsMouseDoubleClicked": [ @@ -11219,9 +11820,11 @@ "comment": "", "defaults": [], "funcname": "IsMouseDoubleClicked", + "namespace": "ImGui", + "ov_cimguiname": "igIsMouseDoubleClicked", "ret": "bool", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igIsMouseDown": [ @@ -11239,9 +11842,11 @@ "comment": "", "defaults": [], "funcname": "IsMouseDown", + "namespace": "ImGui", + "ov_cimguiname": "igIsMouseDown", "ret": "bool", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igIsMouseDragging": [ @@ -11266,9 +11871,11 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragging", + "namespace": "ImGui", + "ov_cimguiname": "igIsMouseDragging", "ret": "bool", "signature": "(int,float)", - "stname": "ImGui" + "stname": "" } ], "igIsMouseHoveringRect": [ @@ -11296,9 +11903,11 @@ "clip": "true" }, "funcname": "IsMouseHoveringRect", + "namespace": "ImGui", + "ov_cimguiname": "igIsMouseHoveringRect", "ret": "bool", "signature": "(const ImVec2,const ImVec2,bool)", - "stname": "ImGui" + "stname": "" } ], "igIsMousePosValid": [ @@ -11310,17 +11919,19 @@ "type": "const ImVec2*" } ], - "argsoriginal": "(const ImVec2* mouse_pos=((void *)0))", + "argsoriginal": "(const ImVec2* mouse_pos=((void*)0))", "call_args": "(mouse_pos)", "cimguiname": "igIsMousePosValid", "comment": "", "defaults": { - "mouse_pos": "((void *)0)" + "mouse_pos": "((void*)0)" }, "funcname": "IsMousePosValid", + "namespace": "ImGui", + "ov_cimguiname": "igIsMousePosValid", "ret": "bool", "signature": "(const ImVec2*)", - "stname": "ImGui" + "stname": "" } ], "igIsMouseReleased": [ @@ -11338,9 +11949,11 @@ "comment": "", "defaults": [], "funcname": "IsMouseReleased", + "namespace": "ImGui", + "ov_cimguiname": "igIsMouseReleased", "ret": "bool", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igIsPopupOpen": [ @@ -11358,9 +11971,11 @@ "comment": "", "defaults": [], "funcname": "IsPopupOpen", + "namespace": "ImGui", + "ov_cimguiname": "igIsPopupOpen", "ret": "bool", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igIsRectVisible": [ @@ -11378,10 +11993,11 @@ "comment": "", "defaults": [], "funcname": "IsRectVisible", + "namespace": "ImGui", "ov_cimguiname": "igIsRectVisible", "ret": "bool", "signature": "(const ImVec2)", - "stname": "ImGui" + "stname": "" }, { "args": "(const ImVec2 rect_min,const ImVec2 rect_max)", @@ -11401,10 +12017,11 @@ "comment": "", "defaults": [], "funcname": "IsRectVisible", + "namespace": "ImGui", "ov_cimguiname": "igIsRectVisibleVec2", "ret": "bool", "signature": "(const ImVec2,const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igIsWindowAppearing": [ @@ -11417,9 +12034,11 @@ "comment": "", "defaults": [], "funcname": "IsWindowAppearing", + "namespace": "ImGui", + "ov_cimguiname": "igIsWindowAppearing", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsWindowCollapsed": [ @@ -11432,9 +12051,11 @@ "comment": "", "defaults": [], "funcname": "IsWindowCollapsed", + "namespace": "ImGui", + "ov_cimguiname": "igIsWindowCollapsed", "ret": "bool", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igIsWindowFocused": [ @@ -11454,9 +12075,11 @@ "flags": "0" }, "funcname": "IsWindowFocused", + "namespace": "ImGui", + "ov_cimguiname": "igIsWindowFocused", "ret": "bool", "signature": "(ImGuiFocusedFlags)", - "stname": "ImGui" + "stname": "" } ], "igIsWindowHovered": [ @@ -11476,9 +12099,11 @@ "flags": "0" }, "funcname": "IsWindowHovered", + "namespace": "ImGui", + "ov_cimguiname": "igIsWindowHovered", "ret": "bool", "signature": "(ImGuiHoveredFlags)", - "stname": "ImGui" + "stname": "" } ], "igLabelText": [ @@ -11505,9 +12130,11 @@ "defaults": [], "funcname": "LabelText", "isvararg": "...)", + "namespace": "ImGui", + "ov_cimguiname": "igLabelText", "ret": "void", "signature": "(const char*,const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igLabelTextV": [ @@ -11533,9 +12160,11 @@ "comment": "", "defaults": [], "funcname": "LabelTextV", + "namespace": "ImGui", + "ov_cimguiname": "igLabelTextV", "ret": "void", "signature": "(const char*,const char*,va_list)", - "stname": "ImGui" + "stname": "" } ], "igListBox": [ @@ -11571,10 +12200,11 @@ "height_in_items": "-1" }, "funcname": "ListBox", + "namespace": "ImGui", "ov_cimguiname": "igListBoxStr_arr", "ret": "bool", "signature": "(const char*,int*,const char* const[],int,int)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items)", @@ -11614,10 +12244,11 @@ "height_in_items": "-1" }, "funcname": "ListBox", + "namespace": "ImGui", "ov_cimguiname": "igListBoxFnPtr", "ret": "bool", "signature": "(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)", - "stname": "ImGui" + "stname": "" } ], "igListBoxFooter": [ @@ -11630,9 +12261,11 @@ "comment": "", "defaults": [], "funcname": "ListBoxFooter", + "namespace": "ImGui", + "ov_cimguiname": "igListBoxFooter", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igListBoxHeader": [ @@ -11656,10 +12289,11 @@ "size": "ImVec2(0,0)" }, "funcname": "ListBoxHeader", + "namespace": "ImGui", "ov_cimguiname": "igListBoxHeaderVec2", "ret": "bool", "signature": "(const char*,const ImVec2)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* label,int items_count,int height_in_items)", @@ -11685,10 +12319,11 @@ "height_in_items": "-1" }, "funcname": "ListBoxHeader", + "namespace": "ImGui", "ov_cimguiname": "igListBoxHeaderInt", "ret": "bool", "signature": "(const char*,int,int)", - "stname": "ImGui" + "stname": "" } ], "igLoadIniSettingsFromDisk": [ @@ -11706,9 +12341,11 @@ "comment": "", "defaults": [], "funcname": "LoadIniSettingsFromDisk", + "namespace": "ImGui", + "ov_cimguiname": "igLoadIniSettingsFromDisk", "ret": "void", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igLoadIniSettingsFromMemory": [ @@ -11732,9 +12369,11 @@ "ini_size": "0" }, "funcname": "LoadIniSettingsFromMemory", + "namespace": "ImGui", + "ov_cimguiname": "igLoadIniSettingsFromMemory", "ret": "void", "signature": "(const char*,size_t)", - "stname": "ImGui" + "stname": "" } ], "igLogButtons": [ @@ -11747,9 +12386,11 @@ "comment": "", "defaults": [], "funcname": "LogButtons", + "namespace": "ImGui", + "ov_cimguiname": "igLogButtons", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igLogFinish": [ @@ -11762,9 +12403,11 @@ "comment": "", "defaults": [], "funcname": "LogFinish", + "namespace": "ImGui", + "ov_cimguiname": "igLogFinish", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igLogText": [ @@ -11788,9 +12431,11 @@ "funcname": "LogText", "isvararg": "...)", "manual": true, + "namespace": "ImGui", + "ov_cimguiname": "igLogText", "ret": "void", "signature": "(const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igLogToClipboard": [ @@ -11810,9 +12455,11 @@ "max_depth": "-1" }, "funcname": "LogToClipboard", + "namespace": "ImGui", + "ov_cimguiname": "igLogToClipboard", "ret": "void", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igLogToFile": [ @@ -11828,18 +12475,20 @@ "type": "const char*" } ], - "argsoriginal": "(int max_depth=-1,const char* filename=((void *)0))", + "argsoriginal": "(int max_depth=-1,const char* filename=((void*)0))", "call_args": "(max_depth,filename)", "cimguiname": "igLogToFile", "comment": "", "defaults": { - "filename": "((void *)0)", + "filename": "((void*)0)", "max_depth": "-1" }, "funcname": "LogToFile", + "namespace": "ImGui", + "ov_cimguiname": "igLogToFile", "ret": "void", "signature": "(int,const char*)", - "stname": "ImGui" + "stname": "" } ], "igLogToTTY": [ @@ -11859,9 +12508,11 @@ "max_depth": "-1" }, "funcname": "LogToTTY", + "namespace": "ImGui", + "ov_cimguiname": "igLogToTTY", "ret": "void", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igMemAlloc": [ @@ -11879,9 +12530,11 @@ "comment": "", "defaults": [], "funcname": "MemAlloc", + "namespace": "ImGui", + "ov_cimguiname": "igMemAlloc", "ret": "void*", "signature": "(size_t)", - "stname": "ImGui" + "stname": "" } ], "igMemFree": [ @@ -11899,9 +12552,11 @@ "comment": "", "defaults": [], "funcname": "MemFree", + "namespace": "ImGui", + "ov_cimguiname": "igMemFree", "ret": "void", "signature": "(void*)", - "stname": "ImGui" + "stname": "" } ], "igMenuItem": [ @@ -11925,20 +12580,21 @@ "type": "bool" } ], - "argsoriginal": "(const char* label,const char* shortcut=((void *)0),bool selected=false,bool enabled=true)", + "argsoriginal": "(const char* label,const char* shortcut=((void*)0),bool selected=false,bool enabled=true)", "call_args": "(label,shortcut,selected,enabled)", "cimguiname": "igMenuItem", "comment": "", "defaults": { "enabled": "true", "selected": "false", - "shortcut": "((void *)0)" + "shortcut": "((void*)0)" }, "funcname": "MenuItem", + "namespace": "ImGui", "ov_cimguiname": "igMenuItemBool", "ret": "bool", "signature": "(const char*,const char*,bool,bool)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* label,const char* shortcut,bool* p_selected,bool enabled)", @@ -11968,10 +12624,11 @@ "enabled": "true" }, "funcname": "MenuItem", + "namespace": "ImGui", "ov_cimguiname": "igMenuItemBoolPtr", "ret": "bool", "signature": "(const char*,const char*,bool*,bool)", - "stname": "ImGui" + "stname": "" } ], "igNewFrame": [ @@ -11984,9 +12641,11 @@ "comment": "", "defaults": [], "funcname": "NewFrame", + "namespace": "ImGui", + "ov_cimguiname": "igNewFrame", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igNewLine": [ @@ -11999,9 +12658,11 @@ "comment": "", "defaults": [], "funcname": "NewLine", + "namespace": "ImGui", + "ov_cimguiname": "igNewLine", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igNextColumn": [ @@ -12014,9 +12675,11 @@ "comment": "", "defaults": [], "funcname": "NextColumn", + "namespace": "ImGui", + "ov_cimguiname": "igNextColumn", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igOpenPopup": [ @@ -12034,9 +12697,11 @@ "comment": "", "defaults": [], "funcname": "OpenPopup", + "namespace": "ImGui", + "ov_cimguiname": "igOpenPopup", "ret": "void", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igOpenPopupOnItemClick": [ @@ -12052,18 +12717,20 @@ "type": "int" } ], - "argsoriginal": "(const char* str_id=((void *)0),int mouse_button=1)", + "argsoriginal": "(const char* str_id=((void*)0),int mouse_button=1)", "call_args": "(str_id,mouse_button)", "cimguiname": "igOpenPopupOnItemClick", "comment": "", "defaults": { "mouse_button": "1", - "str_id": "((void *)0)" + "str_id": "((void*)0)" }, "funcname": "OpenPopupOnItemClick", + "namespace": "ImGui", + "ov_cimguiname": "igOpenPopupOnItemClick", "ret": "bool", "signature": "(const char*,int)", - "stname": "ImGui" + "stname": "" } ], "igPlotHistogram": [ @@ -12107,23 +12774,24 @@ "type": "int" } ], - "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void *)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", + "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", "call_args": "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)", "cimguiname": "igPlotHistogram", "comment": "", "defaults": { "graph_size": "ImVec2(0,0)", - "overlay_text": "((void *)0)", + "overlay_text": "((void*)0)", "scale_max": "FLT_MAX", "scale_min": "FLT_MAX", "stride": "sizeof(float)", "values_offset": "0" }, "funcname": "PlotHistogram", + "namespace": "ImGui", "ov_cimguiname": "igPlotHistogramFloatPtr", "ret": "void", "signature": "(const char*,const float*,int,int,const char*,float,float,ImVec2,int)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 graph_size)", @@ -12167,22 +12835,23 @@ "type": "ImVec2" } ], - "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void *)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0))", + "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0))", "call_args": "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)", "cimguiname": "igPlotHistogram", "comment": "", "defaults": { "graph_size": "ImVec2(0,0)", - "overlay_text": "((void *)0)", + "overlay_text": "((void*)0)", "scale_max": "FLT_MAX", "scale_min": "FLT_MAX", "values_offset": "0" }, "funcname": "PlotHistogram", + "namespace": "ImGui", "ov_cimguiname": "igPlotHistogramFnPtr", "ret": "void", "signature": "(const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igPlotLines": [ @@ -12226,23 +12895,24 @@ "type": "int" } ], - "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void *)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", + "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", "call_args": "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)", "cimguiname": "igPlotLines", "comment": "", "defaults": { "graph_size": "ImVec2(0,0)", - "overlay_text": "((void *)0)", + "overlay_text": "((void*)0)", "scale_max": "FLT_MAX", "scale_min": "FLT_MAX", "stride": "sizeof(float)", "values_offset": "0" }, "funcname": "PlotLines", + "namespace": "ImGui", "ov_cimguiname": "igPlotLines", "ret": "void", "signature": "(const char*,const float*,int,int,const char*,float,float,ImVec2,int)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 graph_size)", @@ -12286,22 +12956,23 @@ "type": "ImVec2" } ], - "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void *)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0))", + "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0))", "call_args": "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)", "cimguiname": "igPlotLines", "comment": "", "defaults": { "graph_size": "ImVec2(0,0)", - "overlay_text": "((void *)0)", + "overlay_text": "((void*)0)", "scale_max": "FLT_MAX", "scale_min": "FLT_MAX", "values_offset": "0" }, "funcname": "PlotLines", + "namespace": "ImGui", "ov_cimguiname": "igPlotLinesFnPtr", "ret": "void", "signature": "(const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igPopAllowKeyboardFocus": [ @@ -12314,9 +12985,11 @@ "comment": "", "defaults": [], "funcname": "PopAllowKeyboardFocus", + "namespace": "ImGui", + "ov_cimguiname": "igPopAllowKeyboardFocus", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igPopButtonRepeat": [ @@ -12329,9 +13002,11 @@ "comment": "", "defaults": [], "funcname": "PopButtonRepeat", + "namespace": "ImGui", + "ov_cimguiname": "igPopButtonRepeat", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igPopClipRect": [ @@ -12344,9 +13019,11 @@ "comment": "", "defaults": [], "funcname": "PopClipRect", + "namespace": "ImGui", + "ov_cimguiname": "igPopClipRect", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igPopFont": [ @@ -12359,9 +13036,11 @@ "comment": "", "defaults": [], "funcname": "PopFont", + "namespace": "ImGui", + "ov_cimguiname": "igPopFont", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igPopID": [ @@ -12374,9 +13053,11 @@ "comment": "", "defaults": [], "funcname": "PopID", + "namespace": "ImGui", + "ov_cimguiname": "igPopID", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igPopItemWidth": [ @@ -12389,9 +13070,11 @@ "comment": "", "defaults": [], "funcname": "PopItemWidth", + "namespace": "ImGui", + "ov_cimguiname": "igPopItemWidth", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igPopStyleColor": [ @@ -12411,9 +13094,11 @@ "count": "1" }, "funcname": "PopStyleColor", + "namespace": "ImGui", + "ov_cimguiname": "igPopStyleColor", "ret": "void", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igPopStyleVar": [ @@ -12433,9 +13118,11 @@ "count": "1" }, "funcname": "PopStyleVar", + "namespace": "ImGui", + "ov_cimguiname": "igPopStyleVar", "ret": "void", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igPopTextWrapPos": [ @@ -12448,9 +13135,11 @@ "comment": "", "defaults": [], "funcname": "PopTextWrapPos", + "namespace": "ImGui", + "ov_cimguiname": "igPopTextWrapPos", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igProgressBar": [ @@ -12470,18 +13159,20 @@ "type": "const char*" } ], - "argsoriginal": "(float fraction,const ImVec2& size_arg=ImVec2(-1,0),const char* overlay=((void *)0))", + "argsoriginal": "(float fraction,const ImVec2& size_arg=ImVec2(-1,0),const char* overlay=((void*)0))", "call_args": "(fraction,size_arg,overlay)", "cimguiname": "igProgressBar", "comment": "", "defaults": { - "overlay": "((void *)0)", + "overlay": "((void*)0)", "size_arg": "ImVec2(-1,0)" }, "funcname": "ProgressBar", + "namespace": "ImGui", + "ov_cimguiname": "igProgressBar", "ret": "void", "signature": "(float,const ImVec2,const char*)", - "stname": "ImGui" + "stname": "" } ], "igPushAllowKeyboardFocus": [ @@ -12499,9 +13190,11 @@ "comment": "", "defaults": [], "funcname": "PushAllowKeyboardFocus", + "namespace": "ImGui", + "ov_cimguiname": "igPushAllowKeyboardFocus", "ret": "void", "signature": "(bool)", - "stname": "ImGui" + "stname": "" } ], "igPushButtonRepeat": [ @@ -12519,9 +13212,11 @@ "comment": "", "defaults": [], "funcname": "PushButtonRepeat", + "namespace": "ImGui", + "ov_cimguiname": "igPushButtonRepeat", "ret": "void", "signature": "(bool)", - "stname": "ImGui" + "stname": "" } ], "igPushClipRect": [ @@ -12547,9 +13242,11 @@ "comment": "", "defaults": [], "funcname": "PushClipRect", + "namespace": "ImGui", + "ov_cimguiname": "igPushClipRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,bool)", - "stname": "ImGui" + "stname": "" } ], "igPushFont": [ @@ -12567,9 +13264,11 @@ "comment": "", "defaults": [], "funcname": "PushFont", + "namespace": "ImGui", + "ov_cimguiname": "igPushFont", "ret": "void", "signature": "(ImFont*)", - "stname": "ImGui" + "stname": "" } ], "igPushID": [ @@ -12587,10 +13286,11 @@ "comment": "", "defaults": [], "funcname": "PushID", + "namespace": "ImGui", "ov_cimguiname": "igPushIDStr", "ret": "void", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* str_id_begin,const char* str_id_end)", @@ -12610,10 +13310,11 @@ "comment": "", "defaults": [], "funcname": "PushID", + "namespace": "ImGui", "ov_cimguiname": "igPushIDRange", "ret": "void", "signature": "(const char*,const char*)", - "stname": "ImGui" + "stname": "" }, { "args": "(const void* ptr_id)", @@ -12629,10 +13330,11 @@ "comment": "", "defaults": [], "funcname": "PushID", + "namespace": "ImGui", "ov_cimguiname": "igPushIDPtr", "ret": "void", "signature": "(const void*)", - "stname": "ImGui" + "stname": "" }, { "args": "(int int_id)", @@ -12648,10 +13350,11 @@ "comment": "", "defaults": [], "funcname": "PushID", + "namespace": "ImGui", "ov_cimguiname": "igPushIDInt", "ret": "void", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igPushItemWidth": [ @@ -12669,9 +13372,11 @@ "comment": "", "defaults": [], "funcname": "PushItemWidth", + "namespace": "ImGui", + "ov_cimguiname": "igPushItemWidth", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igPushStyleColor": [ @@ -12693,10 +13398,11 @@ "comment": "", "defaults": [], "funcname": "PushStyleColor", + "namespace": "ImGui", "ov_cimguiname": "igPushStyleColorU32", "ret": "void", "signature": "(ImGuiCol,ImU32)", - "stname": "ImGui" + "stname": "" }, { "args": "(ImGuiCol idx,const ImVec4 col)", @@ -12716,10 +13422,11 @@ "comment": "", "defaults": [], "funcname": "PushStyleColor", + "namespace": "ImGui", "ov_cimguiname": "igPushStyleColor", "ret": "void", "signature": "(ImGuiCol,const ImVec4)", - "stname": "ImGui" + "stname": "" } ], "igPushStyleVar": [ @@ -12741,10 +13448,11 @@ "comment": "", "defaults": [], "funcname": "PushStyleVar", + "namespace": "ImGui", "ov_cimguiname": "igPushStyleVarFloat", "ret": "void", "signature": "(ImGuiStyleVar,float)", - "stname": "ImGui" + "stname": "" }, { "args": "(ImGuiStyleVar idx,const ImVec2 val)", @@ -12764,10 +13472,11 @@ "comment": "", "defaults": [], "funcname": "PushStyleVar", + "namespace": "ImGui", "ov_cimguiname": "igPushStyleVarVec2", "ret": "void", "signature": "(ImGuiStyleVar,const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igPushTextWrapPos": [ @@ -12787,9 +13496,11 @@ "wrap_local_pos_x": "0.0f" }, "funcname": "PushTextWrapPos", + "namespace": "ImGui", + "ov_cimguiname": "igPushTextWrapPos", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igRadioButton": [ @@ -12811,10 +13522,11 @@ "comment": "", "defaults": [], "funcname": "RadioButton", + "namespace": "ImGui", "ov_cimguiname": "igRadioButtonBool", "ret": "bool", "signature": "(const char*,bool)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* label,int* v,int v_button)", @@ -12838,10 +13550,11 @@ "comment": "", "defaults": [], "funcname": "RadioButton", + "namespace": "ImGui", "ov_cimguiname": "igRadioButtonIntPtr", "ret": "bool", "signature": "(const char*,int*,int)", - "stname": "ImGui" + "stname": "" } ], "igRender": [ @@ -12854,9 +13567,11 @@ "comment": "", "defaults": [], "funcname": "Render", + "namespace": "ImGui", + "ov_cimguiname": "igRender", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igResetMouseDragDelta": [ @@ -12876,9 +13591,11 @@ "button": "0" }, "funcname": "ResetMouseDragDelta", + "namespace": "ImGui", + "ov_cimguiname": "igResetMouseDragDelta", "ret": "void", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igSameLine": [ @@ -12903,9 +13620,11 @@ "spacing_w": "-1.0f" }, "funcname": "SameLine", + "namespace": "ImGui", + "ov_cimguiname": "igSameLine", "ret": "void", "signature": "(float,float)", - "stname": "ImGui" + "stname": "" } ], "igSaveIniSettingsToDisk": [ @@ -12923,9 +13642,11 @@ "comment": "", "defaults": [], "funcname": "SaveIniSettingsToDisk", + "namespace": "ImGui", + "ov_cimguiname": "igSaveIniSettingsToDisk", "ret": "void", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igSaveIniSettingsToMemory": [ @@ -12937,17 +13658,19 @@ "type": "size_t*" } ], - "argsoriginal": "(size_t* out_ini_size=((void *)0))", + "argsoriginal": "(size_t* out_ini_size=((void*)0))", "call_args": "(out_ini_size)", "cimguiname": "igSaveIniSettingsToMemory", "comment": "", "defaults": { - "out_ini_size": "((void *)0)" + "out_ini_size": "((void*)0)" }, "funcname": "SaveIniSettingsToMemory", + "namespace": "ImGui", + "ov_cimguiname": "igSaveIniSettingsToMemory", "ret": "const char*", "signature": "(size_t*)", - "stname": "ImGui" + "stname": "" } ], "igSelectable": [ @@ -12981,10 +13704,11 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", + "namespace": "ImGui", "ov_cimguiname": "igSelectable", "ret": "bool", "signature": "(const char*,bool,ImGuiSelectableFlags,const ImVec2)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* label,bool* p_selected,ImGuiSelectableFlags flags,const ImVec2 size)", @@ -13015,10 +13739,11 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", + "namespace": "ImGui", "ov_cimguiname": "igSelectableBoolPtr", "ret": "bool", "signature": "(const char*,bool*,ImGuiSelectableFlags,const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igSeparator": [ @@ -13031,9 +13756,11 @@ "comment": "", "defaults": [], "funcname": "Separator", + "namespace": "ImGui", + "ov_cimguiname": "igSeparator", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igSetAllocatorFunctions": [ @@ -13057,17 +13784,19 @@ "type": "void*" } ], - "argsoriginal": "(void*(*alloc_func)(size_t sz,void* user_data),void(*free_func)(void* ptr,void* user_data),void* user_data=((void *)0))", + "argsoriginal": "(void*(*alloc_func)(size_t sz,void* user_data),void(*free_func)(void* ptr,void* user_data),void* user_data=((void*)0))", "call_args": "(alloc_func,free_func,user_data)", "cimguiname": "igSetAllocatorFunctions", "comment": "", "defaults": { - "user_data": "((void *)0)" + "user_data": "((void*)0)" }, "funcname": "SetAllocatorFunctions", + "namespace": "ImGui", + "ov_cimguiname": "igSetAllocatorFunctions", "ret": "void", "signature": "(void*(*)(size_t,void*),void(*)(void*,void*),void*)", - "stname": "ImGui" + "stname": "" } ], "igSetClipboardText": [ @@ -13085,9 +13814,11 @@ "comment": "", "defaults": [], "funcname": "SetClipboardText", + "namespace": "ImGui", + "ov_cimguiname": "igSetClipboardText", "ret": "void", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igSetColorEditOptions": [ @@ -13105,9 +13836,11 @@ "comment": "", "defaults": [], "funcname": "SetColorEditOptions", + "namespace": "ImGui", + "ov_cimguiname": "igSetColorEditOptions", "ret": "void", "signature": "(ImGuiColorEditFlags)", - "stname": "ImGui" + "stname": "" } ], "igSetColumnOffset": [ @@ -13129,9 +13862,11 @@ "comment": "", "defaults": [], "funcname": "SetColumnOffset", + "namespace": "ImGui", + "ov_cimguiname": "igSetColumnOffset", "ret": "void", "signature": "(int,float)", - "stname": "ImGui" + "stname": "" } ], "igSetColumnWidth": [ @@ -13153,9 +13888,11 @@ "comment": "", "defaults": [], "funcname": "SetColumnWidth", + "namespace": "ImGui", + "ov_cimguiname": "igSetColumnWidth", "ret": "void", "signature": "(int,float)", - "stname": "ImGui" + "stname": "" } ], "igSetCurrentContext": [ @@ -13173,9 +13910,11 @@ "comment": "", "defaults": [], "funcname": "SetCurrentContext", + "namespace": "ImGui", + "ov_cimguiname": "igSetCurrentContext", "ret": "void", "signature": "(ImGuiContext*)", - "stname": "ImGui" + "stname": "" } ], "igSetCursorPos": [ @@ -13193,9 +13932,11 @@ "comment": "", "defaults": [], "funcname": "SetCursorPos", + "namespace": "ImGui", + "ov_cimguiname": "igSetCursorPos", "ret": "void", "signature": "(const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igSetCursorPosX": [ @@ -13213,9 +13954,11 @@ "comment": "", "defaults": [], "funcname": "SetCursorPosX", + "namespace": "ImGui", + "ov_cimguiname": "igSetCursorPosX", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igSetCursorPosY": [ @@ -13233,9 +13976,11 @@ "comment": "", "defaults": [], "funcname": "SetCursorPosY", + "namespace": "ImGui", + "ov_cimguiname": "igSetCursorPosY", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igSetCursorScreenPos": [ @@ -13253,9 +13998,11 @@ "comment": "", "defaults": [], "funcname": "SetCursorScreenPos", + "namespace": "ImGui", + "ov_cimguiname": "igSetCursorScreenPos", "ret": "void", "signature": "(const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igSetDragDropPayload": [ @@ -13287,9 +14034,11 @@ "cond": "0" }, "funcname": "SetDragDropPayload", + "namespace": "ImGui", + "ov_cimguiname": "igSetDragDropPayload", "ret": "bool", "signature": "(const char*,const void*,size_t,ImGuiCond)", - "stname": "ImGui" + "stname": "" } ], "igSetItemAllowOverlap": [ @@ -13302,9 +14051,11 @@ "comment": "", "defaults": [], "funcname": "SetItemAllowOverlap", + "namespace": "ImGui", + "ov_cimguiname": "igSetItemAllowOverlap", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igSetItemDefaultFocus": [ @@ -13317,9 +14068,11 @@ "comment": "", "defaults": [], "funcname": "SetItemDefaultFocus", + "namespace": "ImGui", + "ov_cimguiname": "igSetItemDefaultFocus", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igSetKeyboardFocusHere": [ @@ -13339,9 +14092,11 @@ "offset": "0" }, "funcname": "SetKeyboardFocusHere", + "namespace": "ImGui", + "ov_cimguiname": "igSetKeyboardFocusHere", "ret": "void", "signature": "(int)", - "stname": "ImGui" + "stname": "" } ], "igSetMouseCursor": [ @@ -13359,9 +14114,11 @@ "comment": "", "defaults": [], "funcname": "SetMouseCursor", + "namespace": "ImGui", + "ov_cimguiname": "igSetMouseCursor", "ret": "void", "signature": "(ImGuiMouseCursor)", - "stname": "ImGui" + "stname": "" } ], "igSetNextTreeNodeOpen": [ @@ -13385,9 +14142,11 @@ "cond": "0" }, "funcname": "SetNextTreeNodeOpen", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextTreeNodeOpen", "ret": "void", "signature": "(bool,ImGuiCond)", - "stname": "ImGui" + "stname": "" } ], "igSetNextWindowBgAlpha": [ @@ -13405,9 +14164,11 @@ "comment": "", "defaults": [], "funcname": "SetNextWindowBgAlpha", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextWindowBgAlpha", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igSetNextWindowCollapsed": [ @@ -13431,9 +14192,11 @@ "cond": "0" }, "funcname": "SetNextWindowCollapsed", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextWindowCollapsed", "ret": "void", "signature": "(bool,ImGuiCond)", - "stname": "ImGui" + "stname": "" } ], "igSetNextWindowContentSize": [ @@ -13451,9 +14214,11 @@ "comment": "", "defaults": [], "funcname": "SetNextWindowContentSize", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextWindowContentSize", "ret": "void", "signature": "(const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igSetNextWindowFocus": [ @@ -13466,9 +14231,11 @@ "comment": "", "defaults": [], "funcname": "SetNextWindowFocus", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextWindowFocus", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igSetNextWindowPos": [ @@ -13497,9 +14264,11 @@ "pivot": "ImVec2(0,0)" }, "funcname": "SetNextWindowPos", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextWindowPos", "ret": "void", "signature": "(const ImVec2,ImGuiCond,const ImVec2)", - "stname": "ImGui" + "stname": "" } ], "igSetNextWindowSize": [ @@ -13523,9 +14292,11 @@ "cond": "0" }, "funcname": "SetNextWindowSize", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextWindowSize", "ret": "void", "signature": "(const ImVec2,ImGuiCond)", - "stname": "ImGui" + "stname": "" } ], "igSetNextWindowSizeConstraints": [ @@ -13549,18 +14320,20 @@ "type": "void*" } ], - "argsoriginal": "(const ImVec2& size_min,const ImVec2& size_max,ImGuiSizeCallback custom_callback=((void *)0),void* custom_callback_data=((void *)0))", + "argsoriginal": "(const ImVec2& size_min,const ImVec2& size_max,ImGuiSizeCallback custom_callback=((void*)0),void* custom_callback_data=((void*)0))", "call_args": "(size_min,size_max,custom_callback,custom_callback_data)", "cimguiname": "igSetNextWindowSizeConstraints", "comment": "", "defaults": { - "custom_callback": "((void *)0)", - "custom_callback_data": "((void *)0)" + "custom_callback": "((void*)0)", + "custom_callback_data": "((void*)0)" }, "funcname": "SetNextWindowSizeConstraints", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextWindowSizeConstraints", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImGuiSizeCallback,void*)", - "stname": "ImGui" + "stname": "" } ], "igSetScrollFromPosY": [ @@ -13584,9 +14357,11 @@ "center_y_ratio": "0.5f" }, "funcname": "SetScrollFromPosY", + "namespace": "ImGui", + "ov_cimguiname": "igSetScrollFromPosY", "ret": "void", "signature": "(float,float)", - "stname": "ImGui" + "stname": "" } ], "igSetScrollHereY": [ @@ -13606,9 +14381,11 @@ "center_y_ratio": "0.5f" }, "funcname": "SetScrollHereY", + "namespace": "ImGui", + "ov_cimguiname": "igSetScrollHereY", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igSetScrollX": [ @@ -13626,9 +14403,11 @@ "comment": "", "defaults": [], "funcname": "SetScrollX", + "namespace": "ImGui", + "ov_cimguiname": "igSetScrollX", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igSetScrollY": [ @@ -13646,9 +14425,11 @@ "comment": "", "defaults": [], "funcname": "SetScrollY", + "namespace": "ImGui", + "ov_cimguiname": "igSetScrollY", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igSetStateStorage": [ @@ -13666,9 +14447,11 @@ "comment": "", "defaults": [], "funcname": "SetStateStorage", + "namespace": "ImGui", + "ov_cimguiname": "igSetStateStorage", "ret": "void", "signature": "(ImGuiStorage*)", - "stname": "ImGui" + "stname": "" } ], "igSetTabItemClosed": [ @@ -13686,9 +14469,11 @@ "comment": "", "defaults": [], "funcname": "SetTabItemClosed", + "namespace": "ImGui", + "ov_cimguiname": "igSetTabItemClosed", "ret": "void", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igSetTooltip": [ @@ -13711,9 +14496,11 @@ "defaults": [], "funcname": "SetTooltip", "isvararg": "...)", + "namespace": "ImGui", + "ov_cimguiname": "igSetTooltip", "ret": "void", "signature": "(const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igSetTooltipV": [ @@ -13735,9 +14522,11 @@ "comment": "", "defaults": [], "funcname": "SetTooltipV", + "namespace": "ImGui", + "ov_cimguiname": "igSetTooltipV", "ret": "void", "signature": "(const char*,va_list)", - "stname": "ImGui" + "stname": "" } ], "igSetWindowCollapsed": [ @@ -13761,10 +14550,11 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", + "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsedBool", "ret": "void", "signature": "(bool,ImGuiCond)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* name,bool collapsed,ImGuiCond cond)", @@ -13790,10 +14580,11 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", + "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsedStr", "ret": "void", "signature": "(const char*,bool,ImGuiCond)", - "stname": "ImGui" + "stname": "" } ], "igSetWindowFocus": [ @@ -13806,10 +14597,11 @@ "comment": "", "defaults": [], "funcname": "SetWindowFocus", + "namespace": "ImGui", "ov_cimguiname": "igSetWindowFocus", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* name)", @@ -13825,10 +14617,11 @@ "comment": "", "defaults": [], "funcname": "SetWindowFocus", + "namespace": "ImGui", "ov_cimguiname": "igSetWindowFocusStr", "ret": "void", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igSetWindowFontScale": [ @@ -13846,9 +14639,11 @@ "comment": "", "defaults": [], "funcname": "SetWindowFontScale", + "namespace": "ImGui", + "ov_cimguiname": "igSetWindowFontScale", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igSetWindowPos": [ @@ -13872,10 +14667,11 @@ "cond": "0" }, "funcname": "SetWindowPos", + "namespace": "ImGui", "ov_cimguiname": "igSetWindowPosVec2", "ret": "void", "signature": "(const ImVec2,ImGuiCond)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* name,const ImVec2 pos,ImGuiCond cond)", @@ -13901,10 +14697,11 @@ "cond": "0" }, "funcname": "SetWindowPos", + "namespace": "ImGui", "ov_cimguiname": "igSetWindowPosStr", "ret": "void", "signature": "(const char*,const ImVec2,ImGuiCond)", - "stname": "ImGui" + "stname": "" } ], "igSetWindowSize": [ @@ -13928,10 +14725,11 @@ "cond": "0" }, "funcname": "SetWindowSize", + "namespace": "ImGui", "ov_cimguiname": "igSetWindowSizeVec2", "ret": "void", "signature": "(const ImVec2,ImGuiCond)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* name,const ImVec2 size,ImGuiCond cond)", @@ -13957,10 +14755,11 @@ "cond": "0" }, "funcname": "SetWindowSize", + "namespace": "ImGui", "ov_cimguiname": "igSetWindowSizeStr", "ret": "void", "signature": "(const char*,const ImVec2,ImGuiCond)", - "stname": "ImGui" + "stname": "" } ], "igShowAboutWindow": [ @@ -13972,17 +14771,19 @@ "type": "bool*" } ], - "argsoriginal": "(bool* p_open=((void *)0))", + "argsoriginal": "(bool* p_open=((void*)0))", "call_args": "(p_open)", "cimguiname": "igShowAboutWindow", "comment": "", "defaults": { - "p_open": "((void *)0)" + "p_open": "((void*)0)" }, "funcname": "ShowAboutWindow", + "namespace": "ImGui", + "ov_cimguiname": "igShowAboutWindow", "ret": "void", "signature": "(bool*)", - "stname": "ImGui" + "stname": "" } ], "igShowDemoWindow": [ @@ -13994,17 +14795,19 @@ "type": "bool*" } ], - "argsoriginal": "(bool* p_open=((void *)0))", + "argsoriginal": "(bool* p_open=((void*)0))", "call_args": "(p_open)", "cimguiname": "igShowDemoWindow", "comment": "", "defaults": { - "p_open": "((void *)0)" + "p_open": "((void*)0)" }, "funcname": "ShowDemoWindow", + "namespace": "ImGui", + "ov_cimguiname": "igShowDemoWindow", "ret": "void", "signature": "(bool*)", - "stname": "ImGui" + "stname": "" } ], "igShowFontSelector": [ @@ -14022,9 +14825,11 @@ "comment": "", "defaults": [], "funcname": "ShowFontSelector", + "namespace": "ImGui", + "ov_cimguiname": "igShowFontSelector", "ret": "void", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igShowMetricsWindow": [ @@ -14036,17 +14841,19 @@ "type": "bool*" } ], - "argsoriginal": "(bool* p_open=((void *)0))", + "argsoriginal": "(bool* p_open=((void*)0))", "call_args": "(p_open)", "cimguiname": "igShowMetricsWindow", "comment": "", "defaults": { - "p_open": "((void *)0)" + "p_open": "((void*)0)" }, "funcname": "ShowMetricsWindow", + "namespace": "ImGui", + "ov_cimguiname": "igShowMetricsWindow", "ret": "void", "signature": "(bool*)", - "stname": "ImGui" + "stname": "" } ], "igShowStyleEditor": [ @@ -14058,17 +14865,19 @@ "type": "ImGuiStyle*" } ], - "argsoriginal": "(ImGuiStyle* ref=((void *)0))", + "argsoriginal": "(ImGuiStyle* ref=((void*)0))", "call_args": "(ref)", "cimguiname": "igShowStyleEditor", "comment": "", "defaults": { - "ref": "((void *)0)" + "ref": "((void*)0)" }, "funcname": "ShowStyleEditor", + "namespace": "ImGui", + "ov_cimguiname": "igShowStyleEditor", "ret": "void", "signature": "(ImGuiStyle*)", - "stname": "ImGui" + "stname": "" } ], "igShowStyleSelector": [ @@ -14086,9 +14895,11 @@ "comment": "", "defaults": [], "funcname": "ShowStyleSelector", + "namespace": "ImGui", + "ov_cimguiname": "igShowStyleSelector", "ret": "bool", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igShowUserGuide": [ @@ -14101,9 +14912,11 @@ "comment": "", "defaults": [], "funcname": "ShowUserGuide", + "namespace": "ImGui", + "ov_cimguiname": "igShowUserGuide", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igSliderAngle": [ @@ -14141,9 +14954,11 @@ "v_degrees_min": "-360.0f" }, "funcname": "SliderAngle", + "namespace": "ImGui", + "ov_cimguiname": "igSliderAngle", "ret": "bool", "signature": "(const char*,float*,float,float,const char*)", - "stname": "ImGui" + "stname": "" } ], "igSliderFloat": [ @@ -14184,9 +14999,11 @@ "power": "1.0f" }, "funcname": "SliderFloat", + "namespace": "ImGui", + "ov_cimguiname": "igSliderFloat", "ret": "bool", "signature": "(const char*,float*,float,float,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igSliderFloat2": [ @@ -14227,9 +15044,11 @@ "power": "1.0f" }, "funcname": "SliderFloat2", + "namespace": "ImGui", + "ov_cimguiname": "igSliderFloat2", "ret": "bool", "signature": "(const char*,float[2],float,float,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igSliderFloat3": [ @@ -14270,9 +15089,11 @@ "power": "1.0f" }, "funcname": "SliderFloat3", + "namespace": "ImGui", + "ov_cimguiname": "igSliderFloat3", "ret": "bool", "signature": "(const char*,float[3],float,float,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igSliderFloat4": [ @@ -14313,9 +15134,11 @@ "power": "1.0f" }, "funcname": "SliderFloat4", + "namespace": "ImGui", + "ov_cimguiname": "igSliderFloat4", "ret": "bool", "signature": "(const char*,float[4],float,float,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igSliderInt": [ @@ -14351,9 +15174,11 @@ "format": "\"%d\"" }, "funcname": "SliderInt", + "namespace": "ImGui", + "ov_cimguiname": "igSliderInt", "ret": "bool", "signature": "(const char*,int*,int,int,const char*)", - "stname": "ImGui" + "stname": "" } ], "igSliderInt2": [ @@ -14389,9 +15214,11 @@ "format": "\"%d\"" }, "funcname": "SliderInt2", + "namespace": "ImGui", + "ov_cimguiname": "igSliderInt2", "ret": "bool", "signature": "(const char*,int[2],int,int,const char*)", - "stname": "ImGui" + "stname": "" } ], "igSliderInt3": [ @@ -14427,9 +15254,11 @@ "format": "\"%d\"" }, "funcname": "SliderInt3", + "namespace": "ImGui", + "ov_cimguiname": "igSliderInt3", "ret": "bool", "signature": "(const char*,int[3],int,int,const char*)", - "stname": "ImGui" + "stname": "" } ], "igSliderInt4": [ @@ -14465,9 +15294,11 @@ "format": "\"%d\"" }, "funcname": "SliderInt4", + "namespace": "ImGui", + "ov_cimguiname": "igSliderInt4", "ret": "bool", "signature": "(const char*,int[4],int,int,const char*)", - "stname": "ImGui" + "stname": "" } ], "igSliderScalar": [ @@ -14503,18 +15334,20 @@ "type": "float" } ], - "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,const void* v_min,const void* v_max,const char* format=((void *)0),float power=1.0f)", + "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,const void* v_min,const void* v_max,const char* format=((void*)0),float power=1.0f)", "call_args": "(label,data_type,v,v_min,v_max,format,power)", "cimguiname": "igSliderScalar", "comment": "", "defaults": { - "format": "((void *)0)", + "format": "((void*)0)", "power": "1.0f" }, "funcname": "SliderScalar", + "namespace": "ImGui", + "ov_cimguiname": "igSliderScalar", "ret": "bool", "signature": "(const char*,ImGuiDataType,void*,const void*,const void*,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igSliderScalarN": [ @@ -14554,18 +15387,20 @@ "type": "float" } ], - "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,int components,const void* v_min,const void* v_max,const char* format=((void *)0),float power=1.0f)", + "argsoriginal": "(const char* label,ImGuiDataType data_type,void* v,int components,const void* v_min,const void* v_max,const char* format=((void*)0),float power=1.0f)", "call_args": "(label,data_type,v,components,v_min,v_max,format,power)", "cimguiname": "igSliderScalarN", "comment": "", "defaults": { - "format": "((void *)0)", + "format": "((void*)0)", "power": "1.0f" }, "funcname": "SliderScalarN", + "namespace": "ImGui", + "ov_cimguiname": "igSliderScalarN", "ret": "bool", "signature": "(const char*,ImGuiDataType,void*,int,const void*,const void*,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igSmallButton": [ @@ -14583,9 +15418,11 @@ "comment": "", "defaults": [], "funcname": "SmallButton", + "namespace": "ImGui", + "ov_cimguiname": "igSmallButton", "ret": "bool", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" } ], "igSpacing": [ @@ -14598,9 +15435,11 @@ "comment": "", "defaults": [], "funcname": "Spacing", + "namespace": "ImGui", + "ov_cimguiname": "igSpacing", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igStyleColorsClassic": [ @@ -14612,17 +15451,19 @@ "type": "ImGuiStyle*" } ], - "argsoriginal": "(ImGuiStyle* dst=((void *)0))", + "argsoriginal": "(ImGuiStyle* dst=((void*)0))", "call_args": "(dst)", "cimguiname": "igStyleColorsClassic", "comment": "", "defaults": { - "dst": "((void *)0)" + "dst": "((void*)0)" }, "funcname": "StyleColorsClassic", + "namespace": "ImGui", + "ov_cimguiname": "igStyleColorsClassic", "ret": "void", "signature": "(ImGuiStyle*)", - "stname": "ImGui" + "stname": "" } ], "igStyleColorsDark": [ @@ -14634,17 +15475,19 @@ "type": "ImGuiStyle*" } ], - "argsoriginal": "(ImGuiStyle* dst=((void *)0))", + "argsoriginal": "(ImGuiStyle* dst=((void*)0))", "call_args": "(dst)", "cimguiname": "igStyleColorsDark", "comment": "", "defaults": { - "dst": "((void *)0)" + "dst": "((void*)0)" }, "funcname": "StyleColorsDark", + "namespace": "ImGui", + "ov_cimguiname": "igStyleColorsDark", "ret": "void", "signature": "(ImGuiStyle*)", - "stname": "ImGui" + "stname": "" } ], "igStyleColorsLight": [ @@ -14656,17 +15499,19 @@ "type": "ImGuiStyle*" } ], - "argsoriginal": "(ImGuiStyle* dst=((void *)0))", + "argsoriginal": "(ImGuiStyle* dst=((void*)0))", "call_args": "(dst)", "cimguiname": "igStyleColorsLight", "comment": "", "defaults": { - "dst": "((void *)0)" + "dst": "((void*)0)" }, "funcname": "StyleColorsLight", + "namespace": "ImGui", + "ov_cimguiname": "igStyleColorsLight", "ret": "void", "signature": "(ImGuiStyle*)", - "stname": "ImGui" + "stname": "" } ], "igText": [ @@ -14689,9 +15534,11 @@ "defaults": [], "funcname": "Text", "isvararg": "...)", + "namespace": "ImGui", + "ov_cimguiname": "igText", "ret": "void", "signature": "(const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igTextColored": [ @@ -14718,9 +15565,11 @@ "defaults": [], "funcname": "TextColored", "isvararg": "...)", + "namespace": "ImGui", + "ov_cimguiname": "igTextColored", "ret": "void", "signature": "(const ImVec4,const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igTextColoredV": [ @@ -14746,9 +15595,11 @@ "comment": "", "defaults": [], "funcname": "TextColoredV", + "namespace": "ImGui", + "ov_cimguiname": "igTextColoredV", "ret": "void", "signature": "(const ImVec4,const char*,va_list)", - "stname": "ImGui" + "stname": "" } ], "igTextDisabled": [ @@ -14771,9 +15622,11 @@ "defaults": [], "funcname": "TextDisabled", "isvararg": "...)", + "namespace": "ImGui", + "ov_cimguiname": "igTextDisabled", "ret": "void", "signature": "(const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igTextDisabledV": [ @@ -14795,9 +15648,11 @@ "comment": "", "defaults": [], "funcname": "TextDisabledV", + "namespace": "ImGui", + "ov_cimguiname": "igTextDisabledV", "ret": "void", "signature": "(const char*,va_list)", - "stname": "ImGui" + "stname": "" } ], "igTextUnformatted": [ @@ -14813,17 +15668,19 @@ "type": "const char*" } ], - "argsoriginal": "(const char* text,const char* text_end=((void *)0))", + "argsoriginal": "(const char* text,const char* text_end=((void*)0))", "call_args": "(text,text_end)", "cimguiname": "igTextUnformatted", "comment": "", "defaults": { - "text_end": "((void *)0)" + "text_end": "((void*)0)" }, "funcname": "TextUnformatted", + "namespace": "ImGui", + "ov_cimguiname": "igTextUnformatted", "ret": "void", "signature": "(const char*,const char*)", - "stname": "ImGui" + "stname": "" } ], "igTextV": [ @@ -14845,9 +15702,11 @@ "comment": "", "defaults": [], "funcname": "TextV", + "namespace": "ImGui", + "ov_cimguiname": "igTextV", "ret": "void", "signature": "(const char*,va_list)", - "stname": "ImGui" + "stname": "" } ], "igTextWrapped": [ @@ -14870,9 +15729,11 @@ "defaults": [], "funcname": "TextWrapped", "isvararg": "...)", + "namespace": "ImGui", + "ov_cimguiname": "igTextWrapped", "ret": "void", "signature": "(const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igTextWrappedV": [ @@ -14894,9 +15755,11 @@ "comment": "", "defaults": [], "funcname": "TextWrappedV", + "namespace": "ImGui", + "ov_cimguiname": "igTextWrappedV", "ret": "void", "signature": "(const char*,va_list)", - "stname": "ImGui" + "stname": "" } ], "igTreeAdvanceToLabelPos": [ @@ -14909,9 +15772,11 @@ "comment": "", "defaults": [], "funcname": "TreeAdvanceToLabelPos", + "namespace": "ImGui", + "ov_cimguiname": "igTreeAdvanceToLabelPos", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igTreeNode": [ @@ -14929,10 +15794,11 @@ "comment": "", "defaults": [], "funcname": "TreeNode", + "namespace": "ImGui", "ov_cimguiname": "igTreeNodeStr", "ret": "bool", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* str_id,const char* fmt,...)", @@ -14957,10 +15823,11 @@ "defaults": [], "funcname": "TreeNode", "isvararg": "...)", + "namespace": "ImGui", "ov_cimguiname": "igTreeNodeStrStr", "ret": "bool", "signature": "(const char*,const char*,...)", - "stname": "ImGui" + "stname": "" }, { "args": "(const void* ptr_id,const char* fmt,...)", @@ -14985,10 +15852,11 @@ "defaults": [], "funcname": "TreeNode", "isvararg": "...)", + "namespace": "ImGui", "ov_cimguiname": "igTreeNodePtr", "ret": "bool", "signature": "(const void*,const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igTreeNodeEx": [ @@ -15012,10 +15880,11 @@ "flags": "0" }, "funcname": "TreeNodeEx", + "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExStr", "ret": "bool", "signature": "(const char*,ImGuiTreeNodeFlags)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* str_id,ImGuiTreeNodeFlags flags,const char* fmt,...)", @@ -15044,10 +15913,11 @@ "defaults": [], "funcname": "TreeNodeEx", "isvararg": "...)", + "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExStrStr", "ret": "bool", "signature": "(const char*,ImGuiTreeNodeFlags,const char*,...)", - "stname": "ImGui" + "stname": "" }, { "args": "(const void* ptr_id,ImGuiTreeNodeFlags flags,const char* fmt,...)", @@ -15076,10 +15946,11 @@ "defaults": [], "funcname": "TreeNodeEx", "isvararg": "...)", + "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExPtr", "ret": "bool", "signature": "(const void*,ImGuiTreeNodeFlags,const char*,...)", - "stname": "ImGui" + "stname": "" } ], "igTreeNodeExV": [ @@ -15109,10 +15980,11 @@ "comment": "", "defaults": [], "funcname": "TreeNodeExV", + "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExVStr", "ret": "bool", "signature": "(const char*,ImGuiTreeNodeFlags,const char*,va_list)", - "stname": "ImGui" + "stname": "" }, { "args": "(const void* ptr_id,ImGuiTreeNodeFlags flags,const char* fmt,va_list args)", @@ -15140,10 +16012,11 @@ "comment": "", "defaults": [], "funcname": "TreeNodeExV", + "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExVPtr", "ret": "bool", "signature": "(const void*,ImGuiTreeNodeFlags,const char*,va_list)", - "stname": "ImGui" + "stname": "" } ], "igTreeNodeV": [ @@ -15169,10 +16042,11 @@ "comment": "", "defaults": [], "funcname": "TreeNodeV", + "namespace": "ImGui", "ov_cimguiname": "igTreeNodeVStr", "ret": "bool", "signature": "(const char*,const char*,va_list)", - "stname": "ImGui" + "stname": "" }, { "args": "(const void* ptr_id,const char* fmt,va_list args)", @@ -15196,10 +16070,11 @@ "comment": "", "defaults": [], "funcname": "TreeNodeV", + "namespace": "ImGui", "ov_cimguiname": "igTreeNodeVPtr", "ret": "bool", "signature": "(const void*,const char*,va_list)", - "stname": "ImGui" + "stname": "" } ], "igTreePop": [ @@ -15212,9 +16087,11 @@ "comment": "", "defaults": [], "funcname": "TreePop", + "namespace": "ImGui", + "ov_cimguiname": "igTreePop", "ret": "void", "signature": "()", - "stname": "ImGui" + "stname": "" } ], "igTreePush": [ @@ -15232,10 +16109,11 @@ "comment": "", "defaults": [], "funcname": "TreePush", + "namespace": "ImGui", "ov_cimguiname": "igTreePushStr", "ret": "void", "signature": "(const char*)", - "stname": "ImGui" + "stname": "" }, { "args": "(const void* ptr_id)", @@ -15245,18 +16123,19 @@ "type": "const void*" } ], - "argsoriginal": "(const void* ptr_id=((void *)0))", + "argsoriginal": "(const void* ptr_id=((void*)0))", "call_args": "(ptr_id)", "cimguiname": "igTreePush", "comment": "", "defaults": { - "ptr_id": "((void *)0)" + "ptr_id": "((void*)0)" }, "funcname": "TreePush", + "namespace": "ImGui", "ov_cimguiname": "igTreePushPtr", "ret": "void", "signature": "(const void*)", - "stname": "ImGui" + "stname": "" } ], "igUnindent": [ @@ -15276,9 +16155,11 @@ "indent_w": "0.0f" }, "funcname": "Unindent", + "namespace": "ImGui", + "ov_cimguiname": "igUnindent", "ret": "void", "signature": "(float)", - "stname": "ImGui" + "stname": "" } ], "igVSliderFloat": [ @@ -15323,9 +16204,11 @@ "power": "1.0f" }, "funcname": "VSliderFloat", + "namespace": "ImGui", + "ov_cimguiname": "igVSliderFloat", "ret": "bool", "signature": "(const char*,const ImVec2,float*,float,float,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igVSliderInt": [ @@ -15365,9 +16248,11 @@ "format": "\"%d\"" }, "funcname": "VSliderInt", + "namespace": "ImGui", + "ov_cimguiname": "igVSliderInt", "ret": "bool", "signature": "(const char*,const ImVec2,int*,int,int,const char*)", - "stname": "ImGui" + "stname": "" } ], "igVSliderScalar": [ @@ -15407,18 +16292,20 @@ "type": "float" } ], - "argsoriginal": "(const char* label,const ImVec2& size,ImGuiDataType data_type,void* v,const void* v_min,const void* v_max,const char* format=((void *)0),float power=1.0f)", + "argsoriginal": "(const char* label,const ImVec2& size,ImGuiDataType data_type,void* v,const void* v_min,const void* v_max,const char* format=((void*)0),float power=1.0f)", "call_args": "(label,size,data_type,v,v_min,v_max,format,power)", "cimguiname": "igVSliderScalar", "comment": "", "defaults": { - "format": "((void *)0)", + "format": "((void*)0)", "power": "1.0f" }, "funcname": "VSliderScalar", + "namespace": "ImGui", + "ov_cimguiname": "igVSliderScalar", "ret": "bool", "signature": "(const char*,const ImVec2,ImGuiDataType,void*,const void*,const void*,const char*,float)", - "stname": "ImGui" + "stname": "" } ], "igValue": [ @@ -15440,10 +16327,11 @@ "comment": "", "defaults": [], "funcname": "Value", + "namespace": "ImGui", "ov_cimguiname": "igValueBool", "ret": "void", "signature": "(const char*,bool)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* prefix,int v)", @@ -15463,10 +16351,11 @@ "comment": "", "defaults": [], "funcname": "Value", + "namespace": "ImGui", "ov_cimguiname": "igValueInt", "ret": "void", "signature": "(const char*,int)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* prefix,unsigned int v)", @@ -15486,10 +16375,11 @@ "comment": "", "defaults": [], "funcname": "Value", + "namespace": "ImGui", "ov_cimguiname": "igValueUint", "ret": "void", "signature": "(const char*,unsigned int)", - "stname": "ImGui" + "stname": "" }, { "args": "(const char* prefix,float v,const char* float_format)", @@ -15507,18 +16397,19 @@ "type": "const char*" } ], - "argsoriginal": "(const char* prefix,float v,const char* float_format=((void *)0))", + "argsoriginal": "(const char* prefix,float v,const char* float_format=((void*)0))", "call_args": "(prefix,v,float_format)", "cimguiname": "igValue", "comment": "", "defaults": { - "float_format": "((void *)0)" + "float_format": "((void*)0)" }, "funcname": "Value", + "namespace": "ImGui", "ov_cimguiname": "igValueFloat", "ret": "void", "signature": "(const char*,float,const char*)", - "stname": "ImGui" + "stname": "" } ] } \ No newline at end of file diff --git a/generator/output/definitions.lua b/generator/output/definitions.lua index 7683e44..14c0df7 100644 --- a/generator/output/definitions.lua +++ b/generator/output/definitions.lua @@ -10,6 +10,7 @@ defs["CustomRect_CustomRect"][1]["comment"] = "" defs["CustomRect_CustomRect"][1]["constructor"] = true defs["CustomRect_CustomRect"][1]["defaults"] = {} defs["CustomRect_CustomRect"][1]["funcname"] = "CustomRect" +defs["CustomRect_CustomRect"][1]["ov_cimguiname"] = "CustomRect_CustomRect" defs["CustomRect_CustomRect"][1]["signature"] = "()" defs["CustomRect_CustomRect"][1]["stname"] = "CustomRect" defs["CustomRect_CustomRect"]["()"] = defs["CustomRect_CustomRect"][1] @@ -26,6 +27,7 @@ defs["CustomRect_IsPacked"][1]["cimguiname"] = "CustomRect_IsPacked" defs["CustomRect_IsPacked"][1]["comment"] = "" defs["CustomRect_IsPacked"][1]["defaults"] = {} defs["CustomRect_IsPacked"][1]["funcname"] = "IsPacked" +defs["CustomRect_IsPacked"][1]["ov_cimguiname"] = "CustomRect_IsPacked" defs["CustomRect_IsPacked"][1]["ret"] = "bool" defs["CustomRect_IsPacked"][1]["signature"] = "()" defs["CustomRect_IsPacked"][1]["stname"] = "CustomRect" @@ -72,6 +74,7 @@ defs["ImColor_HSV"][1]["comment"] = "" defs["ImColor_HSV"][1]["defaults"] = {} defs["ImColor_HSV"][1]["defaults"]["a"] = "1.0f" defs["ImColor_HSV"][1]["funcname"] = "HSV" +defs["ImColor_HSV"][1]["ov_cimguiname"] = "ImColor_HSV" defs["ImColor_HSV"][1]["ret"] = "ImColor" defs["ImColor_HSV"][1]["signature"] = "(float,float,float,float)" defs["ImColor_HSV"][1]["stname"] = "ImColor" @@ -269,6 +272,7 @@ defs["ImColor_SetHSV"][1]["comment"] = "" defs["ImColor_SetHSV"][1]["defaults"] = {} defs["ImColor_SetHSV"][1]["defaults"]["a"] = "1.0f" defs["ImColor_SetHSV"][1]["funcname"] = "SetHSV" +defs["ImColor_SetHSV"][1]["ov_cimguiname"] = "ImColor_SetHSV" defs["ImColor_SetHSV"][1]["ret"] = "void" defs["ImColor_SetHSV"][1]["signature"] = "(float,float,float,float)" defs["ImColor_SetHSV"][1]["stname"] = "ImColor" @@ -300,6 +304,7 @@ defs["ImDrawCmd_ImDrawCmd"][1]["comment"] = "" defs["ImDrawCmd_ImDrawCmd"][1]["constructor"] = true defs["ImDrawCmd_ImDrawCmd"][1]["defaults"] = {} defs["ImDrawCmd_ImDrawCmd"][1]["funcname"] = "ImDrawCmd" +defs["ImDrawCmd_ImDrawCmd"][1]["ov_cimguiname"] = "ImDrawCmd_ImDrawCmd" defs["ImDrawCmd_ImDrawCmd"][1]["signature"] = "()" defs["ImDrawCmd_ImDrawCmd"][1]["stname"] = "ImDrawCmd" defs["ImDrawCmd_ImDrawCmd"]["()"] = defs["ImDrawCmd_ImDrawCmd"][1] @@ -332,6 +337,7 @@ defs["ImDrawData_Clear"][1]["cimguiname"] = "ImDrawData_Clear" defs["ImDrawData_Clear"][1]["comment"] = "" defs["ImDrawData_Clear"][1]["defaults"] = {} defs["ImDrawData_Clear"][1]["funcname"] = "Clear" +defs["ImDrawData_Clear"][1]["ov_cimguiname"] = "ImDrawData_Clear" defs["ImDrawData_Clear"][1]["ret"] = "void" defs["ImDrawData_Clear"][1]["signature"] = "()" defs["ImDrawData_Clear"][1]["stname"] = "ImDrawData" @@ -349,6 +355,7 @@ defs["ImDrawData_DeIndexAllBuffers"][1]["cimguiname"] = "ImDrawData_DeIndexAllBu defs["ImDrawData_DeIndexAllBuffers"][1]["comment"] = "" defs["ImDrawData_DeIndexAllBuffers"][1]["defaults"] = {} defs["ImDrawData_DeIndexAllBuffers"][1]["funcname"] = "DeIndexAllBuffers" +defs["ImDrawData_DeIndexAllBuffers"][1]["ov_cimguiname"] = "ImDrawData_DeIndexAllBuffers" defs["ImDrawData_DeIndexAllBuffers"][1]["ret"] = "void" defs["ImDrawData_DeIndexAllBuffers"][1]["signature"] = "()" defs["ImDrawData_DeIndexAllBuffers"][1]["stname"] = "ImDrawData" @@ -364,6 +371,7 @@ defs["ImDrawData_ImDrawData"][1]["comment"] = "" defs["ImDrawData_ImDrawData"][1]["constructor"] = true defs["ImDrawData_ImDrawData"][1]["defaults"] = {} defs["ImDrawData_ImDrawData"][1]["funcname"] = "ImDrawData" +defs["ImDrawData_ImDrawData"][1]["ov_cimguiname"] = "ImDrawData_ImDrawData" defs["ImDrawData_ImDrawData"][1]["signature"] = "()" defs["ImDrawData_ImDrawData"][1]["stname"] = "ImDrawData" defs["ImDrawData_ImDrawData"]["()"] = defs["ImDrawData_ImDrawData"][1] @@ -383,6 +391,7 @@ defs["ImDrawData_ScaleClipRects"][1]["cimguiname"] = "ImDrawData_ScaleClipRects" defs["ImDrawData_ScaleClipRects"][1]["comment"] = "" defs["ImDrawData_ScaleClipRects"][1]["defaults"] = {} defs["ImDrawData_ScaleClipRects"][1]["funcname"] = "ScaleClipRects" +defs["ImDrawData_ScaleClipRects"][1]["ov_cimguiname"] = "ImDrawData_ScaleClipRects" defs["ImDrawData_ScaleClipRects"][1]["ret"] = "void" defs["ImDrawData_ScaleClipRects"][1]["signature"] = "(const ImVec2)" defs["ImDrawData_ScaleClipRects"][1]["stname"] = "ImDrawData" @@ -438,6 +447,7 @@ defs["ImDrawList_AddBezierCurve"][1]["comment"] = "" defs["ImDrawList_AddBezierCurve"][1]["defaults"] = {} defs["ImDrawList_AddBezierCurve"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddBezierCurve"][1]["funcname"] = "AddBezierCurve" +defs["ImDrawList_AddBezierCurve"][1]["ov_cimguiname"] = "ImDrawList_AddBezierCurve" defs["ImDrawList_AddBezierCurve"][1]["ret"] = "void" defs["ImDrawList_AddBezierCurve"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)" defs["ImDrawList_AddBezierCurve"][1]["stname"] = "ImDrawList" @@ -461,6 +471,7 @@ defs["ImDrawList_AddCallback"][1]["cimguiname"] = "ImDrawList_AddCallback" defs["ImDrawList_AddCallback"][1]["comment"] = "" defs["ImDrawList_AddCallback"][1]["defaults"] = {} defs["ImDrawList_AddCallback"][1]["funcname"] = "AddCallback" +defs["ImDrawList_AddCallback"][1]["ov_cimguiname"] = "ImDrawList_AddCallback" defs["ImDrawList_AddCallback"][1]["ret"] = "void" defs["ImDrawList_AddCallback"][1]["signature"] = "(ImDrawCallback,void*)" defs["ImDrawList_AddCallback"][1]["stname"] = "ImDrawList" @@ -495,6 +506,7 @@ defs["ImDrawList_AddCircle"][1]["defaults"] = {} defs["ImDrawList_AddCircle"][1]["defaults"]["num_segments"] = "12" defs["ImDrawList_AddCircle"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddCircle"][1]["funcname"] = "AddCircle" +defs["ImDrawList_AddCircle"][1]["ov_cimguiname"] = "ImDrawList_AddCircle" defs["ImDrawList_AddCircle"][1]["ret"] = "void" defs["ImDrawList_AddCircle"][1]["signature"] = "(const ImVec2,float,ImU32,int,float)" defs["ImDrawList_AddCircle"][1]["stname"] = "ImDrawList" @@ -525,6 +537,7 @@ defs["ImDrawList_AddCircleFilled"][1]["comment"] = "" defs["ImDrawList_AddCircleFilled"][1]["defaults"] = {} defs["ImDrawList_AddCircleFilled"][1]["defaults"]["num_segments"] = "12" defs["ImDrawList_AddCircleFilled"][1]["funcname"] = "AddCircleFilled" +defs["ImDrawList_AddCircleFilled"][1]["ov_cimguiname"] = "ImDrawList_AddCircleFilled" defs["ImDrawList_AddCircleFilled"][1]["ret"] = "void" defs["ImDrawList_AddCircleFilled"][1]["signature"] = "(const ImVec2,float,ImU32,int)" defs["ImDrawList_AddCircleFilled"][1]["stname"] = "ImDrawList" @@ -551,6 +564,7 @@ defs["ImDrawList_AddConvexPolyFilled"][1]["cimguiname"] = "ImDrawList_AddConvexP defs["ImDrawList_AddConvexPolyFilled"][1]["comment"] = "" defs["ImDrawList_AddConvexPolyFilled"][1]["defaults"] = {} defs["ImDrawList_AddConvexPolyFilled"][1]["funcname"] = "AddConvexPolyFilled" +defs["ImDrawList_AddConvexPolyFilled"][1]["ov_cimguiname"] = "ImDrawList_AddConvexPolyFilled" defs["ImDrawList_AddConvexPolyFilled"][1]["ret"] = "void" defs["ImDrawList_AddConvexPolyFilled"][1]["signature"] = "(const ImVec2*,const int,ImU32)" defs["ImDrawList_AddConvexPolyFilled"][1]["stname"] = "ImDrawList" @@ -568,6 +582,7 @@ defs["ImDrawList_AddDrawCmd"][1]["cimguiname"] = "ImDrawList_AddDrawCmd" defs["ImDrawList_AddDrawCmd"][1]["comment"] = "" defs["ImDrawList_AddDrawCmd"][1]["defaults"] = {} defs["ImDrawList_AddDrawCmd"][1]["funcname"] = "AddDrawCmd" +defs["ImDrawList_AddDrawCmd"][1]["ov_cimguiname"] = "ImDrawList_AddDrawCmd" defs["ImDrawList_AddDrawCmd"][1]["ret"] = "void" defs["ImDrawList_AddDrawCmd"][1]["signature"] = "()" defs["ImDrawList_AddDrawCmd"][1]["stname"] = "ImDrawList" @@ -606,6 +621,7 @@ defs["ImDrawList_AddImage"][1]["defaults"]["col"] = "0xFFFFFFFF" defs["ImDrawList_AddImage"][1]["defaults"]["uv_a"] = "ImVec2(0,0)" defs["ImDrawList_AddImage"][1]["defaults"]["uv_b"] = "ImVec2(1,1)" defs["ImDrawList_AddImage"][1]["funcname"] = "AddImage" +defs["ImDrawList_AddImage"][1]["ov_cimguiname"] = "ImDrawList_AddImage" defs["ImDrawList_AddImage"][1]["ret"] = "void" defs["ImDrawList_AddImage"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" defs["ImDrawList_AddImage"][1]["stname"] = "ImDrawList" @@ -658,6 +674,7 @@ defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv_b"] = "ImVec2(1,0)" defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv_c"] = "ImVec2(1,1)" defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv_d"] = "ImVec2(0,1)" defs["ImDrawList_AddImageQuad"][1]["funcname"] = "AddImageQuad" +defs["ImDrawList_AddImageQuad"][1]["ov_cimguiname"] = "ImDrawList_AddImageQuad" defs["ImDrawList_AddImageQuad"][1]["ret"] = "void" defs["ImDrawList_AddImageQuad"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" defs["ImDrawList_AddImageQuad"][1]["stname"] = "ImDrawList" @@ -700,6 +717,7 @@ defs["ImDrawList_AddImageRounded"][1]["comment"] = "" defs["ImDrawList_AddImageRounded"][1]["defaults"] = {} defs["ImDrawList_AddImageRounded"][1]["defaults"]["rounding_corners"] = "ImDrawCornerFlags_All" defs["ImDrawList_AddImageRounded"][1]["funcname"] = "AddImageRounded" +defs["ImDrawList_AddImageRounded"][1]["ov_cimguiname"] = "ImDrawList_AddImageRounded" defs["ImDrawList_AddImageRounded"][1]["ret"] = "void" defs["ImDrawList_AddImageRounded"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)" defs["ImDrawList_AddImageRounded"][1]["stname"] = "ImDrawList" @@ -730,6 +748,7 @@ defs["ImDrawList_AddLine"][1]["comment"] = "" defs["ImDrawList_AddLine"][1]["defaults"] = {} defs["ImDrawList_AddLine"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddLine"][1]["funcname"] = "AddLine" +defs["ImDrawList_AddLine"][1]["ov_cimguiname"] = "ImDrawList_AddLine" defs["ImDrawList_AddLine"][1]["ret"] = "void" defs["ImDrawList_AddLine"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float)" defs["ImDrawList_AddLine"][1]["stname"] = "ImDrawList" @@ -762,6 +781,7 @@ defs["ImDrawList_AddPolyline"][1]["cimguiname"] = "ImDrawList_AddPolyline" defs["ImDrawList_AddPolyline"][1]["comment"] = "" defs["ImDrawList_AddPolyline"][1]["defaults"] = {} defs["ImDrawList_AddPolyline"][1]["funcname"] = "AddPolyline" +defs["ImDrawList_AddPolyline"][1]["ov_cimguiname"] = "ImDrawList_AddPolyline" defs["ImDrawList_AddPolyline"][1]["ret"] = "void" defs["ImDrawList_AddPolyline"][1]["signature"] = "(const ImVec2*,const int,ImU32,bool,float)" defs["ImDrawList_AddPolyline"][1]["stname"] = "ImDrawList" @@ -798,6 +818,7 @@ defs["ImDrawList_AddQuad"][1]["comment"] = "" defs["ImDrawList_AddQuad"][1]["defaults"] = {} defs["ImDrawList_AddQuad"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddQuad"][1]["funcname"] = "AddQuad" +defs["ImDrawList_AddQuad"][1]["ov_cimguiname"] = "ImDrawList_AddQuad" defs["ImDrawList_AddQuad"][1]["ret"] = "void" defs["ImDrawList_AddQuad"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)" defs["ImDrawList_AddQuad"][1]["stname"] = "ImDrawList" @@ -830,6 +851,7 @@ defs["ImDrawList_AddQuadFilled"][1]["cimguiname"] = "ImDrawList_AddQuadFilled" defs["ImDrawList_AddQuadFilled"][1]["comment"] = "" defs["ImDrawList_AddQuadFilled"][1]["defaults"] = {} defs["ImDrawList_AddQuadFilled"][1]["funcname"] = "AddQuadFilled" +defs["ImDrawList_AddQuadFilled"][1]["ov_cimguiname"] = "ImDrawList_AddQuadFilled" defs["ImDrawList_AddQuadFilled"][1]["ret"] = "void" defs["ImDrawList_AddQuadFilled"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" defs["ImDrawList_AddQuadFilled"][1]["stname"] = "ImDrawList" @@ -868,6 +890,7 @@ defs["ImDrawList_AddRect"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_AddRect"][1]["defaults"]["rounding_corners_flags"] = "ImDrawCornerFlags_All" defs["ImDrawList_AddRect"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddRect"][1]["funcname"] = "AddRect" +defs["ImDrawList_AddRect"][1]["ov_cimguiname"] = "ImDrawList_AddRect" defs["ImDrawList_AddRect"][1]["ret"] = "void" defs["ImDrawList_AddRect"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,int,float)" defs["ImDrawList_AddRect"][1]["stname"] = "ImDrawList" @@ -902,6 +925,7 @@ defs["ImDrawList_AddRectFilled"][1]["defaults"] = {} defs["ImDrawList_AddRectFilled"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_AddRectFilled"][1]["defaults"]["rounding_corners_flags"] = "ImDrawCornerFlags_All" defs["ImDrawList_AddRectFilled"][1]["funcname"] = "AddRectFilled" +defs["ImDrawList_AddRectFilled"][1]["ov_cimguiname"] = "ImDrawList_AddRectFilled" defs["ImDrawList_AddRectFilled"][1]["ret"] = "void" defs["ImDrawList_AddRectFilled"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,int)" defs["ImDrawList_AddRectFilled"][1]["stname"] = "ImDrawList" @@ -937,6 +961,7 @@ defs["ImDrawList_AddRectFilledMultiColor"][1]["cimguiname"] = "ImDrawList_AddRec defs["ImDrawList_AddRectFilledMultiColor"][1]["comment"] = "" defs["ImDrawList_AddRectFilledMultiColor"][1]["defaults"] = {} defs["ImDrawList_AddRectFilledMultiColor"][1]["funcname"] = "AddRectFilledMultiColor" +defs["ImDrawList_AddRectFilledMultiColor"][1]["ov_cimguiname"] = "ImDrawList_AddRectFilledMultiColor" defs["ImDrawList_AddRectFilledMultiColor"][1]["ret"] = "void" defs["ImDrawList_AddRectFilledMultiColor"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)" defs["ImDrawList_AddRectFilledMultiColor"][1]["stname"] = "ImDrawList" @@ -960,12 +985,12 @@ defs["ImDrawList_AddText"][1]["argsT"][4]["type"] = "const char*" defs["ImDrawList_AddText"][1]["argsT"][5] = {} defs["ImDrawList_AddText"][1]["argsT"][5]["name"] = "text_end" defs["ImDrawList_AddText"][1]["argsT"][5]["type"] = "const char*" -defs["ImDrawList_AddText"][1]["argsoriginal"] = "(const ImVec2& pos,ImU32 col,const char* text_begin,const char* text_end=((void *)0))" +defs["ImDrawList_AddText"][1]["argsoriginal"] = "(const ImVec2& pos,ImU32 col,const char* text_begin,const char* text_end=((void*)0))" defs["ImDrawList_AddText"][1]["call_args"] = "(pos,col,text_begin,text_end)" defs["ImDrawList_AddText"][1]["cimguiname"] = "ImDrawList_AddText" defs["ImDrawList_AddText"][1]["comment"] = "" defs["ImDrawList_AddText"][1]["defaults"] = {} -defs["ImDrawList_AddText"][1]["defaults"]["text_end"] = "((void *)0)" +defs["ImDrawList_AddText"][1]["defaults"]["text_end"] = "((void*)0)" defs["ImDrawList_AddText"][1]["funcname"] = "AddText" defs["ImDrawList_AddText"][1]["ov_cimguiname"] = "ImDrawList_AddText" defs["ImDrawList_AddText"][1]["ret"] = "void" @@ -1001,13 +1026,13 @@ defs["ImDrawList_AddText"][2]["argsT"][8]["type"] = "float" defs["ImDrawList_AddText"][2]["argsT"][9] = {} defs["ImDrawList_AddText"][2]["argsT"][9]["name"] = "cpu_fine_clip_rect" defs["ImDrawList_AddText"][2]["argsT"][9]["type"] = "const ImVec4*" -defs["ImDrawList_AddText"][2]["argsoriginal"] = "(const ImFont* font,float font_size,const ImVec2& pos,ImU32 col,const char* text_begin,const char* text_end=((void *)0),float wrap_width=0.0f,const ImVec4* cpu_fine_clip_rect=((void *)0))" +defs["ImDrawList_AddText"][2]["argsoriginal"] = "(const ImFont* font,float font_size,const ImVec2& pos,ImU32 col,const char* text_begin,const char* text_end=((void*)0),float wrap_width=0.0f,const ImVec4* cpu_fine_clip_rect=((void*)0))" defs["ImDrawList_AddText"][2]["call_args"] = "(font,font_size,pos,col,text_begin,text_end,wrap_width,cpu_fine_clip_rect)" defs["ImDrawList_AddText"][2]["cimguiname"] = "ImDrawList_AddText" defs["ImDrawList_AddText"][2]["comment"] = "" defs["ImDrawList_AddText"][2]["defaults"] = {} -defs["ImDrawList_AddText"][2]["defaults"]["cpu_fine_clip_rect"] = "((void *)0)" -defs["ImDrawList_AddText"][2]["defaults"]["text_end"] = "((void *)0)" +defs["ImDrawList_AddText"][2]["defaults"]["cpu_fine_clip_rect"] = "((void*)0)" +defs["ImDrawList_AddText"][2]["defaults"]["text_end"] = "((void*)0)" defs["ImDrawList_AddText"][2]["defaults"]["wrap_width"] = "0.0f" defs["ImDrawList_AddText"][2]["funcname"] = "AddText" defs["ImDrawList_AddText"][2]["ov_cimguiname"] = "ImDrawList_AddTextFontPtr" @@ -1045,6 +1070,7 @@ defs["ImDrawList_AddTriangle"][1]["comment"] = "" defs["ImDrawList_AddTriangle"][1]["defaults"] = {} defs["ImDrawList_AddTriangle"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddTriangle"][1]["funcname"] = "AddTriangle" +defs["ImDrawList_AddTriangle"][1]["ov_cimguiname"] = "ImDrawList_AddTriangle" defs["ImDrawList_AddTriangle"][1]["ret"] = "void" defs["ImDrawList_AddTriangle"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)" defs["ImDrawList_AddTriangle"][1]["stname"] = "ImDrawList" @@ -1074,6 +1100,7 @@ defs["ImDrawList_AddTriangleFilled"][1]["cimguiname"] = "ImDrawList_AddTriangleF defs["ImDrawList_AddTriangleFilled"][1]["comment"] = "" defs["ImDrawList_AddTriangleFilled"][1]["defaults"] = {} defs["ImDrawList_AddTriangleFilled"][1]["funcname"] = "AddTriangleFilled" +defs["ImDrawList_AddTriangleFilled"][1]["ov_cimguiname"] = "ImDrawList_AddTriangleFilled" defs["ImDrawList_AddTriangleFilled"][1]["ret"] = "void" defs["ImDrawList_AddTriangleFilled"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32)" defs["ImDrawList_AddTriangleFilled"][1]["stname"] = "ImDrawList" @@ -1091,6 +1118,7 @@ defs["ImDrawList_ChannelsMerge"][1]["cimguiname"] = "ImDrawList_ChannelsMerge" defs["ImDrawList_ChannelsMerge"][1]["comment"] = "" defs["ImDrawList_ChannelsMerge"][1]["defaults"] = {} defs["ImDrawList_ChannelsMerge"][1]["funcname"] = "ChannelsMerge" +defs["ImDrawList_ChannelsMerge"][1]["ov_cimguiname"] = "ImDrawList_ChannelsMerge" defs["ImDrawList_ChannelsMerge"][1]["ret"] = "void" defs["ImDrawList_ChannelsMerge"][1]["signature"] = "()" defs["ImDrawList_ChannelsMerge"][1]["stname"] = "ImDrawList" @@ -1111,6 +1139,7 @@ defs["ImDrawList_ChannelsSetCurrent"][1]["cimguiname"] = "ImDrawList_ChannelsSet defs["ImDrawList_ChannelsSetCurrent"][1]["comment"] = "" defs["ImDrawList_ChannelsSetCurrent"][1]["defaults"] = {} defs["ImDrawList_ChannelsSetCurrent"][1]["funcname"] = "ChannelsSetCurrent" +defs["ImDrawList_ChannelsSetCurrent"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSetCurrent" defs["ImDrawList_ChannelsSetCurrent"][1]["ret"] = "void" defs["ImDrawList_ChannelsSetCurrent"][1]["signature"] = "(int)" defs["ImDrawList_ChannelsSetCurrent"][1]["stname"] = "ImDrawList" @@ -1131,6 +1160,7 @@ defs["ImDrawList_ChannelsSplit"][1]["cimguiname"] = "ImDrawList_ChannelsSplit" defs["ImDrawList_ChannelsSplit"][1]["comment"] = "" defs["ImDrawList_ChannelsSplit"][1]["defaults"] = {} defs["ImDrawList_ChannelsSplit"][1]["funcname"] = "ChannelsSplit" +defs["ImDrawList_ChannelsSplit"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSplit" defs["ImDrawList_ChannelsSplit"][1]["ret"] = "void" defs["ImDrawList_ChannelsSplit"][1]["signature"] = "(int)" defs["ImDrawList_ChannelsSplit"][1]["stname"] = "ImDrawList" @@ -1148,6 +1178,7 @@ defs["ImDrawList_Clear"][1]["cimguiname"] = "ImDrawList_Clear" defs["ImDrawList_Clear"][1]["comment"] = "" defs["ImDrawList_Clear"][1]["defaults"] = {} defs["ImDrawList_Clear"][1]["funcname"] = "Clear" +defs["ImDrawList_Clear"][1]["ov_cimguiname"] = "ImDrawList_Clear" defs["ImDrawList_Clear"][1]["ret"] = "void" defs["ImDrawList_Clear"][1]["signature"] = "()" defs["ImDrawList_Clear"][1]["stname"] = "ImDrawList" @@ -1165,6 +1196,7 @@ defs["ImDrawList_ClearFreeMemory"][1]["cimguiname"] = "ImDrawList_ClearFreeMemor defs["ImDrawList_ClearFreeMemory"][1]["comment"] = "" defs["ImDrawList_ClearFreeMemory"][1]["defaults"] = {} defs["ImDrawList_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" +defs["ImDrawList_ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawList_ClearFreeMemory" defs["ImDrawList_ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawList_ClearFreeMemory"][1]["signature"] = "()" defs["ImDrawList_ClearFreeMemory"][1]["stname"] = "ImDrawList" @@ -1182,6 +1214,7 @@ defs["ImDrawList_CloneOutput"][1]["cimguiname"] = "ImDrawList_CloneOutput" defs["ImDrawList_CloneOutput"][1]["comment"] = "" defs["ImDrawList_CloneOutput"][1]["defaults"] = {} defs["ImDrawList_CloneOutput"][1]["funcname"] = "CloneOutput" +defs["ImDrawList_CloneOutput"][1]["ov_cimguiname"] = "ImDrawList_CloneOutput" defs["ImDrawList_CloneOutput"][1]["ret"] = "ImDrawList*" defs["ImDrawList_CloneOutput"][1]["signature"] = "()" defs["ImDrawList_CloneOutput"][1]["stname"] = "ImDrawList" @@ -1199,6 +1232,7 @@ defs["ImDrawList_GetClipRectMax"][1]["cimguiname"] = "ImDrawList_GetClipRectMax" defs["ImDrawList_GetClipRectMax"][1]["comment"] = "" defs["ImDrawList_GetClipRectMax"][1]["defaults"] = {} defs["ImDrawList_GetClipRectMax"][1]["funcname"] = "GetClipRectMax" +defs["ImDrawList_GetClipRectMax"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMax" defs["ImDrawList_GetClipRectMax"][1]["ret"] = "ImVec2" defs["ImDrawList_GetClipRectMax"][1]["signature"] = "()" defs["ImDrawList_GetClipRectMax"][1]["stname"] = "ImDrawList" @@ -1256,6 +1290,7 @@ defs["ImDrawList_GetClipRectMin"][1]["cimguiname"] = "ImDrawList_GetClipRectMin" defs["ImDrawList_GetClipRectMin"][1]["comment"] = "" defs["ImDrawList_GetClipRectMin"][1]["defaults"] = {} defs["ImDrawList_GetClipRectMin"][1]["funcname"] = "GetClipRectMin" +defs["ImDrawList_GetClipRectMin"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMin" defs["ImDrawList_GetClipRectMin"][1]["ret"] = "ImVec2" defs["ImDrawList_GetClipRectMin"][1]["signature"] = "()" defs["ImDrawList_GetClipRectMin"][1]["stname"] = "ImDrawList" @@ -1314,6 +1349,7 @@ defs["ImDrawList_ImDrawList"][1]["comment"] = "" defs["ImDrawList_ImDrawList"][1]["constructor"] = true defs["ImDrawList_ImDrawList"][1]["defaults"] = {} defs["ImDrawList_ImDrawList"][1]["funcname"] = "ImDrawList" +defs["ImDrawList_ImDrawList"][1]["ov_cimguiname"] = "ImDrawList_ImDrawList" defs["ImDrawList_ImDrawList"][1]["signature"] = "(const ImDrawListSharedData*)" defs["ImDrawList_ImDrawList"][1]["stname"] = "ImDrawList" defs["ImDrawList_ImDrawList"]["(const ImDrawListSharedData*)"] = defs["ImDrawList_ImDrawList"][1] @@ -1346,6 +1382,7 @@ defs["ImDrawList_PathArcTo"][1]["comment"] = "" defs["ImDrawList_PathArcTo"][1]["defaults"] = {} defs["ImDrawList_PathArcTo"][1]["defaults"]["num_segments"] = "10" defs["ImDrawList_PathArcTo"][1]["funcname"] = "PathArcTo" +defs["ImDrawList_PathArcTo"][1]["ov_cimguiname"] = "ImDrawList_PathArcTo" defs["ImDrawList_PathArcTo"][1]["ret"] = "void" defs["ImDrawList_PathArcTo"][1]["signature"] = "(const ImVec2,float,float,float,int)" defs["ImDrawList_PathArcTo"][1]["stname"] = "ImDrawList" @@ -1375,6 +1412,7 @@ defs["ImDrawList_PathArcToFast"][1]["cimguiname"] = "ImDrawList_PathArcToFast" defs["ImDrawList_PathArcToFast"][1]["comment"] = "" defs["ImDrawList_PathArcToFast"][1]["defaults"] = {} defs["ImDrawList_PathArcToFast"][1]["funcname"] = "PathArcToFast" +defs["ImDrawList_PathArcToFast"][1]["ov_cimguiname"] = "ImDrawList_PathArcToFast" defs["ImDrawList_PathArcToFast"][1]["ret"] = "void" defs["ImDrawList_PathArcToFast"][1]["signature"] = "(const ImVec2,float,int,int)" defs["ImDrawList_PathArcToFast"][1]["stname"] = "ImDrawList" @@ -1405,6 +1443,7 @@ defs["ImDrawList_PathBezierCurveTo"][1]["comment"] = "" defs["ImDrawList_PathBezierCurveTo"][1]["defaults"] = {} defs["ImDrawList_PathBezierCurveTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathBezierCurveTo"][1]["funcname"] = "PathBezierCurveTo" +defs["ImDrawList_PathBezierCurveTo"][1]["ov_cimguiname"] = "ImDrawList_PathBezierCurveTo" defs["ImDrawList_PathBezierCurveTo"][1]["ret"] = "void" defs["ImDrawList_PathBezierCurveTo"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,int)" defs["ImDrawList_PathBezierCurveTo"][1]["stname"] = "ImDrawList" @@ -1422,6 +1461,7 @@ defs["ImDrawList_PathClear"][1]["cimguiname"] = "ImDrawList_PathClear" defs["ImDrawList_PathClear"][1]["comment"] = "" defs["ImDrawList_PathClear"][1]["defaults"] = {} defs["ImDrawList_PathClear"][1]["funcname"] = "PathClear" +defs["ImDrawList_PathClear"][1]["ov_cimguiname"] = "ImDrawList_PathClear" defs["ImDrawList_PathClear"][1]["ret"] = "void" defs["ImDrawList_PathClear"][1]["signature"] = "()" defs["ImDrawList_PathClear"][1]["stname"] = "ImDrawList" @@ -1442,6 +1482,7 @@ defs["ImDrawList_PathFillConvex"][1]["cimguiname"] = "ImDrawList_PathFillConvex" defs["ImDrawList_PathFillConvex"][1]["comment"] = "" defs["ImDrawList_PathFillConvex"][1]["defaults"] = {} defs["ImDrawList_PathFillConvex"][1]["funcname"] = "PathFillConvex" +defs["ImDrawList_PathFillConvex"][1]["ov_cimguiname"] = "ImDrawList_PathFillConvex" defs["ImDrawList_PathFillConvex"][1]["ret"] = "void" defs["ImDrawList_PathFillConvex"][1]["signature"] = "(ImU32)" defs["ImDrawList_PathFillConvex"][1]["stname"] = "ImDrawList" @@ -1462,6 +1503,7 @@ defs["ImDrawList_PathLineTo"][1]["cimguiname"] = "ImDrawList_PathLineTo" defs["ImDrawList_PathLineTo"][1]["comment"] = "" defs["ImDrawList_PathLineTo"][1]["defaults"] = {} defs["ImDrawList_PathLineTo"][1]["funcname"] = "PathLineTo" +defs["ImDrawList_PathLineTo"][1]["ov_cimguiname"] = "ImDrawList_PathLineTo" defs["ImDrawList_PathLineTo"][1]["ret"] = "void" defs["ImDrawList_PathLineTo"][1]["signature"] = "(const ImVec2)" defs["ImDrawList_PathLineTo"][1]["stname"] = "ImDrawList" @@ -1482,6 +1524,7 @@ defs["ImDrawList_PathLineToMergeDuplicate"][1]["cimguiname"] = "ImDrawList_PathL defs["ImDrawList_PathLineToMergeDuplicate"][1]["comment"] = "" defs["ImDrawList_PathLineToMergeDuplicate"][1]["defaults"] = {} defs["ImDrawList_PathLineToMergeDuplicate"][1]["funcname"] = "PathLineToMergeDuplicate" +defs["ImDrawList_PathLineToMergeDuplicate"][1]["ov_cimguiname"] = "ImDrawList_PathLineToMergeDuplicate" defs["ImDrawList_PathLineToMergeDuplicate"][1]["ret"] = "void" defs["ImDrawList_PathLineToMergeDuplicate"][1]["signature"] = "(const ImVec2)" defs["ImDrawList_PathLineToMergeDuplicate"][1]["stname"] = "ImDrawList" @@ -1513,6 +1556,7 @@ defs["ImDrawList_PathRect"][1]["defaults"] = {} defs["ImDrawList_PathRect"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_PathRect"][1]["defaults"]["rounding_corners_flags"] = "ImDrawCornerFlags_All" defs["ImDrawList_PathRect"][1]["funcname"] = "PathRect" +defs["ImDrawList_PathRect"][1]["ov_cimguiname"] = "ImDrawList_PathRect" defs["ImDrawList_PathRect"][1]["ret"] = "void" defs["ImDrawList_PathRect"][1]["signature"] = "(const ImVec2,const ImVec2,float,int)" defs["ImDrawList_PathRect"][1]["stname"] = "ImDrawList" @@ -1540,6 +1584,7 @@ defs["ImDrawList_PathStroke"][1]["comment"] = "" defs["ImDrawList_PathStroke"][1]["defaults"] = {} defs["ImDrawList_PathStroke"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_PathStroke"][1]["funcname"] = "PathStroke" +defs["ImDrawList_PathStroke"][1]["ov_cimguiname"] = "ImDrawList_PathStroke" defs["ImDrawList_PathStroke"][1]["ret"] = "void" defs["ImDrawList_PathStroke"][1]["signature"] = "(ImU32,bool,float)" defs["ImDrawList_PathStroke"][1]["stname"] = "ImDrawList" @@ -1557,6 +1602,7 @@ defs["ImDrawList_PopClipRect"][1]["cimguiname"] = "ImDrawList_PopClipRect" defs["ImDrawList_PopClipRect"][1]["comment"] = "" defs["ImDrawList_PopClipRect"][1]["defaults"] = {} defs["ImDrawList_PopClipRect"][1]["funcname"] = "PopClipRect" +defs["ImDrawList_PopClipRect"][1]["ov_cimguiname"] = "ImDrawList_PopClipRect" defs["ImDrawList_PopClipRect"][1]["ret"] = "void" defs["ImDrawList_PopClipRect"][1]["signature"] = "()" defs["ImDrawList_PopClipRect"][1]["stname"] = "ImDrawList" @@ -1574,6 +1620,7 @@ defs["ImDrawList_PopTextureID"][1]["cimguiname"] = "ImDrawList_PopTextureID" defs["ImDrawList_PopTextureID"][1]["comment"] = "" defs["ImDrawList_PopTextureID"][1]["defaults"] = {} defs["ImDrawList_PopTextureID"][1]["funcname"] = "PopTextureID" +defs["ImDrawList_PopTextureID"][1]["ov_cimguiname"] = "ImDrawList_PopTextureID" defs["ImDrawList_PopTextureID"][1]["ret"] = "void" defs["ImDrawList_PopTextureID"][1]["signature"] = "()" defs["ImDrawList_PopTextureID"][1]["stname"] = "ImDrawList" @@ -1618,6 +1665,7 @@ defs["ImDrawList_PrimQuadUV"][1]["cimguiname"] = "ImDrawList_PrimQuadUV" defs["ImDrawList_PrimQuadUV"][1]["comment"] = "" defs["ImDrawList_PrimQuadUV"][1]["defaults"] = {} defs["ImDrawList_PrimQuadUV"][1]["funcname"] = "PrimQuadUV" +defs["ImDrawList_PrimQuadUV"][1]["ov_cimguiname"] = "ImDrawList_PrimQuadUV" defs["ImDrawList_PrimQuadUV"][1]["ret"] = "void" defs["ImDrawList_PrimQuadUV"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" defs["ImDrawList_PrimQuadUV"][1]["stname"] = "ImDrawList" @@ -1644,6 +1692,7 @@ defs["ImDrawList_PrimRect"][1]["cimguiname"] = "ImDrawList_PrimRect" defs["ImDrawList_PrimRect"][1]["comment"] = "" defs["ImDrawList_PrimRect"][1]["defaults"] = {} defs["ImDrawList_PrimRect"][1]["funcname"] = "PrimRect" +defs["ImDrawList_PrimRect"][1]["ov_cimguiname"] = "ImDrawList_PrimRect" defs["ImDrawList_PrimRect"][1]["ret"] = "void" defs["ImDrawList_PrimRect"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" defs["ImDrawList_PrimRect"][1]["stname"] = "ImDrawList" @@ -1676,6 +1725,7 @@ defs["ImDrawList_PrimRectUV"][1]["cimguiname"] = "ImDrawList_PrimRectUV" defs["ImDrawList_PrimRectUV"][1]["comment"] = "" defs["ImDrawList_PrimRectUV"][1]["defaults"] = {} defs["ImDrawList_PrimRectUV"][1]["funcname"] = "PrimRectUV" +defs["ImDrawList_PrimRectUV"][1]["ov_cimguiname"] = "ImDrawList_PrimRectUV" defs["ImDrawList_PrimRectUV"][1]["ret"] = "void" defs["ImDrawList_PrimRectUV"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" defs["ImDrawList_PrimRectUV"][1]["stname"] = "ImDrawList" @@ -1699,6 +1749,7 @@ defs["ImDrawList_PrimReserve"][1]["cimguiname"] = "ImDrawList_PrimReserve" defs["ImDrawList_PrimReserve"][1]["comment"] = "" defs["ImDrawList_PrimReserve"][1]["defaults"] = {} defs["ImDrawList_PrimReserve"][1]["funcname"] = "PrimReserve" +defs["ImDrawList_PrimReserve"][1]["ov_cimguiname"] = "ImDrawList_PrimReserve" defs["ImDrawList_PrimReserve"][1]["ret"] = "void" defs["ImDrawList_PrimReserve"][1]["signature"] = "(int,int)" defs["ImDrawList_PrimReserve"][1]["stname"] = "ImDrawList" @@ -1725,6 +1776,7 @@ defs["ImDrawList_PrimVtx"][1]["cimguiname"] = "ImDrawList_PrimVtx" defs["ImDrawList_PrimVtx"][1]["comment"] = "" defs["ImDrawList_PrimVtx"][1]["defaults"] = {} defs["ImDrawList_PrimVtx"][1]["funcname"] = "PrimVtx" +defs["ImDrawList_PrimVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimVtx" defs["ImDrawList_PrimVtx"][1]["ret"] = "void" defs["ImDrawList_PrimVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" defs["ImDrawList_PrimVtx"][1]["stname"] = "ImDrawList" @@ -1745,6 +1797,7 @@ defs["ImDrawList_PrimWriteIdx"][1]["cimguiname"] = "ImDrawList_PrimWriteIdx" defs["ImDrawList_PrimWriteIdx"][1]["comment"] = "" defs["ImDrawList_PrimWriteIdx"][1]["defaults"] = {} defs["ImDrawList_PrimWriteIdx"][1]["funcname"] = "PrimWriteIdx" +defs["ImDrawList_PrimWriteIdx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteIdx" defs["ImDrawList_PrimWriteIdx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteIdx"][1]["signature"] = "(ImDrawIdx)" defs["ImDrawList_PrimWriteIdx"][1]["stname"] = "ImDrawList" @@ -1771,6 +1824,7 @@ defs["ImDrawList_PrimWriteVtx"][1]["cimguiname"] = "ImDrawList_PrimWriteVtx" defs["ImDrawList_PrimWriteVtx"][1]["comment"] = "" defs["ImDrawList_PrimWriteVtx"][1]["defaults"] = {} defs["ImDrawList_PrimWriteVtx"][1]["funcname"] = "PrimWriteVtx" +defs["ImDrawList_PrimWriteVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteVtx" defs["ImDrawList_PrimWriteVtx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" defs["ImDrawList_PrimWriteVtx"][1]["stname"] = "ImDrawList" @@ -1798,6 +1852,7 @@ defs["ImDrawList_PushClipRect"][1]["comment"] = "" defs["ImDrawList_PushClipRect"][1]["defaults"] = {} defs["ImDrawList_PushClipRect"][1]["defaults"]["intersect_with_current_clip_rect"] = "false" defs["ImDrawList_PushClipRect"][1]["funcname"] = "PushClipRect" +defs["ImDrawList_PushClipRect"][1]["ov_cimguiname"] = "ImDrawList_PushClipRect" defs["ImDrawList_PushClipRect"][1]["ret"] = "void" defs["ImDrawList_PushClipRect"][1]["signature"] = "(ImVec2,ImVec2,bool)" defs["ImDrawList_PushClipRect"][1]["stname"] = "ImDrawList" @@ -1815,6 +1870,7 @@ defs["ImDrawList_PushClipRectFullScreen"][1]["cimguiname"] = "ImDrawList_PushCli defs["ImDrawList_PushClipRectFullScreen"][1]["comment"] = "" defs["ImDrawList_PushClipRectFullScreen"][1]["defaults"] = {} defs["ImDrawList_PushClipRectFullScreen"][1]["funcname"] = "PushClipRectFullScreen" +defs["ImDrawList_PushClipRectFullScreen"][1]["ov_cimguiname"] = "ImDrawList_PushClipRectFullScreen" defs["ImDrawList_PushClipRectFullScreen"][1]["ret"] = "void" defs["ImDrawList_PushClipRectFullScreen"][1]["signature"] = "()" defs["ImDrawList_PushClipRectFullScreen"][1]["stname"] = "ImDrawList" @@ -1835,6 +1891,7 @@ defs["ImDrawList_PushTextureID"][1]["cimguiname"] = "ImDrawList_PushTextureID" defs["ImDrawList_PushTextureID"][1]["comment"] = "" defs["ImDrawList_PushTextureID"][1]["defaults"] = {} defs["ImDrawList_PushTextureID"][1]["funcname"] = "PushTextureID" +defs["ImDrawList_PushTextureID"][1]["ov_cimguiname"] = "ImDrawList_PushTextureID" defs["ImDrawList_PushTextureID"][1]["ret"] = "void" defs["ImDrawList_PushTextureID"][1]["signature"] = "(ImTextureID)" defs["ImDrawList_PushTextureID"][1]["stname"] = "ImDrawList" @@ -1852,6 +1909,7 @@ defs["ImDrawList_UpdateClipRect"][1]["cimguiname"] = "ImDrawList_UpdateClipRect" defs["ImDrawList_UpdateClipRect"][1]["comment"] = "" defs["ImDrawList_UpdateClipRect"][1]["defaults"] = {} defs["ImDrawList_UpdateClipRect"][1]["funcname"] = "UpdateClipRect" +defs["ImDrawList_UpdateClipRect"][1]["ov_cimguiname"] = "ImDrawList_UpdateClipRect" defs["ImDrawList_UpdateClipRect"][1]["ret"] = "void" defs["ImDrawList_UpdateClipRect"][1]["signature"] = "()" defs["ImDrawList_UpdateClipRect"][1]["stname"] = "ImDrawList" @@ -1869,6 +1927,7 @@ defs["ImDrawList_UpdateTextureID"][1]["cimguiname"] = "ImDrawList_UpdateTextureI defs["ImDrawList_UpdateTextureID"][1]["comment"] = "" defs["ImDrawList_UpdateTextureID"][1]["defaults"] = {} defs["ImDrawList_UpdateTextureID"][1]["funcname"] = "UpdateTextureID" +defs["ImDrawList_UpdateTextureID"][1]["ov_cimguiname"] = "ImDrawList_UpdateTextureID" defs["ImDrawList_UpdateTextureID"][1]["ret"] = "void" defs["ImDrawList_UpdateTextureID"][1]["signature"] = "()" defs["ImDrawList_UpdateTextureID"][1]["stname"] = "ImDrawList" @@ -1921,6 +1980,7 @@ defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["comment"] = "" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["defaults"] = {} defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["defaults"]["offset"] = "ImVec2(0,0)" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["funcname"] = "AddCustomRectFontGlyph" +defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["ov_cimguiname"] = "ImFontAtlas_AddCustomRectFontGlyph" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["ret"] = "int" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["signature"] = "(ImFont*,ImWchar,int,int,float,const ImVec2)" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["stname"] = "ImFontAtlas" @@ -1947,6 +2007,7 @@ defs["ImFontAtlas_AddCustomRectRegular"][1]["cimguiname"] = "ImFontAtlas_AddCust defs["ImFontAtlas_AddCustomRectRegular"][1]["comment"] = "" defs["ImFontAtlas_AddCustomRectRegular"][1]["defaults"] = {} defs["ImFontAtlas_AddCustomRectRegular"][1]["funcname"] = "AddCustomRectRegular" +defs["ImFontAtlas_AddCustomRectRegular"][1]["ov_cimguiname"] = "ImFontAtlas_AddCustomRectRegular" defs["ImFontAtlas_AddCustomRectRegular"][1]["ret"] = "int" defs["ImFontAtlas_AddCustomRectRegular"][1]["signature"] = "(unsigned int,int,int)" defs["ImFontAtlas_AddCustomRectRegular"][1]["stname"] = "ImFontAtlas" @@ -1967,6 +2028,7 @@ defs["ImFontAtlas_AddFont"][1]["cimguiname"] = "ImFontAtlas_AddFont" defs["ImFontAtlas_AddFont"][1]["comment"] = "" defs["ImFontAtlas_AddFont"][1]["defaults"] = {} defs["ImFontAtlas_AddFont"][1]["funcname"] = "AddFont" +defs["ImFontAtlas_AddFont"][1]["ov_cimguiname"] = "ImFontAtlas_AddFont" defs["ImFontAtlas_AddFont"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFont"][1]["signature"] = "(const ImFontConfig*)" defs["ImFontAtlas_AddFont"][1]["stname"] = "ImFontAtlas" @@ -1981,13 +2043,14 @@ defs["ImFontAtlas_AddFontDefault"][1]["argsT"][1]["type"] = "ImFontAtlas*" defs["ImFontAtlas_AddFontDefault"][1]["argsT"][2] = {} defs["ImFontAtlas_AddFontDefault"][1]["argsT"][2]["name"] = "font_cfg" defs["ImFontAtlas_AddFontDefault"][1]["argsT"][2]["type"] = "const ImFontConfig*" -defs["ImFontAtlas_AddFontDefault"][1]["argsoriginal"] = "(const ImFontConfig* font_cfg=((void *)0))" +defs["ImFontAtlas_AddFontDefault"][1]["argsoriginal"] = "(const ImFontConfig* font_cfg=((void*)0))" defs["ImFontAtlas_AddFontDefault"][1]["call_args"] = "(font_cfg)" defs["ImFontAtlas_AddFontDefault"][1]["cimguiname"] = "ImFontAtlas_AddFontDefault" defs["ImFontAtlas_AddFontDefault"][1]["comment"] = "" defs["ImFontAtlas_AddFontDefault"][1]["defaults"] = {} -defs["ImFontAtlas_AddFontDefault"][1]["defaults"]["font_cfg"] = "((void *)0)" +defs["ImFontAtlas_AddFontDefault"][1]["defaults"]["font_cfg"] = "((void*)0)" defs["ImFontAtlas_AddFontDefault"][1]["funcname"] = "AddFontDefault" +defs["ImFontAtlas_AddFontDefault"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontDefault" defs["ImFontAtlas_AddFontDefault"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontDefault"][1]["signature"] = "(const ImFontConfig*)" defs["ImFontAtlas_AddFontDefault"][1]["stname"] = "ImFontAtlas" @@ -2011,14 +2074,15 @@ defs["ImFontAtlas_AddFontFromFileTTF"][1]["argsT"][4]["type"] = "const ImFontCon defs["ImFontAtlas_AddFontFromFileTTF"][1]["argsT"][5] = {} defs["ImFontAtlas_AddFontFromFileTTF"][1]["argsT"][5]["name"] = "glyph_ranges" defs["ImFontAtlas_AddFontFromFileTTF"][1]["argsT"][5]["type"] = "const ImWchar*" -defs["ImFontAtlas_AddFontFromFileTTF"][1]["argsoriginal"] = "(const char* filename,float size_pixels,const ImFontConfig* font_cfg=((void *)0),const ImWchar* glyph_ranges=((void *)0))" +defs["ImFontAtlas_AddFontFromFileTTF"][1]["argsoriginal"] = "(const char* filename,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" defs["ImFontAtlas_AddFontFromFileTTF"][1]["call_args"] = "(filename,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromFileTTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromFileTTF" defs["ImFontAtlas_AddFontFromFileTTF"][1]["comment"] = "" defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"] = {} -defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["font_cfg"] = "((void *)0)" -defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["glyph_ranges"] = "((void *)0)" +defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["font_cfg"] = "((void*)0)" +defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["glyph_ranges"] = "((void*)0)" defs["ImFontAtlas_AddFontFromFileTTF"][1]["funcname"] = "AddFontFromFileTTF" +defs["ImFontAtlas_AddFontFromFileTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromFileTTF" defs["ImFontAtlas_AddFontFromFileTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromFileTTF"][1]["signature"] = "(const char*,float,const ImFontConfig*,const ImWchar*)" defs["ImFontAtlas_AddFontFromFileTTF"][1]["stname"] = "ImFontAtlas" @@ -2042,14 +2106,15 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["argsT"][4]["type"] defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["argsT"][5] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["argsT"][5]["name"] = "glyph_ranges" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["argsT"][5]["type"] = "const ImWchar*" -defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["argsoriginal"] = "(const char* compressed_font_data_base85,float size_pixels,const ImFontConfig* font_cfg=((void *)0),const ImWchar* glyph_ranges=((void *)0))" +defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["argsoriginal"] = "(const char* compressed_font_data_base85,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["call_args"] = "(compressed_font_data_base85,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["comment"] = "" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"] = {} -defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["font_cfg"] = "((void *)0)" -defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["glyph_ranges"] = "((void *)0)" +defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["font_cfg"] = "((void*)0)" +defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["glyph_ranges"] = "((void*)0)" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["funcname"] = "AddFontFromMemoryCompressedBase85TTF" +defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["signature"] = "(const char*,float,const ImFontConfig*,const ImWchar*)" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["stname"] = "ImFontAtlas" @@ -2076,14 +2141,15 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][5]["type"] = "con defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][6] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][6]["name"] = "glyph_ranges" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][6]["type"] = "const ImWchar*" -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsoriginal"] = "(const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg=((void *)0),const ImWchar* glyph_ranges=((void *)0))" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsoriginal"] = "(const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["call_args"] = "(compressed_font_data,compressed_font_size,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedTTF" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["comment"] = "" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"] = {} -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["font_cfg"] = "((void *)0)" -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["glyph_ranges"] = "((void *)0)" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["font_cfg"] = "((void*)0)" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["glyph_ranges"] = "((void*)0)" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["funcname"] = "AddFontFromMemoryCompressedTTF" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedTTF" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["signature"] = "(const void*,int,float,const ImFontConfig*,const ImWchar*)" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["stname"] = "ImFontAtlas" @@ -2110,14 +2176,15 @@ defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][5]["type"] = "const ImFontC defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][6] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][6]["name"] = "glyph_ranges" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][6]["type"] = "const ImWchar*" -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsoriginal"] = "(void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg=((void *)0),const ImWchar* glyph_ranges=((void *)0))" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsoriginal"] = "(void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["call_args"] = "(font_data,font_size,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromMemoryTTF" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["comment"] = "" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"] = {} -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["font_cfg"] = "((void *)0)" -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["glyph_ranges"] = "((void *)0)" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["font_cfg"] = "((void*)0)" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["glyph_ranges"] = "((void*)0)" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["funcname"] = "AddFontFromMemoryTTF" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryTTF" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["signature"] = "(void*,int,float,const ImFontConfig*,const ImWchar*)" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["stname"] = "ImFontAtlas" @@ -2135,6 +2202,7 @@ defs["ImFontAtlas_Build"][1]["cimguiname"] = "ImFontAtlas_Build" defs["ImFontAtlas_Build"][1]["comment"] = "" defs["ImFontAtlas_Build"][1]["defaults"] = {} defs["ImFontAtlas_Build"][1]["funcname"] = "Build" +defs["ImFontAtlas_Build"][1]["ov_cimguiname"] = "ImFontAtlas_Build" defs["ImFontAtlas_Build"][1]["ret"] = "bool" defs["ImFontAtlas_Build"][1]["signature"] = "()" defs["ImFontAtlas_Build"][1]["stname"] = "ImFontAtlas" @@ -2161,6 +2229,7 @@ defs["ImFontAtlas_CalcCustomRectUV"][1]["cimguiname"] = "ImFontAtlas_CalcCustomR defs["ImFontAtlas_CalcCustomRectUV"][1]["comment"] = "" defs["ImFontAtlas_CalcCustomRectUV"][1]["defaults"] = {} defs["ImFontAtlas_CalcCustomRectUV"][1]["funcname"] = "CalcCustomRectUV" +defs["ImFontAtlas_CalcCustomRectUV"][1]["ov_cimguiname"] = "ImFontAtlas_CalcCustomRectUV" defs["ImFontAtlas_CalcCustomRectUV"][1]["ret"] = "void" defs["ImFontAtlas_CalcCustomRectUV"][1]["signature"] = "(const CustomRect*,ImVec2*,ImVec2*)" defs["ImFontAtlas_CalcCustomRectUV"][1]["stname"] = "ImFontAtlas" @@ -2178,6 +2247,7 @@ defs["ImFontAtlas_Clear"][1]["cimguiname"] = "ImFontAtlas_Clear" defs["ImFontAtlas_Clear"][1]["comment"] = "" defs["ImFontAtlas_Clear"][1]["defaults"] = {} defs["ImFontAtlas_Clear"][1]["funcname"] = "Clear" +defs["ImFontAtlas_Clear"][1]["ov_cimguiname"] = "ImFontAtlas_Clear" defs["ImFontAtlas_Clear"][1]["ret"] = "void" defs["ImFontAtlas_Clear"][1]["signature"] = "()" defs["ImFontAtlas_Clear"][1]["stname"] = "ImFontAtlas" @@ -2195,6 +2265,7 @@ defs["ImFontAtlas_ClearFonts"][1]["cimguiname"] = "ImFontAtlas_ClearFonts" defs["ImFontAtlas_ClearFonts"][1]["comment"] = "" defs["ImFontAtlas_ClearFonts"][1]["defaults"] = {} defs["ImFontAtlas_ClearFonts"][1]["funcname"] = "ClearFonts" +defs["ImFontAtlas_ClearFonts"][1]["ov_cimguiname"] = "ImFontAtlas_ClearFonts" defs["ImFontAtlas_ClearFonts"][1]["ret"] = "void" defs["ImFontAtlas_ClearFonts"][1]["signature"] = "()" defs["ImFontAtlas_ClearFonts"][1]["stname"] = "ImFontAtlas" @@ -2212,6 +2283,7 @@ defs["ImFontAtlas_ClearInputData"][1]["cimguiname"] = "ImFontAtlas_ClearInputDat defs["ImFontAtlas_ClearInputData"][1]["comment"] = "" defs["ImFontAtlas_ClearInputData"][1]["defaults"] = {} defs["ImFontAtlas_ClearInputData"][1]["funcname"] = "ClearInputData" +defs["ImFontAtlas_ClearInputData"][1]["ov_cimguiname"] = "ImFontAtlas_ClearInputData" defs["ImFontAtlas_ClearInputData"][1]["ret"] = "void" defs["ImFontAtlas_ClearInputData"][1]["signature"] = "()" defs["ImFontAtlas_ClearInputData"][1]["stname"] = "ImFontAtlas" @@ -2229,6 +2301,7 @@ defs["ImFontAtlas_ClearTexData"][1]["cimguiname"] = "ImFontAtlas_ClearTexData" defs["ImFontAtlas_ClearTexData"][1]["comment"] = "" defs["ImFontAtlas_ClearTexData"][1]["defaults"] = {} defs["ImFontAtlas_ClearTexData"][1]["funcname"] = "ClearTexData" +defs["ImFontAtlas_ClearTexData"][1]["ov_cimguiname"] = "ImFontAtlas_ClearTexData" defs["ImFontAtlas_ClearTexData"][1]["ret"] = "void" defs["ImFontAtlas_ClearTexData"][1]["signature"] = "()" defs["ImFontAtlas_ClearTexData"][1]["stname"] = "ImFontAtlas" @@ -2249,6 +2322,7 @@ defs["ImFontAtlas_GetCustomRectByIndex"][1]["cimguiname"] = "ImFontAtlas_GetCust defs["ImFontAtlas_GetCustomRectByIndex"][1]["comment"] = "" defs["ImFontAtlas_GetCustomRectByIndex"][1]["defaults"] = {} defs["ImFontAtlas_GetCustomRectByIndex"][1]["funcname"] = "GetCustomRectByIndex" +defs["ImFontAtlas_GetCustomRectByIndex"][1]["ov_cimguiname"] = "ImFontAtlas_GetCustomRectByIndex" defs["ImFontAtlas_GetCustomRectByIndex"][1]["ret"] = "const CustomRect*" defs["ImFontAtlas_GetCustomRectByIndex"][1]["signature"] = "(int)" defs["ImFontAtlas_GetCustomRectByIndex"][1]["stname"] = "ImFontAtlas" @@ -2266,6 +2340,7 @@ defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["cimguiname"] = "ImFontAtlas_Ge defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["comment"] = "" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["funcname"] = "GetGlyphRangesChineseFull" +defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseFull" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["signature"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["stname"] = "ImFontAtlas" @@ -2283,6 +2358,7 @@ defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["cimguiname"] = "Im defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["comment"] = "" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["funcname"] = "GetGlyphRangesChineseSimplifiedCommon" +defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["signature"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["stname"] = "ImFontAtlas" @@ -2300,6 +2376,7 @@ defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["cimguiname"] = "ImFontAtlas_GetGl defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["comment"] = "" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["funcname"] = "GetGlyphRangesCyrillic" +defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesCyrillic" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["signature"] = "()" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["stname"] = "ImFontAtlas" @@ -2317,6 +2394,7 @@ defs["ImFontAtlas_GetGlyphRangesDefault"][1]["cimguiname"] = "ImFontAtlas_GetGly defs["ImFontAtlas_GetGlyphRangesDefault"][1]["comment"] = "" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesDefault"][1]["funcname"] = "GetGlyphRangesDefault" +defs["ImFontAtlas_GetGlyphRangesDefault"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesDefault" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["signature"] = "()" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["stname"] = "ImFontAtlas" @@ -2334,6 +2412,7 @@ defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["cimguiname"] = "ImFontAtlas_GetGl defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["comment"] = "" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["funcname"] = "GetGlyphRangesJapanese" +defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesJapanese" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["signature"] = "()" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["stname"] = "ImFontAtlas" @@ -2351,6 +2430,7 @@ defs["ImFontAtlas_GetGlyphRangesKorean"][1]["cimguiname"] = "ImFontAtlas_GetGlyp defs["ImFontAtlas_GetGlyphRangesKorean"][1]["comment"] = "" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesKorean"][1]["funcname"] = "GetGlyphRangesKorean" +defs["ImFontAtlas_GetGlyphRangesKorean"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesKorean" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["signature"] = "()" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["stname"] = "ImFontAtlas" @@ -2368,6 +2448,7 @@ defs["ImFontAtlas_GetGlyphRangesThai"][1]["cimguiname"] = "ImFontAtlas_GetGlyphR defs["ImFontAtlas_GetGlyphRangesThai"][1]["comment"] = "" defs["ImFontAtlas_GetGlyphRangesThai"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesThai"][1]["funcname"] = "GetGlyphRangesThai" +defs["ImFontAtlas_GetGlyphRangesThai"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesThai" defs["ImFontAtlas_GetGlyphRangesThai"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesThai"][1]["signature"] = "()" defs["ImFontAtlas_GetGlyphRangesThai"][1]["stname"] = "ImFontAtlas" @@ -2400,6 +2481,7 @@ defs["ImFontAtlas_GetMouseCursorTexData"][1]["cimguiname"] = "ImFontAtlas_GetMou defs["ImFontAtlas_GetMouseCursorTexData"][1]["comment"] = "" defs["ImFontAtlas_GetMouseCursorTexData"][1]["defaults"] = {} defs["ImFontAtlas_GetMouseCursorTexData"][1]["funcname"] = "GetMouseCursorTexData" +defs["ImFontAtlas_GetMouseCursorTexData"][1]["ov_cimguiname"] = "ImFontAtlas_GetMouseCursorTexData" defs["ImFontAtlas_GetMouseCursorTexData"][1]["ret"] = "bool" defs["ImFontAtlas_GetMouseCursorTexData"][1]["signature"] = "(ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])" defs["ImFontAtlas_GetMouseCursorTexData"][1]["stname"] = "ImFontAtlas" @@ -2423,13 +2505,14 @@ defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["argsT"][4]["type"] = "int*" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["argsT"][5] = {} defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["argsT"][5]["name"] = "out_bytes_per_pixel" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["argsT"][5]["type"] = "int*" -defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["argsoriginal"] = "(unsigned char** out_pixels,int* out_width,int* out_height,int* out_bytes_per_pixel=((void *)0))" +defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["argsoriginal"] = "(unsigned char** out_pixels,int* out_width,int* out_height,int* out_bytes_per_pixel=((void*)0))" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["call_args"] = "(out_pixels,out_width,out_height,out_bytes_per_pixel)" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["cimguiname"] = "ImFontAtlas_GetTexDataAsAlpha8" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["comment"] = "" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"] = {} -defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"]["out_bytes_per_pixel"] = "((void *)0)" +defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"]["out_bytes_per_pixel"] = "((void*)0)" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["funcname"] = "GetTexDataAsAlpha8" +defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["ov_cimguiname"] = "ImFontAtlas_GetTexDataAsAlpha8" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["ret"] = "void" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["signature"] = "(unsigned char**,int*,int*,int*)" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["stname"] = "ImFontAtlas" @@ -2453,13 +2536,14 @@ defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["argsT"][4]["type"] = "int*" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["argsT"][5] = {} defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["argsT"][5]["name"] = "out_bytes_per_pixel" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["argsT"][5]["type"] = "int*" -defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["argsoriginal"] = "(unsigned char** out_pixels,int* out_width,int* out_height,int* out_bytes_per_pixel=((void *)0))" +defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["argsoriginal"] = "(unsigned char** out_pixels,int* out_width,int* out_height,int* out_bytes_per_pixel=((void*)0))" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["call_args"] = "(out_pixels,out_width,out_height,out_bytes_per_pixel)" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["cimguiname"] = "ImFontAtlas_GetTexDataAsRGBA32" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["comment"] = "" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"] = {} -defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"]["out_bytes_per_pixel"] = "((void *)0)" +defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"]["out_bytes_per_pixel"] = "((void*)0)" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["funcname"] = "GetTexDataAsRGBA32" +defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["ov_cimguiname"] = "ImFontAtlas_GetTexDataAsRGBA32" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["ret"] = "void" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["signature"] = "(unsigned char**,int*,int*,int*)" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["stname"] = "ImFontAtlas" @@ -2475,6 +2559,7 @@ defs["ImFontAtlas_ImFontAtlas"][1]["comment"] = "" defs["ImFontAtlas_ImFontAtlas"][1]["constructor"] = true defs["ImFontAtlas_ImFontAtlas"][1]["defaults"] = {} defs["ImFontAtlas_ImFontAtlas"][1]["funcname"] = "ImFontAtlas" +defs["ImFontAtlas_ImFontAtlas"][1]["ov_cimguiname"] = "ImFontAtlas_ImFontAtlas" defs["ImFontAtlas_ImFontAtlas"][1]["signature"] = "()" defs["ImFontAtlas_ImFontAtlas"][1]["stname"] = "ImFontAtlas" defs["ImFontAtlas_ImFontAtlas"]["()"] = defs["ImFontAtlas_ImFontAtlas"][1] @@ -2491,6 +2576,7 @@ defs["ImFontAtlas_IsBuilt"][1]["cimguiname"] = "ImFontAtlas_IsBuilt" defs["ImFontAtlas_IsBuilt"][1]["comment"] = "" defs["ImFontAtlas_IsBuilt"][1]["defaults"] = {} defs["ImFontAtlas_IsBuilt"][1]["funcname"] = "IsBuilt" +defs["ImFontAtlas_IsBuilt"][1]["ov_cimguiname"] = "ImFontAtlas_IsBuilt" defs["ImFontAtlas_IsBuilt"][1]["ret"] = "bool" defs["ImFontAtlas_IsBuilt"][1]["signature"] = "()" defs["ImFontAtlas_IsBuilt"][1]["stname"] = "ImFontAtlas" @@ -2511,6 +2597,7 @@ defs["ImFontAtlas_SetTexID"][1]["cimguiname"] = "ImFontAtlas_SetTexID" defs["ImFontAtlas_SetTexID"][1]["comment"] = "" defs["ImFontAtlas_SetTexID"][1]["defaults"] = {} defs["ImFontAtlas_SetTexID"][1]["funcname"] = "SetTexID" +defs["ImFontAtlas_SetTexID"][1]["ov_cimguiname"] = "ImFontAtlas_SetTexID" defs["ImFontAtlas_SetTexID"][1]["ret"] = "void" defs["ImFontAtlas_SetTexID"][1]["signature"] = "(ImTextureID)" defs["ImFontAtlas_SetTexID"][1]["stname"] = "ImFontAtlas" @@ -2542,6 +2629,7 @@ defs["ImFontConfig_ImFontConfig"][1]["comment"] = "" defs["ImFontConfig_ImFontConfig"][1]["constructor"] = true defs["ImFontConfig_ImFontConfig"][1]["defaults"] = {} defs["ImFontConfig_ImFontConfig"][1]["funcname"] = "ImFontConfig" +defs["ImFontConfig_ImFontConfig"][1]["ov_cimguiname"] = "ImFontConfig_ImFontConfig" defs["ImFontConfig_ImFontConfig"][1]["signature"] = "()" defs["ImFontConfig_ImFontConfig"][1]["stname"] = "ImFontConfig" defs["ImFontConfig_ImFontConfig"]["()"] = defs["ImFontConfig_ImFontConfig"][1] @@ -2577,6 +2665,7 @@ defs["ImFontGlyphRangesBuilder_AddChar"][1]["cimguiname"] = "ImFontGlyphRangesBu defs["ImFontGlyphRangesBuilder_AddChar"][1]["comment"] = "" defs["ImFontGlyphRangesBuilder_AddChar"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddChar"][1]["funcname"] = "AddChar" +defs["ImFontGlyphRangesBuilder_AddChar"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddChar" defs["ImFontGlyphRangesBuilder_AddChar"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddChar"][1]["signature"] = "(ImWchar)" defs["ImFontGlyphRangesBuilder_AddChar"][1]["stname"] = "ImFontGlyphRangesBuilder" @@ -2597,6 +2686,7 @@ defs["ImFontGlyphRangesBuilder_AddRanges"][1]["cimguiname"] = "ImFontGlyphRanges defs["ImFontGlyphRangesBuilder_AddRanges"][1]["comment"] = "" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddRanges"][1]["funcname"] = "AddRanges" +defs["ImFontGlyphRangesBuilder_AddRanges"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddRanges" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["signature"] = "(const ImWchar*)" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["stname"] = "ImFontGlyphRangesBuilder" @@ -2614,13 +2704,14 @@ defs["ImFontGlyphRangesBuilder_AddText"][1]["argsT"][2]["type"] = "const char*" defs["ImFontGlyphRangesBuilder_AddText"][1]["argsT"][3] = {} defs["ImFontGlyphRangesBuilder_AddText"][1]["argsT"][3]["name"] = "text_end" defs["ImFontGlyphRangesBuilder_AddText"][1]["argsT"][3]["type"] = "const char*" -defs["ImFontGlyphRangesBuilder_AddText"][1]["argsoriginal"] = "(const char* text,const char* text_end=((void *)0))" +defs["ImFontGlyphRangesBuilder_AddText"][1]["argsoriginal"] = "(const char* text,const char* text_end=((void*)0))" defs["ImFontGlyphRangesBuilder_AddText"][1]["call_args"] = "(text,text_end)" defs["ImFontGlyphRangesBuilder_AddText"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_AddText" defs["ImFontGlyphRangesBuilder_AddText"][1]["comment"] = "" defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"] = {} -defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"]["text_end"] = "((void *)0)" +defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"]["text_end"] = "((void*)0)" defs["ImFontGlyphRangesBuilder_AddText"][1]["funcname"] = "AddText" +defs["ImFontGlyphRangesBuilder_AddText"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddText" defs["ImFontGlyphRangesBuilder_AddText"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddText"][1]["signature"] = "(const char*,const char*)" defs["ImFontGlyphRangesBuilder_AddText"][1]["stname"] = "ImFontGlyphRangesBuilder" @@ -2641,6 +2732,7 @@ defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["cimguiname"] = "ImFontGlyphRang defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["comment"] = "" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["funcname"] = "BuildRanges" +defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_BuildRanges" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["signature"] = "(ImVector_ImWchar*)" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["stname"] = "ImFontGlyphRangesBuilder" @@ -2661,6 +2753,7 @@ defs["ImFontGlyphRangesBuilder_GetBit"][1]["cimguiname"] = "ImFontGlyphRangesBui defs["ImFontGlyphRangesBuilder_GetBit"][1]["comment"] = "" defs["ImFontGlyphRangesBuilder_GetBit"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_GetBit"][1]["funcname"] = "GetBit" +defs["ImFontGlyphRangesBuilder_GetBit"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_GetBit" defs["ImFontGlyphRangesBuilder_GetBit"][1]["ret"] = "bool" defs["ImFontGlyphRangesBuilder_GetBit"][1]["signature"] = "(int)" defs["ImFontGlyphRangesBuilder_GetBit"][1]["stname"] = "ImFontGlyphRangesBuilder" @@ -2676,6 +2769,7 @@ defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["comment"] = "" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["constructor"] = true defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["funcname"] = "ImFontGlyphRangesBuilder" +defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["signature"] = "()" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["stname"] = "ImFontGlyphRangesBuilder" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"]["()"] = defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1] @@ -2695,6 +2789,7 @@ defs["ImFontGlyphRangesBuilder_SetBit"][1]["cimguiname"] = "ImFontGlyphRangesBui defs["ImFontGlyphRangesBuilder_SetBit"][1]["comment"] = "" defs["ImFontGlyphRangesBuilder_SetBit"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_SetBit"][1]["funcname"] = "SetBit" +defs["ImFontGlyphRangesBuilder_SetBit"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_SetBit" defs["ImFontGlyphRangesBuilder_SetBit"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_SetBit"][1]["signature"] = "(int)" defs["ImFontGlyphRangesBuilder_SetBit"][1]["stname"] = "ImFontGlyphRangesBuilder" @@ -2758,6 +2853,7 @@ defs["ImFont_AddGlyph"][1]["cimguiname"] = "ImFont_AddGlyph" defs["ImFont_AddGlyph"][1]["comment"] = "" defs["ImFont_AddGlyph"][1]["defaults"] = {} defs["ImFont_AddGlyph"][1]["funcname"] = "AddGlyph" +defs["ImFont_AddGlyph"][1]["ov_cimguiname"] = "ImFont_AddGlyph" defs["ImFont_AddGlyph"][1]["ret"] = "void" defs["ImFont_AddGlyph"][1]["signature"] = "(ImWchar,float,float,float,float,float,float,float,float,float)" defs["ImFont_AddGlyph"][1]["stname"] = "ImFont" @@ -2785,6 +2881,7 @@ defs["ImFont_AddRemapChar"][1]["comment"] = "" defs["ImFont_AddRemapChar"][1]["defaults"] = {} defs["ImFont_AddRemapChar"][1]["defaults"]["overwrite_dst"] = "true" defs["ImFont_AddRemapChar"][1]["funcname"] = "AddRemapChar" +defs["ImFont_AddRemapChar"][1]["ov_cimguiname"] = "ImFont_AddRemapChar" defs["ImFont_AddRemapChar"][1]["ret"] = "void" defs["ImFont_AddRemapChar"][1]["signature"] = "(ImWchar,ImWchar,bool)" defs["ImFont_AddRemapChar"][1]["stname"] = "ImFont" @@ -2802,6 +2899,7 @@ defs["ImFont_BuildLookupTable"][1]["cimguiname"] = "ImFont_BuildLookupTable" defs["ImFont_BuildLookupTable"][1]["comment"] = "" defs["ImFont_BuildLookupTable"][1]["defaults"] = {} defs["ImFont_BuildLookupTable"][1]["funcname"] = "BuildLookupTable" +defs["ImFont_BuildLookupTable"][1]["ov_cimguiname"] = "ImFont_BuildLookupTable" defs["ImFont_BuildLookupTable"][1]["ret"] = "void" defs["ImFont_BuildLookupTable"][1]["signature"] = "()" defs["ImFont_BuildLookupTable"][1]["stname"] = "ImFont" @@ -2831,14 +2929,15 @@ defs["ImFont_CalcTextSizeA"][1]["argsT"][6]["type"] = "const char*" defs["ImFont_CalcTextSizeA"][1]["argsT"][7] = {} defs["ImFont_CalcTextSizeA"][1]["argsT"][7]["name"] = "remaining" defs["ImFont_CalcTextSizeA"][1]["argsT"][7]["type"] = "const char**" -defs["ImFont_CalcTextSizeA"][1]["argsoriginal"] = "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void *)0),const char** remaining=((void *)0))" +defs["ImFont_CalcTextSizeA"][1]["argsoriginal"] = "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void*)0),const char** remaining=((void*)0))" defs["ImFont_CalcTextSizeA"][1]["call_args"] = "(size,max_width,wrap_width,text_begin,text_end,remaining)" defs["ImFont_CalcTextSizeA"][1]["cimguiname"] = "ImFont_CalcTextSizeA" defs["ImFont_CalcTextSizeA"][1]["comment"] = "" defs["ImFont_CalcTextSizeA"][1]["defaults"] = {} -defs["ImFont_CalcTextSizeA"][1]["defaults"]["remaining"] = "((void *)0)" -defs["ImFont_CalcTextSizeA"][1]["defaults"]["text_end"] = "((void *)0)" +defs["ImFont_CalcTextSizeA"][1]["defaults"]["remaining"] = "((void*)0)" +defs["ImFont_CalcTextSizeA"][1]["defaults"]["text_end"] = "((void*)0)" defs["ImFont_CalcTextSizeA"][1]["funcname"] = "CalcTextSizeA" +defs["ImFont_CalcTextSizeA"][1]["ov_cimguiname"] = "ImFont_CalcTextSizeA" defs["ImFont_CalcTextSizeA"][1]["ret"] = "ImVec2" defs["ImFont_CalcTextSizeA"][1]["signature"] = "(float,float,float,const char*,const char*,const char**)" defs["ImFont_CalcTextSizeA"][1]["stname"] = "ImFont" @@ -2869,7 +2968,7 @@ defs["ImFont_CalcTextSizeA"][2]["argsT"][7]["type"] = "const char*" defs["ImFont_CalcTextSizeA"][2]["argsT"][8] = {} defs["ImFont_CalcTextSizeA"][2]["argsT"][8]["name"] = "remaining" defs["ImFont_CalcTextSizeA"][2]["argsT"][8]["type"] = "const char**" -defs["ImFont_CalcTextSizeA"][2]["argsoriginal"] = "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void *)0),const char** remaining=((void *)0))" +defs["ImFont_CalcTextSizeA"][2]["argsoriginal"] = "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void*)0),const char** remaining=((void*)0))" defs["ImFont_CalcTextSizeA"][2]["call_args"] = "(size,max_width,wrap_width,text_begin,text_end,remaining)" defs["ImFont_CalcTextSizeA"][2]["cimguiname"] = "ImFont_CalcTextSizeA" defs["ImFont_CalcTextSizeA"][2]["comment"] = "" @@ -2904,7 +3003,7 @@ defs["ImFont_CalcTextSizeA"][3]["argsT"][6]["type"] = "const char*" defs["ImFont_CalcTextSizeA"][3]["argsT"][7] = {} defs["ImFont_CalcTextSizeA"][3]["argsT"][7]["name"] = "remaining" defs["ImFont_CalcTextSizeA"][3]["argsT"][7]["type"] = "const char**" -defs["ImFont_CalcTextSizeA"][3]["argsoriginal"] = "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void *)0),const char** remaining=((void *)0))" +defs["ImFont_CalcTextSizeA"][3]["argsoriginal"] = "(float size,float max_width,float wrap_width,const char* text_begin,const char* text_end=((void*)0),const char** remaining=((void*)0))" defs["ImFont_CalcTextSizeA"][3]["call_args"] = "(size,max_width,wrap_width,text_begin,text_end,remaining)" defs["ImFont_CalcTextSizeA"][3]["cimguiname"] = "ImFont_CalcTextSizeA" defs["ImFont_CalcTextSizeA"][3]["comment"] = "" @@ -2944,6 +3043,7 @@ defs["ImFont_CalcWordWrapPositionA"][1]["cimguiname"] = "ImFont_CalcWordWrapPosi defs["ImFont_CalcWordWrapPositionA"][1]["comment"] = "" defs["ImFont_CalcWordWrapPositionA"][1]["defaults"] = {} defs["ImFont_CalcWordWrapPositionA"][1]["funcname"] = "CalcWordWrapPositionA" +defs["ImFont_CalcWordWrapPositionA"][1]["ov_cimguiname"] = "ImFont_CalcWordWrapPositionA" defs["ImFont_CalcWordWrapPositionA"][1]["ret"] = "const char*" defs["ImFont_CalcWordWrapPositionA"][1]["signature"] = "(float,const char*,const char*,float)" defs["ImFont_CalcWordWrapPositionA"][1]["stname"] = "ImFont" @@ -2961,6 +3061,7 @@ defs["ImFont_ClearOutputData"][1]["cimguiname"] = "ImFont_ClearOutputData" defs["ImFont_ClearOutputData"][1]["comment"] = "" defs["ImFont_ClearOutputData"][1]["defaults"] = {} defs["ImFont_ClearOutputData"][1]["funcname"] = "ClearOutputData" +defs["ImFont_ClearOutputData"][1]["ov_cimguiname"] = "ImFont_ClearOutputData" defs["ImFont_ClearOutputData"][1]["ret"] = "void" defs["ImFont_ClearOutputData"][1]["signature"] = "()" defs["ImFont_ClearOutputData"][1]["stname"] = "ImFont" @@ -2981,6 +3082,7 @@ defs["ImFont_FindGlyph"][1]["cimguiname"] = "ImFont_FindGlyph" defs["ImFont_FindGlyph"][1]["comment"] = "" defs["ImFont_FindGlyph"][1]["defaults"] = {} defs["ImFont_FindGlyph"][1]["funcname"] = "FindGlyph" +defs["ImFont_FindGlyph"][1]["ov_cimguiname"] = "ImFont_FindGlyph" defs["ImFont_FindGlyph"][1]["ret"] = "const ImFontGlyph*" defs["ImFont_FindGlyph"][1]["signature"] = "(ImWchar)" defs["ImFont_FindGlyph"][1]["stname"] = "ImFont" @@ -3001,6 +3103,7 @@ defs["ImFont_FindGlyphNoFallback"][1]["cimguiname"] = "ImFont_FindGlyphNoFallbac defs["ImFont_FindGlyphNoFallback"][1]["comment"] = "" defs["ImFont_FindGlyphNoFallback"][1]["defaults"] = {} defs["ImFont_FindGlyphNoFallback"][1]["funcname"] = "FindGlyphNoFallback" +defs["ImFont_FindGlyphNoFallback"][1]["ov_cimguiname"] = "ImFont_FindGlyphNoFallback" defs["ImFont_FindGlyphNoFallback"][1]["ret"] = "const ImFontGlyph*" defs["ImFont_FindGlyphNoFallback"][1]["signature"] = "(ImWchar)" defs["ImFont_FindGlyphNoFallback"][1]["stname"] = "ImFont" @@ -3021,6 +3124,7 @@ defs["ImFont_GetCharAdvance"][1]["cimguiname"] = "ImFont_GetCharAdvance" defs["ImFont_GetCharAdvance"][1]["comment"] = "" defs["ImFont_GetCharAdvance"][1]["defaults"] = {} defs["ImFont_GetCharAdvance"][1]["funcname"] = "GetCharAdvance" +defs["ImFont_GetCharAdvance"][1]["ov_cimguiname"] = "ImFont_GetCharAdvance" defs["ImFont_GetCharAdvance"][1]["ret"] = "float" defs["ImFont_GetCharAdvance"][1]["signature"] = "(ImWchar)" defs["ImFont_GetCharAdvance"][1]["stname"] = "ImFont" @@ -3038,6 +3142,7 @@ defs["ImFont_GetDebugName"][1]["cimguiname"] = "ImFont_GetDebugName" defs["ImFont_GetDebugName"][1]["comment"] = "" defs["ImFont_GetDebugName"][1]["defaults"] = {} defs["ImFont_GetDebugName"][1]["funcname"] = "GetDebugName" +defs["ImFont_GetDebugName"][1]["ov_cimguiname"] = "ImFont_GetDebugName" defs["ImFont_GetDebugName"][1]["ret"] = "const char*" defs["ImFont_GetDebugName"][1]["signature"] = "()" defs["ImFont_GetDebugName"][1]["stname"] = "ImFont" @@ -3058,6 +3163,7 @@ defs["ImFont_GrowIndex"][1]["cimguiname"] = "ImFont_GrowIndex" defs["ImFont_GrowIndex"][1]["comment"] = "" defs["ImFont_GrowIndex"][1]["defaults"] = {} defs["ImFont_GrowIndex"][1]["funcname"] = "GrowIndex" +defs["ImFont_GrowIndex"][1]["ov_cimguiname"] = "ImFont_GrowIndex" defs["ImFont_GrowIndex"][1]["ret"] = "void" defs["ImFont_GrowIndex"][1]["signature"] = "(int)" defs["ImFont_GrowIndex"][1]["stname"] = "ImFont" @@ -3073,6 +3179,7 @@ defs["ImFont_ImFont"][1]["comment"] = "" defs["ImFont_ImFont"][1]["constructor"] = true defs["ImFont_ImFont"][1]["defaults"] = {} defs["ImFont_ImFont"][1]["funcname"] = "ImFont" +defs["ImFont_ImFont"][1]["ov_cimguiname"] = "ImFont_ImFont" defs["ImFont_ImFont"][1]["signature"] = "()" defs["ImFont_ImFont"][1]["stname"] = "ImFont" defs["ImFont_ImFont"]["()"] = defs["ImFont_ImFont"][1] @@ -3089,6 +3196,7 @@ defs["ImFont_IsLoaded"][1]["cimguiname"] = "ImFont_IsLoaded" defs["ImFont_IsLoaded"][1]["comment"] = "" defs["ImFont_IsLoaded"][1]["defaults"] = {} defs["ImFont_IsLoaded"][1]["funcname"] = "IsLoaded" +defs["ImFont_IsLoaded"][1]["ov_cimguiname"] = "ImFont_IsLoaded" defs["ImFont_IsLoaded"][1]["ret"] = "bool" defs["ImFont_IsLoaded"][1]["signature"] = "()" defs["ImFont_IsLoaded"][1]["stname"] = "ImFont" @@ -3121,6 +3229,7 @@ defs["ImFont_RenderChar"][1]["cimguiname"] = "ImFont_RenderChar" defs["ImFont_RenderChar"][1]["comment"] = "" defs["ImFont_RenderChar"][1]["defaults"] = {} defs["ImFont_RenderChar"][1]["funcname"] = "RenderChar" +defs["ImFont_RenderChar"][1]["ov_cimguiname"] = "ImFont_RenderChar" defs["ImFont_RenderChar"][1]["ret"] = "void" defs["ImFont_RenderChar"][1]["signature"] = "(ImDrawList*,float,ImVec2,ImU32,ImWchar)" defs["ImFont_RenderChar"][1]["stname"] = "ImFont" @@ -3167,6 +3276,7 @@ defs["ImFont_RenderText"][1]["defaults"] = {} defs["ImFont_RenderText"][1]["defaults"]["cpu_fine_clip"] = "false" defs["ImFont_RenderText"][1]["defaults"]["wrap_width"] = "0.0f" defs["ImFont_RenderText"][1]["funcname"] = "RenderText" +defs["ImFont_RenderText"][1]["ov_cimguiname"] = "ImFont_RenderText" defs["ImFont_RenderText"][1]["ret"] = "void" defs["ImFont_RenderText"][1]["signature"] = "(ImDrawList*,float,ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)" defs["ImFont_RenderText"][1]["stname"] = "ImFont" @@ -3187,6 +3297,7 @@ defs["ImFont_SetFallbackChar"][1]["cimguiname"] = "ImFont_SetFallbackChar" defs["ImFont_SetFallbackChar"][1]["comment"] = "" defs["ImFont_SetFallbackChar"][1]["defaults"] = {} defs["ImFont_SetFallbackChar"][1]["funcname"] = "SetFallbackChar" +defs["ImFont_SetFallbackChar"][1]["ov_cimguiname"] = "ImFont_SetFallbackChar" defs["ImFont_SetFallbackChar"][1]["ret"] = "void" defs["ImFont_SetFallbackChar"][1]["signature"] = "(ImWchar)" defs["ImFont_SetFallbackChar"][1]["stname"] = "ImFont" @@ -3223,6 +3334,7 @@ defs["ImGuiIO_AddInputCharacter"][1]["cimguiname"] = "ImGuiIO_AddInputCharacter" defs["ImGuiIO_AddInputCharacter"][1]["comment"] = "" defs["ImGuiIO_AddInputCharacter"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharacter"][1]["funcname"] = "AddInputCharacter" +defs["ImGuiIO_AddInputCharacter"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharacter" defs["ImGuiIO_AddInputCharacter"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharacter"][1]["signature"] = "(ImWchar)" defs["ImGuiIO_AddInputCharacter"][1]["stname"] = "ImGuiIO" @@ -3243,6 +3355,7 @@ defs["ImGuiIO_AddInputCharactersUTF8"][1]["cimguiname"] = "ImGuiIO_AddInputChara defs["ImGuiIO_AddInputCharactersUTF8"][1]["comment"] = "" defs["ImGuiIO_AddInputCharactersUTF8"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharactersUTF8"][1]["funcname"] = "AddInputCharactersUTF8" +defs["ImGuiIO_AddInputCharactersUTF8"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharactersUTF8" defs["ImGuiIO_AddInputCharactersUTF8"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharactersUTF8"][1]["signature"] = "(const char*)" defs["ImGuiIO_AddInputCharactersUTF8"][1]["stname"] = "ImGuiIO" @@ -3260,6 +3373,7 @@ defs["ImGuiIO_ClearInputCharacters"][1]["cimguiname"] = "ImGuiIO_ClearInputChara defs["ImGuiIO_ClearInputCharacters"][1]["comment"] = "" defs["ImGuiIO_ClearInputCharacters"][1]["defaults"] = {} defs["ImGuiIO_ClearInputCharacters"][1]["funcname"] = "ClearInputCharacters" +defs["ImGuiIO_ClearInputCharacters"][1]["ov_cimguiname"] = "ImGuiIO_ClearInputCharacters" defs["ImGuiIO_ClearInputCharacters"][1]["ret"] = "void" defs["ImGuiIO_ClearInputCharacters"][1]["signature"] = "()" defs["ImGuiIO_ClearInputCharacters"][1]["stname"] = "ImGuiIO" @@ -3275,6 +3389,7 @@ defs["ImGuiIO_ImGuiIO"][1]["comment"] = "" defs["ImGuiIO_ImGuiIO"][1]["constructor"] = true defs["ImGuiIO_ImGuiIO"][1]["defaults"] = {} defs["ImGuiIO_ImGuiIO"][1]["funcname"] = "ImGuiIO" +defs["ImGuiIO_ImGuiIO"][1]["ov_cimguiname"] = "ImGuiIO_ImGuiIO" defs["ImGuiIO_ImGuiIO"][1]["signature"] = "()" defs["ImGuiIO_ImGuiIO"][1]["stname"] = "ImGuiIO" defs["ImGuiIO_ImGuiIO"]["()"] = defs["ImGuiIO_ImGuiIO"][1] @@ -3313,6 +3428,7 @@ defs["ImGuiInputTextCallbackData_DeleteChars"][1]["cimguiname"] = "ImGuiInputTex defs["ImGuiInputTextCallbackData_DeleteChars"][1]["comment"] = "" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_DeleteChars"][1]["funcname"] = "DeleteChars" +defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_DeleteChars" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["signature"] = "(int,int)" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["stname"] = "ImGuiInputTextCallbackData" @@ -3330,6 +3446,7 @@ defs["ImGuiInputTextCallbackData_HasSelection"][1]["cimguiname"] = "ImGuiInputTe defs["ImGuiInputTextCallbackData_HasSelection"][1]["comment"] = "" defs["ImGuiInputTextCallbackData_HasSelection"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_HasSelection"][1]["funcname"] = "HasSelection" +defs["ImGuiInputTextCallbackData_HasSelection"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_HasSelection" defs["ImGuiInputTextCallbackData_HasSelection"][1]["ret"] = "bool" defs["ImGuiInputTextCallbackData_HasSelection"][1]["signature"] = "()" defs["ImGuiInputTextCallbackData_HasSelection"][1]["stname"] = "ImGuiInputTextCallbackData" @@ -3345,6 +3462,7 @@ defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["comment"] = "" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["constructor"] = true defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["funcname"] = "ImGuiInputTextCallbackData" +defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["signature"] = "()" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["stname"] = "ImGuiInputTextCallbackData" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"]["()"] = defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1] @@ -3364,13 +3482,14 @@ defs["ImGuiInputTextCallbackData_InsertChars"][1]["argsT"][3]["type"] = "const c defs["ImGuiInputTextCallbackData_InsertChars"][1]["argsT"][4] = {} defs["ImGuiInputTextCallbackData_InsertChars"][1]["argsT"][4]["name"] = "text_end" defs["ImGuiInputTextCallbackData_InsertChars"][1]["argsT"][4]["type"] = "const char*" -defs["ImGuiInputTextCallbackData_InsertChars"][1]["argsoriginal"] = "(int pos,const char* text,const char* text_end=((void *)0))" +defs["ImGuiInputTextCallbackData_InsertChars"][1]["argsoriginal"] = "(int pos,const char* text,const char* text_end=((void*)0))" defs["ImGuiInputTextCallbackData_InsertChars"][1]["call_args"] = "(pos,text,text_end)" defs["ImGuiInputTextCallbackData_InsertChars"][1]["cimguiname"] = "ImGuiInputTextCallbackData_InsertChars" defs["ImGuiInputTextCallbackData_InsertChars"][1]["comment"] = "" defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"] = {} -defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"]["text_end"] = "((void *)0)" +defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"]["text_end"] = "((void*)0)" defs["ImGuiInputTextCallbackData_InsertChars"][1]["funcname"] = "InsertChars" +defs["ImGuiInputTextCallbackData_InsertChars"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_InsertChars" defs["ImGuiInputTextCallbackData_InsertChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_InsertChars"][1]["signature"] = "(int,const char*,const char*)" defs["ImGuiInputTextCallbackData_InsertChars"][1]["stname"] = "ImGuiInputTextCallbackData" @@ -3411,6 +3530,7 @@ defs["ImGuiListClipper_Begin"][1]["comment"] = "" defs["ImGuiListClipper_Begin"][1]["defaults"] = {} defs["ImGuiListClipper_Begin"][1]["defaults"]["items_height"] = "-1.0f" defs["ImGuiListClipper_Begin"][1]["funcname"] = "Begin" +defs["ImGuiListClipper_Begin"][1]["ov_cimguiname"] = "ImGuiListClipper_Begin" defs["ImGuiListClipper_Begin"][1]["ret"] = "void" defs["ImGuiListClipper_Begin"][1]["signature"] = "(int,float)" defs["ImGuiListClipper_Begin"][1]["stname"] = "ImGuiListClipper" @@ -3428,6 +3548,7 @@ defs["ImGuiListClipper_End"][1]["cimguiname"] = "ImGuiListClipper_End" defs["ImGuiListClipper_End"][1]["comment"] = "" defs["ImGuiListClipper_End"][1]["defaults"] = {} defs["ImGuiListClipper_End"][1]["funcname"] = "End" +defs["ImGuiListClipper_End"][1]["ov_cimguiname"] = "ImGuiListClipper_End" defs["ImGuiListClipper_End"][1]["ret"] = "void" defs["ImGuiListClipper_End"][1]["signature"] = "()" defs["ImGuiListClipper_End"][1]["stname"] = "ImGuiListClipper" @@ -3451,6 +3572,7 @@ defs["ImGuiListClipper_ImGuiListClipper"][1]["defaults"] = {} defs["ImGuiListClipper_ImGuiListClipper"][1]["defaults"]["items_count"] = "-1" defs["ImGuiListClipper_ImGuiListClipper"][1]["defaults"]["items_height"] = "-1.0f" defs["ImGuiListClipper_ImGuiListClipper"][1]["funcname"] = "ImGuiListClipper" +defs["ImGuiListClipper_ImGuiListClipper"][1]["ov_cimguiname"] = "ImGuiListClipper_ImGuiListClipper" defs["ImGuiListClipper_ImGuiListClipper"][1]["signature"] = "(int,float)" defs["ImGuiListClipper_ImGuiListClipper"][1]["stname"] = "ImGuiListClipper" defs["ImGuiListClipper_ImGuiListClipper"]["(int,float)"] = defs["ImGuiListClipper_ImGuiListClipper"][1] @@ -3467,6 +3589,7 @@ defs["ImGuiListClipper_Step"][1]["cimguiname"] = "ImGuiListClipper_Step" defs["ImGuiListClipper_Step"][1]["comment"] = "" defs["ImGuiListClipper_Step"][1]["defaults"] = {} defs["ImGuiListClipper_Step"][1]["funcname"] = "Step" +defs["ImGuiListClipper_Step"][1]["ov_cimguiname"] = "ImGuiListClipper_Step" defs["ImGuiListClipper_Step"][1]["ret"] = "bool" defs["ImGuiListClipper_Step"][1]["signature"] = "()" defs["ImGuiListClipper_Step"][1]["stname"] = "ImGuiListClipper" @@ -3498,6 +3621,7 @@ defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["comment"] = "" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["constructor"] = true defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["defaults"] = {} defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["funcname"] = "ImGuiOnceUponAFrame" +defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["ov_cimguiname"] = "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["signature"] = "()" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["stname"] = "ImGuiOnceUponAFrame" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"]["()"] = defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1] @@ -3530,6 +3654,7 @@ defs["ImGuiPayload_Clear"][1]["cimguiname"] = "ImGuiPayload_Clear" defs["ImGuiPayload_Clear"][1]["comment"] = "" defs["ImGuiPayload_Clear"][1]["defaults"] = {} defs["ImGuiPayload_Clear"][1]["funcname"] = "Clear" +defs["ImGuiPayload_Clear"][1]["ov_cimguiname"] = "ImGuiPayload_Clear" defs["ImGuiPayload_Clear"][1]["ret"] = "void" defs["ImGuiPayload_Clear"][1]["signature"] = "()" defs["ImGuiPayload_Clear"][1]["stname"] = "ImGuiPayload" @@ -3545,6 +3670,7 @@ defs["ImGuiPayload_ImGuiPayload"][1]["comment"] = "" defs["ImGuiPayload_ImGuiPayload"][1]["constructor"] = true defs["ImGuiPayload_ImGuiPayload"][1]["defaults"] = {} defs["ImGuiPayload_ImGuiPayload"][1]["funcname"] = "ImGuiPayload" +defs["ImGuiPayload_ImGuiPayload"][1]["ov_cimguiname"] = "ImGuiPayload_ImGuiPayload" defs["ImGuiPayload_ImGuiPayload"][1]["signature"] = "()" defs["ImGuiPayload_ImGuiPayload"][1]["stname"] = "ImGuiPayload" defs["ImGuiPayload_ImGuiPayload"]["()"] = defs["ImGuiPayload_ImGuiPayload"][1] @@ -3564,6 +3690,7 @@ defs["ImGuiPayload_IsDataType"][1]["cimguiname"] = "ImGuiPayload_IsDataType" defs["ImGuiPayload_IsDataType"][1]["comment"] = "" defs["ImGuiPayload_IsDataType"][1]["defaults"] = {} defs["ImGuiPayload_IsDataType"][1]["funcname"] = "IsDataType" +defs["ImGuiPayload_IsDataType"][1]["ov_cimguiname"] = "ImGuiPayload_IsDataType" defs["ImGuiPayload_IsDataType"][1]["ret"] = "bool" defs["ImGuiPayload_IsDataType"][1]["signature"] = "(const char*)" defs["ImGuiPayload_IsDataType"][1]["stname"] = "ImGuiPayload" @@ -3581,6 +3708,7 @@ defs["ImGuiPayload_IsDelivery"][1]["cimguiname"] = "ImGuiPayload_IsDelivery" defs["ImGuiPayload_IsDelivery"][1]["comment"] = "" defs["ImGuiPayload_IsDelivery"][1]["defaults"] = {} defs["ImGuiPayload_IsDelivery"][1]["funcname"] = "IsDelivery" +defs["ImGuiPayload_IsDelivery"][1]["ov_cimguiname"] = "ImGuiPayload_IsDelivery" defs["ImGuiPayload_IsDelivery"][1]["ret"] = "bool" defs["ImGuiPayload_IsDelivery"][1]["signature"] = "()" defs["ImGuiPayload_IsDelivery"][1]["stname"] = "ImGuiPayload" @@ -3598,6 +3726,7 @@ defs["ImGuiPayload_IsPreview"][1]["cimguiname"] = "ImGuiPayload_IsPreview" defs["ImGuiPayload_IsPreview"][1]["comment"] = "" defs["ImGuiPayload_IsPreview"][1]["defaults"] = {} defs["ImGuiPayload_IsPreview"][1]["funcname"] = "IsPreview" +defs["ImGuiPayload_IsPreview"][1]["ov_cimguiname"] = "ImGuiPayload_IsPreview" defs["ImGuiPayload_IsPreview"][1]["ret"] = "bool" defs["ImGuiPayload_IsPreview"][1]["signature"] = "()" defs["ImGuiPayload_IsPreview"][1]["stname"] = "ImGuiPayload" @@ -3631,6 +3760,7 @@ defs["ImGuiStorage_BuildSortByKey"][1]["cimguiname"] = "ImGuiStorage_BuildSortBy defs["ImGuiStorage_BuildSortByKey"][1]["comment"] = "" defs["ImGuiStorage_BuildSortByKey"][1]["defaults"] = {} defs["ImGuiStorage_BuildSortByKey"][1]["funcname"] = "BuildSortByKey" +defs["ImGuiStorage_BuildSortByKey"][1]["ov_cimguiname"] = "ImGuiStorage_BuildSortByKey" defs["ImGuiStorage_BuildSortByKey"][1]["ret"] = "void" defs["ImGuiStorage_BuildSortByKey"][1]["signature"] = "()" defs["ImGuiStorage_BuildSortByKey"][1]["stname"] = "ImGuiStorage" @@ -3648,6 +3778,7 @@ defs["ImGuiStorage_Clear"][1]["cimguiname"] = "ImGuiStorage_Clear" defs["ImGuiStorage_Clear"][1]["comment"] = "" defs["ImGuiStorage_Clear"][1]["defaults"] = {} defs["ImGuiStorage_Clear"][1]["funcname"] = "Clear" +defs["ImGuiStorage_Clear"][1]["ov_cimguiname"] = "ImGuiStorage_Clear" defs["ImGuiStorage_Clear"][1]["ret"] = "void" defs["ImGuiStorage_Clear"][1]["signature"] = "()" defs["ImGuiStorage_Clear"][1]["stname"] = "ImGuiStorage" @@ -3672,6 +3803,7 @@ defs["ImGuiStorage_GetBool"][1]["comment"] = "" defs["ImGuiStorage_GetBool"][1]["defaults"] = {} defs["ImGuiStorage_GetBool"][1]["defaults"]["default_val"] = "false" defs["ImGuiStorage_GetBool"][1]["funcname"] = "GetBool" +defs["ImGuiStorage_GetBool"][1]["ov_cimguiname"] = "ImGuiStorage_GetBool" defs["ImGuiStorage_GetBool"][1]["ret"] = "bool" defs["ImGuiStorage_GetBool"][1]["signature"] = "(ImGuiID,bool)" defs["ImGuiStorage_GetBool"][1]["stname"] = "ImGuiStorage" @@ -3696,6 +3828,7 @@ defs["ImGuiStorage_GetBoolRef"][1]["comment"] = "" defs["ImGuiStorage_GetBoolRef"][1]["defaults"] = {} defs["ImGuiStorage_GetBoolRef"][1]["defaults"]["default_val"] = "false" defs["ImGuiStorage_GetBoolRef"][1]["funcname"] = "GetBoolRef" +defs["ImGuiStorage_GetBoolRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetBoolRef" defs["ImGuiStorage_GetBoolRef"][1]["ret"] = "bool*" defs["ImGuiStorage_GetBoolRef"][1]["signature"] = "(ImGuiID,bool)" defs["ImGuiStorage_GetBoolRef"][1]["stname"] = "ImGuiStorage" @@ -3720,6 +3853,7 @@ defs["ImGuiStorage_GetFloat"][1]["comment"] = "" defs["ImGuiStorage_GetFloat"][1]["defaults"] = {} defs["ImGuiStorage_GetFloat"][1]["defaults"]["default_val"] = "0.0f" defs["ImGuiStorage_GetFloat"][1]["funcname"] = "GetFloat" +defs["ImGuiStorage_GetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_GetFloat" defs["ImGuiStorage_GetFloat"][1]["ret"] = "float" defs["ImGuiStorage_GetFloat"][1]["signature"] = "(ImGuiID,float)" defs["ImGuiStorage_GetFloat"][1]["stname"] = "ImGuiStorage" @@ -3744,6 +3878,7 @@ defs["ImGuiStorage_GetFloatRef"][1]["comment"] = "" defs["ImGuiStorage_GetFloatRef"][1]["defaults"] = {} defs["ImGuiStorage_GetFloatRef"][1]["defaults"]["default_val"] = "0.0f" defs["ImGuiStorage_GetFloatRef"][1]["funcname"] = "GetFloatRef" +defs["ImGuiStorage_GetFloatRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetFloatRef" defs["ImGuiStorage_GetFloatRef"][1]["ret"] = "float*" defs["ImGuiStorage_GetFloatRef"][1]["signature"] = "(ImGuiID,float)" defs["ImGuiStorage_GetFloatRef"][1]["stname"] = "ImGuiStorage" @@ -3768,6 +3903,7 @@ defs["ImGuiStorage_GetInt"][1]["comment"] = "" defs["ImGuiStorage_GetInt"][1]["defaults"] = {} defs["ImGuiStorage_GetInt"][1]["defaults"]["default_val"] = "0" defs["ImGuiStorage_GetInt"][1]["funcname"] = "GetInt" +defs["ImGuiStorage_GetInt"][1]["ov_cimguiname"] = "ImGuiStorage_GetInt" defs["ImGuiStorage_GetInt"][1]["ret"] = "int" defs["ImGuiStorage_GetInt"][1]["signature"] = "(ImGuiID,int)" defs["ImGuiStorage_GetInt"][1]["stname"] = "ImGuiStorage" @@ -3792,6 +3928,7 @@ defs["ImGuiStorage_GetIntRef"][1]["comment"] = "" defs["ImGuiStorage_GetIntRef"][1]["defaults"] = {} defs["ImGuiStorage_GetIntRef"][1]["defaults"]["default_val"] = "0" defs["ImGuiStorage_GetIntRef"][1]["funcname"] = "GetIntRef" +defs["ImGuiStorage_GetIntRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetIntRef" defs["ImGuiStorage_GetIntRef"][1]["ret"] = "int*" defs["ImGuiStorage_GetIntRef"][1]["signature"] = "(ImGuiID,int)" defs["ImGuiStorage_GetIntRef"][1]["stname"] = "ImGuiStorage" @@ -3812,6 +3949,7 @@ defs["ImGuiStorage_GetVoidPtr"][1]["cimguiname"] = "ImGuiStorage_GetVoidPtr" defs["ImGuiStorage_GetVoidPtr"][1]["comment"] = "" defs["ImGuiStorage_GetVoidPtr"][1]["defaults"] = {} defs["ImGuiStorage_GetVoidPtr"][1]["funcname"] = "GetVoidPtr" +defs["ImGuiStorage_GetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtr" defs["ImGuiStorage_GetVoidPtr"][1]["ret"] = "void*" defs["ImGuiStorage_GetVoidPtr"][1]["signature"] = "(ImGuiID)" defs["ImGuiStorage_GetVoidPtr"][1]["stname"] = "ImGuiStorage" @@ -3829,13 +3967,14 @@ defs["ImGuiStorage_GetVoidPtrRef"][1]["argsT"][2]["type"] = "ImGuiID" defs["ImGuiStorage_GetVoidPtrRef"][1]["argsT"][3] = {} defs["ImGuiStorage_GetVoidPtrRef"][1]["argsT"][3]["name"] = "default_val" defs["ImGuiStorage_GetVoidPtrRef"][1]["argsT"][3]["type"] = "void*" -defs["ImGuiStorage_GetVoidPtrRef"][1]["argsoriginal"] = "(ImGuiID key,void* default_val=((void *)0))" +defs["ImGuiStorage_GetVoidPtrRef"][1]["argsoriginal"] = "(ImGuiID key,void* default_val=((void*)0))" defs["ImGuiStorage_GetVoidPtrRef"][1]["call_args"] = "(key,default_val)" defs["ImGuiStorage_GetVoidPtrRef"][1]["cimguiname"] = "ImGuiStorage_GetVoidPtrRef" defs["ImGuiStorage_GetVoidPtrRef"][1]["comment"] = "" defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"] = {} -defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"]["default_val"] = "((void *)0)" +defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"]["default_val"] = "((void*)0)" defs["ImGuiStorage_GetVoidPtrRef"][1]["funcname"] = "GetVoidPtrRef" +defs["ImGuiStorage_GetVoidPtrRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtrRef" defs["ImGuiStorage_GetVoidPtrRef"][1]["ret"] = "void**" defs["ImGuiStorage_GetVoidPtrRef"][1]["signature"] = "(ImGuiID,void*)" defs["ImGuiStorage_GetVoidPtrRef"][1]["stname"] = "ImGuiStorage" @@ -3856,6 +3995,7 @@ defs["ImGuiStorage_SetAllInt"][1]["cimguiname"] = "ImGuiStorage_SetAllInt" defs["ImGuiStorage_SetAllInt"][1]["comment"] = "" defs["ImGuiStorage_SetAllInt"][1]["defaults"] = {} defs["ImGuiStorage_SetAllInt"][1]["funcname"] = "SetAllInt" +defs["ImGuiStorage_SetAllInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetAllInt" defs["ImGuiStorage_SetAllInt"][1]["ret"] = "void" defs["ImGuiStorage_SetAllInt"][1]["signature"] = "(int)" defs["ImGuiStorage_SetAllInt"][1]["stname"] = "ImGuiStorage" @@ -3879,6 +4019,7 @@ defs["ImGuiStorage_SetBool"][1]["cimguiname"] = "ImGuiStorage_SetBool" defs["ImGuiStorage_SetBool"][1]["comment"] = "" defs["ImGuiStorage_SetBool"][1]["defaults"] = {} defs["ImGuiStorage_SetBool"][1]["funcname"] = "SetBool" +defs["ImGuiStorage_SetBool"][1]["ov_cimguiname"] = "ImGuiStorage_SetBool" defs["ImGuiStorage_SetBool"][1]["ret"] = "void" defs["ImGuiStorage_SetBool"][1]["signature"] = "(ImGuiID,bool)" defs["ImGuiStorage_SetBool"][1]["stname"] = "ImGuiStorage" @@ -3902,6 +4043,7 @@ defs["ImGuiStorage_SetFloat"][1]["cimguiname"] = "ImGuiStorage_SetFloat" defs["ImGuiStorage_SetFloat"][1]["comment"] = "" defs["ImGuiStorage_SetFloat"][1]["defaults"] = {} defs["ImGuiStorage_SetFloat"][1]["funcname"] = "SetFloat" +defs["ImGuiStorage_SetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_SetFloat" defs["ImGuiStorage_SetFloat"][1]["ret"] = "void" defs["ImGuiStorage_SetFloat"][1]["signature"] = "(ImGuiID,float)" defs["ImGuiStorage_SetFloat"][1]["stname"] = "ImGuiStorage" @@ -3925,6 +4067,7 @@ defs["ImGuiStorage_SetInt"][1]["cimguiname"] = "ImGuiStorage_SetInt" defs["ImGuiStorage_SetInt"][1]["comment"] = "" defs["ImGuiStorage_SetInt"][1]["defaults"] = {} defs["ImGuiStorage_SetInt"][1]["funcname"] = "SetInt" +defs["ImGuiStorage_SetInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetInt" defs["ImGuiStorage_SetInt"][1]["ret"] = "void" defs["ImGuiStorage_SetInt"][1]["signature"] = "(ImGuiID,int)" defs["ImGuiStorage_SetInt"][1]["stname"] = "ImGuiStorage" @@ -3948,6 +4091,7 @@ defs["ImGuiStorage_SetVoidPtr"][1]["cimguiname"] = "ImGuiStorage_SetVoidPtr" defs["ImGuiStorage_SetVoidPtr"][1]["comment"] = "" defs["ImGuiStorage_SetVoidPtr"][1]["defaults"] = {} defs["ImGuiStorage_SetVoidPtr"][1]["funcname"] = "SetVoidPtr" +defs["ImGuiStorage_SetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_SetVoidPtr" defs["ImGuiStorage_SetVoidPtr"][1]["ret"] = "void" defs["ImGuiStorage_SetVoidPtr"][1]["signature"] = "(ImGuiID,void*)" defs["ImGuiStorage_SetVoidPtr"][1]["stname"] = "ImGuiStorage" @@ -3963,6 +4107,7 @@ defs["ImGuiStyle_ImGuiStyle"][1]["comment"] = "" defs["ImGuiStyle_ImGuiStyle"][1]["constructor"] = true defs["ImGuiStyle_ImGuiStyle"][1]["defaults"] = {} defs["ImGuiStyle_ImGuiStyle"][1]["funcname"] = "ImGuiStyle" +defs["ImGuiStyle_ImGuiStyle"][1]["ov_cimguiname"] = "ImGuiStyle_ImGuiStyle" defs["ImGuiStyle_ImGuiStyle"][1]["signature"] = "()" defs["ImGuiStyle_ImGuiStyle"][1]["stname"] = "ImGuiStyle" defs["ImGuiStyle_ImGuiStyle"]["()"] = defs["ImGuiStyle_ImGuiStyle"][1] @@ -3982,6 +4127,7 @@ defs["ImGuiStyle_ScaleAllSizes"][1]["cimguiname"] = "ImGuiStyle_ScaleAllSizes" defs["ImGuiStyle_ScaleAllSizes"][1]["comment"] = "" defs["ImGuiStyle_ScaleAllSizes"][1]["defaults"] = {} defs["ImGuiStyle_ScaleAllSizes"][1]["funcname"] = "ScaleAllSizes" +defs["ImGuiStyle_ScaleAllSizes"][1]["ov_cimguiname"] = "ImGuiStyle_ScaleAllSizes" defs["ImGuiStyle_ScaleAllSizes"][1]["ret"] = "void" defs["ImGuiStyle_ScaleAllSizes"][1]["signature"] = "(float)" defs["ImGuiStyle_ScaleAllSizes"][1]["stname"] = "ImGuiStyle" @@ -4013,6 +4159,7 @@ defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["comment"] = "" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["constructor"] = true defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["defaults"] = {} defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["funcname"] = "ImGuiTextBuffer" +defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["ov_cimguiname"] = "ImGuiTextBuffer_ImGuiTextBuffer" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["signature"] = "()" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["stname"] = "ImGuiTextBuffer" defs["ImGuiTextBuffer_ImGuiTextBuffer"]["()"] = defs["ImGuiTextBuffer_ImGuiTextBuffer"][1] @@ -4037,6 +4184,7 @@ defs["ImGuiTextBuffer_appendf"][1]["defaults"] = {} defs["ImGuiTextBuffer_appendf"][1]["funcname"] = "appendf" defs["ImGuiTextBuffer_appendf"][1]["isvararg"] = "...)" defs["ImGuiTextBuffer_appendf"][1]["manual"] = true +defs["ImGuiTextBuffer_appendf"][1]["ov_cimguiname"] = "ImGuiTextBuffer_appendf" defs["ImGuiTextBuffer_appendf"][1]["ret"] = "void" defs["ImGuiTextBuffer_appendf"][1]["signature"] = "(const char*,...)" defs["ImGuiTextBuffer_appendf"][1]["stname"] = "ImGuiTextBuffer" @@ -4060,6 +4208,7 @@ defs["ImGuiTextBuffer_appendfv"][1]["cimguiname"] = "ImGuiTextBuffer_appendfv" defs["ImGuiTextBuffer_appendfv"][1]["comment"] = "" defs["ImGuiTextBuffer_appendfv"][1]["defaults"] = {} defs["ImGuiTextBuffer_appendfv"][1]["funcname"] = "appendfv" +defs["ImGuiTextBuffer_appendfv"][1]["ov_cimguiname"] = "ImGuiTextBuffer_appendfv" defs["ImGuiTextBuffer_appendfv"][1]["ret"] = "void" defs["ImGuiTextBuffer_appendfv"][1]["signature"] = "(const char*,va_list)" defs["ImGuiTextBuffer_appendfv"][1]["stname"] = "ImGuiTextBuffer" @@ -4077,6 +4226,7 @@ defs["ImGuiTextBuffer_begin"][1]["cimguiname"] = "ImGuiTextBuffer_begin" defs["ImGuiTextBuffer_begin"][1]["comment"] = "" defs["ImGuiTextBuffer_begin"][1]["defaults"] = {} defs["ImGuiTextBuffer_begin"][1]["funcname"] = "begin" +defs["ImGuiTextBuffer_begin"][1]["ov_cimguiname"] = "ImGuiTextBuffer_begin" defs["ImGuiTextBuffer_begin"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_begin"][1]["signature"] = "()" defs["ImGuiTextBuffer_begin"][1]["stname"] = "ImGuiTextBuffer" @@ -4094,6 +4244,7 @@ defs["ImGuiTextBuffer_c_str"][1]["cimguiname"] = "ImGuiTextBuffer_c_str" defs["ImGuiTextBuffer_c_str"][1]["comment"] = "" defs["ImGuiTextBuffer_c_str"][1]["defaults"] = {} defs["ImGuiTextBuffer_c_str"][1]["funcname"] = "c_str" +defs["ImGuiTextBuffer_c_str"][1]["ov_cimguiname"] = "ImGuiTextBuffer_c_str" defs["ImGuiTextBuffer_c_str"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_c_str"][1]["signature"] = "()" defs["ImGuiTextBuffer_c_str"][1]["stname"] = "ImGuiTextBuffer" @@ -4111,6 +4262,7 @@ defs["ImGuiTextBuffer_clear"][1]["cimguiname"] = "ImGuiTextBuffer_clear" defs["ImGuiTextBuffer_clear"][1]["comment"] = "" defs["ImGuiTextBuffer_clear"][1]["defaults"] = {} defs["ImGuiTextBuffer_clear"][1]["funcname"] = "clear" +defs["ImGuiTextBuffer_clear"][1]["ov_cimguiname"] = "ImGuiTextBuffer_clear" defs["ImGuiTextBuffer_clear"][1]["ret"] = "void" defs["ImGuiTextBuffer_clear"][1]["signature"] = "()" defs["ImGuiTextBuffer_clear"][1]["stname"] = "ImGuiTextBuffer" @@ -4144,6 +4296,7 @@ defs["ImGuiTextBuffer_empty"][1]["cimguiname"] = "ImGuiTextBuffer_empty" defs["ImGuiTextBuffer_empty"][1]["comment"] = "" defs["ImGuiTextBuffer_empty"][1]["defaults"] = {} defs["ImGuiTextBuffer_empty"][1]["funcname"] = "empty" +defs["ImGuiTextBuffer_empty"][1]["ov_cimguiname"] = "ImGuiTextBuffer_empty" defs["ImGuiTextBuffer_empty"][1]["ret"] = "bool" defs["ImGuiTextBuffer_empty"][1]["signature"] = "()" defs["ImGuiTextBuffer_empty"][1]["stname"] = "ImGuiTextBuffer" @@ -4161,6 +4314,7 @@ defs["ImGuiTextBuffer_end"][1]["cimguiname"] = "ImGuiTextBuffer_end" defs["ImGuiTextBuffer_end"][1]["comment"] = "" defs["ImGuiTextBuffer_end"][1]["defaults"] = {} defs["ImGuiTextBuffer_end"][1]["funcname"] = "end" +defs["ImGuiTextBuffer_end"][1]["ov_cimguiname"] = "ImGuiTextBuffer_end" defs["ImGuiTextBuffer_end"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_end"][1]["signature"] = "()" defs["ImGuiTextBuffer_end"][1]["stname"] = "ImGuiTextBuffer" @@ -4181,6 +4335,7 @@ defs["ImGuiTextBuffer_reserve"][1]["cimguiname"] = "ImGuiTextBuffer_reserve" defs["ImGuiTextBuffer_reserve"][1]["comment"] = "" defs["ImGuiTextBuffer_reserve"][1]["defaults"] = {} defs["ImGuiTextBuffer_reserve"][1]["funcname"] = "reserve" +defs["ImGuiTextBuffer_reserve"][1]["ov_cimguiname"] = "ImGuiTextBuffer_reserve" defs["ImGuiTextBuffer_reserve"][1]["ret"] = "void" defs["ImGuiTextBuffer_reserve"][1]["signature"] = "(int)" defs["ImGuiTextBuffer_reserve"][1]["stname"] = "ImGuiTextBuffer" @@ -4198,6 +4353,7 @@ defs["ImGuiTextBuffer_size"][1]["cimguiname"] = "ImGuiTextBuffer_size" defs["ImGuiTextBuffer_size"][1]["comment"] = "" defs["ImGuiTextBuffer_size"][1]["defaults"] = {} defs["ImGuiTextBuffer_size"][1]["funcname"] = "size" +defs["ImGuiTextBuffer_size"][1]["ov_cimguiname"] = "ImGuiTextBuffer_size" defs["ImGuiTextBuffer_size"][1]["ret"] = "int" defs["ImGuiTextBuffer_size"][1]["signature"] = "()" defs["ImGuiTextBuffer_size"][1]["stname"] = "ImGuiTextBuffer" @@ -4215,6 +4371,7 @@ defs["ImGuiTextFilter_Build"][1]["cimguiname"] = "ImGuiTextFilter_Build" defs["ImGuiTextFilter_Build"][1]["comment"] = "" defs["ImGuiTextFilter_Build"][1]["defaults"] = {} defs["ImGuiTextFilter_Build"][1]["funcname"] = "Build" +defs["ImGuiTextFilter_Build"][1]["ov_cimguiname"] = "ImGuiTextFilter_Build" defs["ImGuiTextFilter_Build"][1]["ret"] = "void" defs["ImGuiTextFilter_Build"][1]["signature"] = "()" defs["ImGuiTextFilter_Build"][1]["stname"] = "ImGuiTextFilter" @@ -4232,6 +4389,7 @@ defs["ImGuiTextFilter_Clear"][1]["cimguiname"] = "ImGuiTextFilter_Clear" defs["ImGuiTextFilter_Clear"][1]["comment"] = "" defs["ImGuiTextFilter_Clear"][1]["defaults"] = {} defs["ImGuiTextFilter_Clear"][1]["funcname"] = "Clear" +defs["ImGuiTextFilter_Clear"][1]["ov_cimguiname"] = "ImGuiTextFilter_Clear" defs["ImGuiTextFilter_Clear"][1]["ret"] = "void" defs["ImGuiTextFilter_Clear"][1]["signature"] = "()" defs["ImGuiTextFilter_Clear"][1]["stname"] = "ImGuiTextFilter" @@ -4257,6 +4415,7 @@ defs["ImGuiTextFilter_Draw"][1]["defaults"] = {} defs["ImGuiTextFilter_Draw"][1]["defaults"]["label"] = "\"Filter(inc,-exc)\"" defs["ImGuiTextFilter_Draw"][1]["defaults"]["width"] = "0.0f" defs["ImGuiTextFilter_Draw"][1]["funcname"] = "Draw" +defs["ImGuiTextFilter_Draw"][1]["ov_cimguiname"] = "ImGuiTextFilter_Draw" defs["ImGuiTextFilter_Draw"][1]["ret"] = "bool" defs["ImGuiTextFilter_Draw"][1]["signature"] = "(const char*,float)" defs["ImGuiTextFilter_Draw"][1]["stname"] = "ImGuiTextFilter" @@ -4276,6 +4435,7 @@ defs["ImGuiTextFilter_ImGuiTextFilter"][1]["constructor"] = true defs["ImGuiTextFilter_ImGuiTextFilter"][1]["defaults"] = {} defs["ImGuiTextFilter_ImGuiTextFilter"][1]["defaults"]["default_filter"] = "\"\"" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["funcname"] = "ImGuiTextFilter" +defs["ImGuiTextFilter_ImGuiTextFilter"][1]["ov_cimguiname"] = "ImGuiTextFilter_ImGuiTextFilter" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["signature"] = "(const char*)" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["stname"] = "ImGuiTextFilter" defs["ImGuiTextFilter_ImGuiTextFilter"]["(const char*)"] = defs["ImGuiTextFilter_ImGuiTextFilter"][1] @@ -4292,6 +4452,7 @@ defs["ImGuiTextFilter_IsActive"][1]["cimguiname"] = "ImGuiTextFilter_IsActive" defs["ImGuiTextFilter_IsActive"][1]["comment"] = "" defs["ImGuiTextFilter_IsActive"][1]["defaults"] = {} defs["ImGuiTextFilter_IsActive"][1]["funcname"] = "IsActive" +defs["ImGuiTextFilter_IsActive"][1]["ov_cimguiname"] = "ImGuiTextFilter_IsActive" defs["ImGuiTextFilter_IsActive"][1]["ret"] = "bool" defs["ImGuiTextFilter_IsActive"][1]["signature"] = "()" defs["ImGuiTextFilter_IsActive"][1]["stname"] = "ImGuiTextFilter" @@ -4309,13 +4470,14 @@ defs["ImGuiTextFilter_PassFilter"][1]["argsT"][2]["type"] = "const char*" defs["ImGuiTextFilter_PassFilter"][1]["argsT"][3] = {} defs["ImGuiTextFilter_PassFilter"][1]["argsT"][3]["name"] = "text_end" defs["ImGuiTextFilter_PassFilter"][1]["argsT"][3]["type"] = "const char*" -defs["ImGuiTextFilter_PassFilter"][1]["argsoriginal"] = "(const char* text,const char* text_end=((void *)0))" +defs["ImGuiTextFilter_PassFilter"][1]["argsoriginal"] = "(const char* text,const char* text_end=((void*)0))" defs["ImGuiTextFilter_PassFilter"][1]["call_args"] = "(text,text_end)" defs["ImGuiTextFilter_PassFilter"][1]["cimguiname"] = "ImGuiTextFilter_PassFilter" defs["ImGuiTextFilter_PassFilter"][1]["comment"] = "" defs["ImGuiTextFilter_PassFilter"][1]["defaults"] = {} -defs["ImGuiTextFilter_PassFilter"][1]["defaults"]["text_end"] = "((void *)0)" +defs["ImGuiTextFilter_PassFilter"][1]["defaults"]["text_end"] = "((void*)0)" defs["ImGuiTextFilter_PassFilter"][1]["funcname"] = "PassFilter" +defs["ImGuiTextFilter_PassFilter"][1]["ov_cimguiname"] = "ImGuiTextFilter_PassFilter" defs["ImGuiTextFilter_PassFilter"][1]["ret"] = "bool" defs["ImGuiTextFilter_PassFilter"][1]["signature"] = "(const char*,const char*)" defs["ImGuiTextFilter_PassFilter"][1]["stname"] = "ImGuiTextFilter" @@ -4455,9 +4617,29 @@ defs["ImVector_ImVector"][1]["comment"] = "" defs["ImVector_ImVector"][1]["constructor"] = true defs["ImVector_ImVector"][1]["defaults"] = {} defs["ImVector_ImVector"][1]["funcname"] = "ImVector" +defs["ImVector_ImVector"][1]["ov_cimguiname"] = "ImVector_ImVector" defs["ImVector_ImVector"][1]["signature"] = "()" defs["ImVector_ImVector"][1]["stname"] = "ImVector" +defs["ImVector_ImVector"][1]["templated"] = true +defs["ImVector_ImVector"][2] = {} +defs["ImVector_ImVector"][2]["args"] = "(const ImVector_ src)" +defs["ImVector_ImVector"][2]["argsT"] = {} +defs["ImVector_ImVector"][2]["argsT"][1] = {} +defs["ImVector_ImVector"][2]["argsT"][1]["name"] = "src" +defs["ImVector_ImVector"][2]["argsT"][1]["type"] = "const ImVector_" +defs["ImVector_ImVector"][2]["argsoriginal"] = "(const ImVector& src)" +defs["ImVector_ImVector"][2]["call_args"] = "(src)" +defs["ImVector_ImVector"][2]["cimguiname"] = "ImVector_ImVector" +defs["ImVector_ImVector"][2]["comment"] = "" +defs["ImVector_ImVector"][2]["constructor"] = true +defs["ImVector_ImVector"][2]["defaults"] = {} +defs["ImVector_ImVector"][2]["funcname"] = "ImVector" +defs["ImVector_ImVector"][2]["ov_cimguiname"] = "ImVector_ImVectorVector_" +defs["ImVector_ImVector"][2]["signature"] = "(const ImVector_)" +defs["ImVector_ImVector"][2]["stname"] = "ImVector" +defs["ImVector_ImVector"][2]["templated"] = true defs["ImVector_ImVector"]["()"] = defs["ImVector_ImVector"][1] +defs["ImVector_ImVector"]["(const ImVector_)"] = defs["ImVector_ImVector"][2] defs["ImVector__grow_capacity"] = {} defs["ImVector__grow_capacity"][1] = {} defs["ImVector__grow_capacity"][1]["args"] = "(ImVector* self,int sz)" @@ -4474,9 +4656,11 @@ defs["ImVector__grow_capacity"][1]["cimguiname"] = "ImVector__grow_capacity" defs["ImVector__grow_capacity"][1]["comment"] = "" defs["ImVector__grow_capacity"][1]["defaults"] = {} defs["ImVector__grow_capacity"][1]["funcname"] = "_grow_capacity" +defs["ImVector__grow_capacity"][1]["ov_cimguiname"] = "ImVector__grow_capacity" defs["ImVector__grow_capacity"][1]["ret"] = "int" defs["ImVector__grow_capacity"][1]["signature"] = "(int)" defs["ImVector__grow_capacity"][1]["stname"] = "ImVector" +defs["ImVector__grow_capacity"][1]["templated"] = true defs["ImVector__grow_capacity"]["(int)"] = defs["ImVector__grow_capacity"][1] defs["ImVector_back"] = {} defs["ImVector_back"][1] = {} @@ -4496,6 +4680,7 @@ defs["ImVector_back"][1]["ret"] = "T*" defs["ImVector_back"][1]["retref"] = "&" defs["ImVector_back"][1]["signature"] = "()" defs["ImVector_back"][1]["stname"] = "ImVector" +defs["ImVector_back"][1]["templated"] = true defs["ImVector_back"][2] = {} defs["ImVector_back"][2]["args"] = "(ImVector* self)" defs["ImVector_back"][2]["argsT"] = {} @@ -4513,6 +4698,7 @@ defs["ImVector_back"][2]["ret"] = "const T*" defs["ImVector_back"][2]["retref"] = "&" defs["ImVector_back"][2]["signature"] = "()" defs["ImVector_back"][2]["stname"] = "ImVector" +defs["ImVector_back"][2]["templated"] = true defs["ImVector_back"]["()"] = defs["ImVector_back"][2] defs["ImVector_begin"] = {} defs["ImVector_begin"][1] = {} @@ -4531,6 +4717,7 @@ defs["ImVector_begin"][1]["ov_cimguiname"] = "ImVector_begin" defs["ImVector_begin"][1]["ret"] = "T*" defs["ImVector_begin"][1]["signature"] = "()" defs["ImVector_begin"][1]["stname"] = "ImVector" +defs["ImVector_begin"][1]["templated"] = true defs["ImVector_begin"][2] = {} defs["ImVector_begin"][2]["args"] = "(ImVector* self)" defs["ImVector_begin"][2]["argsT"] = {} @@ -4547,6 +4734,7 @@ defs["ImVector_begin"][2]["ov_cimguiname"] = "ImVector_begin" defs["ImVector_begin"][2]["ret"] = "const T*" defs["ImVector_begin"][2]["signature"] = "()" defs["ImVector_begin"][2]["stname"] = "ImVector" +defs["ImVector_begin"][2]["templated"] = true defs["ImVector_begin"]["()"] = defs["ImVector_begin"][2] defs["ImVector_capacity"] = {} defs["ImVector_capacity"][1] = {} @@ -4561,9 +4749,11 @@ defs["ImVector_capacity"][1]["cimguiname"] = "ImVector_capacity" defs["ImVector_capacity"][1]["comment"] = "" defs["ImVector_capacity"][1]["defaults"] = {} defs["ImVector_capacity"][1]["funcname"] = "capacity" +defs["ImVector_capacity"][1]["ov_cimguiname"] = "ImVector_capacity" defs["ImVector_capacity"][1]["ret"] = "int" defs["ImVector_capacity"][1]["signature"] = "()" defs["ImVector_capacity"][1]["stname"] = "ImVector" +defs["ImVector_capacity"][1]["templated"] = true defs["ImVector_capacity"]["()"] = defs["ImVector_capacity"][1] defs["ImVector_clear"] = {} defs["ImVector_clear"][1] = {} @@ -4578,9 +4768,11 @@ defs["ImVector_clear"][1]["cimguiname"] = "ImVector_clear" defs["ImVector_clear"][1]["comment"] = "" defs["ImVector_clear"][1]["defaults"] = {} defs["ImVector_clear"][1]["funcname"] = "clear" +defs["ImVector_clear"][1]["ov_cimguiname"] = "ImVector_clear" defs["ImVector_clear"][1]["ret"] = "void" defs["ImVector_clear"][1]["signature"] = "()" defs["ImVector_clear"][1]["stname"] = "ImVector" +defs["ImVector_clear"][1]["templated"] = true defs["ImVector_clear"]["()"] = defs["ImVector_clear"][1] defs["ImVector_contains"] = {} defs["ImVector_contains"][1] = {} @@ -4598,9 +4790,11 @@ defs["ImVector_contains"][1]["cimguiname"] = "ImVector_contains" defs["ImVector_contains"][1]["comment"] = "" defs["ImVector_contains"][1]["defaults"] = {} defs["ImVector_contains"][1]["funcname"] = "contains" +defs["ImVector_contains"][1]["ov_cimguiname"] = "ImVector_contains" defs["ImVector_contains"][1]["ret"] = "bool" defs["ImVector_contains"][1]["signature"] = "(const T)" defs["ImVector_contains"][1]["stname"] = "ImVector" +defs["ImVector_contains"][1]["templated"] = true defs["ImVector_contains"]["(const T)"] = defs["ImVector_contains"][1] defs["ImVector_destroy"] = {} defs["ImVector_destroy"][1] = {} @@ -4631,9 +4825,11 @@ defs["ImVector_empty"][1]["cimguiname"] = "ImVector_empty" defs["ImVector_empty"][1]["comment"] = "" defs["ImVector_empty"][1]["defaults"] = {} defs["ImVector_empty"][1]["funcname"] = "empty" +defs["ImVector_empty"][1]["ov_cimguiname"] = "ImVector_empty" defs["ImVector_empty"][1]["ret"] = "bool" defs["ImVector_empty"][1]["signature"] = "()" defs["ImVector_empty"][1]["stname"] = "ImVector" +defs["ImVector_empty"][1]["templated"] = true defs["ImVector_empty"]["()"] = defs["ImVector_empty"][1] defs["ImVector_end"] = {} defs["ImVector_end"][1] = {} @@ -4652,6 +4848,7 @@ defs["ImVector_end"][1]["ov_cimguiname"] = "ImVector_end" defs["ImVector_end"][1]["ret"] = "T*" defs["ImVector_end"][1]["signature"] = "()" defs["ImVector_end"][1]["stname"] = "ImVector" +defs["ImVector_end"][1]["templated"] = true defs["ImVector_end"][2] = {} defs["ImVector_end"][2]["args"] = "(ImVector* self)" defs["ImVector_end"][2]["argsT"] = {} @@ -4668,6 +4865,7 @@ defs["ImVector_end"][2]["ov_cimguiname"] = "ImVector_end" defs["ImVector_end"][2]["ret"] = "const T*" defs["ImVector_end"][2]["signature"] = "()" defs["ImVector_end"][2]["stname"] = "ImVector" +defs["ImVector_end"][2]["templated"] = true defs["ImVector_end"]["()"] = defs["ImVector_end"][2] defs["ImVector_erase"] = {} defs["ImVector_erase"][1] = {} @@ -4689,6 +4887,7 @@ defs["ImVector_erase"][1]["ov_cimguiname"] = "ImVector_erase" defs["ImVector_erase"][1]["ret"] = "T*" defs["ImVector_erase"][1]["signature"] = "(const T*)" defs["ImVector_erase"][1]["stname"] = "ImVector" +defs["ImVector_erase"][1]["templated"] = true defs["ImVector_erase"][2] = {} defs["ImVector_erase"][2]["args"] = "(ImVector* self,const T* it,const T* it_last)" defs["ImVector_erase"][2]["argsT"] = {} @@ -4711,6 +4910,7 @@ defs["ImVector_erase"][2]["ov_cimguiname"] = "ImVector_eraseTPtr" defs["ImVector_erase"][2]["ret"] = "T*" defs["ImVector_erase"][2]["signature"] = "(const T*,const T*)" defs["ImVector_erase"][2]["stname"] = "ImVector" +defs["ImVector_erase"][2]["templated"] = true defs["ImVector_erase"]["(const T*)"] = defs["ImVector_erase"][1] defs["ImVector_erase"]["(const T*,const T*)"] = defs["ImVector_erase"][2] defs["ImVector_erase_unsorted"] = {} @@ -4729,9 +4929,11 @@ defs["ImVector_erase_unsorted"][1]["cimguiname"] = "ImVector_erase_unsorted" defs["ImVector_erase_unsorted"][1]["comment"] = "" defs["ImVector_erase_unsorted"][1]["defaults"] = {} defs["ImVector_erase_unsorted"][1]["funcname"] = "erase_unsorted" +defs["ImVector_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_erase_unsorted" defs["ImVector_erase_unsorted"][1]["ret"] = "T*" defs["ImVector_erase_unsorted"][1]["signature"] = "(const T*)" defs["ImVector_erase_unsorted"][1]["stname"] = "ImVector" +defs["ImVector_erase_unsorted"][1]["templated"] = true defs["ImVector_erase_unsorted"]["(const T*)"] = defs["ImVector_erase_unsorted"][1] defs["ImVector_front"] = {} defs["ImVector_front"][1] = {} @@ -4751,6 +4953,7 @@ defs["ImVector_front"][1]["ret"] = "T*" defs["ImVector_front"][1]["retref"] = "&" defs["ImVector_front"][1]["signature"] = "()" defs["ImVector_front"][1]["stname"] = "ImVector" +defs["ImVector_front"][1]["templated"] = true defs["ImVector_front"][2] = {} defs["ImVector_front"][2]["args"] = "(ImVector* self)" defs["ImVector_front"][2]["argsT"] = {} @@ -4768,6 +4971,7 @@ defs["ImVector_front"][2]["ret"] = "const T*" defs["ImVector_front"][2]["retref"] = "&" defs["ImVector_front"][2]["signature"] = "()" defs["ImVector_front"][2]["stname"] = "ImVector" +defs["ImVector_front"][2]["templated"] = true defs["ImVector_front"]["()"] = defs["ImVector_front"][2] defs["ImVector_index_from_ptr"] = {} defs["ImVector_index_from_ptr"][1] = {} @@ -4785,9 +4989,11 @@ defs["ImVector_index_from_ptr"][1]["cimguiname"] = "ImVector_index_from_ptr" defs["ImVector_index_from_ptr"][1]["comment"] = "" defs["ImVector_index_from_ptr"][1]["defaults"] = {} defs["ImVector_index_from_ptr"][1]["funcname"] = "index_from_ptr" +defs["ImVector_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_index_from_ptr" defs["ImVector_index_from_ptr"][1]["ret"] = "int" defs["ImVector_index_from_ptr"][1]["signature"] = "(const T*)" defs["ImVector_index_from_ptr"][1]["stname"] = "ImVector" +defs["ImVector_index_from_ptr"][1]["templated"] = true defs["ImVector_index_from_ptr"]["(const T*)"] = defs["ImVector_index_from_ptr"][1] defs["ImVector_insert"] = {} defs["ImVector_insert"][1] = {} @@ -4808,9 +5014,11 @@ defs["ImVector_insert"][1]["cimguiname"] = "ImVector_insert" defs["ImVector_insert"][1]["comment"] = "" defs["ImVector_insert"][1]["defaults"] = {} defs["ImVector_insert"][1]["funcname"] = "insert" +defs["ImVector_insert"][1]["ov_cimguiname"] = "ImVector_insert" defs["ImVector_insert"][1]["ret"] = "T*" defs["ImVector_insert"][1]["signature"] = "(const T*,const T)" defs["ImVector_insert"][1]["stname"] = "ImVector" +defs["ImVector_insert"][1]["templated"] = true defs["ImVector_insert"]["(const T*,const T)"] = defs["ImVector_insert"][1] defs["ImVector_pop_back"] = {} defs["ImVector_pop_back"][1] = {} @@ -4825,9 +5033,11 @@ defs["ImVector_pop_back"][1]["cimguiname"] = "ImVector_pop_back" defs["ImVector_pop_back"][1]["comment"] = "" defs["ImVector_pop_back"][1]["defaults"] = {} defs["ImVector_pop_back"][1]["funcname"] = "pop_back" +defs["ImVector_pop_back"][1]["ov_cimguiname"] = "ImVector_pop_back" defs["ImVector_pop_back"][1]["ret"] = "void" defs["ImVector_pop_back"][1]["signature"] = "()" defs["ImVector_pop_back"][1]["stname"] = "ImVector" +defs["ImVector_pop_back"][1]["templated"] = true defs["ImVector_pop_back"]["()"] = defs["ImVector_pop_back"][1] defs["ImVector_push_back"] = {} defs["ImVector_push_back"][1] = {} @@ -4845,9 +5055,11 @@ defs["ImVector_push_back"][1]["cimguiname"] = "ImVector_push_back" defs["ImVector_push_back"][1]["comment"] = "" defs["ImVector_push_back"][1]["defaults"] = {} defs["ImVector_push_back"][1]["funcname"] = "push_back" +defs["ImVector_push_back"][1]["ov_cimguiname"] = "ImVector_push_back" defs["ImVector_push_back"][1]["ret"] = "void" defs["ImVector_push_back"][1]["signature"] = "(const T)" defs["ImVector_push_back"][1]["stname"] = "ImVector" +defs["ImVector_push_back"][1]["templated"] = true defs["ImVector_push_back"]["(const T)"] = defs["ImVector_push_back"][1] defs["ImVector_push_front"] = {} defs["ImVector_push_front"][1] = {} @@ -4865,9 +5077,11 @@ defs["ImVector_push_front"][1]["cimguiname"] = "ImVector_push_front" defs["ImVector_push_front"][1]["comment"] = "" defs["ImVector_push_front"][1]["defaults"] = {} defs["ImVector_push_front"][1]["funcname"] = "push_front" +defs["ImVector_push_front"][1]["ov_cimguiname"] = "ImVector_push_front" defs["ImVector_push_front"][1]["ret"] = "void" defs["ImVector_push_front"][1]["signature"] = "(const T)" defs["ImVector_push_front"][1]["stname"] = "ImVector" +defs["ImVector_push_front"][1]["templated"] = true defs["ImVector_push_front"]["(const T)"] = defs["ImVector_push_front"][1] defs["ImVector_reserve"] = {} defs["ImVector_reserve"][1] = {} @@ -4885,9 +5099,11 @@ defs["ImVector_reserve"][1]["cimguiname"] = "ImVector_reserve" defs["ImVector_reserve"][1]["comment"] = "" defs["ImVector_reserve"][1]["defaults"] = {} defs["ImVector_reserve"][1]["funcname"] = "reserve" +defs["ImVector_reserve"][1]["ov_cimguiname"] = "ImVector_reserve" defs["ImVector_reserve"][1]["ret"] = "void" defs["ImVector_reserve"][1]["signature"] = "(int)" defs["ImVector_reserve"][1]["stname"] = "ImVector" +defs["ImVector_reserve"][1]["templated"] = true defs["ImVector_reserve"]["(int)"] = defs["ImVector_reserve"][1] defs["ImVector_resize"] = {} defs["ImVector_resize"][1] = {} @@ -4909,6 +5125,7 @@ defs["ImVector_resize"][1]["ov_cimguiname"] = "ImVector_resize" defs["ImVector_resize"][1]["ret"] = "void" defs["ImVector_resize"][1]["signature"] = "(int)" defs["ImVector_resize"][1]["stname"] = "ImVector" +defs["ImVector_resize"][1]["templated"] = true defs["ImVector_resize"][2] = {} defs["ImVector_resize"][2]["args"] = "(ImVector* self,int new_size,const T v)" defs["ImVector_resize"][2]["argsT"] = {} @@ -4931,6 +5148,7 @@ defs["ImVector_resize"][2]["ov_cimguiname"] = "ImVector_resizeT" defs["ImVector_resize"][2]["ret"] = "void" defs["ImVector_resize"][2]["signature"] = "(int,const T)" defs["ImVector_resize"][2]["stname"] = "ImVector" +defs["ImVector_resize"][2]["templated"] = true defs["ImVector_resize"]["(int)"] = defs["ImVector_resize"][1] defs["ImVector_resize"]["(int,const T)"] = defs["ImVector_resize"][2] defs["ImVector_size"] = {} @@ -4946,9 +5164,11 @@ defs["ImVector_size"][1]["cimguiname"] = "ImVector_size" defs["ImVector_size"][1]["comment"] = "" defs["ImVector_size"][1]["defaults"] = {} defs["ImVector_size"][1]["funcname"] = "size" +defs["ImVector_size"][1]["ov_cimguiname"] = "ImVector_size" defs["ImVector_size"][1]["ret"] = "int" defs["ImVector_size"][1]["signature"] = "()" defs["ImVector_size"][1]["stname"] = "ImVector" +defs["ImVector_size"][1]["templated"] = true defs["ImVector_size"]["()"] = defs["ImVector_size"][1] defs["ImVector_size_in_bytes"] = {} defs["ImVector_size_in_bytes"][1] = {} @@ -4963,30 +5183,34 @@ defs["ImVector_size_in_bytes"][1]["cimguiname"] = "ImVector_size_in_bytes" defs["ImVector_size_in_bytes"][1]["comment"] = "" defs["ImVector_size_in_bytes"][1]["defaults"] = {} defs["ImVector_size_in_bytes"][1]["funcname"] = "size_in_bytes" +defs["ImVector_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_size_in_bytes" defs["ImVector_size_in_bytes"][1]["ret"] = "int" defs["ImVector_size_in_bytes"][1]["signature"] = "()" defs["ImVector_size_in_bytes"][1]["stname"] = "ImVector" +defs["ImVector_size_in_bytes"][1]["templated"] = true defs["ImVector_size_in_bytes"]["()"] = defs["ImVector_size_in_bytes"][1] defs["ImVector_swap"] = {} defs["ImVector_swap"][1] = {} -defs["ImVector_swap"][1]["args"] = "(ImVector* self,ImVector_T rhs)" +defs["ImVector_swap"][1]["args"] = "(ImVector* self,ImVector_ rhs)" defs["ImVector_swap"][1]["argsT"] = {} defs["ImVector_swap"][1]["argsT"][1] = {} defs["ImVector_swap"][1]["argsT"][1]["name"] = "self" defs["ImVector_swap"][1]["argsT"][1]["type"] = "ImVector*" defs["ImVector_swap"][1]["argsT"][2] = {} defs["ImVector_swap"][1]["argsT"][2]["name"] = "rhs" -defs["ImVector_swap"][1]["argsT"][2]["type"] = "ImVector_T&" +defs["ImVector_swap"][1]["argsT"][2]["type"] = "ImVector_&" defs["ImVector_swap"][1]["argsoriginal"] = "(ImVector& rhs)" defs["ImVector_swap"][1]["call_args"] = "(rhs)" defs["ImVector_swap"][1]["cimguiname"] = "ImVector_swap" defs["ImVector_swap"][1]["comment"] = "" defs["ImVector_swap"][1]["defaults"] = {} defs["ImVector_swap"][1]["funcname"] = "swap" +defs["ImVector_swap"][1]["ov_cimguiname"] = "ImVector_swap" defs["ImVector_swap"][1]["ret"] = "void" -defs["ImVector_swap"][1]["signature"] = "(ImVector_T)" +defs["ImVector_swap"][1]["signature"] = "(ImVector_)" defs["ImVector_swap"][1]["stname"] = "ImVector" -defs["ImVector_swap"]["(ImVector_T)"] = defs["ImVector_swap"][1] +defs["ImVector_swap"][1]["templated"] = true +defs["ImVector_swap"]["(ImVector_)"] = defs["ImVector_swap"][1] defs["Pair_Pair"] = {} defs["Pair_Pair"][1] = {} defs["Pair_Pair"][1]["args"] = "(ImGuiID _key,int _val_i)" @@ -5112,6 +5336,7 @@ defs["TextRange_begin"][1]["cimguiname"] = "TextRange_begin" defs["TextRange_begin"][1]["comment"] = "" defs["TextRange_begin"][1]["defaults"] = {} defs["TextRange_begin"][1]["funcname"] = "begin" +defs["TextRange_begin"][1]["ov_cimguiname"] = "TextRange_begin" defs["TextRange_begin"][1]["ret"] = "const char*" defs["TextRange_begin"][1]["signature"] = "()" defs["TextRange_begin"][1]["stname"] = "TextRange" @@ -5145,6 +5370,7 @@ defs["TextRange_empty"][1]["cimguiname"] = "TextRange_empty" defs["TextRange_empty"][1]["comment"] = "" defs["TextRange_empty"][1]["defaults"] = {} defs["TextRange_empty"][1]["funcname"] = "empty" +defs["TextRange_empty"][1]["ov_cimguiname"] = "TextRange_empty" defs["TextRange_empty"][1]["ret"] = "bool" defs["TextRange_empty"][1]["signature"] = "()" defs["TextRange_empty"][1]["stname"] = "TextRange" @@ -5162,6 +5388,7 @@ defs["TextRange_end"][1]["cimguiname"] = "TextRange_end" defs["TextRange_end"][1]["comment"] = "" defs["TextRange_end"][1]["defaults"] = {} defs["TextRange_end"][1]["funcname"] = "end" +defs["TextRange_end"][1]["ov_cimguiname"] = "TextRange_end" defs["TextRange_end"][1]["ret"] = "const char*" defs["TextRange_end"][1]["signature"] = "()" defs["TextRange_end"][1]["stname"] = "TextRange" @@ -5185,6 +5412,7 @@ defs["TextRange_split"][1]["cimguiname"] = "TextRange_split" defs["TextRange_split"][1]["comment"] = "" defs["TextRange_split"][1]["defaults"] = {} defs["TextRange_split"][1]["funcname"] = "split" +defs["TextRange_split"][1]["ov_cimguiname"] = "TextRange_split" defs["TextRange_split"][1]["ret"] = "void" defs["TextRange_split"][1]["signature"] = "(char,ImVector_TextRange*)" defs["TextRange_split"][1]["stname"] = "TextRange" @@ -5206,9 +5434,11 @@ defs["igAcceptDragDropPayload"][1]["comment"] = "" defs["igAcceptDragDropPayload"][1]["defaults"] = {} defs["igAcceptDragDropPayload"][1]["defaults"]["flags"] = "0" defs["igAcceptDragDropPayload"][1]["funcname"] = "AcceptDragDropPayload" +defs["igAcceptDragDropPayload"][1]["namespace"] = "ImGui" +defs["igAcceptDragDropPayload"][1]["ov_cimguiname"] = "igAcceptDragDropPayload" defs["igAcceptDragDropPayload"][1]["ret"] = "const ImGuiPayload*" defs["igAcceptDragDropPayload"][1]["signature"] = "(const char*,ImGuiDragDropFlags)" -defs["igAcceptDragDropPayload"][1]["stname"] = "ImGui" +defs["igAcceptDragDropPayload"][1]["stname"] = "" defs["igAcceptDragDropPayload"]["(const char*,ImGuiDragDropFlags)"] = defs["igAcceptDragDropPayload"][1] defs["igAlignTextToFramePadding"] = {} defs["igAlignTextToFramePadding"][1] = {} @@ -5220,9 +5450,11 @@ defs["igAlignTextToFramePadding"][1]["cimguiname"] = "igAlignTextToFramePadding" defs["igAlignTextToFramePadding"][1]["comment"] = "" defs["igAlignTextToFramePadding"][1]["defaults"] = {} defs["igAlignTextToFramePadding"][1]["funcname"] = "AlignTextToFramePadding" +defs["igAlignTextToFramePadding"][1]["namespace"] = "ImGui" +defs["igAlignTextToFramePadding"][1]["ov_cimguiname"] = "igAlignTextToFramePadding" defs["igAlignTextToFramePadding"][1]["ret"] = "void" defs["igAlignTextToFramePadding"][1]["signature"] = "()" -defs["igAlignTextToFramePadding"][1]["stname"] = "ImGui" +defs["igAlignTextToFramePadding"][1]["stname"] = "" defs["igAlignTextToFramePadding"]["()"] = defs["igAlignTextToFramePadding"][1] defs["igArrowButton"] = {} defs["igArrowButton"][1] = {} @@ -5240,9 +5472,11 @@ defs["igArrowButton"][1]["cimguiname"] = "igArrowButton" defs["igArrowButton"][1]["comment"] = "" defs["igArrowButton"][1]["defaults"] = {} defs["igArrowButton"][1]["funcname"] = "ArrowButton" +defs["igArrowButton"][1]["namespace"] = "ImGui" +defs["igArrowButton"][1]["ov_cimguiname"] = "igArrowButton" defs["igArrowButton"][1]["ret"] = "bool" defs["igArrowButton"][1]["signature"] = "(const char*,ImGuiDir)" -defs["igArrowButton"][1]["stname"] = "ImGui" +defs["igArrowButton"][1]["stname"] = "" defs["igArrowButton"]["(const char*,ImGuiDir)"] = defs["igArrowButton"][1] defs["igBegin"] = {} defs["igBegin"][1] = {} @@ -5257,17 +5491,19 @@ defs["igBegin"][1]["argsT"][2]["type"] = "bool*" defs["igBegin"][1]["argsT"][3] = {} defs["igBegin"][1]["argsT"][3]["name"] = "flags" defs["igBegin"][1]["argsT"][3]["type"] = "ImGuiWindowFlags" -defs["igBegin"][1]["argsoriginal"] = "(const char* name,bool* p_open=((void *)0),ImGuiWindowFlags flags=0)" +defs["igBegin"][1]["argsoriginal"] = "(const char* name,bool* p_open=((void*)0),ImGuiWindowFlags flags=0)" defs["igBegin"][1]["call_args"] = "(name,p_open,flags)" defs["igBegin"][1]["cimguiname"] = "igBegin" defs["igBegin"][1]["comment"] = "" defs["igBegin"][1]["defaults"] = {} defs["igBegin"][1]["defaults"]["flags"] = "0" -defs["igBegin"][1]["defaults"]["p_open"] = "((void *)0)" +defs["igBegin"][1]["defaults"]["p_open"] = "((void*)0)" defs["igBegin"][1]["funcname"] = "Begin" +defs["igBegin"][1]["namespace"] = "ImGui" +defs["igBegin"][1]["ov_cimguiname"] = "igBegin" defs["igBegin"][1]["ret"] = "bool" defs["igBegin"][1]["signature"] = "(const char*,bool*,ImGuiWindowFlags)" -defs["igBegin"][1]["stname"] = "ImGui" +defs["igBegin"][1]["stname"] = "" defs["igBegin"]["(const char*,bool*,ImGuiWindowFlags)"] = defs["igBegin"][1] defs["igBeginChild"] = {} defs["igBeginChild"][1] = {} @@ -5294,10 +5530,11 @@ defs["igBeginChild"][1]["defaults"]["border"] = "false" defs["igBeginChild"][1]["defaults"]["flags"] = "0" defs["igBeginChild"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igBeginChild"][1]["funcname"] = "BeginChild" +defs["igBeginChild"][1]["namespace"] = "ImGui" defs["igBeginChild"][1]["ov_cimguiname"] = "igBeginChild" defs["igBeginChild"][1]["ret"] = "bool" defs["igBeginChild"][1]["signature"] = "(const char*,const ImVec2,bool,ImGuiWindowFlags)" -defs["igBeginChild"][1]["stname"] = "ImGui" +defs["igBeginChild"][1]["stname"] = "" defs["igBeginChild"][2] = {} defs["igBeginChild"][2]["args"] = "(ImGuiID id,const ImVec2 size,bool border,ImGuiWindowFlags flags)" defs["igBeginChild"][2]["argsT"] = {} @@ -5322,10 +5559,11 @@ defs["igBeginChild"][2]["defaults"]["border"] = "false" defs["igBeginChild"][2]["defaults"]["flags"] = "0" defs["igBeginChild"][2]["defaults"]["size"] = "ImVec2(0,0)" defs["igBeginChild"][2]["funcname"] = "BeginChild" +defs["igBeginChild"][2]["namespace"] = "ImGui" defs["igBeginChild"][2]["ov_cimguiname"] = "igBeginChildID" defs["igBeginChild"][2]["ret"] = "bool" defs["igBeginChild"][2]["signature"] = "(ImGuiID,const ImVec2,bool,ImGuiWindowFlags)" -defs["igBeginChild"][2]["stname"] = "ImGui" +defs["igBeginChild"][2]["stname"] = "" defs["igBeginChild"]["(ImGuiID,const ImVec2,bool,ImGuiWindowFlags)"] = defs["igBeginChild"][2] defs["igBeginChild"]["(const char*,const ImVec2,bool,ImGuiWindowFlags)"] = defs["igBeginChild"][1] defs["igBeginChildFrame"] = {} @@ -5348,9 +5586,11 @@ defs["igBeginChildFrame"][1]["comment"] = "" defs["igBeginChildFrame"][1]["defaults"] = {} defs["igBeginChildFrame"][1]["defaults"]["flags"] = "0" defs["igBeginChildFrame"][1]["funcname"] = "BeginChildFrame" +defs["igBeginChildFrame"][1]["namespace"] = "ImGui" +defs["igBeginChildFrame"][1]["ov_cimguiname"] = "igBeginChildFrame" defs["igBeginChildFrame"][1]["ret"] = "bool" defs["igBeginChildFrame"][1]["signature"] = "(ImGuiID,const ImVec2,ImGuiWindowFlags)" -defs["igBeginChildFrame"][1]["stname"] = "ImGui" +defs["igBeginChildFrame"][1]["stname"] = "" defs["igBeginChildFrame"]["(ImGuiID,const ImVec2,ImGuiWindowFlags)"] = defs["igBeginChildFrame"][1] defs["igBeginCombo"] = {} defs["igBeginCombo"][1] = {} @@ -5372,9 +5612,11 @@ defs["igBeginCombo"][1]["comment"] = "" defs["igBeginCombo"][1]["defaults"] = {} defs["igBeginCombo"][1]["defaults"]["flags"] = "0" defs["igBeginCombo"][1]["funcname"] = "BeginCombo" +defs["igBeginCombo"][1]["namespace"] = "ImGui" +defs["igBeginCombo"][1]["ov_cimguiname"] = "igBeginCombo" defs["igBeginCombo"][1]["ret"] = "bool" defs["igBeginCombo"][1]["signature"] = "(const char*,const char*,ImGuiComboFlags)" -defs["igBeginCombo"][1]["stname"] = "ImGui" +defs["igBeginCombo"][1]["stname"] = "" defs["igBeginCombo"]["(const char*,const char*,ImGuiComboFlags)"] = defs["igBeginCombo"][1] defs["igBeginDragDropSource"] = {} defs["igBeginDragDropSource"][1] = {} @@ -5390,9 +5632,11 @@ defs["igBeginDragDropSource"][1]["comment"] = "" defs["igBeginDragDropSource"][1]["defaults"] = {} defs["igBeginDragDropSource"][1]["defaults"]["flags"] = "0" defs["igBeginDragDropSource"][1]["funcname"] = "BeginDragDropSource" +defs["igBeginDragDropSource"][1]["namespace"] = "ImGui" +defs["igBeginDragDropSource"][1]["ov_cimguiname"] = "igBeginDragDropSource" defs["igBeginDragDropSource"][1]["ret"] = "bool" defs["igBeginDragDropSource"][1]["signature"] = "(ImGuiDragDropFlags)" -defs["igBeginDragDropSource"][1]["stname"] = "ImGui" +defs["igBeginDragDropSource"][1]["stname"] = "" defs["igBeginDragDropSource"]["(ImGuiDragDropFlags)"] = defs["igBeginDragDropSource"][1] defs["igBeginDragDropTarget"] = {} defs["igBeginDragDropTarget"][1] = {} @@ -5404,9 +5648,11 @@ defs["igBeginDragDropTarget"][1]["cimguiname"] = "igBeginDragDropTarget" defs["igBeginDragDropTarget"][1]["comment"] = "" defs["igBeginDragDropTarget"][1]["defaults"] = {} defs["igBeginDragDropTarget"][1]["funcname"] = "BeginDragDropTarget" +defs["igBeginDragDropTarget"][1]["namespace"] = "ImGui" +defs["igBeginDragDropTarget"][1]["ov_cimguiname"] = "igBeginDragDropTarget" defs["igBeginDragDropTarget"][1]["ret"] = "bool" defs["igBeginDragDropTarget"][1]["signature"] = "()" -defs["igBeginDragDropTarget"][1]["stname"] = "ImGui" +defs["igBeginDragDropTarget"][1]["stname"] = "" defs["igBeginDragDropTarget"]["()"] = defs["igBeginDragDropTarget"][1] defs["igBeginGroup"] = {} defs["igBeginGroup"][1] = {} @@ -5418,9 +5664,11 @@ defs["igBeginGroup"][1]["cimguiname"] = "igBeginGroup" defs["igBeginGroup"][1]["comment"] = "" defs["igBeginGroup"][1]["defaults"] = {} defs["igBeginGroup"][1]["funcname"] = "BeginGroup" +defs["igBeginGroup"][1]["namespace"] = "ImGui" +defs["igBeginGroup"][1]["ov_cimguiname"] = "igBeginGroup" defs["igBeginGroup"][1]["ret"] = "void" defs["igBeginGroup"][1]["signature"] = "()" -defs["igBeginGroup"][1]["stname"] = "ImGui" +defs["igBeginGroup"][1]["stname"] = "" defs["igBeginGroup"]["()"] = defs["igBeginGroup"][1] defs["igBeginMainMenuBar"] = {} defs["igBeginMainMenuBar"][1] = {} @@ -5432,9 +5680,11 @@ defs["igBeginMainMenuBar"][1]["cimguiname"] = "igBeginMainMenuBar" defs["igBeginMainMenuBar"][1]["comment"] = "" defs["igBeginMainMenuBar"][1]["defaults"] = {} defs["igBeginMainMenuBar"][1]["funcname"] = "BeginMainMenuBar" +defs["igBeginMainMenuBar"][1]["namespace"] = "ImGui" +defs["igBeginMainMenuBar"][1]["ov_cimguiname"] = "igBeginMainMenuBar" defs["igBeginMainMenuBar"][1]["ret"] = "bool" defs["igBeginMainMenuBar"][1]["signature"] = "()" -defs["igBeginMainMenuBar"][1]["stname"] = "ImGui" +defs["igBeginMainMenuBar"][1]["stname"] = "" defs["igBeginMainMenuBar"]["()"] = defs["igBeginMainMenuBar"][1] defs["igBeginMenu"] = {} defs["igBeginMenu"][1] = {} @@ -5453,9 +5703,11 @@ defs["igBeginMenu"][1]["comment"] = "" defs["igBeginMenu"][1]["defaults"] = {} defs["igBeginMenu"][1]["defaults"]["enabled"] = "true" defs["igBeginMenu"][1]["funcname"] = "BeginMenu" +defs["igBeginMenu"][1]["namespace"] = "ImGui" +defs["igBeginMenu"][1]["ov_cimguiname"] = "igBeginMenu" defs["igBeginMenu"][1]["ret"] = "bool" defs["igBeginMenu"][1]["signature"] = "(const char*,bool)" -defs["igBeginMenu"][1]["stname"] = "ImGui" +defs["igBeginMenu"][1]["stname"] = "" defs["igBeginMenu"]["(const char*,bool)"] = defs["igBeginMenu"][1] defs["igBeginMenuBar"] = {} defs["igBeginMenuBar"][1] = {} @@ -5467,9 +5719,11 @@ defs["igBeginMenuBar"][1]["cimguiname"] = "igBeginMenuBar" defs["igBeginMenuBar"][1]["comment"] = "" defs["igBeginMenuBar"][1]["defaults"] = {} defs["igBeginMenuBar"][1]["funcname"] = "BeginMenuBar" +defs["igBeginMenuBar"][1]["namespace"] = "ImGui" +defs["igBeginMenuBar"][1]["ov_cimguiname"] = "igBeginMenuBar" defs["igBeginMenuBar"][1]["ret"] = "bool" defs["igBeginMenuBar"][1]["signature"] = "()" -defs["igBeginMenuBar"][1]["stname"] = "ImGui" +defs["igBeginMenuBar"][1]["stname"] = "" defs["igBeginMenuBar"]["()"] = defs["igBeginMenuBar"][1] defs["igBeginPopup"] = {} defs["igBeginPopup"][1] = {} @@ -5488,9 +5742,11 @@ defs["igBeginPopup"][1]["comment"] = "" defs["igBeginPopup"][1]["defaults"] = {} defs["igBeginPopup"][1]["defaults"]["flags"] = "0" defs["igBeginPopup"][1]["funcname"] = "BeginPopup" +defs["igBeginPopup"][1]["namespace"] = "ImGui" +defs["igBeginPopup"][1]["ov_cimguiname"] = "igBeginPopup" defs["igBeginPopup"][1]["ret"] = "bool" defs["igBeginPopup"][1]["signature"] = "(const char*,ImGuiWindowFlags)" -defs["igBeginPopup"][1]["stname"] = "ImGui" +defs["igBeginPopup"][1]["stname"] = "" defs["igBeginPopup"]["(const char*,ImGuiWindowFlags)"] = defs["igBeginPopup"][1] defs["igBeginPopupContextItem"] = {} defs["igBeginPopupContextItem"][1] = {} @@ -5502,17 +5758,19 @@ defs["igBeginPopupContextItem"][1]["argsT"][1]["type"] = "const char*" defs["igBeginPopupContextItem"][1]["argsT"][2] = {} defs["igBeginPopupContextItem"][1]["argsT"][2]["name"] = "mouse_button" defs["igBeginPopupContextItem"][1]["argsT"][2]["type"] = "int" -defs["igBeginPopupContextItem"][1]["argsoriginal"] = "(const char* str_id=((void *)0),int mouse_button=1)" +defs["igBeginPopupContextItem"][1]["argsoriginal"] = "(const char* str_id=((void*)0),int mouse_button=1)" defs["igBeginPopupContextItem"][1]["call_args"] = "(str_id,mouse_button)" defs["igBeginPopupContextItem"][1]["cimguiname"] = "igBeginPopupContextItem" defs["igBeginPopupContextItem"][1]["comment"] = "" defs["igBeginPopupContextItem"][1]["defaults"] = {} defs["igBeginPopupContextItem"][1]["defaults"]["mouse_button"] = "1" -defs["igBeginPopupContextItem"][1]["defaults"]["str_id"] = "((void *)0)" +defs["igBeginPopupContextItem"][1]["defaults"]["str_id"] = "((void*)0)" defs["igBeginPopupContextItem"][1]["funcname"] = "BeginPopupContextItem" +defs["igBeginPopupContextItem"][1]["namespace"] = "ImGui" +defs["igBeginPopupContextItem"][1]["ov_cimguiname"] = "igBeginPopupContextItem" defs["igBeginPopupContextItem"][1]["ret"] = "bool" defs["igBeginPopupContextItem"][1]["signature"] = "(const char*,int)" -defs["igBeginPopupContextItem"][1]["stname"] = "ImGui" +defs["igBeginPopupContextItem"][1]["stname"] = "" defs["igBeginPopupContextItem"]["(const char*,int)"] = defs["igBeginPopupContextItem"][1] defs["igBeginPopupContextVoid"] = {} defs["igBeginPopupContextVoid"][1] = {} @@ -5524,17 +5782,19 @@ defs["igBeginPopupContextVoid"][1]["argsT"][1]["type"] = "const char*" defs["igBeginPopupContextVoid"][1]["argsT"][2] = {} defs["igBeginPopupContextVoid"][1]["argsT"][2]["name"] = "mouse_button" defs["igBeginPopupContextVoid"][1]["argsT"][2]["type"] = "int" -defs["igBeginPopupContextVoid"][1]["argsoriginal"] = "(const char* str_id=((void *)0),int mouse_button=1)" +defs["igBeginPopupContextVoid"][1]["argsoriginal"] = "(const char* str_id=((void*)0),int mouse_button=1)" defs["igBeginPopupContextVoid"][1]["call_args"] = "(str_id,mouse_button)" defs["igBeginPopupContextVoid"][1]["cimguiname"] = "igBeginPopupContextVoid" defs["igBeginPopupContextVoid"][1]["comment"] = "" defs["igBeginPopupContextVoid"][1]["defaults"] = {} defs["igBeginPopupContextVoid"][1]["defaults"]["mouse_button"] = "1" -defs["igBeginPopupContextVoid"][1]["defaults"]["str_id"] = "((void *)0)" +defs["igBeginPopupContextVoid"][1]["defaults"]["str_id"] = "((void*)0)" defs["igBeginPopupContextVoid"][1]["funcname"] = "BeginPopupContextVoid" +defs["igBeginPopupContextVoid"][1]["namespace"] = "ImGui" +defs["igBeginPopupContextVoid"][1]["ov_cimguiname"] = "igBeginPopupContextVoid" defs["igBeginPopupContextVoid"][1]["ret"] = "bool" defs["igBeginPopupContextVoid"][1]["signature"] = "(const char*,int)" -defs["igBeginPopupContextVoid"][1]["stname"] = "ImGui" +defs["igBeginPopupContextVoid"][1]["stname"] = "" defs["igBeginPopupContextVoid"]["(const char*,int)"] = defs["igBeginPopupContextVoid"][1] defs["igBeginPopupContextWindow"] = {} defs["igBeginPopupContextWindow"][1] = {} @@ -5549,18 +5809,20 @@ defs["igBeginPopupContextWindow"][1]["argsT"][2]["type"] = "int" defs["igBeginPopupContextWindow"][1]["argsT"][3] = {} defs["igBeginPopupContextWindow"][1]["argsT"][3]["name"] = "also_over_items" defs["igBeginPopupContextWindow"][1]["argsT"][3]["type"] = "bool" -defs["igBeginPopupContextWindow"][1]["argsoriginal"] = "(const char* str_id=((void *)0),int mouse_button=1,bool also_over_items=true)" +defs["igBeginPopupContextWindow"][1]["argsoriginal"] = "(const char* str_id=((void*)0),int mouse_button=1,bool also_over_items=true)" defs["igBeginPopupContextWindow"][1]["call_args"] = "(str_id,mouse_button,also_over_items)" defs["igBeginPopupContextWindow"][1]["cimguiname"] = "igBeginPopupContextWindow" defs["igBeginPopupContextWindow"][1]["comment"] = "" defs["igBeginPopupContextWindow"][1]["defaults"] = {} defs["igBeginPopupContextWindow"][1]["defaults"]["also_over_items"] = "true" defs["igBeginPopupContextWindow"][1]["defaults"]["mouse_button"] = "1" -defs["igBeginPopupContextWindow"][1]["defaults"]["str_id"] = "((void *)0)" +defs["igBeginPopupContextWindow"][1]["defaults"]["str_id"] = "((void*)0)" defs["igBeginPopupContextWindow"][1]["funcname"] = "BeginPopupContextWindow" +defs["igBeginPopupContextWindow"][1]["namespace"] = "ImGui" +defs["igBeginPopupContextWindow"][1]["ov_cimguiname"] = "igBeginPopupContextWindow" defs["igBeginPopupContextWindow"][1]["ret"] = "bool" defs["igBeginPopupContextWindow"][1]["signature"] = "(const char*,int,bool)" -defs["igBeginPopupContextWindow"][1]["stname"] = "ImGui" +defs["igBeginPopupContextWindow"][1]["stname"] = "" defs["igBeginPopupContextWindow"]["(const char*,int,bool)"] = defs["igBeginPopupContextWindow"][1] defs["igBeginPopupModal"] = {} defs["igBeginPopupModal"][1] = {} @@ -5575,17 +5837,19 @@ defs["igBeginPopupModal"][1]["argsT"][2]["type"] = "bool*" defs["igBeginPopupModal"][1]["argsT"][3] = {} defs["igBeginPopupModal"][1]["argsT"][3]["name"] = "flags" defs["igBeginPopupModal"][1]["argsT"][3]["type"] = "ImGuiWindowFlags" -defs["igBeginPopupModal"][1]["argsoriginal"] = "(const char* name,bool* p_open=((void *)0),ImGuiWindowFlags flags=0)" +defs["igBeginPopupModal"][1]["argsoriginal"] = "(const char* name,bool* p_open=((void*)0),ImGuiWindowFlags flags=0)" defs["igBeginPopupModal"][1]["call_args"] = "(name,p_open,flags)" defs["igBeginPopupModal"][1]["cimguiname"] = "igBeginPopupModal" defs["igBeginPopupModal"][1]["comment"] = "" defs["igBeginPopupModal"][1]["defaults"] = {} defs["igBeginPopupModal"][1]["defaults"]["flags"] = "0" -defs["igBeginPopupModal"][1]["defaults"]["p_open"] = "((void *)0)" +defs["igBeginPopupModal"][1]["defaults"]["p_open"] = "((void*)0)" defs["igBeginPopupModal"][1]["funcname"] = "BeginPopupModal" +defs["igBeginPopupModal"][1]["namespace"] = "ImGui" +defs["igBeginPopupModal"][1]["ov_cimguiname"] = "igBeginPopupModal" defs["igBeginPopupModal"][1]["ret"] = "bool" defs["igBeginPopupModal"][1]["signature"] = "(const char*,bool*,ImGuiWindowFlags)" -defs["igBeginPopupModal"][1]["stname"] = "ImGui" +defs["igBeginPopupModal"][1]["stname"] = "" defs["igBeginPopupModal"]["(const char*,bool*,ImGuiWindowFlags)"] = defs["igBeginPopupModal"][1] defs["igBeginTabBar"] = {} defs["igBeginTabBar"][1] = {} @@ -5604,9 +5868,11 @@ defs["igBeginTabBar"][1]["comment"] = "" defs["igBeginTabBar"][1]["defaults"] = {} defs["igBeginTabBar"][1]["defaults"]["flags"] = "0" defs["igBeginTabBar"][1]["funcname"] = "BeginTabBar" +defs["igBeginTabBar"][1]["namespace"] = "ImGui" +defs["igBeginTabBar"][1]["ov_cimguiname"] = "igBeginTabBar" defs["igBeginTabBar"][1]["ret"] = "bool" defs["igBeginTabBar"][1]["signature"] = "(const char*,ImGuiTabBarFlags)" -defs["igBeginTabBar"][1]["stname"] = "ImGui" +defs["igBeginTabBar"][1]["stname"] = "" defs["igBeginTabBar"]["(const char*,ImGuiTabBarFlags)"] = defs["igBeginTabBar"][1] defs["igBeginTabItem"] = {} defs["igBeginTabItem"][1] = {} @@ -5621,17 +5887,19 @@ defs["igBeginTabItem"][1]["argsT"][2]["type"] = "bool*" defs["igBeginTabItem"][1]["argsT"][3] = {} defs["igBeginTabItem"][1]["argsT"][3]["name"] = "flags" defs["igBeginTabItem"][1]["argsT"][3]["type"] = "ImGuiTabItemFlags" -defs["igBeginTabItem"][1]["argsoriginal"] = "(const char* label,bool* p_open=((void *)0),ImGuiTabItemFlags flags=0)" +defs["igBeginTabItem"][1]["argsoriginal"] = "(const char* label,bool* p_open=((void*)0),ImGuiTabItemFlags flags=0)" defs["igBeginTabItem"][1]["call_args"] = "(label,p_open,flags)" defs["igBeginTabItem"][1]["cimguiname"] = "igBeginTabItem" defs["igBeginTabItem"][1]["comment"] = "" defs["igBeginTabItem"][1]["defaults"] = {} defs["igBeginTabItem"][1]["defaults"]["flags"] = "0" -defs["igBeginTabItem"][1]["defaults"]["p_open"] = "((void *)0)" +defs["igBeginTabItem"][1]["defaults"]["p_open"] = "((void*)0)" defs["igBeginTabItem"][1]["funcname"] = "BeginTabItem" +defs["igBeginTabItem"][1]["namespace"] = "ImGui" +defs["igBeginTabItem"][1]["ov_cimguiname"] = "igBeginTabItem" defs["igBeginTabItem"][1]["ret"] = "bool" defs["igBeginTabItem"][1]["signature"] = "(const char*,bool*,ImGuiTabItemFlags)" -defs["igBeginTabItem"][1]["stname"] = "ImGui" +defs["igBeginTabItem"][1]["stname"] = "" defs["igBeginTabItem"]["(const char*,bool*,ImGuiTabItemFlags)"] = defs["igBeginTabItem"][1] defs["igBeginTooltip"] = {} defs["igBeginTooltip"][1] = {} @@ -5643,9 +5911,11 @@ defs["igBeginTooltip"][1]["cimguiname"] = "igBeginTooltip" defs["igBeginTooltip"][1]["comment"] = "" defs["igBeginTooltip"][1]["defaults"] = {} defs["igBeginTooltip"][1]["funcname"] = "BeginTooltip" +defs["igBeginTooltip"][1]["namespace"] = "ImGui" +defs["igBeginTooltip"][1]["ov_cimguiname"] = "igBeginTooltip" defs["igBeginTooltip"][1]["ret"] = "void" defs["igBeginTooltip"][1]["signature"] = "()" -defs["igBeginTooltip"][1]["stname"] = "ImGui" +defs["igBeginTooltip"][1]["stname"] = "" defs["igBeginTooltip"]["()"] = defs["igBeginTooltip"][1] defs["igBullet"] = {} defs["igBullet"][1] = {} @@ -5657,9 +5927,11 @@ defs["igBullet"][1]["cimguiname"] = "igBullet" defs["igBullet"][1]["comment"] = "" defs["igBullet"][1]["defaults"] = {} defs["igBullet"][1]["funcname"] = "Bullet" +defs["igBullet"][1]["namespace"] = "ImGui" +defs["igBullet"][1]["ov_cimguiname"] = "igBullet" defs["igBullet"][1]["ret"] = "void" defs["igBullet"][1]["signature"] = "()" -defs["igBullet"][1]["stname"] = "ImGui" +defs["igBullet"][1]["stname"] = "" defs["igBullet"]["()"] = defs["igBullet"][1] defs["igBulletText"] = {} defs["igBulletText"][1] = {} @@ -5678,9 +5950,11 @@ defs["igBulletText"][1]["comment"] = "" defs["igBulletText"][1]["defaults"] = {} defs["igBulletText"][1]["funcname"] = "BulletText" defs["igBulletText"][1]["isvararg"] = "...)" +defs["igBulletText"][1]["namespace"] = "ImGui" +defs["igBulletText"][1]["ov_cimguiname"] = "igBulletText" defs["igBulletText"][1]["ret"] = "void" defs["igBulletText"][1]["signature"] = "(const char*,...)" -defs["igBulletText"][1]["stname"] = "ImGui" +defs["igBulletText"][1]["stname"] = "" defs["igBulletText"]["(const char*,...)"] = defs["igBulletText"][1] defs["igBulletTextV"] = {} defs["igBulletTextV"][1] = {} @@ -5698,9 +5972,11 @@ defs["igBulletTextV"][1]["cimguiname"] = "igBulletTextV" defs["igBulletTextV"][1]["comment"] = "" defs["igBulletTextV"][1]["defaults"] = {} defs["igBulletTextV"][1]["funcname"] = "BulletTextV" +defs["igBulletTextV"][1]["namespace"] = "ImGui" +defs["igBulletTextV"][1]["ov_cimguiname"] = "igBulletTextV" defs["igBulletTextV"][1]["ret"] = "void" defs["igBulletTextV"][1]["signature"] = "(const char*,va_list)" -defs["igBulletTextV"][1]["stname"] = "ImGui" +defs["igBulletTextV"][1]["stname"] = "" defs["igBulletTextV"]["(const char*,va_list)"] = defs["igBulletTextV"][1] defs["igButton"] = {} defs["igButton"][1] = {} @@ -5719,9 +5995,11 @@ defs["igButton"][1]["comment"] = "" defs["igButton"][1]["defaults"] = {} defs["igButton"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igButton"][1]["funcname"] = "Button" +defs["igButton"][1]["namespace"] = "ImGui" +defs["igButton"][1]["ov_cimguiname"] = "igButton" defs["igButton"][1]["ret"] = "bool" defs["igButton"][1]["signature"] = "(const char*,const ImVec2)" -defs["igButton"][1]["stname"] = "ImGui" +defs["igButton"][1]["stname"] = "" defs["igButton"]["(const char*,const ImVec2)"] = defs["igButton"][1] defs["igCalcItemWidth"] = {} defs["igCalcItemWidth"][1] = {} @@ -5733,9 +6011,11 @@ defs["igCalcItemWidth"][1]["cimguiname"] = "igCalcItemWidth" defs["igCalcItemWidth"][1]["comment"] = "" defs["igCalcItemWidth"][1]["defaults"] = {} defs["igCalcItemWidth"][1]["funcname"] = "CalcItemWidth" +defs["igCalcItemWidth"][1]["namespace"] = "ImGui" +defs["igCalcItemWidth"][1]["ov_cimguiname"] = "igCalcItemWidth" defs["igCalcItemWidth"][1]["ret"] = "float" defs["igCalcItemWidth"][1]["signature"] = "()" -defs["igCalcItemWidth"][1]["stname"] = "ImGui" +defs["igCalcItemWidth"][1]["stname"] = "" defs["igCalcItemWidth"]["()"] = defs["igCalcItemWidth"][1] defs["igCalcListClipping"] = {} defs["igCalcListClipping"][1] = {} @@ -5759,9 +6039,11 @@ defs["igCalcListClipping"][1]["cimguiname"] = "igCalcListClipping" defs["igCalcListClipping"][1]["comment"] = "" defs["igCalcListClipping"][1]["defaults"] = {} defs["igCalcListClipping"][1]["funcname"] = "CalcListClipping" +defs["igCalcListClipping"][1]["namespace"] = "ImGui" +defs["igCalcListClipping"][1]["ov_cimguiname"] = "igCalcListClipping" defs["igCalcListClipping"][1]["ret"] = "void" defs["igCalcListClipping"][1]["signature"] = "(int,float,int*,int*)" -defs["igCalcListClipping"][1]["stname"] = "ImGui" +defs["igCalcListClipping"][1]["stname"] = "" defs["igCalcListClipping"]["(int,float,int*,int*)"] = defs["igCalcListClipping"][1] defs["igCalcTextSize"] = {} defs["igCalcTextSize"][1] = {} @@ -5779,18 +6061,20 @@ defs["igCalcTextSize"][1]["argsT"][3]["type"] = "bool" defs["igCalcTextSize"][1]["argsT"][4] = {} defs["igCalcTextSize"][1]["argsT"][4]["name"] = "wrap_width" defs["igCalcTextSize"][1]["argsT"][4]["type"] = "float" -defs["igCalcTextSize"][1]["argsoriginal"] = "(const char* text,const char* text_end=((void *)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)" +defs["igCalcTextSize"][1]["argsoriginal"] = "(const char* text,const char* text_end=((void*)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)" defs["igCalcTextSize"][1]["call_args"] = "(text,text_end,hide_text_after_double_hash,wrap_width)" defs["igCalcTextSize"][1]["cimguiname"] = "igCalcTextSize" defs["igCalcTextSize"][1]["comment"] = "" defs["igCalcTextSize"][1]["defaults"] = {} defs["igCalcTextSize"][1]["defaults"]["hide_text_after_double_hash"] = "false" -defs["igCalcTextSize"][1]["defaults"]["text_end"] = "((void *)0)" +defs["igCalcTextSize"][1]["defaults"]["text_end"] = "((void*)0)" defs["igCalcTextSize"][1]["defaults"]["wrap_width"] = "-1.0f" defs["igCalcTextSize"][1]["funcname"] = "CalcTextSize" +defs["igCalcTextSize"][1]["namespace"] = "ImGui" +defs["igCalcTextSize"][1]["ov_cimguiname"] = "igCalcTextSize" defs["igCalcTextSize"][1]["ret"] = "ImVec2" defs["igCalcTextSize"][1]["signature"] = "(const char*,const char*,bool,float)" -defs["igCalcTextSize"][1]["stname"] = "ImGui" +defs["igCalcTextSize"][1]["stname"] = "" defs["igCalcTextSize"][2] = {} defs["igCalcTextSize"][2]["args"] = "(ImVec2 *pOut,const char* text,const char* text_end,bool hide_text_after_double_hash,float wrap_width)" defs["igCalcTextSize"][2]["argsT"] = {} @@ -5809,17 +6093,18 @@ defs["igCalcTextSize"][2]["argsT"][4]["type"] = "bool" defs["igCalcTextSize"][2]["argsT"][5] = {} defs["igCalcTextSize"][2]["argsT"][5]["name"] = "wrap_width" defs["igCalcTextSize"][2]["argsT"][5]["type"] = "float" -defs["igCalcTextSize"][2]["argsoriginal"] = "(const char* text,const char* text_end=((void *)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)" +defs["igCalcTextSize"][2]["argsoriginal"] = "(const char* text,const char* text_end=((void*)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)" defs["igCalcTextSize"][2]["call_args"] = "(text,text_end,hide_text_after_double_hash,wrap_width)" defs["igCalcTextSize"][2]["cimguiname"] = "igCalcTextSize" defs["igCalcTextSize"][2]["comment"] = "" defs["igCalcTextSize"][2]["defaults"] = defs["igCalcTextSize"][1]["defaults"] defs["igCalcTextSize"][2]["funcname"] = "CalcTextSize" +defs["igCalcTextSize"][2]["namespace"] = "ImGui" defs["igCalcTextSize"][2]["nonUDT"] = 1 defs["igCalcTextSize"][2]["ov_cimguiname"] = "igCalcTextSize_nonUDT" defs["igCalcTextSize"][2]["ret"] = "void" defs["igCalcTextSize"][2]["signature"] = "(const char*,const char*,bool,float)" -defs["igCalcTextSize"][2]["stname"] = "ImGui" +defs["igCalcTextSize"][2]["stname"] = "" defs["igCalcTextSize"][3] = {} defs["igCalcTextSize"][3]["args"] = "(const char* text,const char* text_end,bool hide_text_after_double_hash,float wrap_width)" defs["igCalcTextSize"][3]["argsT"] = {} @@ -5835,18 +6120,19 @@ defs["igCalcTextSize"][3]["argsT"][3]["type"] = "bool" defs["igCalcTextSize"][3]["argsT"][4] = {} defs["igCalcTextSize"][3]["argsT"][4]["name"] = "wrap_width" defs["igCalcTextSize"][3]["argsT"][4]["type"] = "float" -defs["igCalcTextSize"][3]["argsoriginal"] = "(const char* text,const char* text_end=((void *)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)" +defs["igCalcTextSize"][3]["argsoriginal"] = "(const char* text,const char* text_end=((void*)0),bool hide_text_after_double_hash=false,float wrap_width=-1.0f)" defs["igCalcTextSize"][3]["call_args"] = "(text,text_end,hide_text_after_double_hash,wrap_width)" defs["igCalcTextSize"][3]["cimguiname"] = "igCalcTextSize" defs["igCalcTextSize"][3]["comment"] = "" defs["igCalcTextSize"][3]["defaults"] = defs["igCalcTextSize"][1]["defaults"] defs["igCalcTextSize"][3]["funcname"] = "CalcTextSize" +defs["igCalcTextSize"][3]["namespace"] = "ImGui" defs["igCalcTextSize"][3]["nonUDT"] = 2 defs["igCalcTextSize"][3]["ov_cimguiname"] = "igCalcTextSize_nonUDT2" defs["igCalcTextSize"][3]["ret"] = "ImVec2_Simple" defs["igCalcTextSize"][3]["retorig"] = "ImVec2" defs["igCalcTextSize"][3]["signature"] = "(const char*,const char*,bool,float)" -defs["igCalcTextSize"][3]["stname"] = "ImGui" +defs["igCalcTextSize"][3]["stname"] = "" defs["igCalcTextSize"]["(const char*,const char*,bool,float)"] = defs["igCalcTextSize"][1] defs["igCalcTextSize"]["(const char*,const char*,bool,float)nonUDT"] = defs["igCalcTextSize"][2] defs["igCalcTextSize"]["(const char*,const char*,bool,float)nonUDT2"] = defs["igCalcTextSize"][3] @@ -5864,9 +6150,11 @@ defs["igCaptureKeyboardFromApp"][1]["comment"] = "" defs["igCaptureKeyboardFromApp"][1]["defaults"] = {} defs["igCaptureKeyboardFromApp"][1]["defaults"]["want_capture_keyboard_value"] = "true" defs["igCaptureKeyboardFromApp"][1]["funcname"] = "CaptureKeyboardFromApp" +defs["igCaptureKeyboardFromApp"][1]["namespace"] = "ImGui" +defs["igCaptureKeyboardFromApp"][1]["ov_cimguiname"] = "igCaptureKeyboardFromApp" defs["igCaptureKeyboardFromApp"][1]["ret"] = "void" defs["igCaptureKeyboardFromApp"][1]["signature"] = "(bool)" -defs["igCaptureKeyboardFromApp"][1]["stname"] = "ImGui" +defs["igCaptureKeyboardFromApp"][1]["stname"] = "" defs["igCaptureKeyboardFromApp"]["(bool)"] = defs["igCaptureKeyboardFromApp"][1] defs["igCaptureMouseFromApp"] = {} defs["igCaptureMouseFromApp"][1] = {} @@ -5882,9 +6170,11 @@ defs["igCaptureMouseFromApp"][1]["comment"] = "" defs["igCaptureMouseFromApp"][1]["defaults"] = {} defs["igCaptureMouseFromApp"][1]["defaults"]["want_capture_mouse_value"] = "true" defs["igCaptureMouseFromApp"][1]["funcname"] = "CaptureMouseFromApp" +defs["igCaptureMouseFromApp"][1]["namespace"] = "ImGui" +defs["igCaptureMouseFromApp"][1]["ov_cimguiname"] = "igCaptureMouseFromApp" defs["igCaptureMouseFromApp"][1]["ret"] = "void" defs["igCaptureMouseFromApp"][1]["signature"] = "(bool)" -defs["igCaptureMouseFromApp"][1]["stname"] = "ImGui" +defs["igCaptureMouseFromApp"][1]["stname"] = "" defs["igCaptureMouseFromApp"]["(bool)"] = defs["igCaptureMouseFromApp"][1] defs["igCheckbox"] = {} defs["igCheckbox"][1] = {} @@ -5902,9 +6192,11 @@ defs["igCheckbox"][1]["cimguiname"] = "igCheckbox" defs["igCheckbox"][1]["comment"] = "" defs["igCheckbox"][1]["defaults"] = {} defs["igCheckbox"][1]["funcname"] = "Checkbox" +defs["igCheckbox"][1]["namespace"] = "ImGui" +defs["igCheckbox"][1]["ov_cimguiname"] = "igCheckbox" defs["igCheckbox"][1]["ret"] = "bool" defs["igCheckbox"][1]["signature"] = "(const char*,bool*)" -defs["igCheckbox"][1]["stname"] = "ImGui" +defs["igCheckbox"][1]["stname"] = "" defs["igCheckbox"]["(const char*,bool*)"] = defs["igCheckbox"][1] defs["igCheckboxFlags"] = {} defs["igCheckboxFlags"][1] = {} @@ -5925,9 +6217,11 @@ defs["igCheckboxFlags"][1]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][1]["comment"] = "" defs["igCheckboxFlags"][1]["defaults"] = {} defs["igCheckboxFlags"][1]["funcname"] = "CheckboxFlags" +defs["igCheckboxFlags"][1]["namespace"] = "ImGui" +defs["igCheckboxFlags"][1]["ov_cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][1]["ret"] = "bool" defs["igCheckboxFlags"][1]["signature"] = "(const char*,unsigned int*,unsigned int)" -defs["igCheckboxFlags"][1]["stname"] = "ImGui" +defs["igCheckboxFlags"][1]["stname"] = "" defs["igCheckboxFlags"]["(const char*,unsigned int*,unsigned int)"] = defs["igCheckboxFlags"][1] defs["igCloseCurrentPopup"] = {} defs["igCloseCurrentPopup"][1] = {} @@ -5939,9 +6233,11 @@ defs["igCloseCurrentPopup"][1]["cimguiname"] = "igCloseCurrentPopup" defs["igCloseCurrentPopup"][1]["comment"] = "" defs["igCloseCurrentPopup"][1]["defaults"] = {} defs["igCloseCurrentPopup"][1]["funcname"] = "CloseCurrentPopup" +defs["igCloseCurrentPopup"][1]["namespace"] = "ImGui" +defs["igCloseCurrentPopup"][1]["ov_cimguiname"] = "igCloseCurrentPopup" defs["igCloseCurrentPopup"][1]["ret"] = "void" defs["igCloseCurrentPopup"][1]["signature"] = "()" -defs["igCloseCurrentPopup"][1]["stname"] = "ImGui" +defs["igCloseCurrentPopup"][1]["stname"] = "" defs["igCloseCurrentPopup"]["()"] = defs["igCloseCurrentPopup"][1] defs["igCollapsingHeader"] = {} defs["igCollapsingHeader"][1] = {} @@ -5960,10 +6256,11 @@ defs["igCollapsingHeader"][1]["comment"] = "" defs["igCollapsingHeader"][1]["defaults"] = {} defs["igCollapsingHeader"][1]["defaults"]["flags"] = "0" defs["igCollapsingHeader"][1]["funcname"] = "CollapsingHeader" +defs["igCollapsingHeader"][1]["namespace"] = "ImGui" defs["igCollapsingHeader"][1]["ov_cimguiname"] = "igCollapsingHeader" defs["igCollapsingHeader"][1]["ret"] = "bool" defs["igCollapsingHeader"][1]["signature"] = "(const char*,ImGuiTreeNodeFlags)" -defs["igCollapsingHeader"][1]["stname"] = "ImGui" +defs["igCollapsingHeader"][1]["stname"] = "" defs["igCollapsingHeader"][2] = {} defs["igCollapsingHeader"][2]["args"] = "(const char* label,bool* p_open,ImGuiTreeNodeFlags flags)" defs["igCollapsingHeader"][2]["argsT"] = {} @@ -5983,10 +6280,11 @@ defs["igCollapsingHeader"][2]["comment"] = "" defs["igCollapsingHeader"][2]["defaults"] = {} defs["igCollapsingHeader"][2]["defaults"]["flags"] = "0" defs["igCollapsingHeader"][2]["funcname"] = "CollapsingHeader" +defs["igCollapsingHeader"][2]["namespace"] = "ImGui" defs["igCollapsingHeader"][2]["ov_cimguiname"] = "igCollapsingHeaderBoolPtr" defs["igCollapsingHeader"][2]["ret"] = "bool" defs["igCollapsingHeader"][2]["signature"] = "(const char*,bool*,ImGuiTreeNodeFlags)" -defs["igCollapsingHeader"][2]["stname"] = "ImGui" +defs["igCollapsingHeader"][2]["stname"] = "" defs["igCollapsingHeader"]["(const char*,ImGuiTreeNodeFlags)"] = defs["igCollapsingHeader"][1] defs["igCollapsingHeader"]["(const char*,bool*,ImGuiTreeNodeFlags)"] = defs["igCollapsingHeader"][2] defs["igColorButton"] = {} @@ -6013,9 +6311,11 @@ defs["igColorButton"][1]["defaults"] = {} defs["igColorButton"][1]["defaults"]["flags"] = "0" defs["igColorButton"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igColorButton"][1]["funcname"] = "ColorButton" +defs["igColorButton"][1]["namespace"] = "ImGui" +defs["igColorButton"][1]["ov_cimguiname"] = "igColorButton" defs["igColorButton"][1]["ret"] = "bool" defs["igColorButton"][1]["signature"] = "(const char*,const ImVec4,ImGuiColorEditFlags,ImVec2)" -defs["igColorButton"][1]["stname"] = "ImGui" +defs["igColorButton"][1]["stname"] = "" defs["igColorButton"]["(const char*,const ImVec4,ImGuiColorEditFlags,ImVec2)"] = defs["igColorButton"][1] defs["igColorConvertFloat4ToU32"] = {} defs["igColorConvertFloat4ToU32"][1] = {} @@ -6030,9 +6330,11 @@ defs["igColorConvertFloat4ToU32"][1]["cimguiname"] = "igColorConvertFloat4ToU32" defs["igColorConvertFloat4ToU32"][1]["comment"] = "" defs["igColorConvertFloat4ToU32"][1]["defaults"] = {} defs["igColorConvertFloat4ToU32"][1]["funcname"] = "ColorConvertFloat4ToU32" +defs["igColorConvertFloat4ToU32"][1]["namespace"] = "ImGui" +defs["igColorConvertFloat4ToU32"][1]["ov_cimguiname"] = "igColorConvertFloat4ToU32" defs["igColorConvertFloat4ToU32"][1]["ret"] = "ImU32" defs["igColorConvertFloat4ToU32"][1]["signature"] = "(const ImVec4)" -defs["igColorConvertFloat4ToU32"][1]["stname"] = "ImGui" +defs["igColorConvertFloat4ToU32"][1]["stname"] = "" defs["igColorConvertFloat4ToU32"]["(const ImVec4)"] = defs["igColorConvertFloat4ToU32"][1] defs["igColorConvertHSVtoRGB"] = {} defs["igColorConvertHSVtoRGB"][1] = {} @@ -6063,9 +6365,11 @@ defs["igColorConvertHSVtoRGB"][1]["comment"] = "" defs["igColorConvertHSVtoRGB"][1]["defaults"] = {} defs["igColorConvertHSVtoRGB"][1]["funcname"] = "ColorConvertHSVtoRGB" defs["igColorConvertHSVtoRGB"][1]["manual"] = true +defs["igColorConvertHSVtoRGB"][1]["namespace"] = "ImGui" +defs["igColorConvertHSVtoRGB"][1]["ov_cimguiname"] = "igColorConvertHSVtoRGB" defs["igColorConvertHSVtoRGB"][1]["ret"] = "void" defs["igColorConvertHSVtoRGB"][1]["signature"] = "(float,float,float,float,float,float)" -defs["igColorConvertHSVtoRGB"][1]["stname"] = "ImGui" +defs["igColorConvertHSVtoRGB"][1]["stname"] = "" defs["igColorConvertHSVtoRGB"]["(float,float,float,float,float,float)"] = defs["igColorConvertHSVtoRGB"][1] defs["igColorConvertRGBtoHSV"] = {} defs["igColorConvertRGBtoHSV"][1] = {} @@ -6096,9 +6400,11 @@ defs["igColorConvertRGBtoHSV"][1]["comment"] = "" defs["igColorConvertRGBtoHSV"][1]["defaults"] = {} defs["igColorConvertRGBtoHSV"][1]["funcname"] = "ColorConvertRGBtoHSV" defs["igColorConvertRGBtoHSV"][1]["manual"] = true +defs["igColorConvertRGBtoHSV"][1]["namespace"] = "ImGui" +defs["igColorConvertRGBtoHSV"][1]["ov_cimguiname"] = "igColorConvertRGBtoHSV" defs["igColorConvertRGBtoHSV"][1]["ret"] = "void" defs["igColorConvertRGBtoHSV"][1]["signature"] = "(float,float,float,float,float,float)" -defs["igColorConvertRGBtoHSV"][1]["stname"] = "ImGui" +defs["igColorConvertRGBtoHSV"][1]["stname"] = "" defs["igColorConvertRGBtoHSV"]["(float,float,float,float,float,float)"] = defs["igColorConvertRGBtoHSV"][1] defs["igColorConvertU32ToFloat4"] = {} defs["igColorConvertU32ToFloat4"][1] = {} @@ -6113,9 +6419,11 @@ defs["igColorConvertU32ToFloat4"][1]["cimguiname"] = "igColorConvertU32ToFloat4" defs["igColorConvertU32ToFloat4"][1]["comment"] = "" defs["igColorConvertU32ToFloat4"][1]["defaults"] = {} defs["igColorConvertU32ToFloat4"][1]["funcname"] = "ColorConvertU32ToFloat4" +defs["igColorConvertU32ToFloat4"][1]["namespace"] = "ImGui" +defs["igColorConvertU32ToFloat4"][1]["ov_cimguiname"] = "igColorConvertU32ToFloat4" defs["igColorConvertU32ToFloat4"][1]["ret"] = "ImVec4" defs["igColorConvertU32ToFloat4"][1]["signature"] = "(ImU32)" -defs["igColorConvertU32ToFloat4"][1]["stname"] = "ImGui" +defs["igColorConvertU32ToFloat4"][1]["stname"] = "" defs["igColorConvertU32ToFloat4"][2] = {} defs["igColorConvertU32ToFloat4"][2]["args"] = "(ImVec4 *pOut,ImU32 in)" defs["igColorConvertU32ToFloat4"][2]["argsT"] = {} @@ -6131,11 +6439,12 @@ defs["igColorConvertU32ToFloat4"][2]["cimguiname"] = "igColorConvertU32ToFloat4" defs["igColorConvertU32ToFloat4"][2]["comment"] = "" defs["igColorConvertU32ToFloat4"][2]["defaults"] = defs["igColorConvertU32ToFloat4"][1]["defaults"] defs["igColorConvertU32ToFloat4"][2]["funcname"] = "ColorConvertU32ToFloat4" +defs["igColorConvertU32ToFloat4"][2]["namespace"] = "ImGui" defs["igColorConvertU32ToFloat4"][2]["nonUDT"] = 1 defs["igColorConvertU32ToFloat4"][2]["ov_cimguiname"] = "igColorConvertU32ToFloat4_nonUDT" defs["igColorConvertU32ToFloat4"][2]["ret"] = "void" defs["igColorConvertU32ToFloat4"][2]["signature"] = "(ImU32)" -defs["igColorConvertU32ToFloat4"][2]["stname"] = "ImGui" +defs["igColorConvertU32ToFloat4"][2]["stname"] = "" defs["igColorConvertU32ToFloat4"][3] = {} defs["igColorConvertU32ToFloat4"][3]["args"] = "(ImU32 in)" defs["igColorConvertU32ToFloat4"][3]["argsT"] = {} @@ -6148,12 +6457,13 @@ defs["igColorConvertU32ToFloat4"][3]["cimguiname"] = "igColorConvertU32ToFloat4" defs["igColorConvertU32ToFloat4"][3]["comment"] = "" defs["igColorConvertU32ToFloat4"][3]["defaults"] = defs["igColorConvertU32ToFloat4"][1]["defaults"] defs["igColorConvertU32ToFloat4"][3]["funcname"] = "ColorConvertU32ToFloat4" +defs["igColorConvertU32ToFloat4"][3]["namespace"] = "ImGui" defs["igColorConvertU32ToFloat4"][3]["nonUDT"] = 2 defs["igColorConvertU32ToFloat4"][3]["ov_cimguiname"] = "igColorConvertU32ToFloat4_nonUDT2" defs["igColorConvertU32ToFloat4"][3]["ret"] = "ImVec4_Simple" defs["igColorConvertU32ToFloat4"][3]["retorig"] = "ImVec4" defs["igColorConvertU32ToFloat4"][3]["signature"] = "(ImU32)" -defs["igColorConvertU32ToFloat4"][3]["stname"] = "ImGui" +defs["igColorConvertU32ToFloat4"][3]["stname"] = "" defs["igColorConvertU32ToFloat4"]["(ImU32)"] = defs["igColorConvertU32ToFloat4"][1] defs["igColorConvertU32ToFloat4"]["(ImU32)nonUDT"] = defs["igColorConvertU32ToFloat4"][2] defs["igColorConvertU32ToFloat4"]["(ImU32)nonUDT2"] = defs["igColorConvertU32ToFloat4"][3] @@ -6177,9 +6487,11 @@ defs["igColorEdit3"][1]["comment"] = "" defs["igColorEdit3"][1]["defaults"] = {} defs["igColorEdit3"][1]["defaults"]["flags"] = "0" defs["igColorEdit3"][1]["funcname"] = "ColorEdit3" +defs["igColorEdit3"][1]["namespace"] = "ImGui" +defs["igColorEdit3"][1]["ov_cimguiname"] = "igColorEdit3" defs["igColorEdit3"][1]["ret"] = "bool" defs["igColorEdit3"][1]["signature"] = "(const char*,float[3],ImGuiColorEditFlags)" -defs["igColorEdit3"][1]["stname"] = "ImGui" +defs["igColorEdit3"][1]["stname"] = "" defs["igColorEdit3"]["(const char*,float[3],ImGuiColorEditFlags)"] = defs["igColorEdit3"][1] defs["igColorEdit4"] = {} defs["igColorEdit4"][1] = {} @@ -6201,9 +6513,11 @@ defs["igColorEdit4"][1]["comment"] = "" defs["igColorEdit4"][1]["defaults"] = {} defs["igColorEdit4"][1]["defaults"]["flags"] = "0" defs["igColorEdit4"][1]["funcname"] = "ColorEdit4" +defs["igColorEdit4"][1]["namespace"] = "ImGui" +defs["igColorEdit4"][1]["ov_cimguiname"] = "igColorEdit4" defs["igColorEdit4"][1]["ret"] = "bool" defs["igColorEdit4"][1]["signature"] = "(const char*,float[4],ImGuiColorEditFlags)" -defs["igColorEdit4"][1]["stname"] = "ImGui" +defs["igColorEdit4"][1]["stname"] = "" defs["igColorEdit4"]["(const char*,float[4],ImGuiColorEditFlags)"] = defs["igColorEdit4"][1] defs["igColorPicker3"] = {} defs["igColorPicker3"][1] = {} @@ -6225,9 +6539,11 @@ defs["igColorPicker3"][1]["comment"] = "" defs["igColorPicker3"][1]["defaults"] = {} defs["igColorPicker3"][1]["defaults"]["flags"] = "0" defs["igColorPicker3"][1]["funcname"] = "ColorPicker3" +defs["igColorPicker3"][1]["namespace"] = "ImGui" +defs["igColorPicker3"][1]["ov_cimguiname"] = "igColorPicker3" defs["igColorPicker3"][1]["ret"] = "bool" defs["igColorPicker3"][1]["signature"] = "(const char*,float[3],ImGuiColorEditFlags)" -defs["igColorPicker3"][1]["stname"] = "ImGui" +defs["igColorPicker3"][1]["stname"] = "" defs["igColorPicker3"]["(const char*,float[3],ImGuiColorEditFlags)"] = defs["igColorPicker3"][1] defs["igColorPicker4"] = {} defs["igColorPicker4"][1] = {} @@ -6245,17 +6561,19 @@ defs["igColorPicker4"][1]["argsT"][3]["type"] = "ImGuiColorEditFlags" defs["igColorPicker4"][1]["argsT"][4] = {} defs["igColorPicker4"][1]["argsT"][4]["name"] = "ref_col" defs["igColorPicker4"][1]["argsT"][4]["type"] = "const float*" -defs["igColorPicker4"][1]["argsoriginal"] = "(const char* label,float col[4],ImGuiColorEditFlags flags=0,const float* ref_col=((void *)0))" +defs["igColorPicker4"][1]["argsoriginal"] = "(const char* label,float col[4],ImGuiColorEditFlags flags=0,const float* ref_col=((void*)0))" defs["igColorPicker4"][1]["call_args"] = "(label,col,flags,ref_col)" defs["igColorPicker4"][1]["cimguiname"] = "igColorPicker4" defs["igColorPicker4"][1]["comment"] = "" defs["igColorPicker4"][1]["defaults"] = {} defs["igColorPicker4"][1]["defaults"]["flags"] = "0" -defs["igColorPicker4"][1]["defaults"]["ref_col"] = "((void *)0)" +defs["igColorPicker4"][1]["defaults"]["ref_col"] = "((void*)0)" defs["igColorPicker4"][1]["funcname"] = "ColorPicker4" +defs["igColorPicker4"][1]["namespace"] = "ImGui" +defs["igColorPicker4"][1]["ov_cimguiname"] = "igColorPicker4" defs["igColorPicker4"][1]["ret"] = "bool" defs["igColorPicker4"][1]["signature"] = "(const char*,float[4],ImGuiColorEditFlags,const float*)" -defs["igColorPicker4"][1]["stname"] = "ImGui" +defs["igColorPicker4"][1]["stname"] = "" defs["igColorPicker4"]["(const char*,float[4],ImGuiColorEditFlags,const float*)"] = defs["igColorPicker4"][1] defs["igColumns"] = {} defs["igColumns"][1] = {} @@ -6270,18 +6588,20 @@ defs["igColumns"][1]["argsT"][2]["type"] = "const char*" defs["igColumns"][1]["argsT"][3] = {} defs["igColumns"][1]["argsT"][3]["name"] = "border" defs["igColumns"][1]["argsT"][3]["type"] = "bool" -defs["igColumns"][1]["argsoriginal"] = "(int count=1,const char* id=((void *)0),bool border=true)" +defs["igColumns"][1]["argsoriginal"] = "(int count=1,const char* id=((void*)0),bool border=true)" defs["igColumns"][1]["call_args"] = "(count,id,border)" defs["igColumns"][1]["cimguiname"] = "igColumns" defs["igColumns"][1]["comment"] = "" defs["igColumns"][1]["defaults"] = {} defs["igColumns"][1]["defaults"]["border"] = "true" defs["igColumns"][1]["defaults"]["count"] = "1" -defs["igColumns"][1]["defaults"]["id"] = "((void *)0)" +defs["igColumns"][1]["defaults"]["id"] = "((void*)0)" defs["igColumns"][1]["funcname"] = "Columns" +defs["igColumns"][1]["namespace"] = "ImGui" +defs["igColumns"][1]["ov_cimguiname"] = "igColumns" defs["igColumns"][1]["ret"] = "void" defs["igColumns"][1]["signature"] = "(int,const char*,bool)" -defs["igColumns"][1]["stname"] = "ImGui" +defs["igColumns"][1]["stname"] = "" defs["igColumns"]["(int,const char*,bool)"] = defs["igColumns"][1] defs["igCombo"] = {} defs["igCombo"][1] = {} @@ -6309,10 +6629,11 @@ defs["igCombo"][1]["comment"] = "" defs["igCombo"][1]["defaults"] = {} defs["igCombo"][1]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][1]["funcname"] = "Combo" +defs["igCombo"][1]["namespace"] = "ImGui" defs["igCombo"][1]["ov_cimguiname"] = "igCombo" defs["igCombo"][1]["ret"] = "bool" defs["igCombo"][1]["signature"] = "(const char*,int*,const char* const[],int,int)" -defs["igCombo"][1]["stname"] = "ImGui" +defs["igCombo"][1]["stname"] = "" defs["igCombo"][2] = {} defs["igCombo"][2]["args"] = "(const char* label,int* current_item,const char* items_separated_by_zeros,int popup_max_height_in_items)" defs["igCombo"][2]["argsT"] = {} @@ -6335,10 +6656,11 @@ defs["igCombo"][2]["comment"] = "" defs["igCombo"][2]["defaults"] = {} defs["igCombo"][2]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][2]["funcname"] = "Combo" +defs["igCombo"][2]["namespace"] = "ImGui" defs["igCombo"][2]["ov_cimguiname"] = "igComboStr" defs["igCombo"][2]["ret"] = "bool" defs["igCombo"][2]["signature"] = "(const char*,int*,const char*,int)" -defs["igCombo"][2]["stname"] = "ImGui" +defs["igCombo"][2]["stname"] = "" defs["igCombo"][3] = {} defs["igCombo"][3]["args"] = "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items)" defs["igCombo"][3]["argsT"] = {} @@ -6369,10 +6691,11 @@ defs["igCombo"][3]["comment"] = "" defs["igCombo"][3]["defaults"] = {} defs["igCombo"][3]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][3]["funcname"] = "Combo" +defs["igCombo"][3]["namespace"] = "ImGui" defs["igCombo"][3]["ov_cimguiname"] = "igComboFnPtr" defs["igCombo"][3]["ret"] = "bool" defs["igCombo"][3]["signature"] = "(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)" -defs["igCombo"][3]["stname"] = "ImGui" +defs["igCombo"][3]["stname"] = "" defs["igCombo"]["(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)"] = defs["igCombo"][3] defs["igCombo"]["(const char*,int*,const char* const[],int,int)"] = defs["igCombo"][1] defs["igCombo"]["(const char*,int*,const char*,int)"] = defs["igCombo"][2] @@ -6383,16 +6706,18 @@ defs["igCreateContext"][1]["argsT"] = {} defs["igCreateContext"][1]["argsT"][1] = {} defs["igCreateContext"][1]["argsT"][1]["name"] = "shared_font_atlas" defs["igCreateContext"][1]["argsT"][1]["type"] = "ImFontAtlas*" -defs["igCreateContext"][1]["argsoriginal"] = "(ImFontAtlas* shared_font_atlas=((void *)0))" +defs["igCreateContext"][1]["argsoriginal"] = "(ImFontAtlas* shared_font_atlas=((void*)0))" defs["igCreateContext"][1]["call_args"] = "(shared_font_atlas)" defs["igCreateContext"][1]["cimguiname"] = "igCreateContext" defs["igCreateContext"][1]["comment"] = "" defs["igCreateContext"][1]["defaults"] = {} -defs["igCreateContext"][1]["defaults"]["shared_font_atlas"] = "((void *)0)" +defs["igCreateContext"][1]["defaults"]["shared_font_atlas"] = "((void*)0)" defs["igCreateContext"][1]["funcname"] = "CreateContext" +defs["igCreateContext"][1]["namespace"] = "ImGui" +defs["igCreateContext"][1]["ov_cimguiname"] = "igCreateContext" defs["igCreateContext"][1]["ret"] = "ImGuiContext*" defs["igCreateContext"][1]["signature"] = "(ImFontAtlas*)" -defs["igCreateContext"][1]["stname"] = "ImGui" +defs["igCreateContext"][1]["stname"] = "" defs["igCreateContext"]["(ImFontAtlas*)"] = defs["igCreateContext"][1] defs["igDebugCheckVersionAndDataLayout"] = {} defs["igDebugCheckVersionAndDataLayout"][1] = {} @@ -6422,9 +6747,11 @@ defs["igDebugCheckVersionAndDataLayout"][1]["cimguiname"] = "igDebugCheckVersion defs["igDebugCheckVersionAndDataLayout"][1]["comment"] = "" defs["igDebugCheckVersionAndDataLayout"][1]["defaults"] = {} defs["igDebugCheckVersionAndDataLayout"][1]["funcname"] = "DebugCheckVersionAndDataLayout" +defs["igDebugCheckVersionAndDataLayout"][1]["namespace"] = "ImGui" +defs["igDebugCheckVersionAndDataLayout"][1]["ov_cimguiname"] = "igDebugCheckVersionAndDataLayout" defs["igDebugCheckVersionAndDataLayout"][1]["ret"] = "bool" defs["igDebugCheckVersionAndDataLayout"][1]["signature"] = "(const char*,size_t,size_t,size_t,size_t,size_t)" -defs["igDebugCheckVersionAndDataLayout"][1]["stname"] = "ImGui" +defs["igDebugCheckVersionAndDataLayout"][1]["stname"] = "" defs["igDebugCheckVersionAndDataLayout"]["(const char*,size_t,size_t,size_t,size_t,size_t)"] = defs["igDebugCheckVersionAndDataLayout"][1] defs["igDestroyContext"] = {} defs["igDestroyContext"][1] = {} @@ -6433,16 +6760,18 @@ defs["igDestroyContext"][1]["argsT"] = {} defs["igDestroyContext"][1]["argsT"][1] = {} defs["igDestroyContext"][1]["argsT"][1]["name"] = "ctx" defs["igDestroyContext"][1]["argsT"][1]["type"] = "ImGuiContext*" -defs["igDestroyContext"][1]["argsoriginal"] = "(ImGuiContext* ctx=((void *)0))" +defs["igDestroyContext"][1]["argsoriginal"] = "(ImGuiContext* ctx=((void*)0))" defs["igDestroyContext"][1]["call_args"] = "(ctx)" defs["igDestroyContext"][1]["cimguiname"] = "igDestroyContext" defs["igDestroyContext"][1]["comment"] = "" defs["igDestroyContext"][1]["defaults"] = {} -defs["igDestroyContext"][1]["defaults"]["ctx"] = "((void *)0)" +defs["igDestroyContext"][1]["defaults"]["ctx"] = "((void*)0)" defs["igDestroyContext"][1]["funcname"] = "DestroyContext" +defs["igDestroyContext"][1]["namespace"] = "ImGui" +defs["igDestroyContext"][1]["ov_cimguiname"] = "igDestroyContext" defs["igDestroyContext"][1]["ret"] = "void" defs["igDestroyContext"][1]["signature"] = "(ImGuiContext*)" -defs["igDestroyContext"][1]["stname"] = "ImGui" +defs["igDestroyContext"][1]["stname"] = "" defs["igDestroyContext"]["(ImGuiContext*)"] = defs["igDestroyContext"][1] defs["igDragFloat"] = {} defs["igDragFloat"][1] = {} @@ -6480,9 +6809,11 @@ defs["igDragFloat"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat"][1]["funcname"] = "DragFloat" +defs["igDragFloat"][1]["namespace"] = "ImGui" +defs["igDragFloat"][1]["ov_cimguiname"] = "igDragFloat" defs["igDragFloat"][1]["ret"] = "bool" defs["igDragFloat"][1]["signature"] = "(const char*,float*,float,float,float,const char*,float)" -defs["igDragFloat"][1]["stname"] = "ImGui" +defs["igDragFloat"][1]["stname"] = "" defs["igDragFloat"]["(const char*,float*,float,float,float,const char*,float)"] = defs["igDragFloat"][1] defs["igDragFloat2"] = {} defs["igDragFloat2"][1] = {} @@ -6520,9 +6851,11 @@ defs["igDragFloat2"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat2"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat2"][1]["funcname"] = "DragFloat2" +defs["igDragFloat2"][1]["namespace"] = "ImGui" +defs["igDragFloat2"][1]["ov_cimguiname"] = "igDragFloat2" defs["igDragFloat2"][1]["ret"] = "bool" defs["igDragFloat2"][1]["signature"] = "(const char*,float[2],float,float,float,const char*,float)" -defs["igDragFloat2"][1]["stname"] = "ImGui" +defs["igDragFloat2"][1]["stname"] = "" defs["igDragFloat2"]["(const char*,float[2],float,float,float,const char*,float)"] = defs["igDragFloat2"][1] defs["igDragFloat3"] = {} defs["igDragFloat3"][1] = {} @@ -6560,9 +6893,11 @@ defs["igDragFloat3"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat3"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat3"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat3"][1]["funcname"] = "DragFloat3" +defs["igDragFloat3"][1]["namespace"] = "ImGui" +defs["igDragFloat3"][1]["ov_cimguiname"] = "igDragFloat3" defs["igDragFloat3"][1]["ret"] = "bool" defs["igDragFloat3"][1]["signature"] = "(const char*,float[3],float,float,float,const char*,float)" -defs["igDragFloat3"][1]["stname"] = "ImGui" +defs["igDragFloat3"][1]["stname"] = "" defs["igDragFloat3"]["(const char*,float[3],float,float,float,const char*,float)"] = defs["igDragFloat3"][1] defs["igDragFloat4"] = {} defs["igDragFloat4"][1] = {} @@ -6600,9 +6935,11 @@ defs["igDragFloat4"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat4"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat4"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat4"][1]["funcname"] = "DragFloat4" +defs["igDragFloat4"][1]["namespace"] = "ImGui" +defs["igDragFloat4"][1]["ov_cimguiname"] = "igDragFloat4" defs["igDragFloat4"][1]["ret"] = "bool" defs["igDragFloat4"][1]["signature"] = "(const char*,float[4],float,float,float,const char*,float)" -defs["igDragFloat4"][1]["stname"] = "ImGui" +defs["igDragFloat4"][1]["stname"] = "" defs["igDragFloat4"]["(const char*,float[4],float,float,float,const char*,float)"] = defs["igDragFloat4"][1] defs["igDragFloatRange2"] = {} defs["igDragFloatRange2"][1] = {} @@ -6635,21 +6972,23 @@ defs["igDragFloatRange2"][1]["argsT"][8]["type"] = "const char*" defs["igDragFloatRange2"][1]["argsT"][9] = {} defs["igDragFloatRange2"][1]["argsT"][9]["name"] = "power" defs["igDragFloatRange2"][1]["argsT"][9]["type"] = "float" -defs["igDragFloatRange2"][1]["argsoriginal"] = "(const char* label,float* v_current_min,float* v_current_max,float v_speed=1.0f,float v_min=0.0f,float v_max=0.0f,const char* format=\"%.3f\",const char* format_max=((void *)0),float power=1.0f)" +defs["igDragFloatRange2"][1]["argsoriginal"] = "(const char* label,float* v_current_min,float* v_current_max,float v_speed=1.0f,float v_min=0.0f,float v_max=0.0f,const char* format=\"%.3f\",const char* format_max=((void*)0),float power=1.0f)" defs["igDragFloatRange2"][1]["call_args"] = "(label,v_current_min,v_current_max,v_speed,v_min,v_max,format,format_max,power)" defs["igDragFloatRange2"][1]["cimguiname"] = "igDragFloatRange2" defs["igDragFloatRange2"][1]["comment"] = "" defs["igDragFloatRange2"][1]["defaults"] = {} defs["igDragFloatRange2"][1]["defaults"]["format"] = "\"%.3f\"" -defs["igDragFloatRange2"][1]["defaults"]["format_max"] = "((void *)0)" +defs["igDragFloatRange2"][1]["defaults"]["format_max"] = "((void*)0)" defs["igDragFloatRange2"][1]["defaults"]["power"] = "1.0f" defs["igDragFloatRange2"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloatRange2"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloatRange2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloatRange2"][1]["funcname"] = "DragFloatRange2" +defs["igDragFloatRange2"][1]["namespace"] = "ImGui" +defs["igDragFloatRange2"][1]["ov_cimguiname"] = "igDragFloatRange2" defs["igDragFloatRange2"][1]["ret"] = "bool" defs["igDragFloatRange2"][1]["signature"] = "(const char*,float*,float*,float,float,float,const char*,const char*,float)" -defs["igDragFloatRange2"][1]["stname"] = "ImGui" +defs["igDragFloatRange2"][1]["stname"] = "" defs["igDragFloatRange2"]["(const char*,float*,float*,float,float,float,const char*,const char*,float)"] = defs["igDragFloatRange2"][1] defs["igDragInt"] = {} defs["igDragInt"][1] = {} @@ -6683,9 +7022,11 @@ defs["igDragInt"][1]["defaults"]["v_max"] = "0" defs["igDragInt"][1]["defaults"]["v_min"] = "0" defs["igDragInt"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt"][1]["funcname"] = "DragInt" +defs["igDragInt"][1]["namespace"] = "ImGui" +defs["igDragInt"][1]["ov_cimguiname"] = "igDragInt" defs["igDragInt"][1]["ret"] = "bool" defs["igDragInt"][1]["signature"] = "(const char*,int*,float,int,int,const char*)" -defs["igDragInt"][1]["stname"] = "ImGui" +defs["igDragInt"][1]["stname"] = "" defs["igDragInt"]["(const char*,int*,float,int,int,const char*)"] = defs["igDragInt"][1] defs["igDragInt2"] = {} defs["igDragInt2"][1] = {} @@ -6719,9 +7060,11 @@ defs["igDragInt2"][1]["defaults"]["v_max"] = "0" defs["igDragInt2"][1]["defaults"]["v_min"] = "0" defs["igDragInt2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt2"][1]["funcname"] = "DragInt2" +defs["igDragInt2"][1]["namespace"] = "ImGui" +defs["igDragInt2"][1]["ov_cimguiname"] = "igDragInt2" defs["igDragInt2"][1]["ret"] = "bool" defs["igDragInt2"][1]["signature"] = "(const char*,int[2],float,int,int,const char*)" -defs["igDragInt2"][1]["stname"] = "ImGui" +defs["igDragInt2"][1]["stname"] = "" defs["igDragInt2"]["(const char*,int[2],float,int,int,const char*)"] = defs["igDragInt2"][1] defs["igDragInt3"] = {} defs["igDragInt3"][1] = {} @@ -6755,9 +7098,11 @@ defs["igDragInt3"][1]["defaults"]["v_max"] = "0" defs["igDragInt3"][1]["defaults"]["v_min"] = "0" defs["igDragInt3"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt3"][1]["funcname"] = "DragInt3" +defs["igDragInt3"][1]["namespace"] = "ImGui" +defs["igDragInt3"][1]["ov_cimguiname"] = "igDragInt3" defs["igDragInt3"][1]["ret"] = "bool" defs["igDragInt3"][1]["signature"] = "(const char*,int[3],float,int,int,const char*)" -defs["igDragInt3"][1]["stname"] = "ImGui" +defs["igDragInt3"][1]["stname"] = "" defs["igDragInt3"]["(const char*,int[3],float,int,int,const char*)"] = defs["igDragInt3"][1] defs["igDragInt4"] = {} defs["igDragInt4"][1] = {} @@ -6791,9 +7136,11 @@ defs["igDragInt4"][1]["defaults"]["v_max"] = "0" defs["igDragInt4"][1]["defaults"]["v_min"] = "0" defs["igDragInt4"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt4"][1]["funcname"] = "DragInt4" +defs["igDragInt4"][1]["namespace"] = "ImGui" +defs["igDragInt4"][1]["ov_cimguiname"] = "igDragInt4" defs["igDragInt4"][1]["ret"] = "bool" defs["igDragInt4"][1]["signature"] = "(const char*,int[4],float,int,int,const char*)" -defs["igDragInt4"][1]["stname"] = "ImGui" +defs["igDragInt4"][1]["stname"] = "" defs["igDragInt4"]["(const char*,int[4],float,int,int,const char*)"] = defs["igDragInt4"][1] defs["igDragIntRange2"] = {} defs["igDragIntRange2"][1] = {} @@ -6823,20 +7170,22 @@ defs["igDragIntRange2"][1]["argsT"][7]["type"] = "const char*" defs["igDragIntRange2"][1]["argsT"][8] = {} defs["igDragIntRange2"][1]["argsT"][8]["name"] = "format_max" defs["igDragIntRange2"][1]["argsT"][8]["type"] = "const char*" -defs["igDragIntRange2"][1]["argsoriginal"] = "(const char* label,int* v_current_min,int* v_current_max,float v_speed=1.0f,int v_min=0,int v_max=0,const char* format=\"%d\",const char* format_max=((void *)0))" +defs["igDragIntRange2"][1]["argsoriginal"] = "(const char* label,int* v_current_min,int* v_current_max,float v_speed=1.0f,int v_min=0,int v_max=0,const char* format=\"%d\",const char* format_max=((void*)0))" defs["igDragIntRange2"][1]["call_args"] = "(label,v_current_min,v_current_max,v_speed,v_min,v_max,format,format_max)" defs["igDragIntRange2"][1]["cimguiname"] = "igDragIntRange2" defs["igDragIntRange2"][1]["comment"] = "" defs["igDragIntRange2"][1]["defaults"] = {} defs["igDragIntRange2"][1]["defaults"]["format"] = "\"%d\"" -defs["igDragIntRange2"][1]["defaults"]["format_max"] = "((void *)0)" +defs["igDragIntRange2"][1]["defaults"]["format_max"] = "((void*)0)" defs["igDragIntRange2"][1]["defaults"]["v_max"] = "0" defs["igDragIntRange2"][1]["defaults"]["v_min"] = "0" defs["igDragIntRange2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragIntRange2"][1]["funcname"] = "DragIntRange2" +defs["igDragIntRange2"][1]["namespace"] = "ImGui" +defs["igDragIntRange2"][1]["ov_cimguiname"] = "igDragIntRange2" defs["igDragIntRange2"][1]["ret"] = "bool" defs["igDragIntRange2"][1]["signature"] = "(const char*,int*,int*,float,int,int,const char*,const char*)" -defs["igDragIntRange2"][1]["stname"] = "ImGui" +defs["igDragIntRange2"][1]["stname"] = "" defs["igDragIntRange2"]["(const char*,int*,int*,float,int,int,const char*,const char*)"] = defs["igDragIntRange2"][1] defs["igDragScalar"] = {} defs["igDragScalar"][1] = {} @@ -6866,19 +7215,21 @@ defs["igDragScalar"][1]["argsT"][7]["type"] = "const char*" defs["igDragScalar"][1]["argsT"][8] = {} defs["igDragScalar"][1]["argsT"][8]["name"] = "power" defs["igDragScalar"][1]["argsT"][8]["type"] = "float" -defs["igDragScalar"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,float v_speed,const void* v_min=((void *)0),const void* v_max=((void *)0),const char* format=((void *)0),float power=1.0f)" +defs["igDragScalar"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,float v_speed,const void* v_min=((void*)0),const void* v_max=((void*)0),const char* format=((void*)0),float power=1.0f)" defs["igDragScalar"][1]["call_args"] = "(label,data_type,v,v_speed,v_min,v_max,format,power)" defs["igDragScalar"][1]["cimguiname"] = "igDragScalar" defs["igDragScalar"][1]["comment"] = "" defs["igDragScalar"][1]["defaults"] = {} -defs["igDragScalar"][1]["defaults"]["format"] = "((void *)0)" +defs["igDragScalar"][1]["defaults"]["format"] = "((void*)0)" defs["igDragScalar"][1]["defaults"]["power"] = "1.0f" -defs["igDragScalar"][1]["defaults"]["v_max"] = "((void *)0)" -defs["igDragScalar"][1]["defaults"]["v_min"] = "((void *)0)" +defs["igDragScalar"][1]["defaults"]["v_max"] = "((void*)0)" +defs["igDragScalar"][1]["defaults"]["v_min"] = "((void*)0)" defs["igDragScalar"][1]["funcname"] = "DragScalar" +defs["igDragScalar"][1]["namespace"] = "ImGui" +defs["igDragScalar"][1]["ov_cimguiname"] = "igDragScalar" defs["igDragScalar"][1]["ret"] = "bool" defs["igDragScalar"][1]["signature"] = "(const char*,ImGuiDataType,void*,float,const void*,const void*,const char*,float)" -defs["igDragScalar"][1]["stname"] = "ImGui" +defs["igDragScalar"][1]["stname"] = "" defs["igDragScalar"]["(const char*,ImGuiDataType,void*,float,const void*,const void*,const char*,float)"] = defs["igDragScalar"][1] defs["igDragScalarN"] = {} defs["igDragScalarN"][1] = {} @@ -6911,19 +7262,21 @@ defs["igDragScalarN"][1]["argsT"][8]["type"] = "const char*" defs["igDragScalarN"][1]["argsT"][9] = {} defs["igDragScalarN"][1]["argsT"][9]["name"] = "power" defs["igDragScalarN"][1]["argsT"][9]["type"] = "float" -defs["igDragScalarN"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,int components,float v_speed,const void* v_min=((void *)0),const void* v_max=((void *)0),const char* format=((void *)0),float power=1.0f)" +defs["igDragScalarN"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,int components,float v_speed,const void* v_min=((void*)0),const void* v_max=((void*)0),const char* format=((void*)0),float power=1.0f)" defs["igDragScalarN"][1]["call_args"] = "(label,data_type,v,components,v_speed,v_min,v_max,format,power)" defs["igDragScalarN"][1]["cimguiname"] = "igDragScalarN" defs["igDragScalarN"][1]["comment"] = "" defs["igDragScalarN"][1]["defaults"] = {} -defs["igDragScalarN"][1]["defaults"]["format"] = "((void *)0)" +defs["igDragScalarN"][1]["defaults"]["format"] = "((void*)0)" defs["igDragScalarN"][1]["defaults"]["power"] = "1.0f" -defs["igDragScalarN"][1]["defaults"]["v_max"] = "((void *)0)" -defs["igDragScalarN"][1]["defaults"]["v_min"] = "((void *)0)" +defs["igDragScalarN"][1]["defaults"]["v_max"] = "((void*)0)" +defs["igDragScalarN"][1]["defaults"]["v_min"] = "((void*)0)" defs["igDragScalarN"][1]["funcname"] = "DragScalarN" +defs["igDragScalarN"][1]["namespace"] = "ImGui" +defs["igDragScalarN"][1]["ov_cimguiname"] = "igDragScalarN" defs["igDragScalarN"][1]["ret"] = "bool" defs["igDragScalarN"][1]["signature"] = "(const char*,ImGuiDataType,void*,int,float,const void*,const void*,const char*,float)" -defs["igDragScalarN"][1]["stname"] = "ImGui" +defs["igDragScalarN"][1]["stname"] = "" defs["igDragScalarN"]["(const char*,ImGuiDataType,void*,int,float,const void*,const void*,const char*,float)"] = defs["igDragScalarN"][1] defs["igDummy"] = {} defs["igDummy"][1] = {} @@ -6938,9 +7291,11 @@ defs["igDummy"][1]["cimguiname"] = "igDummy" defs["igDummy"][1]["comment"] = "" defs["igDummy"][1]["defaults"] = {} defs["igDummy"][1]["funcname"] = "Dummy" +defs["igDummy"][1]["namespace"] = "ImGui" +defs["igDummy"][1]["ov_cimguiname"] = "igDummy" defs["igDummy"][1]["ret"] = "void" defs["igDummy"][1]["signature"] = "(const ImVec2)" -defs["igDummy"][1]["stname"] = "ImGui" +defs["igDummy"][1]["stname"] = "" defs["igDummy"]["(const ImVec2)"] = defs["igDummy"][1] defs["igEnd"] = {} defs["igEnd"][1] = {} @@ -6952,9 +7307,11 @@ defs["igEnd"][1]["cimguiname"] = "igEnd" defs["igEnd"][1]["comment"] = "" defs["igEnd"][1]["defaults"] = {} defs["igEnd"][1]["funcname"] = "End" +defs["igEnd"][1]["namespace"] = "ImGui" +defs["igEnd"][1]["ov_cimguiname"] = "igEnd" defs["igEnd"][1]["ret"] = "void" defs["igEnd"][1]["signature"] = "()" -defs["igEnd"][1]["stname"] = "ImGui" +defs["igEnd"][1]["stname"] = "" defs["igEnd"]["()"] = defs["igEnd"][1] defs["igEndChild"] = {} defs["igEndChild"][1] = {} @@ -6966,9 +7323,11 @@ defs["igEndChild"][1]["cimguiname"] = "igEndChild" defs["igEndChild"][1]["comment"] = "" defs["igEndChild"][1]["defaults"] = {} defs["igEndChild"][1]["funcname"] = "EndChild" +defs["igEndChild"][1]["namespace"] = "ImGui" +defs["igEndChild"][1]["ov_cimguiname"] = "igEndChild" defs["igEndChild"][1]["ret"] = "void" defs["igEndChild"][1]["signature"] = "()" -defs["igEndChild"][1]["stname"] = "ImGui" +defs["igEndChild"][1]["stname"] = "" defs["igEndChild"]["()"] = defs["igEndChild"][1] defs["igEndChildFrame"] = {} defs["igEndChildFrame"][1] = {} @@ -6980,9 +7339,11 @@ defs["igEndChildFrame"][1]["cimguiname"] = "igEndChildFrame" defs["igEndChildFrame"][1]["comment"] = "" defs["igEndChildFrame"][1]["defaults"] = {} defs["igEndChildFrame"][1]["funcname"] = "EndChildFrame" +defs["igEndChildFrame"][1]["namespace"] = "ImGui" +defs["igEndChildFrame"][1]["ov_cimguiname"] = "igEndChildFrame" defs["igEndChildFrame"][1]["ret"] = "void" defs["igEndChildFrame"][1]["signature"] = "()" -defs["igEndChildFrame"][1]["stname"] = "ImGui" +defs["igEndChildFrame"][1]["stname"] = "" defs["igEndChildFrame"]["()"] = defs["igEndChildFrame"][1] defs["igEndCombo"] = {} defs["igEndCombo"][1] = {} @@ -6994,9 +7355,11 @@ defs["igEndCombo"][1]["cimguiname"] = "igEndCombo" defs["igEndCombo"][1]["comment"] = "" defs["igEndCombo"][1]["defaults"] = {} defs["igEndCombo"][1]["funcname"] = "EndCombo" +defs["igEndCombo"][1]["namespace"] = "ImGui" +defs["igEndCombo"][1]["ov_cimguiname"] = "igEndCombo" defs["igEndCombo"][1]["ret"] = "void" defs["igEndCombo"][1]["signature"] = "()" -defs["igEndCombo"][1]["stname"] = "ImGui" +defs["igEndCombo"][1]["stname"] = "" defs["igEndCombo"]["()"] = defs["igEndCombo"][1] defs["igEndDragDropSource"] = {} defs["igEndDragDropSource"][1] = {} @@ -7008,9 +7371,11 @@ defs["igEndDragDropSource"][1]["cimguiname"] = "igEndDragDropSource" defs["igEndDragDropSource"][1]["comment"] = "" defs["igEndDragDropSource"][1]["defaults"] = {} defs["igEndDragDropSource"][1]["funcname"] = "EndDragDropSource" +defs["igEndDragDropSource"][1]["namespace"] = "ImGui" +defs["igEndDragDropSource"][1]["ov_cimguiname"] = "igEndDragDropSource" defs["igEndDragDropSource"][1]["ret"] = "void" defs["igEndDragDropSource"][1]["signature"] = "()" -defs["igEndDragDropSource"][1]["stname"] = "ImGui" +defs["igEndDragDropSource"][1]["stname"] = "" defs["igEndDragDropSource"]["()"] = defs["igEndDragDropSource"][1] defs["igEndDragDropTarget"] = {} defs["igEndDragDropTarget"][1] = {} @@ -7022,9 +7387,11 @@ defs["igEndDragDropTarget"][1]["cimguiname"] = "igEndDragDropTarget" defs["igEndDragDropTarget"][1]["comment"] = "" defs["igEndDragDropTarget"][1]["defaults"] = {} defs["igEndDragDropTarget"][1]["funcname"] = "EndDragDropTarget" +defs["igEndDragDropTarget"][1]["namespace"] = "ImGui" +defs["igEndDragDropTarget"][1]["ov_cimguiname"] = "igEndDragDropTarget" defs["igEndDragDropTarget"][1]["ret"] = "void" defs["igEndDragDropTarget"][1]["signature"] = "()" -defs["igEndDragDropTarget"][1]["stname"] = "ImGui" +defs["igEndDragDropTarget"][1]["stname"] = "" defs["igEndDragDropTarget"]["()"] = defs["igEndDragDropTarget"][1] defs["igEndFrame"] = {} defs["igEndFrame"][1] = {} @@ -7036,9 +7403,11 @@ defs["igEndFrame"][1]["cimguiname"] = "igEndFrame" defs["igEndFrame"][1]["comment"] = "" defs["igEndFrame"][1]["defaults"] = {} defs["igEndFrame"][1]["funcname"] = "EndFrame" +defs["igEndFrame"][1]["namespace"] = "ImGui" +defs["igEndFrame"][1]["ov_cimguiname"] = "igEndFrame" defs["igEndFrame"][1]["ret"] = "void" defs["igEndFrame"][1]["signature"] = "()" -defs["igEndFrame"][1]["stname"] = "ImGui" +defs["igEndFrame"][1]["stname"] = "" defs["igEndFrame"]["()"] = defs["igEndFrame"][1] defs["igEndGroup"] = {} defs["igEndGroup"][1] = {} @@ -7050,9 +7419,11 @@ defs["igEndGroup"][1]["cimguiname"] = "igEndGroup" defs["igEndGroup"][1]["comment"] = "" defs["igEndGroup"][1]["defaults"] = {} defs["igEndGroup"][1]["funcname"] = "EndGroup" +defs["igEndGroup"][1]["namespace"] = "ImGui" +defs["igEndGroup"][1]["ov_cimguiname"] = "igEndGroup" defs["igEndGroup"][1]["ret"] = "void" defs["igEndGroup"][1]["signature"] = "()" -defs["igEndGroup"][1]["stname"] = "ImGui" +defs["igEndGroup"][1]["stname"] = "" defs["igEndGroup"]["()"] = defs["igEndGroup"][1] defs["igEndMainMenuBar"] = {} defs["igEndMainMenuBar"][1] = {} @@ -7064,9 +7435,11 @@ defs["igEndMainMenuBar"][1]["cimguiname"] = "igEndMainMenuBar" defs["igEndMainMenuBar"][1]["comment"] = "" defs["igEndMainMenuBar"][1]["defaults"] = {} defs["igEndMainMenuBar"][1]["funcname"] = "EndMainMenuBar" +defs["igEndMainMenuBar"][1]["namespace"] = "ImGui" +defs["igEndMainMenuBar"][1]["ov_cimguiname"] = "igEndMainMenuBar" defs["igEndMainMenuBar"][1]["ret"] = "void" defs["igEndMainMenuBar"][1]["signature"] = "()" -defs["igEndMainMenuBar"][1]["stname"] = "ImGui" +defs["igEndMainMenuBar"][1]["stname"] = "" defs["igEndMainMenuBar"]["()"] = defs["igEndMainMenuBar"][1] defs["igEndMenu"] = {} defs["igEndMenu"][1] = {} @@ -7078,9 +7451,11 @@ defs["igEndMenu"][1]["cimguiname"] = "igEndMenu" defs["igEndMenu"][1]["comment"] = "" defs["igEndMenu"][1]["defaults"] = {} defs["igEndMenu"][1]["funcname"] = "EndMenu" +defs["igEndMenu"][1]["namespace"] = "ImGui" +defs["igEndMenu"][1]["ov_cimguiname"] = "igEndMenu" defs["igEndMenu"][1]["ret"] = "void" defs["igEndMenu"][1]["signature"] = "()" -defs["igEndMenu"][1]["stname"] = "ImGui" +defs["igEndMenu"][1]["stname"] = "" defs["igEndMenu"]["()"] = defs["igEndMenu"][1] defs["igEndMenuBar"] = {} defs["igEndMenuBar"][1] = {} @@ -7092,9 +7467,11 @@ defs["igEndMenuBar"][1]["cimguiname"] = "igEndMenuBar" defs["igEndMenuBar"][1]["comment"] = "" defs["igEndMenuBar"][1]["defaults"] = {} defs["igEndMenuBar"][1]["funcname"] = "EndMenuBar" +defs["igEndMenuBar"][1]["namespace"] = "ImGui" +defs["igEndMenuBar"][1]["ov_cimguiname"] = "igEndMenuBar" defs["igEndMenuBar"][1]["ret"] = "void" defs["igEndMenuBar"][1]["signature"] = "()" -defs["igEndMenuBar"][1]["stname"] = "ImGui" +defs["igEndMenuBar"][1]["stname"] = "" defs["igEndMenuBar"]["()"] = defs["igEndMenuBar"][1] defs["igEndPopup"] = {} defs["igEndPopup"][1] = {} @@ -7106,9 +7483,11 @@ defs["igEndPopup"][1]["cimguiname"] = "igEndPopup" defs["igEndPopup"][1]["comment"] = "" defs["igEndPopup"][1]["defaults"] = {} defs["igEndPopup"][1]["funcname"] = "EndPopup" +defs["igEndPopup"][1]["namespace"] = "ImGui" +defs["igEndPopup"][1]["ov_cimguiname"] = "igEndPopup" defs["igEndPopup"][1]["ret"] = "void" defs["igEndPopup"][1]["signature"] = "()" -defs["igEndPopup"][1]["stname"] = "ImGui" +defs["igEndPopup"][1]["stname"] = "" defs["igEndPopup"]["()"] = defs["igEndPopup"][1] defs["igEndTabBar"] = {} defs["igEndTabBar"][1] = {} @@ -7120,9 +7499,11 @@ defs["igEndTabBar"][1]["cimguiname"] = "igEndTabBar" defs["igEndTabBar"][1]["comment"] = "" defs["igEndTabBar"][1]["defaults"] = {} defs["igEndTabBar"][1]["funcname"] = "EndTabBar" +defs["igEndTabBar"][1]["namespace"] = "ImGui" +defs["igEndTabBar"][1]["ov_cimguiname"] = "igEndTabBar" defs["igEndTabBar"][1]["ret"] = "void" defs["igEndTabBar"][1]["signature"] = "()" -defs["igEndTabBar"][1]["stname"] = "ImGui" +defs["igEndTabBar"][1]["stname"] = "" defs["igEndTabBar"]["()"] = defs["igEndTabBar"][1] defs["igEndTabItem"] = {} defs["igEndTabItem"][1] = {} @@ -7134,9 +7515,11 @@ defs["igEndTabItem"][1]["cimguiname"] = "igEndTabItem" defs["igEndTabItem"][1]["comment"] = "" defs["igEndTabItem"][1]["defaults"] = {} defs["igEndTabItem"][1]["funcname"] = "EndTabItem" +defs["igEndTabItem"][1]["namespace"] = "ImGui" +defs["igEndTabItem"][1]["ov_cimguiname"] = "igEndTabItem" defs["igEndTabItem"][1]["ret"] = "void" defs["igEndTabItem"][1]["signature"] = "()" -defs["igEndTabItem"][1]["stname"] = "ImGui" +defs["igEndTabItem"][1]["stname"] = "" defs["igEndTabItem"]["()"] = defs["igEndTabItem"][1] defs["igEndTooltip"] = {} defs["igEndTooltip"][1] = {} @@ -7148,9 +7531,11 @@ defs["igEndTooltip"][1]["cimguiname"] = "igEndTooltip" defs["igEndTooltip"][1]["comment"] = "" defs["igEndTooltip"][1]["defaults"] = {} defs["igEndTooltip"][1]["funcname"] = "EndTooltip" +defs["igEndTooltip"][1]["namespace"] = "ImGui" +defs["igEndTooltip"][1]["ov_cimguiname"] = "igEndTooltip" defs["igEndTooltip"][1]["ret"] = "void" defs["igEndTooltip"][1]["signature"] = "()" -defs["igEndTooltip"][1]["stname"] = "ImGui" +defs["igEndTooltip"][1]["stname"] = "" defs["igEndTooltip"]["()"] = defs["igEndTooltip"][1] defs["igGetClipboardText"] = {} defs["igGetClipboardText"][1] = {} @@ -7162,9 +7547,11 @@ defs["igGetClipboardText"][1]["cimguiname"] = "igGetClipboardText" defs["igGetClipboardText"][1]["comment"] = "" defs["igGetClipboardText"][1]["defaults"] = {} defs["igGetClipboardText"][1]["funcname"] = "GetClipboardText" +defs["igGetClipboardText"][1]["namespace"] = "ImGui" +defs["igGetClipboardText"][1]["ov_cimguiname"] = "igGetClipboardText" defs["igGetClipboardText"][1]["ret"] = "const char*" defs["igGetClipboardText"][1]["signature"] = "()" -defs["igGetClipboardText"][1]["stname"] = "ImGui" +defs["igGetClipboardText"][1]["stname"] = "" defs["igGetClipboardText"]["()"] = defs["igGetClipboardText"][1] defs["igGetColorU32"] = {} defs["igGetColorU32"][1] = {} @@ -7183,10 +7570,11 @@ defs["igGetColorU32"][1]["comment"] = "" defs["igGetColorU32"][1]["defaults"] = {} defs["igGetColorU32"][1]["defaults"]["alpha_mul"] = "1.0f" defs["igGetColorU32"][1]["funcname"] = "GetColorU32" +defs["igGetColorU32"][1]["namespace"] = "ImGui" defs["igGetColorU32"][1]["ov_cimguiname"] = "igGetColorU32" defs["igGetColorU32"][1]["ret"] = "ImU32" defs["igGetColorU32"][1]["signature"] = "(ImGuiCol,float)" -defs["igGetColorU32"][1]["stname"] = "ImGui" +defs["igGetColorU32"][1]["stname"] = "" defs["igGetColorU32"][2] = {} defs["igGetColorU32"][2]["args"] = "(const ImVec4 col)" defs["igGetColorU32"][2]["argsT"] = {} @@ -7199,10 +7587,11 @@ defs["igGetColorU32"][2]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][2]["comment"] = "" defs["igGetColorU32"][2]["defaults"] = {} defs["igGetColorU32"][2]["funcname"] = "GetColorU32" +defs["igGetColorU32"][2]["namespace"] = "ImGui" defs["igGetColorU32"][2]["ov_cimguiname"] = "igGetColorU32Vec4" defs["igGetColorU32"][2]["ret"] = "ImU32" defs["igGetColorU32"][2]["signature"] = "(const ImVec4)" -defs["igGetColorU32"][2]["stname"] = "ImGui" +defs["igGetColorU32"][2]["stname"] = "" defs["igGetColorU32"][3] = {} defs["igGetColorU32"][3]["args"] = "(ImU32 col)" defs["igGetColorU32"][3]["argsT"] = {} @@ -7215,10 +7604,11 @@ defs["igGetColorU32"][3]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][3]["comment"] = "" defs["igGetColorU32"][3]["defaults"] = {} defs["igGetColorU32"][3]["funcname"] = "GetColorU32" +defs["igGetColorU32"][3]["namespace"] = "ImGui" defs["igGetColorU32"][3]["ov_cimguiname"] = "igGetColorU32U32" defs["igGetColorU32"][3]["ret"] = "ImU32" defs["igGetColorU32"][3]["signature"] = "(ImU32)" -defs["igGetColorU32"][3]["stname"] = "ImGui" +defs["igGetColorU32"][3]["stname"] = "" defs["igGetColorU32"]["(ImGuiCol,float)"] = defs["igGetColorU32"][1] defs["igGetColorU32"]["(ImU32)"] = defs["igGetColorU32"][3] defs["igGetColorU32"]["(const ImVec4)"] = defs["igGetColorU32"][2] @@ -7232,9 +7622,11 @@ defs["igGetColumnIndex"][1]["cimguiname"] = "igGetColumnIndex" defs["igGetColumnIndex"][1]["comment"] = "" defs["igGetColumnIndex"][1]["defaults"] = {} defs["igGetColumnIndex"][1]["funcname"] = "GetColumnIndex" +defs["igGetColumnIndex"][1]["namespace"] = "ImGui" +defs["igGetColumnIndex"][1]["ov_cimguiname"] = "igGetColumnIndex" defs["igGetColumnIndex"][1]["ret"] = "int" defs["igGetColumnIndex"][1]["signature"] = "()" -defs["igGetColumnIndex"][1]["stname"] = "ImGui" +defs["igGetColumnIndex"][1]["stname"] = "" defs["igGetColumnIndex"]["()"] = defs["igGetColumnIndex"][1] defs["igGetColumnOffset"] = {} defs["igGetColumnOffset"][1] = {} @@ -7250,9 +7642,11 @@ defs["igGetColumnOffset"][1]["comment"] = "" defs["igGetColumnOffset"][1]["defaults"] = {} defs["igGetColumnOffset"][1]["defaults"]["column_index"] = "-1" defs["igGetColumnOffset"][1]["funcname"] = "GetColumnOffset" +defs["igGetColumnOffset"][1]["namespace"] = "ImGui" +defs["igGetColumnOffset"][1]["ov_cimguiname"] = "igGetColumnOffset" defs["igGetColumnOffset"][1]["ret"] = "float" defs["igGetColumnOffset"][1]["signature"] = "(int)" -defs["igGetColumnOffset"][1]["stname"] = "ImGui" +defs["igGetColumnOffset"][1]["stname"] = "" defs["igGetColumnOffset"]["(int)"] = defs["igGetColumnOffset"][1] defs["igGetColumnWidth"] = {} defs["igGetColumnWidth"][1] = {} @@ -7268,9 +7662,11 @@ defs["igGetColumnWidth"][1]["comment"] = "" defs["igGetColumnWidth"][1]["defaults"] = {} defs["igGetColumnWidth"][1]["defaults"]["column_index"] = "-1" defs["igGetColumnWidth"][1]["funcname"] = "GetColumnWidth" +defs["igGetColumnWidth"][1]["namespace"] = "ImGui" +defs["igGetColumnWidth"][1]["ov_cimguiname"] = "igGetColumnWidth" defs["igGetColumnWidth"][1]["ret"] = "float" defs["igGetColumnWidth"][1]["signature"] = "(int)" -defs["igGetColumnWidth"][1]["stname"] = "ImGui" +defs["igGetColumnWidth"][1]["stname"] = "" defs["igGetColumnWidth"]["(int)"] = defs["igGetColumnWidth"][1] defs["igGetColumnsCount"] = {} defs["igGetColumnsCount"][1] = {} @@ -7282,9 +7678,11 @@ defs["igGetColumnsCount"][1]["cimguiname"] = "igGetColumnsCount" defs["igGetColumnsCount"][1]["comment"] = "" defs["igGetColumnsCount"][1]["defaults"] = {} defs["igGetColumnsCount"][1]["funcname"] = "GetColumnsCount" +defs["igGetColumnsCount"][1]["namespace"] = "ImGui" +defs["igGetColumnsCount"][1]["ov_cimguiname"] = "igGetColumnsCount" defs["igGetColumnsCount"][1]["ret"] = "int" defs["igGetColumnsCount"][1]["signature"] = "()" -defs["igGetColumnsCount"][1]["stname"] = "ImGui" +defs["igGetColumnsCount"][1]["stname"] = "" defs["igGetColumnsCount"]["()"] = defs["igGetColumnsCount"][1] defs["igGetContentRegionAvail"] = {} defs["igGetContentRegionAvail"][1] = {} @@ -7296,9 +7694,11 @@ defs["igGetContentRegionAvail"][1]["cimguiname"] = "igGetContentRegionAvail" defs["igGetContentRegionAvail"][1]["comment"] = "" defs["igGetContentRegionAvail"][1]["defaults"] = {} defs["igGetContentRegionAvail"][1]["funcname"] = "GetContentRegionAvail" +defs["igGetContentRegionAvail"][1]["namespace"] = "ImGui" +defs["igGetContentRegionAvail"][1]["ov_cimguiname"] = "igGetContentRegionAvail" defs["igGetContentRegionAvail"][1]["ret"] = "ImVec2" defs["igGetContentRegionAvail"][1]["signature"] = "()" -defs["igGetContentRegionAvail"][1]["stname"] = "ImGui" +defs["igGetContentRegionAvail"][1]["stname"] = "" defs["igGetContentRegionAvail"][2] = {} defs["igGetContentRegionAvail"][2]["args"] = "(ImVec2 *pOut)" defs["igGetContentRegionAvail"][2]["argsT"] = {} @@ -7311,11 +7711,12 @@ defs["igGetContentRegionAvail"][2]["cimguiname"] = "igGetContentRegionAvail" defs["igGetContentRegionAvail"][2]["comment"] = "" defs["igGetContentRegionAvail"][2]["defaults"] = defs["igGetContentRegionAvail"][1]["defaults"] defs["igGetContentRegionAvail"][2]["funcname"] = "GetContentRegionAvail" +defs["igGetContentRegionAvail"][2]["namespace"] = "ImGui" defs["igGetContentRegionAvail"][2]["nonUDT"] = 1 defs["igGetContentRegionAvail"][2]["ov_cimguiname"] = "igGetContentRegionAvail_nonUDT" defs["igGetContentRegionAvail"][2]["ret"] = "void" defs["igGetContentRegionAvail"][2]["signature"] = "()" -defs["igGetContentRegionAvail"][2]["stname"] = "ImGui" +defs["igGetContentRegionAvail"][2]["stname"] = "" defs["igGetContentRegionAvail"][3] = {} defs["igGetContentRegionAvail"][3]["args"] = "()" defs["igGetContentRegionAvail"][3]["argsT"] = {} @@ -7325,12 +7726,13 @@ defs["igGetContentRegionAvail"][3]["cimguiname"] = "igGetContentRegionAvail" defs["igGetContentRegionAvail"][3]["comment"] = "" defs["igGetContentRegionAvail"][3]["defaults"] = defs["igGetContentRegionAvail"][1]["defaults"] defs["igGetContentRegionAvail"][3]["funcname"] = "GetContentRegionAvail" +defs["igGetContentRegionAvail"][3]["namespace"] = "ImGui" defs["igGetContentRegionAvail"][3]["nonUDT"] = 2 defs["igGetContentRegionAvail"][3]["ov_cimguiname"] = "igGetContentRegionAvail_nonUDT2" defs["igGetContentRegionAvail"][3]["ret"] = "ImVec2_Simple" defs["igGetContentRegionAvail"][3]["retorig"] = "ImVec2" defs["igGetContentRegionAvail"][3]["signature"] = "()" -defs["igGetContentRegionAvail"][3]["stname"] = "ImGui" +defs["igGetContentRegionAvail"][3]["stname"] = "" defs["igGetContentRegionAvail"]["()"] = defs["igGetContentRegionAvail"][1] defs["igGetContentRegionAvail"]["()nonUDT"] = defs["igGetContentRegionAvail"][2] defs["igGetContentRegionAvail"]["()nonUDT2"] = defs["igGetContentRegionAvail"][3] @@ -7344,9 +7746,11 @@ defs["igGetContentRegionAvailWidth"][1]["cimguiname"] = "igGetContentRegionAvail defs["igGetContentRegionAvailWidth"][1]["comment"] = "" defs["igGetContentRegionAvailWidth"][1]["defaults"] = {} defs["igGetContentRegionAvailWidth"][1]["funcname"] = "GetContentRegionAvailWidth" +defs["igGetContentRegionAvailWidth"][1]["namespace"] = "ImGui" +defs["igGetContentRegionAvailWidth"][1]["ov_cimguiname"] = "igGetContentRegionAvailWidth" defs["igGetContentRegionAvailWidth"][1]["ret"] = "float" defs["igGetContentRegionAvailWidth"][1]["signature"] = "()" -defs["igGetContentRegionAvailWidth"][1]["stname"] = "ImGui" +defs["igGetContentRegionAvailWidth"][1]["stname"] = "" defs["igGetContentRegionAvailWidth"]["()"] = defs["igGetContentRegionAvailWidth"][1] defs["igGetContentRegionMax"] = {} defs["igGetContentRegionMax"][1] = {} @@ -7358,9 +7762,11 @@ defs["igGetContentRegionMax"][1]["cimguiname"] = "igGetContentRegionMax" defs["igGetContentRegionMax"][1]["comment"] = "" defs["igGetContentRegionMax"][1]["defaults"] = {} defs["igGetContentRegionMax"][1]["funcname"] = "GetContentRegionMax" +defs["igGetContentRegionMax"][1]["namespace"] = "ImGui" +defs["igGetContentRegionMax"][1]["ov_cimguiname"] = "igGetContentRegionMax" defs["igGetContentRegionMax"][1]["ret"] = "ImVec2" defs["igGetContentRegionMax"][1]["signature"] = "()" -defs["igGetContentRegionMax"][1]["stname"] = "ImGui" +defs["igGetContentRegionMax"][1]["stname"] = "" defs["igGetContentRegionMax"][2] = {} defs["igGetContentRegionMax"][2]["args"] = "(ImVec2 *pOut)" defs["igGetContentRegionMax"][2]["argsT"] = {} @@ -7373,11 +7779,12 @@ defs["igGetContentRegionMax"][2]["cimguiname"] = "igGetContentRegionMax" defs["igGetContentRegionMax"][2]["comment"] = "" defs["igGetContentRegionMax"][2]["defaults"] = defs["igGetContentRegionMax"][1]["defaults"] defs["igGetContentRegionMax"][2]["funcname"] = "GetContentRegionMax" +defs["igGetContentRegionMax"][2]["namespace"] = "ImGui" defs["igGetContentRegionMax"][2]["nonUDT"] = 1 defs["igGetContentRegionMax"][2]["ov_cimguiname"] = "igGetContentRegionMax_nonUDT" defs["igGetContentRegionMax"][2]["ret"] = "void" defs["igGetContentRegionMax"][2]["signature"] = "()" -defs["igGetContentRegionMax"][2]["stname"] = "ImGui" +defs["igGetContentRegionMax"][2]["stname"] = "" defs["igGetContentRegionMax"][3] = {} defs["igGetContentRegionMax"][3]["args"] = "()" defs["igGetContentRegionMax"][3]["argsT"] = {} @@ -7387,12 +7794,13 @@ defs["igGetContentRegionMax"][3]["cimguiname"] = "igGetContentRegionMax" defs["igGetContentRegionMax"][3]["comment"] = "" defs["igGetContentRegionMax"][3]["defaults"] = defs["igGetContentRegionMax"][1]["defaults"] defs["igGetContentRegionMax"][3]["funcname"] = "GetContentRegionMax" +defs["igGetContentRegionMax"][3]["namespace"] = "ImGui" defs["igGetContentRegionMax"][3]["nonUDT"] = 2 defs["igGetContentRegionMax"][3]["ov_cimguiname"] = "igGetContentRegionMax_nonUDT2" defs["igGetContentRegionMax"][3]["ret"] = "ImVec2_Simple" defs["igGetContentRegionMax"][3]["retorig"] = "ImVec2" defs["igGetContentRegionMax"][3]["signature"] = "()" -defs["igGetContentRegionMax"][3]["stname"] = "ImGui" +defs["igGetContentRegionMax"][3]["stname"] = "" defs["igGetContentRegionMax"]["()"] = defs["igGetContentRegionMax"][1] defs["igGetContentRegionMax"]["()nonUDT"] = defs["igGetContentRegionMax"][2] defs["igGetContentRegionMax"]["()nonUDT2"] = defs["igGetContentRegionMax"][3] @@ -7406,9 +7814,11 @@ defs["igGetCurrentContext"][1]["cimguiname"] = "igGetCurrentContext" defs["igGetCurrentContext"][1]["comment"] = "" defs["igGetCurrentContext"][1]["defaults"] = {} defs["igGetCurrentContext"][1]["funcname"] = "GetCurrentContext" +defs["igGetCurrentContext"][1]["namespace"] = "ImGui" +defs["igGetCurrentContext"][1]["ov_cimguiname"] = "igGetCurrentContext" defs["igGetCurrentContext"][1]["ret"] = "ImGuiContext*" defs["igGetCurrentContext"][1]["signature"] = "()" -defs["igGetCurrentContext"][1]["stname"] = "ImGui" +defs["igGetCurrentContext"][1]["stname"] = "" defs["igGetCurrentContext"]["()"] = defs["igGetCurrentContext"][1] defs["igGetCursorPos"] = {} defs["igGetCursorPos"][1] = {} @@ -7420,9 +7830,11 @@ defs["igGetCursorPos"][1]["cimguiname"] = "igGetCursorPos" defs["igGetCursorPos"][1]["comment"] = "" defs["igGetCursorPos"][1]["defaults"] = {} defs["igGetCursorPos"][1]["funcname"] = "GetCursorPos" +defs["igGetCursorPos"][1]["namespace"] = "ImGui" +defs["igGetCursorPos"][1]["ov_cimguiname"] = "igGetCursorPos" defs["igGetCursorPos"][1]["ret"] = "ImVec2" defs["igGetCursorPos"][1]["signature"] = "()" -defs["igGetCursorPos"][1]["stname"] = "ImGui" +defs["igGetCursorPos"][1]["stname"] = "" defs["igGetCursorPos"][2] = {} defs["igGetCursorPos"][2]["args"] = "(ImVec2 *pOut)" defs["igGetCursorPos"][2]["argsT"] = {} @@ -7435,11 +7847,12 @@ defs["igGetCursorPos"][2]["cimguiname"] = "igGetCursorPos" defs["igGetCursorPos"][2]["comment"] = "" defs["igGetCursorPos"][2]["defaults"] = defs["igGetCursorPos"][1]["defaults"] defs["igGetCursorPos"][2]["funcname"] = "GetCursorPos" +defs["igGetCursorPos"][2]["namespace"] = "ImGui" defs["igGetCursorPos"][2]["nonUDT"] = 1 defs["igGetCursorPos"][2]["ov_cimguiname"] = "igGetCursorPos_nonUDT" defs["igGetCursorPos"][2]["ret"] = "void" defs["igGetCursorPos"][2]["signature"] = "()" -defs["igGetCursorPos"][2]["stname"] = "ImGui" +defs["igGetCursorPos"][2]["stname"] = "" defs["igGetCursorPos"][3] = {} defs["igGetCursorPos"][3]["args"] = "()" defs["igGetCursorPos"][3]["argsT"] = {} @@ -7449,12 +7862,13 @@ defs["igGetCursorPos"][3]["cimguiname"] = "igGetCursorPos" defs["igGetCursorPos"][3]["comment"] = "" defs["igGetCursorPos"][3]["defaults"] = defs["igGetCursorPos"][1]["defaults"] defs["igGetCursorPos"][3]["funcname"] = "GetCursorPos" +defs["igGetCursorPos"][3]["namespace"] = "ImGui" defs["igGetCursorPos"][3]["nonUDT"] = 2 defs["igGetCursorPos"][3]["ov_cimguiname"] = "igGetCursorPos_nonUDT2" defs["igGetCursorPos"][3]["ret"] = "ImVec2_Simple" defs["igGetCursorPos"][3]["retorig"] = "ImVec2" defs["igGetCursorPos"][3]["signature"] = "()" -defs["igGetCursorPos"][3]["stname"] = "ImGui" +defs["igGetCursorPos"][3]["stname"] = "" defs["igGetCursorPos"]["()"] = defs["igGetCursorPos"][1] defs["igGetCursorPos"]["()nonUDT"] = defs["igGetCursorPos"][2] defs["igGetCursorPos"]["()nonUDT2"] = defs["igGetCursorPos"][3] @@ -7468,9 +7882,11 @@ defs["igGetCursorPosX"][1]["cimguiname"] = "igGetCursorPosX" defs["igGetCursorPosX"][1]["comment"] = "" defs["igGetCursorPosX"][1]["defaults"] = {} defs["igGetCursorPosX"][1]["funcname"] = "GetCursorPosX" +defs["igGetCursorPosX"][1]["namespace"] = "ImGui" +defs["igGetCursorPosX"][1]["ov_cimguiname"] = "igGetCursorPosX" defs["igGetCursorPosX"][1]["ret"] = "float" defs["igGetCursorPosX"][1]["signature"] = "()" -defs["igGetCursorPosX"][1]["stname"] = "ImGui" +defs["igGetCursorPosX"][1]["stname"] = "" defs["igGetCursorPosX"]["()"] = defs["igGetCursorPosX"][1] defs["igGetCursorPosY"] = {} defs["igGetCursorPosY"][1] = {} @@ -7482,9 +7898,11 @@ defs["igGetCursorPosY"][1]["cimguiname"] = "igGetCursorPosY" defs["igGetCursorPosY"][1]["comment"] = "" defs["igGetCursorPosY"][1]["defaults"] = {} defs["igGetCursorPosY"][1]["funcname"] = "GetCursorPosY" +defs["igGetCursorPosY"][1]["namespace"] = "ImGui" +defs["igGetCursorPosY"][1]["ov_cimguiname"] = "igGetCursorPosY" defs["igGetCursorPosY"][1]["ret"] = "float" defs["igGetCursorPosY"][1]["signature"] = "()" -defs["igGetCursorPosY"][1]["stname"] = "ImGui" +defs["igGetCursorPosY"][1]["stname"] = "" defs["igGetCursorPosY"]["()"] = defs["igGetCursorPosY"][1] defs["igGetCursorScreenPos"] = {} defs["igGetCursorScreenPos"][1] = {} @@ -7496,9 +7914,11 @@ defs["igGetCursorScreenPos"][1]["cimguiname"] = "igGetCursorScreenPos" defs["igGetCursorScreenPos"][1]["comment"] = "" defs["igGetCursorScreenPos"][1]["defaults"] = {} defs["igGetCursorScreenPos"][1]["funcname"] = "GetCursorScreenPos" +defs["igGetCursorScreenPos"][1]["namespace"] = "ImGui" +defs["igGetCursorScreenPos"][1]["ov_cimguiname"] = "igGetCursorScreenPos" defs["igGetCursorScreenPos"][1]["ret"] = "ImVec2" defs["igGetCursorScreenPos"][1]["signature"] = "()" -defs["igGetCursorScreenPos"][1]["stname"] = "ImGui" +defs["igGetCursorScreenPos"][1]["stname"] = "" defs["igGetCursorScreenPos"][2] = {} defs["igGetCursorScreenPos"][2]["args"] = "(ImVec2 *pOut)" defs["igGetCursorScreenPos"][2]["argsT"] = {} @@ -7511,11 +7931,12 @@ defs["igGetCursorScreenPos"][2]["cimguiname"] = "igGetCursorScreenPos" defs["igGetCursorScreenPos"][2]["comment"] = "" defs["igGetCursorScreenPos"][2]["defaults"] = defs["igGetCursorScreenPos"][1]["defaults"] defs["igGetCursorScreenPos"][2]["funcname"] = "GetCursorScreenPos" +defs["igGetCursorScreenPos"][2]["namespace"] = "ImGui" defs["igGetCursorScreenPos"][2]["nonUDT"] = 1 defs["igGetCursorScreenPos"][2]["ov_cimguiname"] = "igGetCursorScreenPos_nonUDT" defs["igGetCursorScreenPos"][2]["ret"] = "void" defs["igGetCursorScreenPos"][2]["signature"] = "()" -defs["igGetCursorScreenPos"][2]["stname"] = "ImGui" +defs["igGetCursorScreenPos"][2]["stname"] = "" defs["igGetCursorScreenPos"][3] = {} defs["igGetCursorScreenPos"][3]["args"] = "()" defs["igGetCursorScreenPos"][3]["argsT"] = {} @@ -7525,12 +7946,13 @@ defs["igGetCursorScreenPos"][3]["cimguiname"] = "igGetCursorScreenPos" defs["igGetCursorScreenPos"][3]["comment"] = "" defs["igGetCursorScreenPos"][3]["defaults"] = defs["igGetCursorScreenPos"][1]["defaults"] defs["igGetCursorScreenPos"][3]["funcname"] = "GetCursorScreenPos" +defs["igGetCursorScreenPos"][3]["namespace"] = "ImGui" defs["igGetCursorScreenPos"][3]["nonUDT"] = 2 defs["igGetCursorScreenPos"][3]["ov_cimguiname"] = "igGetCursorScreenPos_nonUDT2" defs["igGetCursorScreenPos"][3]["ret"] = "ImVec2_Simple" defs["igGetCursorScreenPos"][3]["retorig"] = "ImVec2" defs["igGetCursorScreenPos"][3]["signature"] = "()" -defs["igGetCursorScreenPos"][3]["stname"] = "ImGui" +defs["igGetCursorScreenPos"][3]["stname"] = "" defs["igGetCursorScreenPos"]["()"] = defs["igGetCursorScreenPos"][1] defs["igGetCursorScreenPos"]["()nonUDT"] = defs["igGetCursorScreenPos"][2] defs["igGetCursorScreenPos"]["()nonUDT2"] = defs["igGetCursorScreenPos"][3] @@ -7544,9 +7966,11 @@ defs["igGetCursorStartPos"][1]["cimguiname"] = "igGetCursorStartPos" defs["igGetCursorStartPos"][1]["comment"] = "" defs["igGetCursorStartPos"][1]["defaults"] = {} defs["igGetCursorStartPos"][1]["funcname"] = "GetCursorStartPos" +defs["igGetCursorStartPos"][1]["namespace"] = "ImGui" +defs["igGetCursorStartPos"][1]["ov_cimguiname"] = "igGetCursorStartPos" defs["igGetCursorStartPos"][1]["ret"] = "ImVec2" defs["igGetCursorStartPos"][1]["signature"] = "()" -defs["igGetCursorStartPos"][1]["stname"] = "ImGui" +defs["igGetCursorStartPos"][1]["stname"] = "" defs["igGetCursorStartPos"][2] = {} defs["igGetCursorStartPos"][2]["args"] = "(ImVec2 *pOut)" defs["igGetCursorStartPos"][2]["argsT"] = {} @@ -7559,11 +7983,12 @@ defs["igGetCursorStartPos"][2]["cimguiname"] = "igGetCursorStartPos" defs["igGetCursorStartPos"][2]["comment"] = "" defs["igGetCursorStartPos"][2]["defaults"] = defs["igGetCursorStartPos"][1]["defaults"] defs["igGetCursorStartPos"][2]["funcname"] = "GetCursorStartPos" +defs["igGetCursorStartPos"][2]["namespace"] = "ImGui" defs["igGetCursorStartPos"][2]["nonUDT"] = 1 defs["igGetCursorStartPos"][2]["ov_cimguiname"] = "igGetCursorStartPos_nonUDT" defs["igGetCursorStartPos"][2]["ret"] = "void" defs["igGetCursorStartPos"][2]["signature"] = "()" -defs["igGetCursorStartPos"][2]["stname"] = "ImGui" +defs["igGetCursorStartPos"][2]["stname"] = "" defs["igGetCursorStartPos"][3] = {} defs["igGetCursorStartPos"][3]["args"] = "()" defs["igGetCursorStartPos"][3]["argsT"] = {} @@ -7573,12 +7998,13 @@ defs["igGetCursorStartPos"][3]["cimguiname"] = "igGetCursorStartPos" defs["igGetCursorStartPos"][3]["comment"] = "" defs["igGetCursorStartPos"][3]["defaults"] = defs["igGetCursorStartPos"][1]["defaults"] defs["igGetCursorStartPos"][3]["funcname"] = "GetCursorStartPos" +defs["igGetCursorStartPos"][3]["namespace"] = "ImGui" defs["igGetCursorStartPos"][3]["nonUDT"] = 2 defs["igGetCursorStartPos"][3]["ov_cimguiname"] = "igGetCursorStartPos_nonUDT2" defs["igGetCursorStartPos"][3]["ret"] = "ImVec2_Simple" defs["igGetCursorStartPos"][3]["retorig"] = "ImVec2" defs["igGetCursorStartPos"][3]["signature"] = "()" -defs["igGetCursorStartPos"][3]["stname"] = "ImGui" +defs["igGetCursorStartPos"][3]["stname"] = "" defs["igGetCursorStartPos"]["()"] = defs["igGetCursorStartPos"][1] defs["igGetCursorStartPos"]["()nonUDT"] = defs["igGetCursorStartPos"][2] defs["igGetCursorStartPos"]["()nonUDT2"] = defs["igGetCursorStartPos"][3] @@ -7592,9 +8018,11 @@ defs["igGetDragDropPayload"][1]["cimguiname"] = "igGetDragDropPayload" defs["igGetDragDropPayload"][1]["comment"] = "" defs["igGetDragDropPayload"][1]["defaults"] = {} defs["igGetDragDropPayload"][1]["funcname"] = "GetDragDropPayload" +defs["igGetDragDropPayload"][1]["namespace"] = "ImGui" +defs["igGetDragDropPayload"][1]["ov_cimguiname"] = "igGetDragDropPayload" defs["igGetDragDropPayload"][1]["ret"] = "const ImGuiPayload*" defs["igGetDragDropPayload"][1]["signature"] = "()" -defs["igGetDragDropPayload"][1]["stname"] = "ImGui" +defs["igGetDragDropPayload"][1]["stname"] = "" defs["igGetDragDropPayload"]["()"] = defs["igGetDragDropPayload"][1] defs["igGetDrawData"] = {} defs["igGetDrawData"][1] = {} @@ -7606,9 +8034,11 @@ defs["igGetDrawData"][1]["cimguiname"] = "igGetDrawData" defs["igGetDrawData"][1]["comment"] = "" defs["igGetDrawData"][1]["defaults"] = {} defs["igGetDrawData"][1]["funcname"] = "GetDrawData" +defs["igGetDrawData"][1]["namespace"] = "ImGui" +defs["igGetDrawData"][1]["ov_cimguiname"] = "igGetDrawData" defs["igGetDrawData"][1]["ret"] = "ImDrawData*" defs["igGetDrawData"][1]["signature"] = "()" -defs["igGetDrawData"][1]["stname"] = "ImGui" +defs["igGetDrawData"][1]["stname"] = "" defs["igGetDrawData"]["()"] = defs["igGetDrawData"][1] defs["igGetDrawListSharedData"] = {} defs["igGetDrawListSharedData"][1] = {} @@ -7620,9 +8050,11 @@ defs["igGetDrawListSharedData"][1]["cimguiname"] = "igGetDrawListSharedData" defs["igGetDrawListSharedData"][1]["comment"] = "" defs["igGetDrawListSharedData"][1]["defaults"] = {} defs["igGetDrawListSharedData"][1]["funcname"] = "GetDrawListSharedData" +defs["igGetDrawListSharedData"][1]["namespace"] = "ImGui" +defs["igGetDrawListSharedData"][1]["ov_cimguiname"] = "igGetDrawListSharedData" defs["igGetDrawListSharedData"][1]["ret"] = "ImDrawListSharedData*" defs["igGetDrawListSharedData"][1]["signature"] = "()" -defs["igGetDrawListSharedData"][1]["stname"] = "ImGui" +defs["igGetDrawListSharedData"][1]["stname"] = "" defs["igGetDrawListSharedData"]["()"] = defs["igGetDrawListSharedData"][1] defs["igGetFont"] = {} defs["igGetFont"][1] = {} @@ -7634,9 +8066,11 @@ defs["igGetFont"][1]["cimguiname"] = "igGetFont" defs["igGetFont"][1]["comment"] = "" defs["igGetFont"][1]["defaults"] = {} defs["igGetFont"][1]["funcname"] = "GetFont" +defs["igGetFont"][1]["namespace"] = "ImGui" +defs["igGetFont"][1]["ov_cimguiname"] = "igGetFont" defs["igGetFont"][1]["ret"] = "ImFont*" defs["igGetFont"][1]["signature"] = "()" -defs["igGetFont"][1]["stname"] = "ImGui" +defs["igGetFont"][1]["stname"] = "" defs["igGetFont"]["()"] = defs["igGetFont"][1] defs["igGetFontSize"] = {} defs["igGetFontSize"][1] = {} @@ -7648,9 +8082,11 @@ defs["igGetFontSize"][1]["cimguiname"] = "igGetFontSize" defs["igGetFontSize"][1]["comment"] = "" defs["igGetFontSize"][1]["defaults"] = {} defs["igGetFontSize"][1]["funcname"] = "GetFontSize" +defs["igGetFontSize"][1]["namespace"] = "ImGui" +defs["igGetFontSize"][1]["ov_cimguiname"] = "igGetFontSize" defs["igGetFontSize"][1]["ret"] = "float" defs["igGetFontSize"][1]["signature"] = "()" -defs["igGetFontSize"][1]["stname"] = "ImGui" +defs["igGetFontSize"][1]["stname"] = "" defs["igGetFontSize"]["()"] = defs["igGetFontSize"][1] defs["igGetFontTexUvWhitePixel"] = {} defs["igGetFontTexUvWhitePixel"][1] = {} @@ -7662,9 +8098,11 @@ defs["igGetFontTexUvWhitePixel"][1]["cimguiname"] = "igGetFontTexUvWhitePixel" defs["igGetFontTexUvWhitePixel"][1]["comment"] = "" defs["igGetFontTexUvWhitePixel"][1]["defaults"] = {} defs["igGetFontTexUvWhitePixel"][1]["funcname"] = "GetFontTexUvWhitePixel" +defs["igGetFontTexUvWhitePixel"][1]["namespace"] = "ImGui" +defs["igGetFontTexUvWhitePixel"][1]["ov_cimguiname"] = "igGetFontTexUvWhitePixel" defs["igGetFontTexUvWhitePixel"][1]["ret"] = "ImVec2" defs["igGetFontTexUvWhitePixel"][1]["signature"] = "()" -defs["igGetFontTexUvWhitePixel"][1]["stname"] = "ImGui" +defs["igGetFontTexUvWhitePixel"][1]["stname"] = "" defs["igGetFontTexUvWhitePixel"][2] = {} defs["igGetFontTexUvWhitePixel"][2]["args"] = "(ImVec2 *pOut)" defs["igGetFontTexUvWhitePixel"][2]["argsT"] = {} @@ -7677,11 +8115,12 @@ defs["igGetFontTexUvWhitePixel"][2]["cimguiname"] = "igGetFontTexUvWhitePixel" defs["igGetFontTexUvWhitePixel"][2]["comment"] = "" defs["igGetFontTexUvWhitePixel"][2]["defaults"] = defs["igGetFontTexUvWhitePixel"][1]["defaults"] defs["igGetFontTexUvWhitePixel"][2]["funcname"] = "GetFontTexUvWhitePixel" +defs["igGetFontTexUvWhitePixel"][2]["namespace"] = "ImGui" defs["igGetFontTexUvWhitePixel"][2]["nonUDT"] = 1 defs["igGetFontTexUvWhitePixel"][2]["ov_cimguiname"] = "igGetFontTexUvWhitePixel_nonUDT" defs["igGetFontTexUvWhitePixel"][2]["ret"] = "void" defs["igGetFontTexUvWhitePixel"][2]["signature"] = "()" -defs["igGetFontTexUvWhitePixel"][2]["stname"] = "ImGui" +defs["igGetFontTexUvWhitePixel"][2]["stname"] = "" defs["igGetFontTexUvWhitePixel"][3] = {} defs["igGetFontTexUvWhitePixel"][3]["args"] = "()" defs["igGetFontTexUvWhitePixel"][3]["argsT"] = {} @@ -7691,12 +8130,13 @@ defs["igGetFontTexUvWhitePixel"][3]["cimguiname"] = "igGetFontTexUvWhitePixel" defs["igGetFontTexUvWhitePixel"][3]["comment"] = "" defs["igGetFontTexUvWhitePixel"][3]["defaults"] = defs["igGetFontTexUvWhitePixel"][1]["defaults"] defs["igGetFontTexUvWhitePixel"][3]["funcname"] = "GetFontTexUvWhitePixel" +defs["igGetFontTexUvWhitePixel"][3]["namespace"] = "ImGui" defs["igGetFontTexUvWhitePixel"][3]["nonUDT"] = 2 defs["igGetFontTexUvWhitePixel"][3]["ov_cimguiname"] = "igGetFontTexUvWhitePixel_nonUDT2" defs["igGetFontTexUvWhitePixel"][3]["ret"] = "ImVec2_Simple" defs["igGetFontTexUvWhitePixel"][3]["retorig"] = "ImVec2" defs["igGetFontTexUvWhitePixel"][3]["signature"] = "()" -defs["igGetFontTexUvWhitePixel"][3]["stname"] = "ImGui" +defs["igGetFontTexUvWhitePixel"][3]["stname"] = "" defs["igGetFontTexUvWhitePixel"]["()"] = defs["igGetFontTexUvWhitePixel"][1] defs["igGetFontTexUvWhitePixel"]["()nonUDT"] = defs["igGetFontTexUvWhitePixel"][2] defs["igGetFontTexUvWhitePixel"]["()nonUDT2"] = defs["igGetFontTexUvWhitePixel"][3] @@ -7710,9 +8150,11 @@ defs["igGetFrameCount"][1]["cimguiname"] = "igGetFrameCount" defs["igGetFrameCount"][1]["comment"] = "" defs["igGetFrameCount"][1]["defaults"] = {} defs["igGetFrameCount"][1]["funcname"] = "GetFrameCount" +defs["igGetFrameCount"][1]["namespace"] = "ImGui" +defs["igGetFrameCount"][1]["ov_cimguiname"] = "igGetFrameCount" defs["igGetFrameCount"][1]["ret"] = "int" defs["igGetFrameCount"][1]["signature"] = "()" -defs["igGetFrameCount"][1]["stname"] = "ImGui" +defs["igGetFrameCount"][1]["stname"] = "" defs["igGetFrameCount"]["()"] = defs["igGetFrameCount"][1] defs["igGetFrameHeight"] = {} defs["igGetFrameHeight"][1] = {} @@ -7724,9 +8166,11 @@ defs["igGetFrameHeight"][1]["cimguiname"] = "igGetFrameHeight" defs["igGetFrameHeight"][1]["comment"] = "" defs["igGetFrameHeight"][1]["defaults"] = {} defs["igGetFrameHeight"][1]["funcname"] = "GetFrameHeight" +defs["igGetFrameHeight"][1]["namespace"] = "ImGui" +defs["igGetFrameHeight"][1]["ov_cimguiname"] = "igGetFrameHeight" defs["igGetFrameHeight"][1]["ret"] = "float" defs["igGetFrameHeight"][1]["signature"] = "()" -defs["igGetFrameHeight"][1]["stname"] = "ImGui" +defs["igGetFrameHeight"][1]["stname"] = "" defs["igGetFrameHeight"]["()"] = defs["igGetFrameHeight"][1] defs["igGetFrameHeightWithSpacing"] = {} defs["igGetFrameHeightWithSpacing"][1] = {} @@ -7738,9 +8182,11 @@ defs["igGetFrameHeightWithSpacing"][1]["cimguiname"] = "igGetFrameHeightWithSpac defs["igGetFrameHeightWithSpacing"][1]["comment"] = "" defs["igGetFrameHeightWithSpacing"][1]["defaults"] = {} defs["igGetFrameHeightWithSpacing"][1]["funcname"] = "GetFrameHeightWithSpacing" +defs["igGetFrameHeightWithSpacing"][1]["namespace"] = "ImGui" +defs["igGetFrameHeightWithSpacing"][1]["ov_cimguiname"] = "igGetFrameHeightWithSpacing" defs["igGetFrameHeightWithSpacing"][1]["ret"] = "float" defs["igGetFrameHeightWithSpacing"][1]["signature"] = "()" -defs["igGetFrameHeightWithSpacing"][1]["stname"] = "ImGui" +defs["igGetFrameHeightWithSpacing"][1]["stname"] = "" defs["igGetFrameHeightWithSpacing"]["()"] = defs["igGetFrameHeightWithSpacing"][1] defs["igGetID"] = {} defs["igGetID"][1] = {} @@ -7755,10 +8201,11 @@ defs["igGetID"][1]["cimguiname"] = "igGetID" defs["igGetID"][1]["comment"] = "" defs["igGetID"][1]["defaults"] = {} defs["igGetID"][1]["funcname"] = "GetID" +defs["igGetID"][1]["namespace"] = "ImGui" defs["igGetID"][1]["ov_cimguiname"] = "igGetIDStr" defs["igGetID"][1]["ret"] = "ImGuiID" defs["igGetID"][1]["signature"] = "(const char*)" -defs["igGetID"][1]["stname"] = "ImGui" +defs["igGetID"][1]["stname"] = "" defs["igGetID"][2] = {} defs["igGetID"][2]["args"] = "(const char* str_id_begin,const char* str_id_end)" defs["igGetID"][2]["argsT"] = {} @@ -7774,10 +8221,11 @@ defs["igGetID"][2]["cimguiname"] = "igGetID" defs["igGetID"][2]["comment"] = "" defs["igGetID"][2]["defaults"] = {} defs["igGetID"][2]["funcname"] = "GetID" +defs["igGetID"][2]["namespace"] = "ImGui" defs["igGetID"][2]["ov_cimguiname"] = "igGetIDRange" defs["igGetID"][2]["ret"] = "ImGuiID" defs["igGetID"][2]["signature"] = "(const char*,const char*)" -defs["igGetID"][2]["stname"] = "ImGui" +defs["igGetID"][2]["stname"] = "" defs["igGetID"][3] = {} defs["igGetID"][3]["args"] = "(const void* ptr_id)" defs["igGetID"][3]["argsT"] = {} @@ -7790,10 +8238,11 @@ defs["igGetID"][3]["cimguiname"] = "igGetID" defs["igGetID"][3]["comment"] = "" defs["igGetID"][3]["defaults"] = {} defs["igGetID"][3]["funcname"] = "GetID" +defs["igGetID"][3]["namespace"] = "ImGui" defs["igGetID"][3]["ov_cimguiname"] = "igGetIDPtr" defs["igGetID"][3]["ret"] = "ImGuiID" defs["igGetID"][3]["signature"] = "(const void*)" -defs["igGetID"][3]["stname"] = "ImGui" +defs["igGetID"][3]["stname"] = "" defs["igGetID"]["(const char*)"] = defs["igGetID"][1] defs["igGetID"]["(const char*,const char*)"] = defs["igGetID"][2] defs["igGetID"]["(const void*)"] = defs["igGetID"][3] @@ -7807,10 +8256,12 @@ defs["igGetIO"][1]["cimguiname"] = "igGetIO" defs["igGetIO"][1]["comment"] = "" defs["igGetIO"][1]["defaults"] = {} defs["igGetIO"][1]["funcname"] = "GetIO" +defs["igGetIO"][1]["namespace"] = "ImGui" +defs["igGetIO"][1]["ov_cimguiname"] = "igGetIO" defs["igGetIO"][1]["ret"] = "ImGuiIO*" defs["igGetIO"][1]["retref"] = "&" defs["igGetIO"][1]["signature"] = "()" -defs["igGetIO"][1]["stname"] = "ImGui" +defs["igGetIO"][1]["stname"] = "" defs["igGetIO"]["()"] = defs["igGetIO"][1] defs["igGetItemRectMax"] = {} defs["igGetItemRectMax"][1] = {} @@ -7822,9 +8273,11 @@ defs["igGetItemRectMax"][1]["cimguiname"] = "igGetItemRectMax" defs["igGetItemRectMax"][1]["comment"] = "" defs["igGetItemRectMax"][1]["defaults"] = {} defs["igGetItemRectMax"][1]["funcname"] = "GetItemRectMax" +defs["igGetItemRectMax"][1]["namespace"] = "ImGui" +defs["igGetItemRectMax"][1]["ov_cimguiname"] = "igGetItemRectMax" defs["igGetItemRectMax"][1]["ret"] = "ImVec2" defs["igGetItemRectMax"][1]["signature"] = "()" -defs["igGetItemRectMax"][1]["stname"] = "ImGui" +defs["igGetItemRectMax"][1]["stname"] = "" defs["igGetItemRectMax"][2] = {} defs["igGetItemRectMax"][2]["args"] = "(ImVec2 *pOut)" defs["igGetItemRectMax"][2]["argsT"] = {} @@ -7837,11 +8290,12 @@ defs["igGetItemRectMax"][2]["cimguiname"] = "igGetItemRectMax" defs["igGetItemRectMax"][2]["comment"] = "" defs["igGetItemRectMax"][2]["defaults"] = defs["igGetItemRectMax"][1]["defaults"] defs["igGetItemRectMax"][2]["funcname"] = "GetItemRectMax" +defs["igGetItemRectMax"][2]["namespace"] = "ImGui" defs["igGetItemRectMax"][2]["nonUDT"] = 1 defs["igGetItemRectMax"][2]["ov_cimguiname"] = "igGetItemRectMax_nonUDT" defs["igGetItemRectMax"][2]["ret"] = "void" defs["igGetItemRectMax"][2]["signature"] = "()" -defs["igGetItemRectMax"][2]["stname"] = "ImGui" +defs["igGetItemRectMax"][2]["stname"] = "" defs["igGetItemRectMax"][3] = {} defs["igGetItemRectMax"][3]["args"] = "()" defs["igGetItemRectMax"][3]["argsT"] = {} @@ -7851,12 +8305,13 @@ defs["igGetItemRectMax"][3]["cimguiname"] = "igGetItemRectMax" defs["igGetItemRectMax"][3]["comment"] = "" defs["igGetItemRectMax"][3]["defaults"] = defs["igGetItemRectMax"][1]["defaults"] defs["igGetItemRectMax"][3]["funcname"] = "GetItemRectMax" +defs["igGetItemRectMax"][3]["namespace"] = "ImGui" defs["igGetItemRectMax"][3]["nonUDT"] = 2 defs["igGetItemRectMax"][3]["ov_cimguiname"] = "igGetItemRectMax_nonUDT2" defs["igGetItemRectMax"][3]["ret"] = "ImVec2_Simple" defs["igGetItemRectMax"][3]["retorig"] = "ImVec2" defs["igGetItemRectMax"][3]["signature"] = "()" -defs["igGetItemRectMax"][3]["stname"] = "ImGui" +defs["igGetItemRectMax"][3]["stname"] = "" defs["igGetItemRectMax"]["()"] = defs["igGetItemRectMax"][1] defs["igGetItemRectMax"]["()nonUDT"] = defs["igGetItemRectMax"][2] defs["igGetItemRectMax"]["()nonUDT2"] = defs["igGetItemRectMax"][3] @@ -7870,9 +8325,11 @@ defs["igGetItemRectMin"][1]["cimguiname"] = "igGetItemRectMin" defs["igGetItemRectMin"][1]["comment"] = "" defs["igGetItemRectMin"][1]["defaults"] = {} defs["igGetItemRectMin"][1]["funcname"] = "GetItemRectMin" +defs["igGetItemRectMin"][1]["namespace"] = "ImGui" +defs["igGetItemRectMin"][1]["ov_cimguiname"] = "igGetItemRectMin" defs["igGetItemRectMin"][1]["ret"] = "ImVec2" defs["igGetItemRectMin"][1]["signature"] = "()" -defs["igGetItemRectMin"][1]["stname"] = "ImGui" +defs["igGetItemRectMin"][1]["stname"] = "" defs["igGetItemRectMin"][2] = {} defs["igGetItemRectMin"][2]["args"] = "(ImVec2 *pOut)" defs["igGetItemRectMin"][2]["argsT"] = {} @@ -7885,11 +8342,12 @@ defs["igGetItemRectMin"][2]["cimguiname"] = "igGetItemRectMin" defs["igGetItemRectMin"][2]["comment"] = "" defs["igGetItemRectMin"][2]["defaults"] = defs["igGetItemRectMin"][1]["defaults"] defs["igGetItemRectMin"][2]["funcname"] = "GetItemRectMin" +defs["igGetItemRectMin"][2]["namespace"] = "ImGui" defs["igGetItemRectMin"][2]["nonUDT"] = 1 defs["igGetItemRectMin"][2]["ov_cimguiname"] = "igGetItemRectMin_nonUDT" defs["igGetItemRectMin"][2]["ret"] = "void" defs["igGetItemRectMin"][2]["signature"] = "()" -defs["igGetItemRectMin"][2]["stname"] = "ImGui" +defs["igGetItemRectMin"][2]["stname"] = "" defs["igGetItemRectMin"][3] = {} defs["igGetItemRectMin"][3]["args"] = "()" defs["igGetItemRectMin"][3]["argsT"] = {} @@ -7899,12 +8357,13 @@ defs["igGetItemRectMin"][3]["cimguiname"] = "igGetItemRectMin" defs["igGetItemRectMin"][3]["comment"] = "" defs["igGetItemRectMin"][3]["defaults"] = defs["igGetItemRectMin"][1]["defaults"] defs["igGetItemRectMin"][3]["funcname"] = "GetItemRectMin" +defs["igGetItemRectMin"][3]["namespace"] = "ImGui" defs["igGetItemRectMin"][3]["nonUDT"] = 2 defs["igGetItemRectMin"][3]["ov_cimguiname"] = "igGetItemRectMin_nonUDT2" defs["igGetItemRectMin"][3]["ret"] = "ImVec2_Simple" defs["igGetItemRectMin"][3]["retorig"] = "ImVec2" defs["igGetItemRectMin"][3]["signature"] = "()" -defs["igGetItemRectMin"][3]["stname"] = "ImGui" +defs["igGetItemRectMin"][3]["stname"] = "" defs["igGetItemRectMin"]["()"] = defs["igGetItemRectMin"][1] defs["igGetItemRectMin"]["()nonUDT"] = defs["igGetItemRectMin"][2] defs["igGetItemRectMin"]["()nonUDT2"] = defs["igGetItemRectMin"][3] @@ -7918,9 +8377,11 @@ defs["igGetItemRectSize"][1]["cimguiname"] = "igGetItemRectSize" defs["igGetItemRectSize"][1]["comment"] = "" defs["igGetItemRectSize"][1]["defaults"] = {} defs["igGetItemRectSize"][1]["funcname"] = "GetItemRectSize" +defs["igGetItemRectSize"][1]["namespace"] = "ImGui" +defs["igGetItemRectSize"][1]["ov_cimguiname"] = "igGetItemRectSize" defs["igGetItemRectSize"][1]["ret"] = "ImVec2" defs["igGetItemRectSize"][1]["signature"] = "()" -defs["igGetItemRectSize"][1]["stname"] = "ImGui" +defs["igGetItemRectSize"][1]["stname"] = "" defs["igGetItemRectSize"][2] = {} defs["igGetItemRectSize"][2]["args"] = "(ImVec2 *pOut)" defs["igGetItemRectSize"][2]["argsT"] = {} @@ -7933,11 +8394,12 @@ defs["igGetItemRectSize"][2]["cimguiname"] = "igGetItemRectSize" defs["igGetItemRectSize"][2]["comment"] = "" defs["igGetItemRectSize"][2]["defaults"] = defs["igGetItemRectSize"][1]["defaults"] defs["igGetItemRectSize"][2]["funcname"] = "GetItemRectSize" +defs["igGetItemRectSize"][2]["namespace"] = "ImGui" defs["igGetItemRectSize"][2]["nonUDT"] = 1 defs["igGetItemRectSize"][2]["ov_cimguiname"] = "igGetItemRectSize_nonUDT" defs["igGetItemRectSize"][2]["ret"] = "void" defs["igGetItemRectSize"][2]["signature"] = "()" -defs["igGetItemRectSize"][2]["stname"] = "ImGui" +defs["igGetItemRectSize"][2]["stname"] = "" defs["igGetItemRectSize"][3] = {} defs["igGetItemRectSize"][3]["args"] = "()" defs["igGetItemRectSize"][3]["argsT"] = {} @@ -7947,12 +8409,13 @@ defs["igGetItemRectSize"][3]["cimguiname"] = "igGetItemRectSize" defs["igGetItemRectSize"][3]["comment"] = "" defs["igGetItemRectSize"][3]["defaults"] = defs["igGetItemRectSize"][1]["defaults"] defs["igGetItemRectSize"][3]["funcname"] = "GetItemRectSize" +defs["igGetItemRectSize"][3]["namespace"] = "ImGui" defs["igGetItemRectSize"][3]["nonUDT"] = 2 defs["igGetItemRectSize"][3]["ov_cimguiname"] = "igGetItemRectSize_nonUDT2" defs["igGetItemRectSize"][3]["ret"] = "ImVec2_Simple" defs["igGetItemRectSize"][3]["retorig"] = "ImVec2" defs["igGetItemRectSize"][3]["signature"] = "()" -defs["igGetItemRectSize"][3]["stname"] = "ImGui" +defs["igGetItemRectSize"][3]["stname"] = "" defs["igGetItemRectSize"]["()"] = defs["igGetItemRectSize"][1] defs["igGetItemRectSize"]["()nonUDT"] = defs["igGetItemRectSize"][2] defs["igGetItemRectSize"]["()nonUDT2"] = defs["igGetItemRectSize"][3] @@ -7969,9 +8432,11 @@ defs["igGetKeyIndex"][1]["cimguiname"] = "igGetKeyIndex" defs["igGetKeyIndex"][1]["comment"] = "" defs["igGetKeyIndex"][1]["defaults"] = {} defs["igGetKeyIndex"][1]["funcname"] = "GetKeyIndex" +defs["igGetKeyIndex"][1]["namespace"] = "ImGui" +defs["igGetKeyIndex"][1]["ov_cimguiname"] = "igGetKeyIndex" defs["igGetKeyIndex"][1]["ret"] = "int" defs["igGetKeyIndex"][1]["signature"] = "(ImGuiKey)" -defs["igGetKeyIndex"][1]["stname"] = "ImGui" +defs["igGetKeyIndex"][1]["stname"] = "" defs["igGetKeyIndex"]["(ImGuiKey)"] = defs["igGetKeyIndex"][1] defs["igGetKeyPressedAmount"] = {} defs["igGetKeyPressedAmount"][1] = {} @@ -7992,9 +8457,11 @@ defs["igGetKeyPressedAmount"][1]["cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["comment"] = "" defs["igGetKeyPressedAmount"][1]["defaults"] = {} defs["igGetKeyPressedAmount"][1]["funcname"] = "GetKeyPressedAmount" +defs["igGetKeyPressedAmount"][1]["namespace"] = "ImGui" +defs["igGetKeyPressedAmount"][1]["ov_cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["ret"] = "int" defs["igGetKeyPressedAmount"][1]["signature"] = "(int,float,float)" -defs["igGetKeyPressedAmount"][1]["stname"] = "ImGui" +defs["igGetKeyPressedAmount"][1]["stname"] = "" defs["igGetKeyPressedAmount"]["(int,float,float)"] = defs["igGetKeyPressedAmount"][1] defs["igGetMouseCursor"] = {} defs["igGetMouseCursor"][1] = {} @@ -8006,9 +8473,11 @@ defs["igGetMouseCursor"][1]["cimguiname"] = "igGetMouseCursor" defs["igGetMouseCursor"][1]["comment"] = "" defs["igGetMouseCursor"][1]["defaults"] = {} defs["igGetMouseCursor"][1]["funcname"] = "GetMouseCursor" +defs["igGetMouseCursor"][1]["namespace"] = "ImGui" +defs["igGetMouseCursor"][1]["ov_cimguiname"] = "igGetMouseCursor" defs["igGetMouseCursor"][1]["ret"] = "ImGuiMouseCursor" defs["igGetMouseCursor"][1]["signature"] = "()" -defs["igGetMouseCursor"][1]["stname"] = "ImGui" +defs["igGetMouseCursor"][1]["stname"] = "" defs["igGetMouseCursor"]["()"] = defs["igGetMouseCursor"][1] defs["igGetMouseDragDelta"] = {} defs["igGetMouseDragDelta"][1] = {} @@ -8028,9 +8497,11 @@ defs["igGetMouseDragDelta"][1]["defaults"] = {} defs["igGetMouseDragDelta"][1]["defaults"]["button"] = "0" defs["igGetMouseDragDelta"][1]["defaults"]["lock_threshold"] = "-1.0f" defs["igGetMouseDragDelta"][1]["funcname"] = "GetMouseDragDelta" +defs["igGetMouseDragDelta"][1]["namespace"] = "ImGui" +defs["igGetMouseDragDelta"][1]["ov_cimguiname"] = "igGetMouseDragDelta" defs["igGetMouseDragDelta"][1]["ret"] = "ImVec2" defs["igGetMouseDragDelta"][1]["signature"] = "(int,float)" -defs["igGetMouseDragDelta"][1]["stname"] = "ImGui" +defs["igGetMouseDragDelta"][1]["stname"] = "" defs["igGetMouseDragDelta"][2] = {} defs["igGetMouseDragDelta"][2]["args"] = "(ImVec2 *pOut,int button,float lock_threshold)" defs["igGetMouseDragDelta"][2]["argsT"] = {} @@ -8049,11 +8520,12 @@ defs["igGetMouseDragDelta"][2]["cimguiname"] = "igGetMouseDragDelta" defs["igGetMouseDragDelta"][2]["comment"] = "" defs["igGetMouseDragDelta"][2]["defaults"] = defs["igGetMouseDragDelta"][1]["defaults"] defs["igGetMouseDragDelta"][2]["funcname"] = "GetMouseDragDelta" +defs["igGetMouseDragDelta"][2]["namespace"] = "ImGui" defs["igGetMouseDragDelta"][2]["nonUDT"] = 1 defs["igGetMouseDragDelta"][2]["ov_cimguiname"] = "igGetMouseDragDelta_nonUDT" defs["igGetMouseDragDelta"][2]["ret"] = "void" defs["igGetMouseDragDelta"][2]["signature"] = "(int,float)" -defs["igGetMouseDragDelta"][2]["stname"] = "ImGui" +defs["igGetMouseDragDelta"][2]["stname"] = "" defs["igGetMouseDragDelta"][3] = {} defs["igGetMouseDragDelta"][3]["args"] = "(int button,float lock_threshold)" defs["igGetMouseDragDelta"][3]["argsT"] = {} @@ -8069,12 +8541,13 @@ defs["igGetMouseDragDelta"][3]["cimguiname"] = "igGetMouseDragDelta" defs["igGetMouseDragDelta"][3]["comment"] = "" defs["igGetMouseDragDelta"][3]["defaults"] = defs["igGetMouseDragDelta"][1]["defaults"] defs["igGetMouseDragDelta"][3]["funcname"] = "GetMouseDragDelta" +defs["igGetMouseDragDelta"][3]["namespace"] = "ImGui" defs["igGetMouseDragDelta"][3]["nonUDT"] = 2 defs["igGetMouseDragDelta"][3]["ov_cimguiname"] = "igGetMouseDragDelta_nonUDT2" defs["igGetMouseDragDelta"][3]["ret"] = "ImVec2_Simple" defs["igGetMouseDragDelta"][3]["retorig"] = "ImVec2" defs["igGetMouseDragDelta"][3]["signature"] = "(int,float)" -defs["igGetMouseDragDelta"][3]["stname"] = "ImGui" +defs["igGetMouseDragDelta"][3]["stname"] = "" defs["igGetMouseDragDelta"]["(int,float)"] = defs["igGetMouseDragDelta"][1] defs["igGetMouseDragDelta"]["(int,float)nonUDT"] = defs["igGetMouseDragDelta"][2] defs["igGetMouseDragDelta"]["(int,float)nonUDT2"] = defs["igGetMouseDragDelta"][3] @@ -8088,9 +8561,11 @@ defs["igGetMousePos"][1]["cimguiname"] = "igGetMousePos" defs["igGetMousePos"][1]["comment"] = "" defs["igGetMousePos"][1]["defaults"] = {} defs["igGetMousePos"][1]["funcname"] = "GetMousePos" +defs["igGetMousePos"][1]["namespace"] = "ImGui" +defs["igGetMousePos"][1]["ov_cimguiname"] = "igGetMousePos" defs["igGetMousePos"][1]["ret"] = "ImVec2" defs["igGetMousePos"][1]["signature"] = "()" -defs["igGetMousePos"][1]["stname"] = "ImGui" +defs["igGetMousePos"][1]["stname"] = "" defs["igGetMousePos"][2] = {} defs["igGetMousePos"][2]["args"] = "(ImVec2 *pOut)" defs["igGetMousePos"][2]["argsT"] = {} @@ -8103,11 +8578,12 @@ defs["igGetMousePos"][2]["cimguiname"] = "igGetMousePos" defs["igGetMousePos"][2]["comment"] = "" defs["igGetMousePos"][2]["defaults"] = defs["igGetMousePos"][1]["defaults"] defs["igGetMousePos"][2]["funcname"] = "GetMousePos" +defs["igGetMousePos"][2]["namespace"] = "ImGui" defs["igGetMousePos"][2]["nonUDT"] = 1 defs["igGetMousePos"][2]["ov_cimguiname"] = "igGetMousePos_nonUDT" defs["igGetMousePos"][2]["ret"] = "void" defs["igGetMousePos"][2]["signature"] = "()" -defs["igGetMousePos"][2]["stname"] = "ImGui" +defs["igGetMousePos"][2]["stname"] = "" defs["igGetMousePos"][3] = {} defs["igGetMousePos"][3]["args"] = "()" defs["igGetMousePos"][3]["argsT"] = {} @@ -8117,12 +8593,13 @@ defs["igGetMousePos"][3]["cimguiname"] = "igGetMousePos" defs["igGetMousePos"][3]["comment"] = "" defs["igGetMousePos"][3]["defaults"] = defs["igGetMousePos"][1]["defaults"] defs["igGetMousePos"][3]["funcname"] = "GetMousePos" +defs["igGetMousePos"][3]["namespace"] = "ImGui" defs["igGetMousePos"][3]["nonUDT"] = 2 defs["igGetMousePos"][3]["ov_cimguiname"] = "igGetMousePos_nonUDT2" defs["igGetMousePos"][3]["ret"] = "ImVec2_Simple" defs["igGetMousePos"][3]["retorig"] = "ImVec2" defs["igGetMousePos"][3]["signature"] = "()" -defs["igGetMousePos"][3]["stname"] = "ImGui" +defs["igGetMousePos"][3]["stname"] = "" defs["igGetMousePos"]["()"] = defs["igGetMousePos"][1] defs["igGetMousePos"]["()nonUDT"] = defs["igGetMousePos"][2] defs["igGetMousePos"]["()nonUDT2"] = defs["igGetMousePos"][3] @@ -8136,9 +8613,11 @@ defs["igGetMousePosOnOpeningCurrentPopup"][1]["cimguiname"] = "igGetMousePosOnOp defs["igGetMousePosOnOpeningCurrentPopup"][1]["comment"] = "" defs["igGetMousePosOnOpeningCurrentPopup"][1]["defaults"] = {} defs["igGetMousePosOnOpeningCurrentPopup"][1]["funcname"] = "GetMousePosOnOpeningCurrentPopup" +defs["igGetMousePosOnOpeningCurrentPopup"][1]["namespace"] = "ImGui" +defs["igGetMousePosOnOpeningCurrentPopup"][1]["ov_cimguiname"] = "igGetMousePosOnOpeningCurrentPopup" defs["igGetMousePosOnOpeningCurrentPopup"][1]["ret"] = "ImVec2" defs["igGetMousePosOnOpeningCurrentPopup"][1]["signature"] = "()" -defs["igGetMousePosOnOpeningCurrentPopup"][1]["stname"] = "ImGui" +defs["igGetMousePosOnOpeningCurrentPopup"][1]["stname"] = "" defs["igGetMousePosOnOpeningCurrentPopup"][2] = {} defs["igGetMousePosOnOpeningCurrentPopup"][2]["args"] = "(ImVec2 *pOut)" defs["igGetMousePosOnOpeningCurrentPopup"][2]["argsT"] = {} @@ -8151,11 +8630,12 @@ defs["igGetMousePosOnOpeningCurrentPopup"][2]["cimguiname"] = "igGetMousePosOnOp defs["igGetMousePosOnOpeningCurrentPopup"][2]["comment"] = "" defs["igGetMousePosOnOpeningCurrentPopup"][2]["defaults"] = defs["igGetMousePosOnOpeningCurrentPopup"][1]["defaults"] defs["igGetMousePosOnOpeningCurrentPopup"][2]["funcname"] = "GetMousePosOnOpeningCurrentPopup" +defs["igGetMousePosOnOpeningCurrentPopup"][2]["namespace"] = "ImGui" defs["igGetMousePosOnOpeningCurrentPopup"][2]["nonUDT"] = 1 defs["igGetMousePosOnOpeningCurrentPopup"][2]["ov_cimguiname"] = "igGetMousePosOnOpeningCurrentPopup_nonUDT" defs["igGetMousePosOnOpeningCurrentPopup"][2]["ret"] = "void" defs["igGetMousePosOnOpeningCurrentPopup"][2]["signature"] = "()" -defs["igGetMousePosOnOpeningCurrentPopup"][2]["stname"] = "ImGui" +defs["igGetMousePosOnOpeningCurrentPopup"][2]["stname"] = "" defs["igGetMousePosOnOpeningCurrentPopup"][3] = {} defs["igGetMousePosOnOpeningCurrentPopup"][3]["args"] = "()" defs["igGetMousePosOnOpeningCurrentPopup"][3]["argsT"] = {} @@ -8165,12 +8645,13 @@ defs["igGetMousePosOnOpeningCurrentPopup"][3]["cimguiname"] = "igGetMousePosOnOp defs["igGetMousePosOnOpeningCurrentPopup"][3]["comment"] = "" defs["igGetMousePosOnOpeningCurrentPopup"][3]["defaults"] = defs["igGetMousePosOnOpeningCurrentPopup"][1]["defaults"] defs["igGetMousePosOnOpeningCurrentPopup"][3]["funcname"] = "GetMousePosOnOpeningCurrentPopup" +defs["igGetMousePosOnOpeningCurrentPopup"][3]["namespace"] = "ImGui" defs["igGetMousePosOnOpeningCurrentPopup"][3]["nonUDT"] = 2 defs["igGetMousePosOnOpeningCurrentPopup"][3]["ov_cimguiname"] = "igGetMousePosOnOpeningCurrentPopup_nonUDT2" defs["igGetMousePosOnOpeningCurrentPopup"][3]["ret"] = "ImVec2_Simple" defs["igGetMousePosOnOpeningCurrentPopup"][3]["retorig"] = "ImVec2" defs["igGetMousePosOnOpeningCurrentPopup"][3]["signature"] = "()" -defs["igGetMousePosOnOpeningCurrentPopup"][3]["stname"] = "ImGui" +defs["igGetMousePosOnOpeningCurrentPopup"][3]["stname"] = "" defs["igGetMousePosOnOpeningCurrentPopup"]["()"] = defs["igGetMousePosOnOpeningCurrentPopup"][1] defs["igGetMousePosOnOpeningCurrentPopup"]["()nonUDT"] = defs["igGetMousePosOnOpeningCurrentPopup"][2] defs["igGetMousePosOnOpeningCurrentPopup"]["()nonUDT2"] = defs["igGetMousePosOnOpeningCurrentPopup"][3] @@ -8184,9 +8665,11 @@ defs["igGetOverlayDrawList"][1]["cimguiname"] = "igGetOverlayDrawList" defs["igGetOverlayDrawList"][1]["comment"] = "" defs["igGetOverlayDrawList"][1]["defaults"] = {} defs["igGetOverlayDrawList"][1]["funcname"] = "GetOverlayDrawList" +defs["igGetOverlayDrawList"][1]["namespace"] = "ImGui" +defs["igGetOverlayDrawList"][1]["ov_cimguiname"] = "igGetOverlayDrawList" defs["igGetOverlayDrawList"][1]["ret"] = "ImDrawList*" defs["igGetOverlayDrawList"][1]["signature"] = "()" -defs["igGetOverlayDrawList"][1]["stname"] = "ImGui" +defs["igGetOverlayDrawList"][1]["stname"] = "" defs["igGetOverlayDrawList"]["()"] = defs["igGetOverlayDrawList"][1] defs["igGetScrollMaxX"] = {} defs["igGetScrollMaxX"][1] = {} @@ -8198,9 +8681,11 @@ defs["igGetScrollMaxX"][1]["cimguiname"] = "igGetScrollMaxX" defs["igGetScrollMaxX"][1]["comment"] = "" defs["igGetScrollMaxX"][1]["defaults"] = {} defs["igGetScrollMaxX"][1]["funcname"] = "GetScrollMaxX" +defs["igGetScrollMaxX"][1]["namespace"] = "ImGui" +defs["igGetScrollMaxX"][1]["ov_cimguiname"] = "igGetScrollMaxX" defs["igGetScrollMaxX"][1]["ret"] = "float" defs["igGetScrollMaxX"][1]["signature"] = "()" -defs["igGetScrollMaxX"][1]["stname"] = "ImGui" +defs["igGetScrollMaxX"][1]["stname"] = "" defs["igGetScrollMaxX"]["()"] = defs["igGetScrollMaxX"][1] defs["igGetScrollMaxY"] = {} defs["igGetScrollMaxY"][1] = {} @@ -8212,9 +8697,11 @@ defs["igGetScrollMaxY"][1]["cimguiname"] = "igGetScrollMaxY" defs["igGetScrollMaxY"][1]["comment"] = "" defs["igGetScrollMaxY"][1]["defaults"] = {} defs["igGetScrollMaxY"][1]["funcname"] = "GetScrollMaxY" +defs["igGetScrollMaxY"][1]["namespace"] = "ImGui" +defs["igGetScrollMaxY"][1]["ov_cimguiname"] = "igGetScrollMaxY" defs["igGetScrollMaxY"][1]["ret"] = "float" defs["igGetScrollMaxY"][1]["signature"] = "()" -defs["igGetScrollMaxY"][1]["stname"] = "ImGui" +defs["igGetScrollMaxY"][1]["stname"] = "" defs["igGetScrollMaxY"]["()"] = defs["igGetScrollMaxY"][1] defs["igGetScrollX"] = {} defs["igGetScrollX"][1] = {} @@ -8226,9 +8713,11 @@ defs["igGetScrollX"][1]["cimguiname"] = "igGetScrollX" defs["igGetScrollX"][1]["comment"] = "" defs["igGetScrollX"][1]["defaults"] = {} defs["igGetScrollX"][1]["funcname"] = "GetScrollX" +defs["igGetScrollX"][1]["namespace"] = "ImGui" +defs["igGetScrollX"][1]["ov_cimguiname"] = "igGetScrollX" defs["igGetScrollX"][1]["ret"] = "float" defs["igGetScrollX"][1]["signature"] = "()" -defs["igGetScrollX"][1]["stname"] = "ImGui" +defs["igGetScrollX"][1]["stname"] = "" defs["igGetScrollX"]["()"] = defs["igGetScrollX"][1] defs["igGetScrollY"] = {} defs["igGetScrollY"][1] = {} @@ -8240,9 +8729,11 @@ defs["igGetScrollY"][1]["cimguiname"] = "igGetScrollY" defs["igGetScrollY"][1]["comment"] = "" defs["igGetScrollY"][1]["defaults"] = {} defs["igGetScrollY"][1]["funcname"] = "GetScrollY" +defs["igGetScrollY"][1]["namespace"] = "ImGui" +defs["igGetScrollY"][1]["ov_cimguiname"] = "igGetScrollY" defs["igGetScrollY"][1]["ret"] = "float" defs["igGetScrollY"][1]["signature"] = "()" -defs["igGetScrollY"][1]["stname"] = "ImGui" +defs["igGetScrollY"][1]["stname"] = "" defs["igGetScrollY"]["()"] = defs["igGetScrollY"][1] defs["igGetStateStorage"] = {} defs["igGetStateStorage"][1] = {} @@ -8254,9 +8745,11 @@ defs["igGetStateStorage"][1]["cimguiname"] = "igGetStateStorage" defs["igGetStateStorage"][1]["comment"] = "" defs["igGetStateStorage"][1]["defaults"] = {} defs["igGetStateStorage"][1]["funcname"] = "GetStateStorage" +defs["igGetStateStorage"][1]["namespace"] = "ImGui" +defs["igGetStateStorage"][1]["ov_cimguiname"] = "igGetStateStorage" defs["igGetStateStorage"][1]["ret"] = "ImGuiStorage*" defs["igGetStateStorage"][1]["signature"] = "()" -defs["igGetStateStorage"][1]["stname"] = "ImGui" +defs["igGetStateStorage"][1]["stname"] = "" defs["igGetStateStorage"]["()"] = defs["igGetStateStorage"][1] defs["igGetStyle"] = {} defs["igGetStyle"][1] = {} @@ -8268,10 +8761,12 @@ defs["igGetStyle"][1]["cimguiname"] = "igGetStyle" defs["igGetStyle"][1]["comment"] = "" defs["igGetStyle"][1]["defaults"] = {} defs["igGetStyle"][1]["funcname"] = "GetStyle" +defs["igGetStyle"][1]["namespace"] = "ImGui" +defs["igGetStyle"][1]["ov_cimguiname"] = "igGetStyle" defs["igGetStyle"][1]["ret"] = "ImGuiStyle*" defs["igGetStyle"][1]["retref"] = "&" defs["igGetStyle"][1]["signature"] = "()" -defs["igGetStyle"][1]["stname"] = "ImGui" +defs["igGetStyle"][1]["stname"] = "" defs["igGetStyle"]["()"] = defs["igGetStyle"][1] defs["igGetStyleColorName"] = {} defs["igGetStyleColorName"][1] = {} @@ -8286,9 +8781,11 @@ defs["igGetStyleColorName"][1]["cimguiname"] = "igGetStyleColorName" defs["igGetStyleColorName"][1]["comment"] = "" defs["igGetStyleColorName"][1]["defaults"] = {} defs["igGetStyleColorName"][1]["funcname"] = "GetStyleColorName" +defs["igGetStyleColorName"][1]["namespace"] = "ImGui" +defs["igGetStyleColorName"][1]["ov_cimguiname"] = "igGetStyleColorName" defs["igGetStyleColorName"][1]["ret"] = "const char*" defs["igGetStyleColorName"][1]["signature"] = "(ImGuiCol)" -defs["igGetStyleColorName"][1]["stname"] = "ImGui" +defs["igGetStyleColorName"][1]["stname"] = "" defs["igGetStyleColorName"]["(ImGuiCol)"] = defs["igGetStyleColorName"][1] defs["igGetStyleColorVec4"] = {} defs["igGetStyleColorVec4"][1] = {} @@ -8303,10 +8800,12 @@ defs["igGetStyleColorVec4"][1]["cimguiname"] = "igGetStyleColorVec4" defs["igGetStyleColorVec4"][1]["comment"] = "" defs["igGetStyleColorVec4"][1]["defaults"] = {} defs["igGetStyleColorVec4"][1]["funcname"] = "GetStyleColorVec4" +defs["igGetStyleColorVec4"][1]["namespace"] = "ImGui" +defs["igGetStyleColorVec4"][1]["ov_cimguiname"] = "igGetStyleColorVec4" defs["igGetStyleColorVec4"][1]["ret"] = "const ImVec4*" defs["igGetStyleColorVec4"][1]["retref"] = "&" defs["igGetStyleColorVec4"][1]["signature"] = "(ImGuiCol)" -defs["igGetStyleColorVec4"][1]["stname"] = "ImGui" +defs["igGetStyleColorVec4"][1]["stname"] = "" defs["igGetStyleColorVec4"]["(ImGuiCol)"] = defs["igGetStyleColorVec4"][1] defs["igGetTextLineHeight"] = {} defs["igGetTextLineHeight"][1] = {} @@ -8318,9 +8817,11 @@ defs["igGetTextLineHeight"][1]["cimguiname"] = "igGetTextLineHeight" defs["igGetTextLineHeight"][1]["comment"] = "" defs["igGetTextLineHeight"][1]["defaults"] = {} defs["igGetTextLineHeight"][1]["funcname"] = "GetTextLineHeight" +defs["igGetTextLineHeight"][1]["namespace"] = "ImGui" +defs["igGetTextLineHeight"][1]["ov_cimguiname"] = "igGetTextLineHeight" defs["igGetTextLineHeight"][1]["ret"] = "float" defs["igGetTextLineHeight"][1]["signature"] = "()" -defs["igGetTextLineHeight"][1]["stname"] = "ImGui" +defs["igGetTextLineHeight"][1]["stname"] = "" defs["igGetTextLineHeight"]["()"] = defs["igGetTextLineHeight"][1] defs["igGetTextLineHeightWithSpacing"] = {} defs["igGetTextLineHeightWithSpacing"][1] = {} @@ -8332,9 +8833,11 @@ defs["igGetTextLineHeightWithSpacing"][1]["cimguiname"] = "igGetTextLineHeightWi defs["igGetTextLineHeightWithSpacing"][1]["comment"] = "" defs["igGetTextLineHeightWithSpacing"][1]["defaults"] = {} defs["igGetTextLineHeightWithSpacing"][1]["funcname"] = "GetTextLineHeightWithSpacing" +defs["igGetTextLineHeightWithSpacing"][1]["namespace"] = "ImGui" +defs["igGetTextLineHeightWithSpacing"][1]["ov_cimguiname"] = "igGetTextLineHeightWithSpacing" defs["igGetTextLineHeightWithSpacing"][1]["ret"] = "float" defs["igGetTextLineHeightWithSpacing"][1]["signature"] = "()" -defs["igGetTextLineHeightWithSpacing"][1]["stname"] = "ImGui" +defs["igGetTextLineHeightWithSpacing"][1]["stname"] = "" defs["igGetTextLineHeightWithSpacing"]["()"] = defs["igGetTextLineHeightWithSpacing"][1] defs["igGetTime"] = {} defs["igGetTime"][1] = {} @@ -8346,9 +8849,11 @@ defs["igGetTime"][1]["cimguiname"] = "igGetTime" defs["igGetTime"][1]["comment"] = "" defs["igGetTime"][1]["defaults"] = {} defs["igGetTime"][1]["funcname"] = "GetTime" +defs["igGetTime"][1]["namespace"] = "ImGui" +defs["igGetTime"][1]["ov_cimguiname"] = "igGetTime" defs["igGetTime"][1]["ret"] = "double" defs["igGetTime"][1]["signature"] = "()" -defs["igGetTime"][1]["stname"] = "ImGui" +defs["igGetTime"][1]["stname"] = "" defs["igGetTime"]["()"] = defs["igGetTime"][1] defs["igGetTreeNodeToLabelSpacing"] = {} defs["igGetTreeNodeToLabelSpacing"][1] = {} @@ -8360,9 +8865,11 @@ defs["igGetTreeNodeToLabelSpacing"][1]["cimguiname"] = "igGetTreeNodeToLabelSpac defs["igGetTreeNodeToLabelSpacing"][1]["comment"] = "" defs["igGetTreeNodeToLabelSpacing"][1]["defaults"] = {} defs["igGetTreeNodeToLabelSpacing"][1]["funcname"] = "GetTreeNodeToLabelSpacing" +defs["igGetTreeNodeToLabelSpacing"][1]["namespace"] = "ImGui" +defs["igGetTreeNodeToLabelSpacing"][1]["ov_cimguiname"] = "igGetTreeNodeToLabelSpacing" defs["igGetTreeNodeToLabelSpacing"][1]["ret"] = "float" defs["igGetTreeNodeToLabelSpacing"][1]["signature"] = "()" -defs["igGetTreeNodeToLabelSpacing"][1]["stname"] = "ImGui" +defs["igGetTreeNodeToLabelSpacing"][1]["stname"] = "" defs["igGetTreeNodeToLabelSpacing"]["()"] = defs["igGetTreeNodeToLabelSpacing"][1] defs["igGetVersion"] = {} defs["igGetVersion"][1] = {} @@ -8374,9 +8881,11 @@ defs["igGetVersion"][1]["cimguiname"] = "igGetVersion" defs["igGetVersion"][1]["comment"] = "" defs["igGetVersion"][1]["defaults"] = {} defs["igGetVersion"][1]["funcname"] = "GetVersion" +defs["igGetVersion"][1]["namespace"] = "ImGui" +defs["igGetVersion"][1]["ov_cimguiname"] = "igGetVersion" defs["igGetVersion"][1]["ret"] = "const char*" defs["igGetVersion"][1]["signature"] = "()" -defs["igGetVersion"][1]["stname"] = "ImGui" +defs["igGetVersion"][1]["stname"] = "" defs["igGetVersion"]["()"] = defs["igGetVersion"][1] defs["igGetWindowContentRegionMax"] = {} defs["igGetWindowContentRegionMax"][1] = {} @@ -8388,9 +8897,11 @@ defs["igGetWindowContentRegionMax"][1]["cimguiname"] = "igGetWindowContentRegion defs["igGetWindowContentRegionMax"][1]["comment"] = "" defs["igGetWindowContentRegionMax"][1]["defaults"] = {} defs["igGetWindowContentRegionMax"][1]["funcname"] = "GetWindowContentRegionMax" +defs["igGetWindowContentRegionMax"][1]["namespace"] = "ImGui" +defs["igGetWindowContentRegionMax"][1]["ov_cimguiname"] = "igGetWindowContentRegionMax" defs["igGetWindowContentRegionMax"][1]["ret"] = "ImVec2" defs["igGetWindowContentRegionMax"][1]["signature"] = "()" -defs["igGetWindowContentRegionMax"][1]["stname"] = "ImGui" +defs["igGetWindowContentRegionMax"][1]["stname"] = "" defs["igGetWindowContentRegionMax"][2] = {} defs["igGetWindowContentRegionMax"][2]["args"] = "(ImVec2 *pOut)" defs["igGetWindowContentRegionMax"][2]["argsT"] = {} @@ -8403,11 +8914,12 @@ defs["igGetWindowContentRegionMax"][2]["cimguiname"] = "igGetWindowContentRegion defs["igGetWindowContentRegionMax"][2]["comment"] = "" defs["igGetWindowContentRegionMax"][2]["defaults"] = defs["igGetWindowContentRegionMax"][1]["defaults"] defs["igGetWindowContentRegionMax"][2]["funcname"] = "GetWindowContentRegionMax" +defs["igGetWindowContentRegionMax"][2]["namespace"] = "ImGui" defs["igGetWindowContentRegionMax"][2]["nonUDT"] = 1 defs["igGetWindowContentRegionMax"][2]["ov_cimguiname"] = "igGetWindowContentRegionMax_nonUDT" defs["igGetWindowContentRegionMax"][2]["ret"] = "void" defs["igGetWindowContentRegionMax"][2]["signature"] = "()" -defs["igGetWindowContentRegionMax"][2]["stname"] = "ImGui" +defs["igGetWindowContentRegionMax"][2]["stname"] = "" defs["igGetWindowContentRegionMax"][3] = {} defs["igGetWindowContentRegionMax"][3]["args"] = "()" defs["igGetWindowContentRegionMax"][3]["argsT"] = {} @@ -8417,12 +8929,13 @@ defs["igGetWindowContentRegionMax"][3]["cimguiname"] = "igGetWindowContentRegion defs["igGetWindowContentRegionMax"][3]["comment"] = "" defs["igGetWindowContentRegionMax"][3]["defaults"] = defs["igGetWindowContentRegionMax"][1]["defaults"] defs["igGetWindowContentRegionMax"][3]["funcname"] = "GetWindowContentRegionMax" +defs["igGetWindowContentRegionMax"][3]["namespace"] = "ImGui" defs["igGetWindowContentRegionMax"][3]["nonUDT"] = 2 defs["igGetWindowContentRegionMax"][3]["ov_cimguiname"] = "igGetWindowContentRegionMax_nonUDT2" defs["igGetWindowContentRegionMax"][3]["ret"] = "ImVec2_Simple" defs["igGetWindowContentRegionMax"][3]["retorig"] = "ImVec2" defs["igGetWindowContentRegionMax"][3]["signature"] = "()" -defs["igGetWindowContentRegionMax"][3]["stname"] = "ImGui" +defs["igGetWindowContentRegionMax"][3]["stname"] = "" defs["igGetWindowContentRegionMax"]["()"] = defs["igGetWindowContentRegionMax"][1] defs["igGetWindowContentRegionMax"]["()nonUDT"] = defs["igGetWindowContentRegionMax"][2] defs["igGetWindowContentRegionMax"]["()nonUDT2"] = defs["igGetWindowContentRegionMax"][3] @@ -8436,9 +8949,11 @@ defs["igGetWindowContentRegionMin"][1]["cimguiname"] = "igGetWindowContentRegion defs["igGetWindowContentRegionMin"][1]["comment"] = "" defs["igGetWindowContentRegionMin"][1]["defaults"] = {} defs["igGetWindowContentRegionMin"][1]["funcname"] = "GetWindowContentRegionMin" +defs["igGetWindowContentRegionMin"][1]["namespace"] = "ImGui" +defs["igGetWindowContentRegionMin"][1]["ov_cimguiname"] = "igGetWindowContentRegionMin" defs["igGetWindowContentRegionMin"][1]["ret"] = "ImVec2" defs["igGetWindowContentRegionMin"][1]["signature"] = "()" -defs["igGetWindowContentRegionMin"][1]["stname"] = "ImGui" +defs["igGetWindowContentRegionMin"][1]["stname"] = "" defs["igGetWindowContentRegionMin"][2] = {} defs["igGetWindowContentRegionMin"][2]["args"] = "(ImVec2 *pOut)" defs["igGetWindowContentRegionMin"][2]["argsT"] = {} @@ -8451,11 +8966,12 @@ defs["igGetWindowContentRegionMin"][2]["cimguiname"] = "igGetWindowContentRegion defs["igGetWindowContentRegionMin"][2]["comment"] = "" defs["igGetWindowContentRegionMin"][2]["defaults"] = defs["igGetWindowContentRegionMin"][1]["defaults"] defs["igGetWindowContentRegionMin"][2]["funcname"] = "GetWindowContentRegionMin" +defs["igGetWindowContentRegionMin"][2]["namespace"] = "ImGui" defs["igGetWindowContentRegionMin"][2]["nonUDT"] = 1 defs["igGetWindowContentRegionMin"][2]["ov_cimguiname"] = "igGetWindowContentRegionMin_nonUDT" defs["igGetWindowContentRegionMin"][2]["ret"] = "void" defs["igGetWindowContentRegionMin"][2]["signature"] = "()" -defs["igGetWindowContentRegionMin"][2]["stname"] = "ImGui" +defs["igGetWindowContentRegionMin"][2]["stname"] = "" defs["igGetWindowContentRegionMin"][3] = {} defs["igGetWindowContentRegionMin"][3]["args"] = "()" defs["igGetWindowContentRegionMin"][3]["argsT"] = {} @@ -8465,12 +8981,13 @@ defs["igGetWindowContentRegionMin"][3]["cimguiname"] = "igGetWindowContentRegion defs["igGetWindowContentRegionMin"][3]["comment"] = "" defs["igGetWindowContentRegionMin"][3]["defaults"] = defs["igGetWindowContentRegionMin"][1]["defaults"] defs["igGetWindowContentRegionMin"][3]["funcname"] = "GetWindowContentRegionMin" +defs["igGetWindowContentRegionMin"][3]["namespace"] = "ImGui" defs["igGetWindowContentRegionMin"][3]["nonUDT"] = 2 defs["igGetWindowContentRegionMin"][3]["ov_cimguiname"] = "igGetWindowContentRegionMin_nonUDT2" defs["igGetWindowContentRegionMin"][3]["ret"] = "ImVec2_Simple" defs["igGetWindowContentRegionMin"][3]["retorig"] = "ImVec2" defs["igGetWindowContentRegionMin"][3]["signature"] = "()" -defs["igGetWindowContentRegionMin"][3]["stname"] = "ImGui" +defs["igGetWindowContentRegionMin"][3]["stname"] = "" defs["igGetWindowContentRegionMin"]["()"] = defs["igGetWindowContentRegionMin"][1] defs["igGetWindowContentRegionMin"]["()nonUDT"] = defs["igGetWindowContentRegionMin"][2] defs["igGetWindowContentRegionMin"]["()nonUDT2"] = defs["igGetWindowContentRegionMin"][3] @@ -8484,9 +9001,11 @@ defs["igGetWindowContentRegionWidth"][1]["cimguiname"] = "igGetWindowContentRegi defs["igGetWindowContentRegionWidth"][1]["comment"] = "" defs["igGetWindowContentRegionWidth"][1]["defaults"] = {} defs["igGetWindowContentRegionWidth"][1]["funcname"] = "GetWindowContentRegionWidth" +defs["igGetWindowContentRegionWidth"][1]["namespace"] = "ImGui" +defs["igGetWindowContentRegionWidth"][1]["ov_cimguiname"] = "igGetWindowContentRegionWidth" defs["igGetWindowContentRegionWidth"][1]["ret"] = "float" defs["igGetWindowContentRegionWidth"][1]["signature"] = "()" -defs["igGetWindowContentRegionWidth"][1]["stname"] = "ImGui" +defs["igGetWindowContentRegionWidth"][1]["stname"] = "" defs["igGetWindowContentRegionWidth"]["()"] = defs["igGetWindowContentRegionWidth"][1] defs["igGetWindowDrawList"] = {} defs["igGetWindowDrawList"][1] = {} @@ -8498,9 +9017,11 @@ defs["igGetWindowDrawList"][1]["cimguiname"] = "igGetWindowDrawList" defs["igGetWindowDrawList"][1]["comment"] = "" defs["igGetWindowDrawList"][1]["defaults"] = {} defs["igGetWindowDrawList"][1]["funcname"] = "GetWindowDrawList" +defs["igGetWindowDrawList"][1]["namespace"] = "ImGui" +defs["igGetWindowDrawList"][1]["ov_cimguiname"] = "igGetWindowDrawList" defs["igGetWindowDrawList"][1]["ret"] = "ImDrawList*" defs["igGetWindowDrawList"][1]["signature"] = "()" -defs["igGetWindowDrawList"][1]["stname"] = "ImGui" +defs["igGetWindowDrawList"][1]["stname"] = "" defs["igGetWindowDrawList"]["()"] = defs["igGetWindowDrawList"][1] defs["igGetWindowHeight"] = {} defs["igGetWindowHeight"][1] = {} @@ -8512,9 +9033,11 @@ defs["igGetWindowHeight"][1]["cimguiname"] = "igGetWindowHeight" defs["igGetWindowHeight"][1]["comment"] = "" defs["igGetWindowHeight"][1]["defaults"] = {} defs["igGetWindowHeight"][1]["funcname"] = "GetWindowHeight" +defs["igGetWindowHeight"][1]["namespace"] = "ImGui" +defs["igGetWindowHeight"][1]["ov_cimguiname"] = "igGetWindowHeight" defs["igGetWindowHeight"][1]["ret"] = "float" defs["igGetWindowHeight"][1]["signature"] = "()" -defs["igGetWindowHeight"][1]["stname"] = "ImGui" +defs["igGetWindowHeight"][1]["stname"] = "" defs["igGetWindowHeight"]["()"] = defs["igGetWindowHeight"][1] defs["igGetWindowPos"] = {} defs["igGetWindowPos"][1] = {} @@ -8526,9 +9049,11 @@ defs["igGetWindowPos"][1]["cimguiname"] = "igGetWindowPos" defs["igGetWindowPos"][1]["comment"] = "" defs["igGetWindowPos"][1]["defaults"] = {} defs["igGetWindowPos"][1]["funcname"] = "GetWindowPos" +defs["igGetWindowPos"][1]["namespace"] = "ImGui" +defs["igGetWindowPos"][1]["ov_cimguiname"] = "igGetWindowPos" defs["igGetWindowPos"][1]["ret"] = "ImVec2" defs["igGetWindowPos"][1]["signature"] = "()" -defs["igGetWindowPos"][1]["stname"] = "ImGui" +defs["igGetWindowPos"][1]["stname"] = "" defs["igGetWindowPos"][2] = {} defs["igGetWindowPos"][2]["args"] = "(ImVec2 *pOut)" defs["igGetWindowPos"][2]["argsT"] = {} @@ -8541,11 +9066,12 @@ defs["igGetWindowPos"][2]["cimguiname"] = "igGetWindowPos" defs["igGetWindowPos"][2]["comment"] = "" defs["igGetWindowPos"][2]["defaults"] = defs["igGetWindowPos"][1]["defaults"] defs["igGetWindowPos"][2]["funcname"] = "GetWindowPos" +defs["igGetWindowPos"][2]["namespace"] = "ImGui" defs["igGetWindowPos"][2]["nonUDT"] = 1 defs["igGetWindowPos"][2]["ov_cimguiname"] = "igGetWindowPos_nonUDT" defs["igGetWindowPos"][2]["ret"] = "void" defs["igGetWindowPos"][2]["signature"] = "()" -defs["igGetWindowPos"][2]["stname"] = "ImGui" +defs["igGetWindowPos"][2]["stname"] = "" defs["igGetWindowPos"][3] = {} defs["igGetWindowPos"][3]["args"] = "()" defs["igGetWindowPos"][3]["argsT"] = {} @@ -8555,12 +9081,13 @@ defs["igGetWindowPos"][3]["cimguiname"] = "igGetWindowPos" defs["igGetWindowPos"][3]["comment"] = "" defs["igGetWindowPos"][3]["defaults"] = defs["igGetWindowPos"][1]["defaults"] defs["igGetWindowPos"][3]["funcname"] = "GetWindowPos" +defs["igGetWindowPos"][3]["namespace"] = "ImGui" defs["igGetWindowPos"][3]["nonUDT"] = 2 defs["igGetWindowPos"][3]["ov_cimguiname"] = "igGetWindowPos_nonUDT2" defs["igGetWindowPos"][3]["ret"] = "ImVec2_Simple" defs["igGetWindowPos"][3]["retorig"] = "ImVec2" defs["igGetWindowPos"][3]["signature"] = "()" -defs["igGetWindowPos"][3]["stname"] = "ImGui" +defs["igGetWindowPos"][3]["stname"] = "" defs["igGetWindowPos"]["()"] = defs["igGetWindowPos"][1] defs["igGetWindowPos"]["()nonUDT"] = defs["igGetWindowPos"][2] defs["igGetWindowPos"]["()nonUDT2"] = defs["igGetWindowPos"][3] @@ -8574,9 +9101,11 @@ defs["igGetWindowSize"][1]["cimguiname"] = "igGetWindowSize" defs["igGetWindowSize"][1]["comment"] = "" defs["igGetWindowSize"][1]["defaults"] = {} defs["igGetWindowSize"][1]["funcname"] = "GetWindowSize" +defs["igGetWindowSize"][1]["namespace"] = "ImGui" +defs["igGetWindowSize"][1]["ov_cimguiname"] = "igGetWindowSize" defs["igGetWindowSize"][1]["ret"] = "ImVec2" defs["igGetWindowSize"][1]["signature"] = "()" -defs["igGetWindowSize"][1]["stname"] = "ImGui" +defs["igGetWindowSize"][1]["stname"] = "" defs["igGetWindowSize"][2] = {} defs["igGetWindowSize"][2]["args"] = "(ImVec2 *pOut)" defs["igGetWindowSize"][2]["argsT"] = {} @@ -8589,11 +9118,12 @@ defs["igGetWindowSize"][2]["cimguiname"] = "igGetWindowSize" defs["igGetWindowSize"][2]["comment"] = "" defs["igGetWindowSize"][2]["defaults"] = defs["igGetWindowSize"][1]["defaults"] defs["igGetWindowSize"][2]["funcname"] = "GetWindowSize" +defs["igGetWindowSize"][2]["namespace"] = "ImGui" defs["igGetWindowSize"][2]["nonUDT"] = 1 defs["igGetWindowSize"][2]["ov_cimguiname"] = "igGetWindowSize_nonUDT" defs["igGetWindowSize"][2]["ret"] = "void" defs["igGetWindowSize"][2]["signature"] = "()" -defs["igGetWindowSize"][2]["stname"] = "ImGui" +defs["igGetWindowSize"][2]["stname"] = "" defs["igGetWindowSize"][3] = {} defs["igGetWindowSize"][3]["args"] = "()" defs["igGetWindowSize"][3]["argsT"] = {} @@ -8603,12 +9133,13 @@ defs["igGetWindowSize"][3]["cimguiname"] = "igGetWindowSize" defs["igGetWindowSize"][3]["comment"] = "" defs["igGetWindowSize"][3]["defaults"] = defs["igGetWindowSize"][1]["defaults"] defs["igGetWindowSize"][3]["funcname"] = "GetWindowSize" +defs["igGetWindowSize"][3]["namespace"] = "ImGui" defs["igGetWindowSize"][3]["nonUDT"] = 2 defs["igGetWindowSize"][3]["ov_cimguiname"] = "igGetWindowSize_nonUDT2" defs["igGetWindowSize"][3]["ret"] = "ImVec2_Simple" defs["igGetWindowSize"][3]["retorig"] = "ImVec2" defs["igGetWindowSize"][3]["signature"] = "()" -defs["igGetWindowSize"][3]["stname"] = "ImGui" +defs["igGetWindowSize"][3]["stname"] = "" defs["igGetWindowSize"]["()"] = defs["igGetWindowSize"][1] defs["igGetWindowSize"]["()nonUDT"] = defs["igGetWindowSize"][2] defs["igGetWindowSize"]["()nonUDT2"] = defs["igGetWindowSize"][3] @@ -8622,9 +9153,11 @@ defs["igGetWindowWidth"][1]["cimguiname"] = "igGetWindowWidth" defs["igGetWindowWidth"][1]["comment"] = "" defs["igGetWindowWidth"][1]["defaults"] = {} defs["igGetWindowWidth"][1]["funcname"] = "GetWindowWidth" +defs["igGetWindowWidth"][1]["namespace"] = "ImGui" +defs["igGetWindowWidth"][1]["ov_cimguiname"] = "igGetWindowWidth" defs["igGetWindowWidth"][1]["ret"] = "float" defs["igGetWindowWidth"][1]["signature"] = "()" -defs["igGetWindowWidth"][1]["stname"] = "ImGui" +defs["igGetWindowWidth"][1]["stname"] = "" defs["igGetWindowWidth"]["()"] = defs["igGetWindowWidth"][1] defs["igImage"] = {} defs["igImage"][1] = {} @@ -8658,9 +9191,11 @@ defs["igImage"][1]["defaults"]["tint_col"] = "ImVec4(1,1,1,1)" defs["igImage"][1]["defaults"]["uv0"] = "ImVec2(0,0)" defs["igImage"][1]["defaults"]["uv1"] = "ImVec2(1,1)" defs["igImage"][1]["funcname"] = "Image" +defs["igImage"][1]["namespace"] = "ImGui" +defs["igImage"][1]["ov_cimguiname"] = "igImage" defs["igImage"][1]["ret"] = "void" defs["igImage"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4)" -defs["igImage"][1]["stname"] = "ImGui" +defs["igImage"][1]["stname"] = "" defs["igImage"]["(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4)"] = defs["igImage"][1] defs["igImageButton"] = {} defs["igImageButton"][1] = {} @@ -8698,9 +9233,11 @@ defs["igImageButton"][1]["defaults"]["tint_col"] = "ImVec4(1,1,1,1)" defs["igImageButton"][1]["defaults"]["uv0"] = "ImVec2(0,0)" defs["igImageButton"][1]["defaults"]["uv1"] = "ImVec2(1,1)" defs["igImageButton"][1]["funcname"] = "ImageButton" +defs["igImageButton"][1]["namespace"] = "ImGui" +defs["igImageButton"][1]["ov_cimguiname"] = "igImageButton" defs["igImageButton"][1]["ret"] = "bool" defs["igImageButton"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,int,const ImVec4,const ImVec4)" -defs["igImageButton"][1]["stname"] = "ImGui" +defs["igImageButton"][1]["stname"] = "" defs["igImageButton"]["(ImTextureID,const ImVec2,const ImVec2,const ImVec2,int,const ImVec4,const ImVec4)"] = defs["igImageButton"][1] defs["igIndent"] = {} defs["igIndent"][1] = {} @@ -8716,9 +9253,11 @@ defs["igIndent"][1]["comment"] = "" defs["igIndent"][1]["defaults"] = {} defs["igIndent"][1]["defaults"]["indent_w"] = "0.0f" defs["igIndent"][1]["funcname"] = "Indent" +defs["igIndent"][1]["namespace"] = "ImGui" +defs["igIndent"][1]["ov_cimguiname"] = "igIndent" defs["igIndent"][1]["ret"] = "void" defs["igIndent"][1]["signature"] = "(float)" -defs["igIndent"][1]["stname"] = "ImGui" +defs["igIndent"][1]["stname"] = "" defs["igIndent"]["(float)"] = defs["igIndent"][1] defs["igInputDouble"] = {} defs["igInputDouble"][1] = {} @@ -8752,9 +9291,11 @@ defs["igInputDouble"][1]["defaults"]["format"] = "\"%.6f\"" defs["igInputDouble"][1]["defaults"]["step"] = "0.0" defs["igInputDouble"][1]["defaults"]["step_fast"] = "0.0" defs["igInputDouble"][1]["funcname"] = "InputDouble" +defs["igInputDouble"][1]["namespace"] = "ImGui" +defs["igInputDouble"][1]["ov_cimguiname"] = "igInputDouble" defs["igInputDouble"][1]["ret"] = "bool" defs["igInputDouble"][1]["signature"] = "(const char*,double*,double,double,const char*,ImGuiInputTextFlags)" -defs["igInputDouble"][1]["stname"] = "ImGui" +defs["igInputDouble"][1]["stname"] = "" defs["igInputDouble"]["(const char*,double*,double,double,const char*,ImGuiInputTextFlags)"] = defs["igInputDouble"][1] defs["igInputFloat"] = {} defs["igInputFloat"][1] = {} @@ -8788,9 +9329,11 @@ defs["igInputFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat"][1]["defaults"]["step"] = "0.0f" defs["igInputFloat"][1]["defaults"]["step_fast"] = "0.0f" defs["igInputFloat"][1]["funcname"] = "InputFloat" +defs["igInputFloat"][1]["namespace"] = "ImGui" +defs["igInputFloat"][1]["ov_cimguiname"] = "igInputFloat" defs["igInputFloat"][1]["ret"] = "bool" defs["igInputFloat"][1]["signature"] = "(const char*,float*,float,float,const char*,ImGuiInputTextFlags)" -defs["igInputFloat"][1]["stname"] = "ImGui" +defs["igInputFloat"][1]["stname"] = "" defs["igInputFloat"]["(const char*,float*,float,float,const char*,ImGuiInputTextFlags)"] = defs["igInputFloat"][1] defs["igInputFloat2"] = {} defs["igInputFloat2"][1] = {} @@ -8816,9 +9359,11 @@ defs["igInputFloat2"][1]["defaults"] = {} defs["igInputFloat2"][1]["defaults"]["flags"] = "0" defs["igInputFloat2"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat2"][1]["funcname"] = "InputFloat2" +defs["igInputFloat2"][1]["namespace"] = "ImGui" +defs["igInputFloat2"][1]["ov_cimguiname"] = "igInputFloat2" defs["igInputFloat2"][1]["ret"] = "bool" defs["igInputFloat2"][1]["signature"] = "(const char*,float[2],const char*,ImGuiInputTextFlags)" -defs["igInputFloat2"][1]["stname"] = "ImGui" +defs["igInputFloat2"][1]["stname"] = "" defs["igInputFloat2"]["(const char*,float[2],const char*,ImGuiInputTextFlags)"] = defs["igInputFloat2"][1] defs["igInputFloat3"] = {} defs["igInputFloat3"][1] = {} @@ -8844,9 +9389,11 @@ defs["igInputFloat3"][1]["defaults"] = {} defs["igInputFloat3"][1]["defaults"]["flags"] = "0" defs["igInputFloat3"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat3"][1]["funcname"] = "InputFloat3" +defs["igInputFloat3"][1]["namespace"] = "ImGui" +defs["igInputFloat3"][1]["ov_cimguiname"] = "igInputFloat3" defs["igInputFloat3"][1]["ret"] = "bool" defs["igInputFloat3"][1]["signature"] = "(const char*,float[3],const char*,ImGuiInputTextFlags)" -defs["igInputFloat3"][1]["stname"] = "ImGui" +defs["igInputFloat3"][1]["stname"] = "" defs["igInputFloat3"]["(const char*,float[3],const char*,ImGuiInputTextFlags)"] = defs["igInputFloat3"][1] defs["igInputFloat4"] = {} defs["igInputFloat4"][1] = {} @@ -8872,9 +9419,11 @@ defs["igInputFloat4"][1]["defaults"] = {} defs["igInputFloat4"][1]["defaults"]["flags"] = "0" defs["igInputFloat4"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat4"][1]["funcname"] = "InputFloat4" +defs["igInputFloat4"][1]["namespace"] = "ImGui" +defs["igInputFloat4"][1]["ov_cimguiname"] = "igInputFloat4" defs["igInputFloat4"][1]["ret"] = "bool" defs["igInputFloat4"][1]["signature"] = "(const char*,float[4],const char*,ImGuiInputTextFlags)" -defs["igInputFloat4"][1]["stname"] = "ImGui" +defs["igInputFloat4"][1]["stname"] = "" defs["igInputFloat4"]["(const char*,float[4],const char*,ImGuiInputTextFlags)"] = defs["igInputFloat4"][1] defs["igInputInt"] = {} defs["igInputInt"][1] = {} @@ -8904,9 +9453,11 @@ defs["igInputInt"][1]["defaults"]["flags"] = "0" defs["igInputInt"][1]["defaults"]["step"] = "1" defs["igInputInt"][1]["defaults"]["step_fast"] = "100" defs["igInputInt"][1]["funcname"] = "InputInt" +defs["igInputInt"][1]["namespace"] = "ImGui" +defs["igInputInt"][1]["ov_cimguiname"] = "igInputInt" defs["igInputInt"][1]["ret"] = "bool" defs["igInputInt"][1]["signature"] = "(const char*,int*,int,int,ImGuiInputTextFlags)" -defs["igInputInt"][1]["stname"] = "ImGui" +defs["igInputInt"][1]["stname"] = "" defs["igInputInt"]["(const char*,int*,int,int,ImGuiInputTextFlags)"] = defs["igInputInt"][1] defs["igInputInt2"] = {} defs["igInputInt2"][1] = {} @@ -8928,9 +9479,11 @@ defs["igInputInt2"][1]["comment"] = "" defs["igInputInt2"][1]["defaults"] = {} defs["igInputInt2"][1]["defaults"]["flags"] = "0" defs["igInputInt2"][1]["funcname"] = "InputInt2" +defs["igInputInt2"][1]["namespace"] = "ImGui" +defs["igInputInt2"][1]["ov_cimguiname"] = "igInputInt2" defs["igInputInt2"][1]["ret"] = "bool" defs["igInputInt2"][1]["signature"] = "(const char*,int[2],ImGuiInputTextFlags)" -defs["igInputInt2"][1]["stname"] = "ImGui" +defs["igInputInt2"][1]["stname"] = "" defs["igInputInt2"]["(const char*,int[2],ImGuiInputTextFlags)"] = defs["igInputInt2"][1] defs["igInputInt3"] = {} defs["igInputInt3"][1] = {} @@ -8952,9 +9505,11 @@ defs["igInputInt3"][1]["comment"] = "" defs["igInputInt3"][1]["defaults"] = {} defs["igInputInt3"][1]["defaults"]["flags"] = "0" defs["igInputInt3"][1]["funcname"] = "InputInt3" +defs["igInputInt3"][1]["namespace"] = "ImGui" +defs["igInputInt3"][1]["ov_cimguiname"] = "igInputInt3" defs["igInputInt3"][1]["ret"] = "bool" defs["igInputInt3"][1]["signature"] = "(const char*,int[3],ImGuiInputTextFlags)" -defs["igInputInt3"][1]["stname"] = "ImGui" +defs["igInputInt3"][1]["stname"] = "" defs["igInputInt3"]["(const char*,int[3],ImGuiInputTextFlags)"] = defs["igInputInt3"][1] defs["igInputInt4"] = {} defs["igInputInt4"][1] = {} @@ -8976,9 +9531,11 @@ defs["igInputInt4"][1]["comment"] = "" defs["igInputInt4"][1]["defaults"] = {} defs["igInputInt4"][1]["defaults"]["flags"] = "0" defs["igInputInt4"][1]["funcname"] = "InputInt4" +defs["igInputInt4"][1]["namespace"] = "ImGui" +defs["igInputInt4"][1]["ov_cimguiname"] = "igInputInt4" defs["igInputInt4"][1]["ret"] = "bool" defs["igInputInt4"][1]["signature"] = "(const char*,int[4],ImGuiInputTextFlags)" -defs["igInputInt4"][1]["stname"] = "ImGui" +defs["igInputInt4"][1]["stname"] = "" defs["igInputInt4"]["(const char*,int[4],ImGuiInputTextFlags)"] = defs["igInputInt4"][1] defs["igInputScalar"] = {} defs["igInputScalar"][1] = {} @@ -9005,19 +9562,21 @@ defs["igInputScalar"][1]["argsT"][6]["type"] = "const char*" defs["igInputScalar"][1]["argsT"][7] = {} defs["igInputScalar"][1]["argsT"][7]["name"] = "flags" defs["igInputScalar"][1]["argsT"][7]["type"] = "ImGuiInputTextFlags" -defs["igInputScalar"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,const void* step=((void *)0),const void* step_fast=((void *)0),const char* format=((void *)0),ImGuiInputTextFlags flags=0)" +defs["igInputScalar"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,const void* step=((void*)0),const void* step_fast=((void*)0),const char* format=((void*)0),ImGuiInputTextFlags flags=0)" defs["igInputScalar"][1]["call_args"] = "(label,data_type,v,step,step_fast,format,flags)" defs["igInputScalar"][1]["cimguiname"] = "igInputScalar" defs["igInputScalar"][1]["comment"] = "" defs["igInputScalar"][1]["defaults"] = {} defs["igInputScalar"][1]["defaults"]["flags"] = "0" -defs["igInputScalar"][1]["defaults"]["format"] = "((void *)0)" -defs["igInputScalar"][1]["defaults"]["step"] = "((void *)0)" -defs["igInputScalar"][1]["defaults"]["step_fast"] = "((void *)0)" +defs["igInputScalar"][1]["defaults"]["format"] = "((void*)0)" +defs["igInputScalar"][1]["defaults"]["step"] = "((void*)0)" +defs["igInputScalar"][1]["defaults"]["step_fast"] = "((void*)0)" defs["igInputScalar"][1]["funcname"] = "InputScalar" +defs["igInputScalar"][1]["namespace"] = "ImGui" +defs["igInputScalar"][1]["ov_cimguiname"] = "igInputScalar" defs["igInputScalar"][1]["ret"] = "bool" defs["igInputScalar"][1]["signature"] = "(const char*,ImGuiDataType,void*,const void*,const void*,const char*,ImGuiInputTextFlags)" -defs["igInputScalar"][1]["stname"] = "ImGui" +defs["igInputScalar"][1]["stname"] = "" defs["igInputScalar"]["(const char*,ImGuiDataType,void*,const void*,const void*,const char*,ImGuiInputTextFlags)"] = defs["igInputScalar"][1] defs["igInputScalarN"] = {} defs["igInputScalarN"][1] = {} @@ -9047,19 +9606,21 @@ defs["igInputScalarN"][1]["argsT"][7]["type"] = "const char*" defs["igInputScalarN"][1]["argsT"][8] = {} defs["igInputScalarN"][1]["argsT"][8]["name"] = "flags" defs["igInputScalarN"][1]["argsT"][8]["type"] = "ImGuiInputTextFlags" -defs["igInputScalarN"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,int components,const void* step=((void *)0),const void* step_fast=((void *)0),const char* format=((void *)0),ImGuiInputTextFlags flags=0)" +defs["igInputScalarN"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,int components,const void* step=((void*)0),const void* step_fast=((void*)0),const char* format=((void*)0),ImGuiInputTextFlags flags=0)" defs["igInputScalarN"][1]["call_args"] = "(label,data_type,v,components,step,step_fast,format,flags)" defs["igInputScalarN"][1]["cimguiname"] = "igInputScalarN" defs["igInputScalarN"][1]["comment"] = "" defs["igInputScalarN"][1]["defaults"] = {} defs["igInputScalarN"][1]["defaults"]["flags"] = "0" -defs["igInputScalarN"][1]["defaults"]["format"] = "((void *)0)" -defs["igInputScalarN"][1]["defaults"]["step"] = "((void *)0)" -defs["igInputScalarN"][1]["defaults"]["step_fast"] = "((void *)0)" +defs["igInputScalarN"][1]["defaults"]["format"] = "((void*)0)" +defs["igInputScalarN"][1]["defaults"]["step"] = "((void*)0)" +defs["igInputScalarN"][1]["defaults"]["step_fast"] = "((void*)0)" defs["igInputScalarN"][1]["funcname"] = "InputScalarN" +defs["igInputScalarN"][1]["namespace"] = "ImGui" +defs["igInputScalarN"][1]["ov_cimguiname"] = "igInputScalarN" defs["igInputScalarN"][1]["ret"] = "bool" defs["igInputScalarN"][1]["signature"] = "(const char*,ImGuiDataType,void*,int,const void*,const void*,const char*,ImGuiInputTextFlags)" -defs["igInputScalarN"][1]["stname"] = "ImGui" +defs["igInputScalarN"][1]["stname"] = "" defs["igInputScalarN"]["(const char*,ImGuiDataType,void*,int,const void*,const void*,const char*,ImGuiInputTextFlags)"] = defs["igInputScalarN"][1] defs["igInputText"] = {} defs["igInputText"][1] = {} @@ -9083,18 +9644,20 @@ defs["igInputText"][1]["argsT"][5]["type"] = "ImGuiInputTextCallback" defs["igInputText"][1]["argsT"][6] = {} defs["igInputText"][1]["argsT"][6]["name"] = "user_data" defs["igInputText"][1]["argsT"][6]["type"] = "void*" -defs["igInputText"][1]["argsoriginal"] = "(const char* label,char* buf,size_t buf_size,ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void *)0),void* user_data=((void *)0))" +defs["igInputText"][1]["argsoriginal"] = "(const char* label,char* buf,size_t buf_size,ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void*)0),void* user_data=((void*)0))" defs["igInputText"][1]["call_args"] = "(label,buf,buf_size,flags,callback,user_data)" defs["igInputText"][1]["cimguiname"] = "igInputText" defs["igInputText"][1]["comment"] = "" defs["igInputText"][1]["defaults"] = {} -defs["igInputText"][1]["defaults"]["callback"] = "((void *)0)" +defs["igInputText"][1]["defaults"]["callback"] = "((void*)0)" defs["igInputText"][1]["defaults"]["flags"] = "0" -defs["igInputText"][1]["defaults"]["user_data"] = "((void *)0)" +defs["igInputText"][1]["defaults"]["user_data"] = "((void*)0)" defs["igInputText"][1]["funcname"] = "InputText" +defs["igInputText"][1]["namespace"] = "ImGui" +defs["igInputText"][1]["ov_cimguiname"] = "igInputText" defs["igInputText"][1]["ret"] = "bool" defs["igInputText"][1]["signature"] = "(const char*,char*,size_t,ImGuiInputTextFlags,ImGuiInputTextCallback,void*)" -defs["igInputText"][1]["stname"] = "ImGui" +defs["igInputText"][1]["stname"] = "" defs["igInputText"]["(const char*,char*,size_t,ImGuiInputTextFlags,ImGuiInputTextCallback,void*)"] = defs["igInputText"][1] defs["igInputTextMultiline"] = {} defs["igInputTextMultiline"][1] = {} @@ -9121,19 +9684,21 @@ defs["igInputTextMultiline"][1]["argsT"][6]["type"] = "ImGuiInputTextCallback" defs["igInputTextMultiline"][1]["argsT"][7] = {} defs["igInputTextMultiline"][1]["argsT"][7]["name"] = "user_data" defs["igInputTextMultiline"][1]["argsT"][7]["type"] = "void*" -defs["igInputTextMultiline"][1]["argsoriginal"] = "(const char* label,char* buf,size_t buf_size,const ImVec2& size=ImVec2(0,0),ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void *)0),void* user_data=((void *)0))" +defs["igInputTextMultiline"][1]["argsoriginal"] = "(const char* label,char* buf,size_t buf_size,const ImVec2& size=ImVec2(0,0),ImGuiInputTextFlags flags=0,ImGuiInputTextCallback callback=((void*)0),void* user_data=((void*)0))" defs["igInputTextMultiline"][1]["call_args"] = "(label,buf,buf_size,size,flags,callback,user_data)" defs["igInputTextMultiline"][1]["cimguiname"] = "igInputTextMultiline" defs["igInputTextMultiline"][1]["comment"] = "" defs["igInputTextMultiline"][1]["defaults"] = {} -defs["igInputTextMultiline"][1]["defaults"]["callback"] = "((void *)0)" +defs["igInputTextMultiline"][1]["defaults"]["callback"] = "((void*)0)" defs["igInputTextMultiline"][1]["defaults"]["flags"] = "0" defs["igInputTextMultiline"][1]["defaults"]["size"] = "ImVec2(0,0)" -defs["igInputTextMultiline"][1]["defaults"]["user_data"] = "((void *)0)" +defs["igInputTextMultiline"][1]["defaults"]["user_data"] = "((void*)0)" defs["igInputTextMultiline"][1]["funcname"] = "InputTextMultiline" +defs["igInputTextMultiline"][1]["namespace"] = "ImGui" +defs["igInputTextMultiline"][1]["ov_cimguiname"] = "igInputTextMultiline" defs["igInputTextMultiline"][1]["ret"] = "bool" defs["igInputTextMultiline"][1]["signature"] = "(const char*,char*,size_t,const ImVec2,ImGuiInputTextFlags,ImGuiInputTextCallback,void*)" -defs["igInputTextMultiline"][1]["stname"] = "ImGui" +defs["igInputTextMultiline"][1]["stname"] = "" defs["igInputTextMultiline"]["(const char*,char*,size_t,const ImVec2,ImGuiInputTextFlags,ImGuiInputTextCallback,void*)"] = defs["igInputTextMultiline"][1] defs["igInvisibleButton"] = {} defs["igInvisibleButton"][1] = {} @@ -9151,9 +9716,11 @@ defs["igInvisibleButton"][1]["cimguiname"] = "igInvisibleButton" defs["igInvisibleButton"][1]["comment"] = "" defs["igInvisibleButton"][1]["defaults"] = {} defs["igInvisibleButton"][1]["funcname"] = "InvisibleButton" +defs["igInvisibleButton"][1]["namespace"] = "ImGui" +defs["igInvisibleButton"][1]["ov_cimguiname"] = "igInvisibleButton" defs["igInvisibleButton"][1]["ret"] = "bool" defs["igInvisibleButton"][1]["signature"] = "(const char*,const ImVec2)" -defs["igInvisibleButton"][1]["stname"] = "ImGui" +defs["igInvisibleButton"][1]["stname"] = "" defs["igInvisibleButton"]["(const char*,const ImVec2)"] = defs["igInvisibleButton"][1] defs["igIsAnyItemActive"] = {} defs["igIsAnyItemActive"][1] = {} @@ -9165,9 +9732,11 @@ defs["igIsAnyItemActive"][1]["cimguiname"] = "igIsAnyItemActive" defs["igIsAnyItemActive"][1]["comment"] = "" defs["igIsAnyItemActive"][1]["defaults"] = {} defs["igIsAnyItemActive"][1]["funcname"] = "IsAnyItemActive" +defs["igIsAnyItemActive"][1]["namespace"] = "ImGui" +defs["igIsAnyItemActive"][1]["ov_cimguiname"] = "igIsAnyItemActive" defs["igIsAnyItemActive"][1]["ret"] = "bool" defs["igIsAnyItemActive"][1]["signature"] = "()" -defs["igIsAnyItemActive"][1]["stname"] = "ImGui" +defs["igIsAnyItemActive"][1]["stname"] = "" defs["igIsAnyItemActive"]["()"] = defs["igIsAnyItemActive"][1] defs["igIsAnyItemFocused"] = {} defs["igIsAnyItemFocused"][1] = {} @@ -9179,9 +9748,11 @@ defs["igIsAnyItemFocused"][1]["cimguiname"] = "igIsAnyItemFocused" defs["igIsAnyItemFocused"][1]["comment"] = "" defs["igIsAnyItemFocused"][1]["defaults"] = {} defs["igIsAnyItemFocused"][1]["funcname"] = "IsAnyItemFocused" +defs["igIsAnyItemFocused"][1]["namespace"] = "ImGui" +defs["igIsAnyItemFocused"][1]["ov_cimguiname"] = "igIsAnyItemFocused" defs["igIsAnyItemFocused"][1]["ret"] = "bool" defs["igIsAnyItemFocused"][1]["signature"] = "()" -defs["igIsAnyItemFocused"][1]["stname"] = "ImGui" +defs["igIsAnyItemFocused"][1]["stname"] = "" defs["igIsAnyItemFocused"]["()"] = defs["igIsAnyItemFocused"][1] defs["igIsAnyItemHovered"] = {} defs["igIsAnyItemHovered"][1] = {} @@ -9193,9 +9764,11 @@ defs["igIsAnyItemHovered"][1]["cimguiname"] = "igIsAnyItemHovered" defs["igIsAnyItemHovered"][1]["comment"] = "" defs["igIsAnyItemHovered"][1]["defaults"] = {} defs["igIsAnyItemHovered"][1]["funcname"] = "IsAnyItemHovered" +defs["igIsAnyItemHovered"][1]["namespace"] = "ImGui" +defs["igIsAnyItemHovered"][1]["ov_cimguiname"] = "igIsAnyItemHovered" defs["igIsAnyItemHovered"][1]["ret"] = "bool" defs["igIsAnyItemHovered"][1]["signature"] = "()" -defs["igIsAnyItemHovered"][1]["stname"] = "ImGui" +defs["igIsAnyItemHovered"][1]["stname"] = "" defs["igIsAnyItemHovered"]["()"] = defs["igIsAnyItemHovered"][1] defs["igIsAnyMouseDown"] = {} defs["igIsAnyMouseDown"][1] = {} @@ -9207,9 +9780,11 @@ defs["igIsAnyMouseDown"][1]["cimguiname"] = "igIsAnyMouseDown" defs["igIsAnyMouseDown"][1]["comment"] = "" defs["igIsAnyMouseDown"][1]["defaults"] = {} defs["igIsAnyMouseDown"][1]["funcname"] = "IsAnyMouseDown" +defs["igIsAnyMouseDown"][1]["namespace"] = "ImGui" +defs["igIsAnyMouseDown"][1]["ov_cimguiname"] = "igIsAnyMouseDown" defs["igIsAnyMouseDown"][1]["ret"] = "bool" defs["igIsAnyMouseDown"][1]["signature"] = "()" -defs["igIsAnyMouseDown"][1]["stname"] = "ImGui" +defs["igIsAnyMouseDown"][1]["stname"] = "" defs["igIsAnyMouseDown"]["()"] = defs["igIsAnyMouseDown"][1] defs["igIsItemActive"] = {} defs["igIsItemActive"][1] = {} @@ -9221,9 +9796,11 @@ defs["igIsItemActive"][1]["cimguiname"] = "igIsItemActive" defs["igIsItemActive"][1]["comment"] = "" defs["igIsItemActive"][1]["defaults"] = {} defs["igIsItemActive"][1]["funcname"] = "IsItemActive" +defs["igIsItemActive"][1]["namespace"] = "ImGui" +defs["igIsItemActive"][1]["ov_cimguiname"] = "igIsItemActive" defs["igIsItemActive"][1]["ret"] = "bool" defs["igIsItemActive"][1]["signature"] = "()" -defs["igIsItemActive"][1]["stname"] = "ImGui" +defs["igIsItemActive"][1]["stname"] = "" defs["igIsItemActive"]["()"] = defs["igIsItemActive"][1] defs["igIsItemClicked"] = {} defs["igIsItemClicked"][1] = {} @@ -9239,9 +9816,11 @@ defs["igIsItemClicked"][1]["comment"] = "" defs["igIsItemClicked"][1]["defaults"] = {} defs["igIsItemClicked"][1]["defaults"]["mouse_button"] = "0" defs["igIsItemClicked"][1]["funcname"] = "IsItemClicked" +defs["igIsItemClicked"][1]["namespace"] = "ImGui" +defs["igIsItemClicked"][1]["ov_cimguiname"] = "igIsItemClicked" defs["igIsItemClicked"][1]["ret"] = "bool" defs["igIsItemClicked"][1]["signature"] = "(int)" -defs["igIsItemClicked"][1]["stname"] = "ImGui" +defs["igIsItemClicked"][1]["stname"] = "" defs["igIsItemClicked"]["(int)"] = defs["igIsItemClicked"][1] defs["igIsItemDeactivated"] = {} defs["igIsItemDeactivated"][1] = {} @@ -9253,9 +9832,11 @@ defs["igIsItemDeactivated"][1]["cimguiname"] = "igIsItemDeactivated" defs["igIsItemDeactivated"][1]["comment"] = "" defs["igIsItemDeactivated"][1]["defaults"] = {} defs["igIsItemDeactivated"][1]["funcname"] = "IsItemDeactivated" +defs["igIsItemDeactivated"][1]["namespace"] = "ImGui" +defs["igIsItemDeactivated"][1]["ov_cimguiname"] = "igIsItemDeactivated" defs["igIsItemDeactivated"][1]["ret"] = "bool" defs["igIsItemDeactivated"][1]["signature"] = "()" -defs["igIsItemDeactivated"][1]["stname"] = "ImGui" +defs["igIsItemDeactivated"][1]["stname"] = "" defs["igIsItemDeactivated"]["()"] = defs["igIsItemDeactivated"][1] defs["igIsItemDeactivatedAfterEdit"] = {} defs["igIsItemDeactivatedAfterEdit"][1] = {} @@ -9267,9 +9848,11 @@ defs["igIsItemDeactivatedAfterEdit"][1]["cimguiname"] = "igIsItemDeactivatedAfte defs["igIsItemDeactivatedAfterEdit"][1]["comment"] = "" defs["igIsItemDeactivatedAfterEdit"][1]["defaults"] = {} defs["igIsItemDeactivatedAfterEdit"][1]["funcname"] = "IsItemDeactivatedAfterEdit" +defs["igIsItemDeactivatedAfterEdit"][1]["namespace"] = "ImGui" +defs["igIsItemDeactivatedAfterEdit"][1]["ov_cimguiname"] = "igIsItemDeactivatedAfterEdit" defs["igIsItemDeactivatedAfterEdit"][1]["ret"] = "bool" defs["igIsItemDeactivatedAfterEdit"][1]["signature"] = "()" -defs["igIsItemDeactivatedAfterEdit"][1]["stname"] = "ImGui" +defs["igIsItemDeactivatedAfterEdit"][1]["stname"] = "" defs["igIsItemDeactivatedAfterEdit"]["()"] = defs["igIsItemDeactivatedAfterEdit"][1] defs["igIsItemEdited"] = {} defs["igIsItemEdited"][1] = {} @@ -9281,9 +9864,11 @@ defs["igIsItemEdited"][1]["cimguiname"] = "igIsItemEdited" defs["igIsItemEdited"][1]["comment"] = "" defs["igIsItemEdited"][1]["defaults"] = {} defs["igIsItemEdited"][1]["funcname"] = "IsItemEdited" +defs["igIsItemEdited"][1]["namespace"] = "ImGui" +defs["igIsItemEdited"][1]["ov_cimguiname"] = "igIsItemEdited" defs["igIsItemEdited"][1]["ret"] = "bool" defs["igIsItemEdited"][1]["signature"] = "()" -defs["igIsItemEdited"][1]["stname"] = "ImGui" +defs["igIsItemEdited"][1]["stname"] = "" defs["igIsItemEdited"]["()"] = defs["igIsItemEdited"][1] defs["igIsItemFocused"] = {} defs["igIsItemFocused"][1] = {} @@ -9295,9 +9880,11 @@ defs["igIsItemFocused"][1]["cimguiname"] = "igIsItemFocused" defs["igIsItemFocused"][1]["comment"] = "" defs["igIsItemFocused"][1]["defaults"] = {} defs["igIsItemFocused"][1]["funcname"] = "IsItemFocused" +defs["igIsItemFocused"][1]["namespace"] = "ImGui" +defs["igIsItemFocused"][1]["ov_cimguiname"] = "igIsItemFocused" defs["igIsItemFocused"][1]["ret"] = "bool" defs["igIsItemFocused"][1]["signature"] = "()" -defs["igIsItemFocused"][1]["stname"] = "ImGui" +defs["igIsItemFocused"][1]["stname"] = "" defs["igIsItemFocused"]["()"] = defs["igIsItemFocused"][1] defs["igIsItemHovered"] = {} defs["igIsItemHovered"][1] = {} @@ -9313,9 +9900,11 @@ defs["igIsItemHovered"][1]["comment"] = "" defs["igIsItemHovered"][1]["defaults"] = {} defs["igIsItemHovered"][1]["defaults"]["flags"] = "0" defs["igIsItemHovered"][1]["funcname"] = "IsItemHovered" +defs["igIsItemHovered"][1]["namespace"] = "ImGui" +defs["igIsItemHovered"][1]["ov_cimguiname"] = "igIsItemHovered" defs["igIsItemHovered"][1]["ret"] = "bool" defs["igIsItemHovered"][1]["signature"] = "(ImGuiHoveredFlags)" -defs["igIsItemHovered"][1]["stname"] = "ImGui" +defs["igIsItemHovered"][1]["stname"] = "" defs["igIsItemHovered"]["(ImGuiHoveredFlags)"] = defs["igIsItemHovered"][1] defs["igIsItemVisible"] = {} defs["igIsItemVisible"][1] = {} @@ -9327,9 +9916,11 @@ defs["igIsItemVisible"][1]["cimguiname"] = "igIsItemVisible" defs["igIsItemVisible"][1]["comment"] = "" defs["igIsItemVisible"][1]["defaults"] = {} defs["igIsItemVisible"][1]["funcname"] = "IsItemVisible" +defs["igIsItemVisible"][1]["namespace"] = "ImGui" +defs["igIsItemVisible"][1]["ov_cimguiname"] = "igIsItemVisible" defs["igIsItemVisible"][1]["ret"] = "bool" defs["igIsItemVisible"][1]["signature"] = "()" -defs["igIsItemVisible"][1]["stname"] = "ImGui" +defs["igIsItemVisible"][1]["stname"] = "" defs["igIsItemVisible"]["()"] = defs["igIsItemVisible"][1] defs["igIsKeyDown"] = {} defs["igIsKeyDown"][1] = {} @@ -9344,9 +9935,11 @@ defs["igIsKeyDown"][1]["cimguiname"] = "igIsKeyDown" defs["igIsKeyDown"][1]["comment"] = "" defs["igIsKeyDown"][1]["defaults"] = {} defs["igIsKeyDown"][1]["funcname"] = "IsKeyDown" +defs["igIsKeyDown"][1]["namespace"] = "ImGui" +defs["igIsKeyDown"][1]["ov_cimguiname"] = "igIsKeyDown" defs["igIsKeyDown"][1]["ret"] = "bool" defs["igIsKeyDown"][1]["signature"] = "(int)" -defs["igIsKeyDown"][1]["stname"] = "ImGui" +defs["igIsKeyDown"][1]["stname"] = "" defs["igIsKeyDown"]["(int)"] = defs["igIsKeyDown"][1] defs["igIsKeyPressed"] = {} defs["igIsKeyPressed"][1] = {} @@ -9365,9 +9958,11 @@ defs["igIsKeyPressed"][1]["comment"] = "" defs["igIsKeyPressed"][1]["defaults"] = {} defs["igIsKeyPressed"][1]["defaults"]["repeat"] = "true" defs["igIsKeyPressed"][1]["funcname"] = "IsKeyPressed" +defs["igIsKeyPressed"][1]["namespace"] = "ImGui" +defs["igIsKeyPressed"][1]["ov_cimguiname"] = "igIsKeyPressed" defs["igIsKeyPressed"][1]["ret"] = "bool" defs["igIsKeyPressed"][1]["signature"] = "(int,bool)" -defs["igIsKeyPressed"][1]["stname"] = "ImGui" +defs["igIsKeyPressed"][1]["stname"] = "" defs["igIsKeyPressed"]["(int,bool)"] = defs["igIsKeyPressed"][1] defs["igIsKeyReleased"] = {} defs["igIsKeyReleased"][1] = {} @@ -9382,9 +9977,11 @@ defs["igIsKeyReleased"][1]["cimguiname"] = "igIsKeyReleased" defs["igIsKeyReleased"][1]["comment"] = "" defs["igIsKeyReleased"][1]["defaults"] = {} defs["igIsKeyReleased"][1]["funcname"] = "IsKeyReleased" +defs["igIsKeyReleased"][1]["namespace"] = "ImGui" +defs["igIsKeyReleased"][1]["ov_cimguiname"] = "igIsKeyReleased" defs["igIsKeyReleased"][1]["ret"] = "bool" defs["igIsKeyReleased"][1]["signature"] = "(int)" -defs["igIsKeyReleased"][1]["stname"] = "ImGui" +defs["igIsKeyReleased"][1]["stname"] = "" defs["igIsKeyReleased"]["(int)"] = defs["igIsKeyReleased"][1] defs["igIsMouseClicked"] = {} defs["igIsMouseClicked"][1] = {} @@ -9403,9 +10000,11 @@ defs["igIsMouseClicked"][1]["comment"] = "" defs["igIsMouseClicked"][1]["defaults"] = {} defs["igIsMouseClicked"][1]["defaults"]["repeat"] = "false" defs["igIsMouseClicked"][1]["funcname"] = "IsMouseClicked" +defs["igIsMouseClicked"][1]["namespace"] = "ImGui" +defs["igIsMouseClicked"][1]["ov_cimguiname"] = "igIsMouseClicked" defs["igIsMouseClicked"][1]["ret"] = "bool" defs["igIsMouseClicked"][1]["signature"] = "(int,bool)" -defs["igIsMouseClicked"][1]["stname"] = "ImGui" +defs["igIsMouseClicked"][1]["stname"] = "" defs["igIsMouseClicked"]["(int,bool)"] = defs["igIsMouseClicked"][1] defs["igIsMouseDoubleClicked"] = {} defs["igIsMouseDoubleClicked"][1] = {} @@ -9420,9 +10019,11 @@ defs["igIsMouseDoubleClicked"][1]["cimguiname"] = "igIsMouseDoubleClicked" defs["igIsMouseDoubleClicked"][1]["comment"] = "" defs["igIsMouseDoubleClicked"][1]["defaults"] = {} defs["igIsMouseDoubleClicked"][1]["funcname"] = "IsMouseDoubleClicked" +defs["igIsMouseDoubleClicked"][1]["namespace"] = "ImGui" +defs["igIsMouseDoubleClicked"][1]["ov_cimguiname"] = "igIsMouseDoubleClicked" defs["igIsMouseDoubleClicked"][1]["ret"] = "bool" defs["igIsMouseDoubleClicked"][1]["signature"] = "(int)" -defs["igIsMouseDoubleClicked"][1]["stname"] = "ImGui" +defs["igIsMouseDoubleClicked"][1]["stname"] = "" defs["igIsMouseDoubleClicked"]["(int)"] = defs["igIsMouseDoubleClicked"][1] defs["igIsMouseDown"] = {} defs["igIsMouseDown"][1] = {} @@ -9437,9 +10038,11 @@ defs["igIsMouseDown"][1]["cimguiname"] = "igIsMouseDown" defs["igIsMouseDown"][1]["comment"] = "" defs["igIsMouseDown"][1]["defaults"] = {} defs["igIsMouseDown"][1]["funcname"] = "IsMouseDown" +defs["igIsMouseDown"][1]["namespace"] = "ImGui" +defs["igIsMouseDown"][1]["ov_cimguiname"] = "igIsMouseDown" defs["igIsMouseDown"][1]["ret"] = "bool" defs["igIsMouseDown"][1]["signature"] = "(int)" -defs["igIsMouseDown"][1]["stname"] = "ImGui" +defs["igIsMouseDown"][1]["stname"] = "" defs["igIsMouseDown"]["(int)"] = defs["igIsMouseDown"][1] defs["igIsMouseDragging"] = {} defs["igIsMouseDragging"][1] = {} @@ -9459,9 +10062,11 @@ defs["igIsMouseDragging"][1]["defaults"] = {} defs["igIsMouseDragging"][1]["defaults"]["button"] = "0" defs["igIsMouseDragging"][1]["defaults"]["lock_threshold"] = "-1.0f" defs["igIsMouseDragging"][1]["funcname"] = "IsMouseDragging" +defs["igIsMouseDragging"][1]["namespace"] = "ImGui" +defs["igIsMouseDragging"][1]["ov_cimguiname"] = "igIsMouseDragging" defs["igIsMouseDragging"][1]["ret"] = "bool" defs["igIsMouseDragging"][1]["signature"] = "(int,float)" -defs["igIsMouseDragging"][1]["stname"] = "ImGui" +defs["igIsMouseDragging"][1]["stname"] = "" defs["igIsMouseDragging"]["(int,float)"] = defs["igIsMouseDragging"][1] defs["igIsMouseHoveringRect"] = {} defs["igIsMouseHoveringRect"][1] = {} @@ -9483,9 +10088,11 @@ defs["igIsMouseHoveringRect"][1]["comment"] = "" defs["igIsMouseHoveringRect"][1]["defaults"] = {} defs["igIsMouseHoveringRect"][1]["defaults"]["clip"] = "true" defs["igIsMouseHoveringRect"][1]["funcname"] = "IsMouseHoveringRect" +defs["igIsMouseHoveringRect"][1]["namespace"] = "ImGui" +defs["igIsMouseHoveringRect"][1]["ov_cimguiname"] = "igIsMouseHoveringRect" defs["igIsMouseHoveringRect"][1]["ret"] = "bool" defs["igIsMouseHoveringRect"][1]["signature"] = "(const ImVec2,const ImVec2,bool)" -defs["igIsMouseHoveringRect"][1]["stname"] = "ImGui" +defs["igIsMouseHoveringRect"][1]["stname"] = "" defs["igIsMouseHoveringRect"]["(const ImVec2,const ImVec2,bool)"] = defs["igIsMouseHoveringRect"][1] defs["igIsMousePosValid"] = {} defs["igIsMousePosValid"][1] = {} @@ -9494,16 +10101,18 @@ defs["igIsMousePosValid"][1]["argsT"] = {} defs["igIsMousePosValid"][1]["argsT"][1] = {} defs["igIsMousePosValid"][1]["argsT"][1]["name"] = "mouse_pos" defs["igIsMousePosValid"][1]["argsT"][1]["type"] = "const ImVec2*" -defs["igIsMousePosValid"][1]["argsoriginal"] = "(const ImVec2* mouse_pos=((void *)0))" +defs["igIsMousePosValid"][1]["argsoriginal"] = "(const ImVec2* mouse_pos=((void*)0))" defs["igIsMousePosValid"][1]["call_args"] = "(mouse_pos)" defs["igIsMousePosValid"][1]["cimguiname"] = "igIsMousePosValid" defs["igIsMousePosValid"][1]["comment"] = "" defs["igIsMousePosValid"][1]["defaults"] = {} -defs["igIsMousePosValid"][1]["defaults"]["mouse_pos"] = "((void *)0)" +defs["igIsMousePosValid"][1]["defaults"]["mouse_pos"] = "((void*)0)" defs["igIsMousePosValid"][1]["funcname"] = "IsMousePosValid" +defs["igIsMousePosValid"][1]["namespace"] = "ImGui" +defs["igIsMousePosValid"][1]["ov_cimguiname"] = "igIsMousePosValid" defs["igIsMousePosValid"][1]["ret"] = "bool" defs["igIsMousePosValid"][1]["signature"] = "(const ImVec2*)" -defs["igIsMousePosValid"][1]["stname"] = "ImGui" +defs["igIsMousePosValid"][1]["stname"] = "" defs["igIsMousePosValid"]["(const ImVec2*)"] = defs["igIsMousePosValid"][1] defs["igIsMouseReleased"] = {} defs["igIsMouseReleased"][1] = {} @@ -9518,9 +10127,11 @@ defs["igIsMouseReleased"][1]["cimguiname"] = "igIsMouseReleased" defs["igIsMouseReleased"][1]["comment"] = "" defs["igIsMouseReleased"][1]["defaults"] = {} defs["igIsMouseReleased"][1]["funcname"] = "IsMouseReleased" +defs["igIsMouseReleased"][1]["namespace"] = "ImGui" +defs["igIsMouseReleased"][1]["ov_cimguiname"] = "igIsMouseReleased" defs["igIsMouseReleased"][1]["ret"] = "bool" defs["igIsMouseReleased"][1]["signature"] = "(int)" -defs["igIsMouseReleased"][1]["stname"] = "ImGui" +defs["igIsMouseReleased"][1]["stname"] = "" defs["igIsMouseReleased"]["(int)"] = defs["igIsMouseReleased"][1] defs["igIsPopupOpen"] = {} defs["igIsPopupOpen"][1] = {} @@ -9535,9 +10146,11 @@ defs["igIsPopupOpen"][1]["cimguiname"] = "igIsPopupOpen" defs["igIsPopupOpen"][1]["comment"] = "" defs["igIsPopupOpen"][1]["defaults"] = {} defs["igIsPopupOpen"][1]["funcname"] = "IsPopupOpen" +defs["igIsPopupOpen"][1]["namespace"] = "ImGui" +defs["igIsPopupOpen"][1]["ov_cimguiname"] = "igIsPopupOpen" defs["igIsPopupOpen"][1]["ret"] = "bool" defs["igIsPopupOpen"][1]["signature"] = "(const char*)" -defs["igIsPopupOpen"][1]["stname"] = "ImGui" +defs["igIsPopupOpen"][1]["stname"] = "" defs["igIsPopupOpen"]["(const char*)"] = defs["igIsPopupOpen"][1] defs["igIsRectVisible"] = {} defs["igIsRectVisible"][1] = {} @@ -9552,10 +10165,11 @@ defs["igIsRectVisible"][1]["cimguiname"] = "igIsRectVisible" defs["igIsRectVisible"][1]["comment"] = "" defs["igIsRectVisible"][1]["defaults"] = {} defs["igIsRectVisible"][1]["funcname"] = "IsRectVisible" +defs["igIsRectVisible"][1]["namespace"] = "ImGui" defs["igIsRectVisible"][1]["ov_cimguiname"] = "igIsRectVisible" defs["igIsRectVisible"][1]["ret"] = "bool" defs["igIsRectVisible"][1]["signature"] = "(const ImVec2)" -defs["igIsRectVisible"][1]["stname"] = "ImGui" +defs["igIsRectVisible"][1]["stname"] = "" defs["igIsRectVisible"][2] = {} defs["igIsRectVisible"][2]["args"] = "(const ImVec2 rect_min,const ImVec2 rect_max)" defs["igIsRectVisible"][2]["argsT"] = {} @@ -9571,10 +10185,11 @@ defs["igIsRectVisible"][2]["cimguiname"] = "igIsRectVisible" defs["igIsRectVisible"][2]["comment"] = "" defs["igIsRectVisible"][2]["defaults"] = {} defs["igIsRectVisible"][2]["funcname"] = "IsRectVisible" +defs["igIsRectVisible"][2]["namespace"] = "ImGui" defs["igIsRectVisible"][2]["ov_cimguiname"] = "igIsRectVisibleVec2" defs["igIsRectVisible"][2]["ret"] = "bool" defs["igIsRectVisible"][2]["signature"] = "(const ImVec2,const ImVec2)" -defs["igIsRectVisible"][2]["stname"] = "ImGui" +defs["igIsRectVisible"][2]["stname"] = "" defs["igIsRectVisible"]["(const ImVec2)"] = defs["igIsRectVisible"][1] defs["igIsRectVisible"]["(const ImVec2,const ImVec2)"] = defs["igIsRectVisible"][2] defs["igIsWindowAppearing"] = {} @@ -9587,9 +10202,11 @@ defs["igIsWindowAppearing"][1]["cimguiname"] = "igIsWindowAppearing" defs["igIsWindowAppearing"][1]["comment"] = "" defs["igIsWindowAppearing"][1]["defaults"] = {} defs["igIsWindowAppearing"][1]["funcname"] = "IsWindowAppearing" +defs["igIsWindowAppearing"][1]["namespace"] = "ImGui" +defs["igIsWindowAppearing"][1]["ov_cimguiname"] = "igIsWindowAppearing" defs["igIsWindowAppearing"][1]["ret"] = "bool" defs["igIsWindowAppearing"][1]["signature"] = "()" -defs["igIsWindowAppearing"][1]["stname"] = "ImGui" +defs["igIsWindowAppearing"][1]["stname"] = "" defs["igIsWindowAppearing"]["()"] = defs["igIsWindowAppearing"][1] defs["igIsWindowCollapsed"] = {} defs["igIsWindowCollapsed"][1] = {} @@ -9601,9 +10218,11 @@ defs["igIsWindowCollapsed"][1]["cimguiname"] = "igIsWindowCollapsed" defs["igIsWindowCollapsed"][1]["comment"] = "" defs["igIsWindowCollapsed"][1]["defaults"] = {} defs["igIsWindowCollapsed"][1]["funcname"] = "IsWindowCollapsed" +defs["igIsWindowCollapsed"][1]["namespace"] = "ImGui" +defs["igIsWindowCollapsed"][1]["ov_cimguiname"] = "igIsWindowCollapsed" defs["igIsWindowCollapsed"][1]["ret"] = "bool" defs["igIsWindowCollapsed"][1]["signature"] = "()" -defs["igIsWindowCollapsed"][1]["stname"] = "ImGui" +defs["igIsWindowCollapsed"][1]["stname"] = "" defs["igIsWindowCollapsed"]["()"] = defs["igIsWindowCollapsed"][1] defs["igIsWindowFocused"] = {} defs["igIsWindowFocused"][1] = {} @@ -9619,9 +10238,11 @@ defs["igIsWindowFocused"][1]["comment"] = "" defs["igIsWindowFocused"][1]["defaults"] = {} defs["igIsWindowFocused"][1]["defaults"]["flags"] = "0" defs["igIsWindowFocused"][1]["funcname"] = "IsWindowFocused" +defs["igIsWindowFocused"][1]["namespace"] = "ImGui" +defs["igIsWindowFocused"][1]["ov_cimguiname"] = "igIsWindowFocused" defs["igIsWindowFocused"][1]["ret"] = "bool" defs["igIsWindowFocused"][1]["signature"] = "(ImGuiFocusedFlags)" -defs["igIsWindowFocused"][1]["stname"] = "ImGui" +defs["igIsWindowFocused"][1]["stname"] = "" defs["igIsWindowFocused"]["(ImGuiFocusedFlags)"] = defs["igIsWindowFocused"][1] defs["igIsWindowHovered"] = {} defs["igIsWindowHovered"][1] = {} @@ -9637,9 +10258,11 @@ defs["igIsWindowHovered"][1]["comment"] = "" defs["igIsWindowHovered"][1]["defaults"] = {} defs["igIsWindowHovered"][1]["defaults"]["flags"] = "0" defs["igIsWindowHovered"][1]["funcname"] = "IsWindowHovered" +defs["igIsWindowHovered"][1]["namespace"] = "ImGui" +defs["igIsWindowHovered"][1]["ov_cimguiname"] = "igIsWindowHovered" defs["igIsWindowHovered"][1]["ret"] = "bool" defs["igIsWindowHovered"][1]["signature"] = "(ImGuiHoveredFlags)" -defs["igIsWindowHovered"][1]["stname"] = "ImGui" +defs["igIsWindowHovered"][1]["stname"] = "" defs["igIsWindowHovered"]["(ImGuiHoveredFlags)"] = defs["igIsWindowHovered"][1] defs["igLabelText"] = {} defs["igLabelText"][1] = {} @@ -9661,9 +10284,11 @@ defs["igLabelText"][1]["comment"] = "" defs["igLabelText"][1]["defaults"] = {} defs["igLabelText"][1]["funcname"] = "LabelText" defs["igLabelText"][1]["isvararg"] = "...)" +defs["igLabelText"][1]["namespace"] = "ImGui" +defs["igLabelText"][1]["ov_cimguiname"] = "igLabelText" defs["igLabelText"][1]["ret"] = "void" defs["igLabelText"][1]["signature"] = "(const char*,const char*,...)" -defs["igLabelText"][1]["stname"] = "ImGui" +defs["igLabelText"][1]["stname"] = "" defs["igLabelText"]["(const char*,const char*,...)"] = defs["igLabelText"][1] defs["igLabelTextV"] = {} defs["igLabelTextV"][1] = {} @@ -9684,9 +10309,11 @@ defs["igLabelTextV"][1]["cimguiname"] = "igLabelTextV" defs["igLabelTextV"][1]["comment"] = "" defs["igLabelTextV"][1]["defaults"] = {} defs["igLabelTextV"][1]["funcname"] = "LabelTextV" +defs["igLabelTextV"][1]["namespace"] = "ImGui" +defs["igLabelTextV"][1]["ov_cimguiname"] = "igLabelTextV" defs["igLabelTextV"][1]["ret"] = "void" defs["igLabelTextV"][1]["signature"] = "(const char*,const char*,va_list)" -defs["igLabelTextV"][1]["stname"] = "ImGui" +defs["igLabelTextV"][1]["stname"] = "" defs["igLabelTextV"]["(const char*,const char*,va_list)"] = defs["igLabelTextV"][1] defs["igListBox"] = {} defs["igListBox"][1] = {} @@ -9714,10 +10341,11 @@ defs["igListBox"][1]["comment"] = "" defs["igListBox"][1]["defaults"] = {} defs["igListBox"][1]["defaults"]["height_in_items"] = "-1" defs["igListBox"][1]["funcname"] = "ListBox" +defs["igListBox"][1]["namespace"] = "ImGui" defs["igListBox"][1]["ov_cimguiname"] = "igListBoxStr_arr" defs["igListBox"][1]["ret"] = "bool" defs["igListBox"][1]["signature"] = "(const char*,int*,const char* const[],int,int)" -defs["igListBox"][1]["stname"] = "ImGui" +defs["igListBox"][1]["stname"] = "" defs["igListBox"][2] = {} defs["igListBox"][2]["args"] = "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items)" defs["igListBox"][2]["argsT"] = {} @@ -9748,10 +10376,11 @@ defs["igListBox"][2]["comment"] = "" defs["igListBox"][2]["defaults"] = {} defs["igListBox"][2]["defaults"]["height_in_items"] = "-1" defs["igListBox"][2]["funcname"] = "ListBox" +defs["igListBox"][2]["namespace"] = "ImGui" defs["igListBox"][2]["ov_cimguiname"] = "igListBoxFnPtr" defs["igListBox"][2]["ret"] = "bool" defs["igListBox"][2]["signature"] = "(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)" -defs["igListBox"][2]["stname"] = "ImGui" +defs["igListBox"][2]["stname"] = "" defs["igListBox"]["(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)"] = defs["igListBox"][2] defs["igListBox"]["(const char*,int*,const char* const[],int,int)"] = defs["igListBox"][1] defs["igListBoxFooter"] = {} @@ -9764,9 +10393,11 @@ defs["igListBoxFooter"][1]["cimguiname"] = "igListBoxFooter" defs["igListBoxFooter"][1]["comment"] = "" defs["igListBoxFooter"][1]["defaults"] = {} defs["igListBoxFooter"][1]["funcname"] = "ListBoxFooter" +defs["igListBoxFooter"][1]["namespace"] = "ImGui" +defs["igListBoxFooter"][1]["ov_cimguiname"] = "igListBoxFooter" defs["igListBoxFooter"][1]["ret"] = "void" defs["igListBoxFooter"][1]["signature"] = "()" -defs["igListBoxFooter"][1]["stname"] = "ImGui" +defs["igListBoxFooter"][1]["stname"] = "" defs["igListBoxFooter"]["()"] = defs["igListBoxFooter"][1] defs["igListBoxHeader"] = {} defs["igListBoxHeader"][1] = {} @@ -9785,10 +10416,11 @@ defs["igListBoxHeader"][1]["comment"] = "" defs["igListBoxHeader"][1]["defaults"] = {} defs["igListBoxHeader"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igListBoxHeader"][1]["funcname"] = "ListBoxHeader" +defs["igListBoxHeader"][1]["namespace"] = "ImGui" defs["igListBoxHeader"][1]["ov_cimguiname"] = "igListBoxHeaderVec2" defs["igListBoxHeader"][1]["ret"] = "bool" defs["igListBoxHeader"][1]["signature"] = "(const char*,const ImVec2)" -defs["igListBoxHeader"][1]["stname"] = "ImGui" +defs["igListBoxHeader"][1]["stname"] = "" defs["igListBoxHeader"][2] = {} defs["igListBoxHeader"][2]["args"] = "(const char* label,int items_count,int height_in_items)" defs["igListBoxHeader"][2]["argsT"] = {} @@ -9808,10 +10440,11 @@ defs["igListBoxHeader"][2]["comment"] = "" defs["igListBoxHeader"][2]["defaults"] = {} defs["igListBoxHeader"][2]["defaults"]["height_in_items"] = "-1" defs["igListBoxHeader"][2]["funcname"] = "ListBoxHeader" +defs["igListBoxHeader"][2]["namespace"] = "ImGui" defs["igListBoxHeader"][2]["ov_cimguiname"] = "igListBoxHeaderInt" defs["igListBoxHeader"][2]["ret"] = "bool" defs["igListBoxHeader"][2]["signature"] = "(const char*,int,int)" -defs["igListBoxHeader"][2]["stname"] = "ImGui" +defs["igListBoxHeader"][2]["stname"] = "" defs["igListBoxHeader"]["(const char*,const ImVec2)"] = defs["igListBoxHeader"][1] defs["igListBoxHeader"]["(const char*,int,int)"] = defs["igListBoxHeader"][2] defs["igLoadIniSettingsFromDisk"] = {} @@ -9827,9 +10460,11 @@ defs["igLoadIniSettingsFromDisk"][1]["cimguiname"] = "igLoadIniSettingsFromDisk" defs["igLoadIniSettingsFromDisk"][1]["comment"] = "" defs["igLoadIniSettingsFromDisk"][1]["defaults"] = {} defs["igLoadIniSettingsFromDisk"][1]["funcname"] = "LoadIniSettingsFromDisk" +defs["igLoadIniSettingsFromDisk"][1]["namespace"] = "ImGui" +defs["igLoadIniSettingsFromDisk"][1]["ov_cimguiname"] = "igLoadIniSettingsFromDisk" defs["igLoadIniSettingsFromDisk"][1]["ret"] = "void" defs["igLoadIniSettingsFromDisk"][1]["signature"] = "(const char*)" -defs["igLoadIniSettingsFromDisk"][1]["stname"] = "ImGui" +defs["igLoadIniSettingsFromDisk"][1]["stname"] = "" defs["igLoadIniSettingsFromDisk"]["(const char*)"] = defs["igLoadIniSettingsFromDisk"][1] defs["igLoadIniSettingsFromMemory"] = {} defs["igLoadIniSettingsFromMemory"][1] = {} @@ -9848,9 +10483,11 @@ defs["igLoadIniSettingsFromMemory"][1]["comment"] = "" defs["igLoadIniSettingsFromMemory"][1]["defaults"] = {} defs["igLoadIniSettingsFromMemory"][1]["defaults"]["ini_size"] = "0" defs["igLoadIniSettingsFromMemory"][1]["funcname"] = "LoadIniSettingsFromMemory" +defs["igLoadIniSettingsFromMemory"][1]["namespace"] = "ImGui" +defs["igLoadIniSettingsFromMemory"][1]["ov_cimguiname"] = "igLoadIniSettingsFromMemory" defs["igLoadIniSettingsFromMemory"][1]["ret"] = "void" defs["igLoadIniSettingsFromMemory"][1]["signature"] = "(const char*,size_t)" -defs["igLoadIniSettingsFromMemory"][1]["stname"] = "ImGui" +defs["igLoadIniSettingsFromMemory"][1]["stname"] = "" defs["igLoadIniSettingsFromMemory"]["(const char*,size_t)"] = defs["igLoadIniSettingsFromMemory"][1] defs["igLogButtons"] = {} defs["igLogButtons"][1] = {} @@ -9862,9 +10499,11 @@ defs["igLogButtons"][1]["cimguiname"] = "igLogButtons" defs["igLogButtons"][1]["comment"] = "" defs["igLogButtons"][1]["defaults"] = {} defs["igLogButtons"][1]["funcname"] = "LogButtons" +defs["igLogButtons"][1]["namespace"] = "ImGui" +defs["igLogButtons"][1]["ov_cimguiname"] = "igLogButtons" defs["igLogButtons"][1]["ret"] = "void" defs["igLogButtons"][1]["signature"] = "()" -defs["igLogButtons"][1]["stname"] = "ImGui" +defs["igLogButtons"][1]["stname"] = "" defs["igLogButtons"]["()"] = defs["igLogButtons"][1] defs["igLogFinish"] = {} defs["igLogFinish"][1] = {} @@ -9876,9 +10515,11 @@ defs["igLogFinish"][1]["cimguiname"] = "igLogFinish" defs["igLogFinish"][1]["comment"] = "" defs["igLogFinish"][1]["defaults"] = {} defs["igLogFinish"][1]["funcname"] = "LogFinish" +defs["igLogFinish"][1]["namespace"] = "ImGui" +defs["igLogFinish"][1]["ov_cimguiname"] = "igLogFinish" defs["igLogFinish"][1]["ret"] = "void" defs["igLogFinish"][1]["signature"] = "()" -defs["igLogFinish"][1]["stname"] = "ImGui" +defs["igLogFinish"][1]["stname"] = "" defs["igLogFinish"]["()"] = defs["igLogFinish"][1] defs["igLogText"] = {} defs["igLogText"][1] = {} @@ -9898,9 +10539,11 @@ defs["igLogText"][1]["defaults"] = {} defs["igLogText"][1]["funcname"] = "LogText" defs["igLogText"][1]["isvararg"] = "...)" defs["igLogText"][1]["manual"] = true +defs["igLogText"][1]["namespace"] = "ImGui" +defs["igLogText"][1]["ov_cimguiname"] = "igLogText" defs["igLogText"][1]["ret"] = "void" defs["igLogText"][1]["signature"] = "(const char*,...)" -defs["igLogText"][1]["stname"] = "ImGui" +defs["igLogText"][1]["stname"] = "" defs["igLogText"]["(const char*,...)"] = defs["igLogText"][1] defs["igLogToClipboard"] = {} defs["igLogToClipboard"][1] = {} @@ -9916,9 +10559,11 @@ defs["igLogToClipboard"][1]["comment"] = "" defs["igLogToClipboard"][1]["defaults"] = {} defs["igLogToClipboard"][1]["defaults"]["max_depth"] = "-1" defs["igLogToClipboard"][1]["funcname"] = "LogToClipboard" +defs["igLogToClipboard"][1]["namespace"] = "ImGui" +defs["igLogToClipboard"][1]["ov_cimguiname"] = "igLogToClipboard" defs["igLogToClipboard"][1]["ret"] = "void" defs["igLogToClipboard"][1]["signature"] = "(int)" -defs["igLogToClipboard"][1]["stname"] = "ImGui" +defs["igLogToClipboard"][1]["stname"] = "" defs["igLogToClipboard"]["(int)"] = defs["igLogToClipboard"][1] defs["igLogToFile"] = {} defs["igLogToFile"][1] = {} @@ -9930,17 +10575,19 @@ defs["igLogToFile"][1]["argsT"][1]["type"] = "int" defs["igLogToFile"][1]["argsT"][2] = {} defs["igLogToFile"][1]["argsT"][2]["name"] = "filename" defs["igLogToFile"][1]["argsT"][2]["type"] = "const char*" -defs["igLogToFile"][1]["argsoriginal"] = "(int max_depth=-1,const char* filename=((void *)0))" +defs["igLogToFile"][1]["argsoriginal"] = "(int max_depth=-1,const char* filename=((void*)0))" defs["igLogToFile"][1]["call_args"] = "(max_depth,filename)" defs["igLogToFile"][1]["cimguiname"] = "igLogToFile" defs["igLogToFile"][1]["comment"] = "" defs["igLogToFile"][1]["defaults"] = {} -defs["igLogToFile"][1]["defaults"]["filename"] = "((void *)0)" +defs["igLogToFile"][1]["defaults"]["filename"] = "((void*)0)" defs["igLogToFile"][1]["defaults"]["max_depth"] = "-1" defs["igLogToFile"][1]["funcname"] = "LogToFile" +defs["igLogToFile"][1]["namespace"] = "ImGui" +defs["igLogToFile"][1]["ov_cimguiname"] = "igLogToFile" defs["igLogToFile"][1]["ret"] = "void" defs["igLogToFile"][1]["signature"] = "(int,const char*)" -defs["igLogToFile"][1]["stname"] = "ImGui" +defs["igLogToFile"][1]["stname"] = "" defs["igLogToFile"]["(int,const char*)"] = defs["igLogToFile"][1] defs["igLogToTTY"] = {} defs["igLogToTTY"][1] = {} @@ -9956,9 +10603,11 @@ defs["igLogToTTY"][1]["comment"] = "" defs["igLogToTTY"][1]["defaults"] = {} defs["igLogToTTY"][1]["defaults"]["max_depth"] = "-1" defs["igLogToTTY"][1]["funcname"] = "LogToTTY" +defs["igLogToTTY"][1]["namespace"] = "ImGui" +defs["igLogToTTY"][1]["ov_cimguiname"] = "igLogToTTY" defs["igLogToTTY"][1]["ret"] = "void" defs["igLogToTTY"][1]["signature"] = "(int)" -defs["igLogToTTY"][1]["stname"] = "ImGui" +defs["igLogToTTY"][1]["stname"] = "" defs["igLogToTTY"]["(int)"] = defs["igLogToTTY"][1] defs["igMemAlloc"] = {} defs["igMemAlloc"][1] = {} @@ -9973,9 +10622,11 @@ defs["igMemAlloc"][1]["cimguiname"] = "igMemAlloc" defs["igMemAlloc"][1]["comment"] = "" defs["igMemAlloc"][1]["defaults"] = {} defs["igMemAlloc"][1]["funcname"] = "MemAlloc" +defs["igMemAlloc"][1]["namespace"] = "ImGui" +defs["igMemAlloc"][1]["ov_cimguiname"] = "igMemAlloc" defs["igMemAlloc"][1]["ret"] = "void*" defs["igMemAlloc"][1]["signature"] = "(size_t)" -defs["igMemAlloc"][1]["stname"] = "ImGui" +defs["igMemAlloc"][1]["stname"] = "" defs["igMemAlloc"]["(size_t)"] = defs["igMemAlloc"][1] defs["igMemFree"] = {} defs["igMemFree"][1] = {} @@ -9990,9 +10641,11 @@ defs["igMemFree"][1]["cimguiname"] = "igMemFree" defs["igMemFree"][1]["comment"] = "" defs["igMemFree"][1]["defaults"] = {} defs["igMemFree"][1]["funcname"] = "MemFree" +defs["igMemFree"][1]["namespace"] = "ImGui" +defs["igMemFree"][1]["ov_cimguiname"] = "igMemFree" defs["igMemFree"][1]["ret"] = "void" defs["igMemFree"][1]["signature"] = "(void*)" -defs["igMemFree"][1]["stname"] = "ImGui" +defs["igMemFree"][1]["stname"] = "" defs["igMemFree"]["(void*)"] = defs["igMemFree"][1] defs["igMenuItem"] = {} defs["igMenuItem"][1] = {} @@ -10010,19 +10663,20 @@ defs["igMenuItem"][1]["argsT"][3]["type"] = "bool" defs["igMenuItem"][1]["argsT"][4] = {} defs["igMenuItem"][1]["argsT"][4]["name"] = "enabled" defs["igMenuItem"][1]["argsT"][4]["type"] = "bool" -defs["igMenuItem"][1]["argsoriginal"] = "(const char* label,const char* shortcut=((void *)0),bool selected=false,bool enabled=true)" +defs["igMenuItem"][1]["argsoriginal"] = "(const char* label,const char* shortcut=((void*)0),bool selected=false,bool enabled=true)" defs["igMenuItem"][1]["call_args"] = "(label,shortcut,selected,enabled)" defs["igMenuItem"][1]["cimguiname"] = "igMenuItem" defs["igMenuItem"][1]["comment"] = "" defs["igMenuItem"][1]["defaults"] = {} defs["igMenuItem"][1]["defaults"]["enabled"] = "true" defs["igMenuItem"][1]["defaults"]["selected"] = "false" -defs["igMenuItem"][1]["defaults"]["shortcut"] = "((void *)0)" +defs["igMenuItem"][1]["defaults"]["shortcut"] = "((void*)0)" defs["igMenuItem"][1]["funcname"] = "MenuItem" +defs["igMenuItem"][1]["namespace"] = "ImGui" defs["igMenuItem"][1]["ov_cimguiname"] = "igMenuItemBool" defs["igMenuItem"][1]["ret"] = "bool" defs["igMenuItem"][1]["signature"] = "(const char*,const char*,bool,bool)" -defs["igMenuItem"][1]["stname"] = "ImGui" +defs["igMenuItem"][1]["stname"] = "" defs["igMenuItem"][2] = {} defs["igMenuItem"][2]["args"] = "(const char* label,const char* shortcut,bool* p_selected,bool enabled)" defs["igMenuItem"][2]["argsT"] = {} @@ -10045,10 +10699,11 @@ defs["igMenuItem"][2]["comment"] = "" defs["igMenuItem"][2]["defaults"] = {} defs["igMenuItem"][2]["defaults"]["enabled"] = "true" defs["igMenuItem"][2]["funcname"] = "MenuItem" +defs["igMenuItem"][2]["namespace"] = "ImGui" defs["igMenuItem"][2]["ov_cimguiname"] = "igMenuItemBoolPtr" defs["igMenuItem"][2]["ret"] = "bool" defs["igMenuItem"][2]["signature"] = "(const char*,const char*,bool*,bool)" -defs["igMenuItem"][2]["stname"] = "ImGui" +defs["igMenuItem"][2]["stname"] = "" defs["igMenuItem"]["(const char*,const char*,bool*,bool)"] = defs["igMenuItem"][2] defs["igMenuItem"]["(const char*,const char*,bool,bool)"] = defs["igMenuItem"][1] defs["igNewFrame"] = {} @@ -10061,9 +10716,11 @@ defs["igNewFrame"][1]["cimguiname"] = "igNewFrame" defs["igNewFrame"][1]["comment"] = "" defs["igNewFrame"][1]["defaults"] = {} defs["igNewFrame"][1]["funcname"] = "NewFrame" +defs["igNewFrame"][1]["namespace"] = "ImGui" +defs["igNewFrame"][1]["ov_cimguiname"] = "igNewFrame" defs["igNewFrame"][1]["ret"] = "void" defs["igNewFrame"][1]["signature"] = "()" -defs["igNewFrame"][1]["stname"] = "ImGui" +defs["igNewFrame"][1]["stname"] = "" defs["igNewFrame"]["()"] = defs["igNewFrame"][1] defs["igNewLine"] = {} defs["igNewLine"][1] = {} @@ -10075,9 +10732,11 @@ defs["igNewLine"][1]["cimguiname"] = "igNewLine" defs["igNewLine"][1]["comment"] = "" defs["igNewLine"][1]["defaults"] = {} defs["igNewLine"][1]["funcname"] = "NewLine" +defs["igNewLine"][1]["namespace"] = "ImGui" +defs["igNewLine"][1]["ov_cimguiname"] = "igNewLine" defs["igNewLine"][1]["ret"] = "void" defs["igNewLine"][1]["signature"] = "()" -defs["igNewLine"][1]["stname"] = "ImGui" +defs["igNewLine"][1]["stname"] = "" defs["igNewLine"]["()"] = defs["igNewLine"][1] defs["igNextColumn"] = {} defs["igNextColumn"][1] = {} @@ -10089,9 +10748,11 @@ defs["igNextColumn"][1]["cimguiname"] = "igNextColumn" defs["igNextColumn"][1]["comment"] = "" defs["igNextColumn"][1]["defaults"] = {} defs["igNextColumn"][1]["funcname"] = "NextColumn" +defs["igNextColumn"][1]["namespace"] = "ImGui" +defs["igNextColumn"][1]["ov_cimguiname"] = "igNextColumn" defs["igNextColumn"][1]["ret"] = "void" defs["igNextColumn"][1]["signature"] = "()" -defs["igNextColumn"][1]["stname"] = "ImGui" +defs["igNextColumn"][1]["stname"] = "" defs["igNextColumn"]["()"] = defs["igNextColumn"][1] defs["igOpenPopup"] = {} defs["igOpenPopup"][1] = {} @@ -10106,9 +10767,11 @@ defs["igOpenPopup"][1]["cimguiname"] = "igOpenPopup" defs["igOpenPopup"][1]["comment"] = "" defs["igOpenPopup"][1]["defaults"] = {} defs["igOpenPopup"][1]["funcname"] = "OpenPopup" +defs["igOpenPopup"][1]["namespace"] = "ImGui" +defs["igOpenPopup"][1]["ov_cimguiname"] = "igOpenPopup" defs["igOpenPopup"][1]["ret"] = "void" defs["igOpenPopup"][1]["signature"] = "(const char*)" -defs["igOpenPopup"][1]["stname"] = "ImGui" +defs["igOpenPopup"][1]["stname"] = "" defs["igOpenPopup"]["(const char*)"] = defs["igOpenPopup"][1] defs["igOpenPopupOnItemClick"] = {} defs["igOpenPopupOnItemClick"][1] = {} @@ -10120,17 +10783,19 @@ defs["igOpenPopupOnItemClick"][1]["argsT"][1]["type"] = "const char*" defs["igOpenPopupOnItemClick"][1]["argsT"][2] = {} defs["igOpenPopupOnItemClick"][1]["argsT"][2]["name"] = "mouse_button" defs["igOpenPopupOnItemClick"][1]["argsT"][2]["type"] = "int" -defs["igOpenPopupOnItemClick"][1]["argsoriginal"] = "(const char* str_id=((void *)0),int mouse_button=1)" +defs["igOpenPopupOnItemClick"][1]["argsoriginal"] = "(const char* str_id=((void*)0),int mouse_button=1)" defs["igOpenPopupOnItemClick"][1]["call_args"] = "(str_id,mouse_button)" defs["igOpenPopupOnItemClick"][1]["cimguiname"] = "igOpenPopupOnItemClick" defs["igOpenPopupOnItemClick"][1]["comment"] = "" defs["igOpenPopupOnItemClick"][1]["defaults"] = {} defs["igOpenPopupOnItemClick"][1]["defaults"]["mouse_button"] = "1" -defs["igOpenPopupOnItemClick"][1]["defaults"]["str_id"] = "((void *)0)" +defs["igOpenPopupOnItemClick"][1]["defaults"]["str_id"] = "((void*)0)" defs["igOpenPopupOnItemClick"][1]["funcname"] = "OpenPopupOnItemClick" +defs["igOpenPopupOnItemClick"][1]["namespace"] = "ImGui" +defs["igOpenPopupOnItemClick"][1]["ov_cimguiname"] = "igOpenPopupOnItemClick" defs["igOpenPopupOnItemClick"][1]["ret"] = "bool" defs["igOpenPopupOnItemClick"][1]["signature"] = "(const char*,int)" -defs["igOpenPopupOnItemClick"][1]["stname"] = "ImGui" +defs["igOpenPopupOnItemClick"][1]["stname"] = "" defs["igOpenPopupOnItemClick"]["(const char*,int)"] = defs["igOpenPopupOnItemClick"][1] defs["igPlotHistogram"] = {} defs["igPlotHistogram"][1] = {} @@ -10163,22 +10828,23 @@ defs["igPlotHistogram"][1]["argsT"][8]["type"] = "ImVec2" defs["igPlotHistogram"][1]["argsT"][9] = {} defs["igPlotHistogram"][1]["argsT"][9]["name"] = "stride" defs["igPlotHistogram"][1]["argsT"][9]["type"] = "int" -defs["igPlotHistogram"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void *)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" +defs["igPlotHistogram"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" defs["igPlotHistogram"][1]["call_args"] = "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)" defs["igPlotHistogram"][1]["cimguiname"] = "igPlotHistogram" defs["igPlotHistogram"][1]["comment"] = "" defs["igPlotHistogram"][1]["defaults"] = {} defs["igPlotHistogram"][1]["defaults"]["graph_size"] = "ImVec2(0,0)" -defs["igPlotHistogram"][1]["defaults"]["overlay_text"] = "((void *)0)" +defs["igPlotHistogram"][1]["defaults"]["overlay_text"] = "((void*)0)" defs["igPlotHistogram"][1]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotHistogram"][1]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotHistogram"][1]["defaults"]["stride"] = "sizeof(float)" defs["igPlotHistogram"][1]["defaults"]["values_offset"] = "0" defs["igPlotHistogram"][1]["funcname"] = "PlotHistogram" +defs["igPlotHistogram"][1]["namespace"] = "ImGui" defs["igPlotHistogram"][1]["ov_cimguiname"] = "igPlotHistogramFloatPtr" defs["igPlotHistogram"][1]["ret"] = "void" defs["igPlotHistogram"][1]["signature"] = "(const char*,const float*,int,int,const char*,float,float,ImVec2,int)" -defs["igPlotHistogram"][1]["stname"] = "ImGui" +defs["igPlotHistogram"][1]["stname"] = "" defs["igPlotHistogram"][2] = {} defs["igPlotHistogram"][2]["args"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 graph_size)" defs["igPlotHistogram"][2]["argsT"] = {} @@ -10211,21 +10877,22 @@ defs["igPlotHistogram"][2]["argsT"][8]["type"] = "float" defs["igPlotHistogram"][2]["argsT"][9] = {} defs["igPlotHistogram"][2]["argsT"][9]["name"] = "graph_size" defs["igPlotHistogram"][2]["argsT"][9]["type"] = "ImVec2" -defs["igPlotHistogram"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void *)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0))" +defs["igPlotHistogram"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0))" defs["igPlotHistogram"][2]["call_args"] = "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)" defs["igPlotHistogram"][2]["cimguiname"] = "igPlotHistogram" defs["igPlotHistogram"][2]["comment"] = "" defs["igPlotHistogram"][2]["defaults"] = {} defs["igPlotHistogram"][2]["defaults"]["graph_size"] = "ImVec2(0,0)" -defs["igPlotHistogram"][2]["defaults"]["overlay_text"] = "((void *)0)" +defs["igPlotHistogram"][2]["defaults"]["overlay_text"] = "((void*)0)" defs["igPlotHistogram"][2]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotHistogram"][2]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotHistogram"][2]["defaults"]["values_offset"] = "0" defs["igPlotHistogram"][2]["funcname"] = "PlotHistogram" +defs["igPlotHistogram"][2]["namespace"] = "ImGui" defs["igPlotHistogram"][2]["ov_cimguiname"] = "igPlotHistogramFnPtr" defs["igPlotHistogram"][2]["ret"] = "void" defs["igPlotHistogram"][2]["signature"] = "(const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2)" -defs["igPlotHistogram"][2]["stname"] = "ImGui" +defs["igPlotHistogram"][2]["stname"] = "" defs["igPlotHistogram"]["(const char*,const float*,int,int,const char*,float,float,ImVec2,int)"] = defs["igPlotHistogram"][1] defs["igPlotHistogram"]["(const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2)"] = defs["igPlotHistogram"][2] defs["igPlotLines"] = {} @@ -10259,22 +10926,23 @@ defs["igPlotLines"][1]["argsT"][8]["type"] = "ImVec2" defs["igPlotLines"][1]["argsT"][9] = {} defs["igPlotLines"][1]["argsT"][9]["name"] = "stride" defs["igPlotLines"][1]["argsT"][9]["type"] = "int" -defs["igPlotLines"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void *)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" +defs["igPlotLines"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" defs["igPlotLines"][1]["call_args"] = "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)" defs["igPlotLines"][1]["cimguiname"] = "igPlotLines" defs["igPlotLines"][1]["comment"] = "" defs["igPlotLines"][1]["defaults"] = {} defs["igPlotLines"][1]["defaults"]["graph_size"] = "ImVec2(0,0)" -defs["igPlotLines"][1]["defaults"]["overlay_text"] = "((void *)0)" +defs["igPlotLines"][1]["defaults"]["overlay_text"] = "((void*)0)" defs["igPlotLines"][1]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotLines"][1]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotLines"][1]["defaults"]["stride"] = "sizeof(float)" defs["igPlotLines"][1]["defaults"]["values_offset"] = "0" defs["igPlotLines"][1]["funcname"] = "PlotLines" +defs["igPlotLines"][1]["namespace"] = "ImGui" defs["igPlotLines"][1]["ov_cimguiname"] = "igPlotLines" defs["igPlotLines"][1]["ret"] = "void" defs["igPlotLines"][1]["signature"] = "(const char*,const float*,int,int,const char*,float,float,ImVec2,int)" -defs["igPlotLines"][1]["stname"] = "ImGui" +defs["igPlotLines"][1]["stname"] = "" defs["igPlotLines"][2] = {} defs["igPlotLines"][2]["args"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 graph_size)" defs["igPlotLines"][2]["argsT"] = {} @@ -10307,21 +10975,22 @@ defs["igPlotLines"][2]["argsT"][8]["type"] = "float" defs["igPlotLines"][2]["argsT"][9] = {} defs["igPlotLines"][2]["argsT"][9]["name"] = "graph_size" defs["igPlotLines"][2]["argsT"][9]["type"] = "ImVec2" -defs["igPlotLines"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void *)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0))" +defs["igPlotLines"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859812e+38F,float scale_max=3.40282346638528859812e+38F,ImVec2 graph_size=ImVec2(0,0))" defs["igPlotLines"][2]["call_args"] = "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)" defs["igPlotLines"][2]["cimguiname"] = "igPlotLines" defs["igPlotLines"][2]["comment"] = "" defs["igPlotLines"][2]["defaults"] = {} defs["igPlotLines"][2]["defaults"]["graph_size"] = "ImVec2(0,0)" -defs["igPlotLines"][2]["defaults"]["overlay_text"] = "((void *)0)" +defs["igPlotLines"][2]["defaults"]["overlay_text"] = "((void*)0)" defs["igPlotLines"][2]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotLines"][2]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotLines"][2]["defaults"]["values_offset"] = "0" defs["igPlotLines"][2]["funcname"] = "PlotLines" +defs["igPlotLines"][2]["namespace"] = "ImGui" defs["igPlotLines"][2]["ov_cimguiname"] = "igPlotLinesFnPtr" defs["igPlotLines"][2]["ret"] = "void" defs["igPlotLines"][2]["signature"] = "(const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2)" -defs["igPlotLines"][2]["stname"] = "ImGui" +defs["igPlotLines"][2]["stname"] = "" defs["igPlotLines"]["(const char*,const float*,int,int,const char*,float,float,ImVec2,int)"] = defs["igPlotLines"][1] defs["igPlotLines"]["(const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2)"] = defs["igPlotLines"][2] defs["igPopAllowKeyboardFocus"] = {} @@ -10334,9 +11003,11 @@ defs["igPopAllowKeyboardFocus"][1]["cimguiname"] = "igPopAllowKeyboardFocus" defs["igPopAllowKeyboardFocus"][1]["comment"] = "" defs["igPopAllowKeyboardFocus"][1]["defaults"] = {} defs["igPopAllowKeyboardFocus"][1]["funcname"] = "PopAllowKeyboardFocus" +defs["igPopAllowKeyboardFocus"][1]["namespace"] = "ImGui" +defs["igPopAllowKeyboardFocus"][1]["ov_cimguiname"] = "igPopAllowKeyboardFocus" defs["igPopAllowKeyboardFocus"][1]["ret"] = "void" defs["igPopAllowKeyboardFocus"][1]["signature"] = "()" -defs["igPopAllowKeyboardFocus"][1]["stname"] = "ImGui" +defs["igPopAllowKeyboardFocus"][1]["stname"] = "" defs["igPopAllowKeyboardFocus"]["()"] = defs["igPopAllowKeyboardFocus"][1] defs["igPopButtonRepeat"] = {} defs["igPopButtonRepeat"][1] = {} @@ -10348,9 +11019,11 @@ defs["igPopButtonRepeat"][1]["cimguiname"] = "igPopButtonRepeat" defs["igPopButtonRepeat"][1]["comment"] = "" defs["igPopButtonRepeat"][1]["defaults"] = {} defs["igPopButtonRepeat"][1]["funcname"] = "PopButtonRepeat" +defs["igPopButtonRepeat"][1]["namespace"] = "ImGui" +defs["igPopButtonRepeat"][1]["ov_cimguiname"] = "igPopButtonRepeat" defs["igPopButtonRepeat"][1]["ret"] = "void" defs["igPopButtonRepeat"][1]["signature"] = "()" -defs["igPopButtonRepeat"][1]["stname"] = "ImGui" +defs["igPopButtonRepeat"][1]["stname"] = "" defs["igPopButtonRepeat"]["()"] = defs["igPopButtonRepeat"][1] defs["igPopClipRect"] = {} defs["igPopClipRect"][1] = {} @@ -10362,9 +11035,11 @@ defs["igPopClipRect"][1]["cimguiname"] = "igPopClipRect" defs["igPopClipRect"][1]["comment"] = "" defs["igPopClipRect"][1]["defaults"] = {} defs["igPopClipRect"][1]["funcname"] = "PopClipRect" +defs["igPopClipRect"][1]["namespace"] = "ImGui" +defs["igPopClipRect"][1]["ov_cimguiname"] = "igPopClipRect" defs["igPopClipRect"][1]["ret"] = "void" defs["igPopClipRect"][1]["signature"] = "()" -defs["igPopClipRect"][1]["stname"] = "ImGui" +defs["igPopClipRect"][1]["stname"] = "" defs["igPopClipRect"]["()"] = defs["igPopClipRect"][1] defs["igPopFont"] = {} defs["igPopFont"][1] = {} @@ -10376,9 +11051,11 @@ defs["igPopFont"][1]["cimguiname"] = "igPopFont" defs["igPopFont"][1]["comment"] = "" defs["igPopFont"][1]["defaults"] = {} defs["igPopFont"][1]["funcname"] = "PopFont" +defs["igPopFont"][1]["namespace"] = "ImGui" +defs["igPopFont"][1]["ov_cimguiname"] = "igPopFont" defs["igPopFont"][1]["ret"] = "void" defs["igPopFont"][1]["signature"] = "()" -defs["igPopFont"][1]["stname"] = "ImGui" +defs["igPopFont"][1]["stname"] = "" defs["igPopFont"]["()"] = defs["igPopFont"][1] defs["igPopID"] = {} defs["igPopID"][1] = {} @@ -10390,9 +11067,11 @@ defs["igPopID"][1]["cimguiname"] = "igPopID" defs["igPopID"][1]["comment"] = "" defs["igPopID"][1]["defaults"] = {} defs["igPopID"][1]["funcname"] = "PopID" +defs["igPopID"][1]["namespace"] = "ImGui" +defs["igPopID"][1]["ov_cimguiname"] = "igPopID" defs["igPopID"][1]["ret"] = "void" defs["igPopID"][1]["signature"] = "()" -defs["igPopID"][1]["stname"] = "ImGui" +defs["igPopID"][1]["stname"] = "" defs["igPopID"]["()"] = defs["igPopID"][1] defs["igPopItemWidth"] = {} defs["igPopItemWidth"][1] = {} @@ -10404,9 +11083,11 @@ defs["igPopItemWidth"][1]["cimguiname"] = "igPopItemWidth" defs["igPopItemWidth"][1]["comment"] = "" defs["igPopItemWidth"][1]["defaults"] = {} defs["igPopItemWidth"][1]["funcname"] = "PopItemWidth" +defs["igPopItemWidth"][1]["namespace"] = "ImGui" +defs["igPopItemWidth"][1]["ov_cimguiname"] = "igPopItemWidth" defs["igPopItemWidth"][1]["ret"] = "void" defs["igPopItemWidth"][1]["signature"] = "()" -defs["igPopItemWidth"][1]["stname"] = "ImGui" +defs["igPopItemWidth"][1]["stname"] = "" defs["igPopItemWidth"]["()"] = defs["igPopItemWidth"][1] defs["igPopStyleColor"] = {} defs["igPopStyleColor"][1] = {} @@ -10422,9 +11103,11 @@ defs["igPopStyleColor"][1]["comment"] = "" defs["igPopStyleColor"][1]["defaults"] = {} defs["igPopStyleColor"][1]["defaults"]["count"] = "1" defs["igPopStyleColor"][1]["funcname"] = "PopStyleColor" +defs["igPopStyleColor"][1]["namespace"] = "ImGui" +defs["igPopStyleColor"][1]["ov_cimguiname"] = "igPopStyleColor" defs["igPopStyleColor"][1]["ret"] = "void" defs["igPopStyleColor"][1]["signature"] = "(int)" -defs["igPopStyleColor"][1]["stname"] = "ImGui" +defs["igPopStyleColor"][1]["stname"] = "" defs["igPopStyleColor"]["(int)"] = defs["igPopStyleColor"][1] defs["igPopStyleVar"] = {} defs["igPopStyleVar"][1] = {} @@ -10440,9 +11123,11 @@ defs["igPopStyleVar"][1]["comment"] = "" defs["igPopStyleVar"][1]["defaults"] = {} defs["igPopStyleVar"][1]["defaults"]["count"] = "1" defs["igPopStyleVar"][1]["funcname"] = "PopStyleVar" +defs["igPopStyleVar"][1]["namespace"] = "ImGui" +defs["igPopStyleVar"][1]["ov_cimguiname"] = "igPopStyleVar" defs["igPopStyleVar"][1]["ret"] = "void" defs["igPopStyleVar"][1]["signature"] = "(int)" -defs["igPopStyleVar"][1]["stname"] = "ImGui" +defs["igPopStyleVar"][1]["stname"] = "" defs["igPopStyleVar"]["(int)"] = defs["igPopStyleVar"][1] defs["igPopTextWrapPos"] = {} defs["igPopTextWrapPos"][1] = {} @@ -10454,9 +11139,11 @@ defs["igPopTextWrapPos"][1]["cimguiname"] = "igPopTextWrapPos" defs["igPopTextWrapPos"][1]["comment"] = "" defs["igPopTextWrapPos"][1]["defaults"] = {} defs["igPopTextWrapPos"][1]["funcname"] = "PopTextWrapPos" +defs["igPopTextWrapPos"][1]["namespace"] = "ImGui" +defs["igPopTextWrapPos"][1]["ov_cimguiname"] = "igPopTextWrapPos" defs["igPopTextWrapPos"][1]["ret"] = "void" defs["igPopTextWrapPos"][1]["signature"] = "()" -defs["igPopTextWrapPos"][1]["stname"] = "ImGui" +defs["igPopTextWrapPos"][1]["stname"] = "" defs["igPopTextWrapPos"]["()"] = defs["igPopTextWrapPos"][1] defs["igProgressBar"] = {} defs["igProgressBar"][1] = {} @@ -10471,17 +11158,19 @@ defs["igProgressBar"][1]["argsT"][2]["type"] = "const ImVec2" defs["igProgressBar"][1]["argsT"][3] = {} defs["igProgressBar"][1]["argsT"][3]["name"] = "overlay" defs["igProgressBar"][1]["argsT"][3]["type"] = "const char*" -defs["igProgressBar"][1]["argsoriginal"] = "(float fraction,const ImVec2& size_arg=ImVec2(-1,0),const char* overlay=((void *)0))" +defs["igProgressBar"][1]["argsoriginal"] = "(float fraction,const ImVec2& size_arg=ImVec2(-1,0),const char* overlay=((void*)0))" defs["igProgressBar"][1]["call_args"] = "(fraction,size_arg,overlay)" defs["igProgressBar"][1]["cimguiname"] = "igProgressBar" defs["igProgressBar"][1]["comment"] = "" defs["igProgressBar"][1]["defaults"] = {} -defs["igProgressBar"][1]["defaults"]["overlay"] = "((void *)0)" +defs["igProgressBar"][1]["defaults"]["overlay"] = "((void*)0)" defs["igProgressBar"][1]["defaults"]["size_arg"] = "ImVec2(-1,0)" defs["igProgressBar"][1]["funcname"] = "ProgressBar" +defs["igProgressBar"][1]["namespace"] = "ImGui" +defs["igProgressBar"][1]["ov_cimguiname"] = "igProgressBar" defs["igProgressBar"][1]["ret"] = "void" defs["igProgressBar"][1]["signature"] = "(float,const ImVec2,const char*)" -defs["igProgressBar"][1]["stname"] = "ImGui" +defs["igProgressBar"][1]["stname"] = "" defs["igProgressBar"]["(float,const ImVec2,const char*)"] = defs["igProgressBar"][1] defs["igPushAllowKeyboardFocus"] = {} defs["igPushAllowKeyboardFocus"][1] = {} @@ -10496,9 +11185,11 @@ defs["igPushAllowKeyboardFocus"][1]["cimguiname"] = "igPushAllowKeyboardFocus" defs["igPushAllowKeyboardFocus"][1]["comment"] = "" defs["igPushAllowKeyboardFocus"][1]["defaults"] = {} defs["igPushAllowKeyboardFocus"][1]["funcname"] = "PushAllowKeyboardFocus" +defs["igPushAllowKeyboardFocus"][1]["namespace"] = "ImGui" +defs["igPushAllowKeyboardFocus"][1]["ov_cimguiname"] = "igPushAllowKeyboardFocus" defs["igPushAllowKeyboardFocus"][1]["ret"] = "void" defs["igPushAllowKeyboardFocus"][1]["signature"] = "(bool)" -defs["igPushAllowKeyboardFocus"][1]["stname"] = "ImGui" +defs["igPushAllowKeyboardFocus"][1]["stname"] = "" defs["igPushAllowKeyboardFocus"]["(bool)"] = defs["igPushAllowKeyboardFocus"][1] defs["igPushButtonRepeat"] = {} defs["igPushButtonRepeat"][1] = {} @@ -10513,9 +11204,11 @@ defs["igPushButtonRepeat"][1]["cimguiname"] = "igPushButtonRepeat" defs["igPushButtonRepeat"][1]["comment"] = "" defs["igPushButtonRepeat"][1]["defaults"] = {} defs["igPushButtonRepeat"][1]["funcname"] = "PushButtonRepeat" +defs["igPushButtonRepeat"][1]["namespace"] = "ImGui" +defs["igPushButtonRepeat"][1]["ov_cimguiname"] = "igPushButtonRepeat" defs["igPushButtonRepeat"][1]["ret"] = "void" defs["igPushButtonRepeat"][1]["signature"] = "(bool)" -defs["igPushButtonRepeat"][1]["stname"] = "ImGui" +defs["igPushButtonRepeat"][1]["stname"] = "" defs["igPushButtonRepeat"]["(bool)"] = defs["igPushButtonRepeat"][1] defs["igPushClipRect"] = {} defs["igPushClipRect"][1] = {} @@ -10536,9 +11229,11 @@ defs["igPushClipRect"][1]["cimguiname"] = "igPushClipRect" defs["igPushClipRect"][1]["comment"] = "" defs["igPushClipRect"][1]["defaults"] = {} defs["igPushClipRect"][1]["funcname"] = "PushClipRect" +defs["igPushClipRect"][1]["namespace"] = "ImGui" +defs["igPushClipRect"][1]["ov_cimguiname"] = "igPushClipRect" defs["igPushClipRect"][1]["ret"] = "void" defs["igPushClipRect"][1]["signature"] = "(const ImVec2,const ImVec2,bool)" -defs["igPushClipRect"][1]["stname"] = "ImGui" +defs["igPushClipRect"][1]["stname"] = "" defs["igPushClipRect"]["(const ImVec2,const ImVec2,bool)"] = defs["igPushClipRect"][1] defs["igPushFont"] = {} defs["igPushFont"][1] = {} @@ -10553,9 +11248,11 @@ defs["igPushFont"][1]["cimguiname"] = "igPushFont" defs["igPushFont"][1]["comment"] = "" defs["igPushFont"][1]["defaults"] = {} defs["igPushFont"][1]["funcname"] = "PushFont" +defs["igPushFont"][1]["namespace"] = "ImGui" +defs["igPushFont"][1]["ov_cimguiname"] = "igPushFont" defs["igPushFont"][1]["ret"] = "void" defs["igPushFont"][1]["signature"] = "(ImFont*)" -defs["igPushFont"][1]["stname"] = "ImGui" +defs["igPushFont"][1]["stname"] = "" defs["igPushFont"]["(ImFont*)"] = defs["igPushFont"][1] defs["igPushID"] = {} defs["igPushID"][1] = {} @@ -10570,10 +11267,11 @@ defs["igPushID"][1]["cimguiname"] = "igPushID" defs["igPushID"][1]["comment"] = "" defs["igPushID"][1]["defaults"] = {} defs["igPushID"][1]["funcname"] = "PushID" +defs["igPushID"][1]["namespace"] = "ImGui" defs["igPushID"][1]["ov_cimguiname"] = "igPushIDStr" defs["igPushID"][1]["ret"] = "void" defs["igPushID"][1]["signature"] = "(const char*)" -defs["igPushID"][1]["stname"] = "ImGui" +defs["igPushID"][1]["stname"] = "" defs["igPushID"][2] = {} defs["igPushID"][2]["args"] = "(const char* str_id_begin,const char* str_id_end)" defs["igPushID"][2]["argsT"] = {} @@ -10589,10 +11287,11 @@ defs["igPushID"][2]["cimguiname"] = "igPushID" defs["igPushID"][2]["comment"] = "" defs["igPushID"][2]["defaults"] = {} defs["igPushID"][2]["funcname"] = "PushID" +defs["igPushID"][2]["namespace"] = "ImGui" defs["igPushID"][2]["ov_cimguiname"] = "igPushIDRange" defs["igPushID"][2]["ret"] = "void" defs["igPushID"][2]["signature"] = "(const char*,const char*)" -defs["igPushID"][2]["stname"] = "ImGui" +defs["igPushID"][2]["stname"] = "" defs["igPushID"][3] = {} defs["igPushID"][3]["args"] = "(const void* ptr_id)" defs["igPushID"][3]["argsT"] = {} @@ -10605,10 +11304,11 @@ defs["igPushID"][3]["cimguiname"] = "igPushID" defs["igPushID"][3]["comment"] = "" defs["igPushID"][3]["defaults"] = {} defs["igPushID"][3]["funcname"] = "PushID" +defs["igPushID"][3]["namespace"] = "ImGui" defs["igPushID"][3]["ov_cimguiname"] = "igPushIDPtr" defs["igPushID"][3]["ret"] = "void" defs["igPushID"][3]["signature"] = "(const void*)" -defs["igPushID"][3]["stname"] = "ImGui" +defs["igPushID"][3]["stname"] = "" defs["igPushID"][4] = {} defs["igPushID"][4]["args"] = "(int int_id)" defs["igPushID"][4]["argsT"] = {} @@ -10621,10 +11321,11 @@ defs["igPushID"][4]["cimguiname"] = "igPushID" defs["igPushID"][4]["comment"] = "" defs["igPushID"][4]["defaults"] = {} defs["igPushID"][4]["funcname"] = "PushID" +defs["igPushID"][4]["namespace"] = "ImGui" defs["igPushID"][4]["ov_cimguiname"] = "igPushIDInt" defs["igPushID"][4]["ret"] = "void" defs["igPushID"][4]["signature"] = "(int)" -defs["igPushID"][4]["stname"] = "ImGui" +defs["igPushID"][4]["stname"] = "" defs["igPushID"]["(const char*)"] = defs["igPushID"][1] defs["igPushID"]["(const char*,const char*)"] = defs["igPushID"][2] defs["igPushID"]["(const void*)"] = defs["igPushID"][3] @@ -10642,9 +11343,11 @@ defs["igPushItemWidth"][1]["cimguiname"] = "igPushItemWidth" defs["igPushItemWidth"][1]["comment"] = "" defs["igPushItemWidth"][1]["defaults"] = {} defs["igPushItemWidth"][1]["funcname"] = "PushItemWidth" +defs["igPushItemWidth"][1]["namespace"] = "ImGui" +defs["igPushItemWidth"][1]["ov_cimguiname"] = "igPushItemWidth" defs["igPushItemWidth"][1]["ret"] = "void" defs["igPushItemWidth"][1]["signature"] = "(float)" -defs["igPushItemWidth"][1]["stname"] = "ImGui" +defs["igPushItemWidth"][1]["stname"] = "" defs["igPushItemWidth"]["(float)"] = defs["igPushItemWidth"][1] defs["igPushStyleColor"] = {} defs["igPushStyleColor"][1] = {} @@ -10662,10 +11365,11 @@ defs["igPushStyleColor"][1]["cimguiname"] = "igPushStyleColor" defs["igPushStyleColor"][1]["comment"] = "" defs["igPushStyleColor"][1]["defaults"] = {} defs["igPushStyleColor"][1]["funcname"] = "PushStyleColor" +defs["igPushStyleColor"][1]["namespace"] = "ImGui" defs["igPushStyleColor"][1]["ov_cimguiname"] = "igPushStyleColorU32" defs["igPushStyleColor"][1]["ret"] = "void" defs["igPushStyleColor"][1]["signature"] = "(ImGuiCol,ImU32)" -defs["igPushStyleColor"][1]["stname"] = "ImGui" +defs["igPushStyleColor"][1]["stname"] = "" defs["igPushStyleColor"][2] = {} defs["igPushStyleColor"][2]["args"] = "(ImGuiCol idx,const ImVec4 col)" defs["igPushStyleColor"][2]["argsT"] = {} @@ -10681,10 +11385,11 @@ defs["igPushStyleColor"][2]["cimguiname"] = "igPushStyleColor" defs["igPushStyleColor"][2]["comment"] = "" defs["igPushStyleColor"][2]["defaults"] = {} defs["igPushStyleColor"][2]["funcname"] = "PushStyleColor" +defs["igPushStyleColor"][2]["namespace"] = "ImGui" defs["igPushStyleColor"][2]["ov_cimguiname"] = "igPushStyleColor" defs["igPushStyleColor"][2]["ret"] = "void" defs["igPushStyleColor"][2]["signature"] = "(ImGuiCol,const ImVec4)" -defs["igPushStyleColor"][2]["stname"] = "ImGui" +defs["igPushStyleColor"][2]["stname"] = "" defs["igPushStyleColor"]["(ImGuiCol,ImU32)"] = defs["igPushStyleColor"][1] defs["igPushStyleColor"]["(ImGuiCol,const ImVec4)"] = defs["igPushStyleColor"][2] defs["igPushStyleVar"] = {} @@ -10703,10 +11408,11 @@ defs["igPushStyleVar"][1]["cimguiname"] = "igPushStyleVar" defs["igPushStyleVar"][1]["comment"] = "" defs["igPushStyleVar"][1]["defaults"] = {} defs["igPushStyleVar"][1]["funcname"] = "PushStyleVar" +defs["igPushStyleVar"][1]["namespace"] = "ImGui" defs["igPushStyleVar"][1]["ov_cimguiname"] = "igPushStyleVarFloat" defs["igPushStyleVar"][1]["ret"] = "void" defs["igPushStyleVar"][1]["signature"] = "(ImGuiStyleVar,float)" -defs["igPushStyleVar"][1]["stname"] = "ImGui" +defs["igPushStyleVar"][1]["stname"] = "" defs["igPushStyleVar"][2] = {} defs["igPushStyleVar"][2]["args"] = "(ImGuiStyleVar idx,const ImVec2 val)" defs["igPushStyleVar"][2]["argsT"] = {} @@ -10722,10 +11428,11 @@ defs["igPushStyleVar"][2]["cimguiname"] = "igPushStyleVar" defs["igPushStyleVar"][2]["comment"] = "" defs["igPushStyleVar"][2]["defaults"] = {} defs["igPushStyleVar"][2]["funcname"] = "PushStyleVar" +defs["igPushStyleVar"][2]["namespace"] = "ImGui" defs["igPushStyleVar"][2]["ov_cimguiname"] = "igPushStyleVarVec2" defs["igPushStyleVar"][2]["ret"] = "void" defs["igPushStyleVar"][2]["signature"] = "(ImGuiStyleVar,const ImVec2)" -defs["igPushStyleVar"][2]["stname"] = "ImGui" +defs["igPushStyleVar"][2]["stname"] = "" defs["igPushStyleVar"]["(ImGuiStyleVar,const ImVec2)"] = defs["igPushStyleVar"][2] defs["igPushStyleVar"]["(ImGuiStyleVar,float)"] = defs["igPushStyleVar"][1] defs["igPushTextWrapPos"] = {} @@ -10742,9 +11449,11 @@ defs["igPushTextWrapPos"][1]["comment"] = "" defs["igPushTextWrapPos"][1]["defaults"] = {} defs["igPushTextWrapPos"][1]["defaults"]["wrap_local_pos_x"] = "0.0f" defs["igPushTextWrapPos"][1]["funcname"] = "PushTextWrapPos" +defs["igPushTextWrapPos"][1]["namespace"] = "ImGui" +defs["igPushTextWrapPos"][1]["ov_cimguiname"] = "igPushTextWrapPos" defs["igPushTextWrapPos"][1]["ret"] = "void" defs["igPushTextWrapPos"][1]["signature"] = "(float)" -defs["igPushTextWrapPos"][1]["stname"] = "ImGui" +defs["igPushTextWrapPos"][1]["stname"] = "" defs["igPushTextWrapPos"]["(float)"] = defs["igPushTextWrapPos"][1] defs["igRadioButton"] = {} defs["igRadioButton"][1] = {} @@ -10762,10 +11471,11 @@ defs["igRadioButton"][1]["cimguiname"] = "igRadioButton" defs["igRadioButton"][1]["comment"] = "" defs["igRadioButton"][1]["defaults"] = {} defs["igRadioButton"][1]["funcname"] = "RadioButton" +defs["igRadioButton"][1]["namespace"] = "ImGui" defs["igRadioButton"][1]["ov_cimguiname"] = "igRadioButtonBool" defs["igRadioButton"][1]["ret"] = "bool" defs["igRadioButton"][1]["signature"] = "(const char*,bool)" -defs["igRadioButton"][1]["stname"] = "ImGui" +defs["igRadioButton"][1]["stname"] = "" defs["igRadioButton"][2] = {} defs["igRadioButton"][2]["args"] = "(const char* label,int* v,int v_button)" defs["igRadioButton"][2]["argsT"] = {} @@ -10784,10 +11494,11 @@ defs["igRadioButton"][2]["cimguiname"] = "igRadioButton" defs["igRadioButton"][2]["comment"] = "" defs["igRadioButton"][2]["defaults"] = {} defs["igRadioButton"][2]["funcname"] = "RadioButton" +defs["igRadioButton"][2]["namespace"] = "ImGui" defs["igRadioButton"][2]["ov_cimguiname"] = "igRadioButtonIntPtr" defs["igRadioButton"][2]["ret"] = "bool" defs["igRadioButton"][2]["signature"] = "(const char*,int*,int)" -defs["igRadioButton"][2]["stname"] = "ImGui" +defs["igRadioButton"][2]["stname"] = "" defs["igRadioButton"]["(const char*,bool)"] = defs["igRadioButton"][1] defs["igRadioButton"]["(const char*,int*,int)"] = defs["igRadioButton"][2] defs["igRender"] = {} @@ -10800,9 +11511,11 @@ defs["igRender"][1]["cimguiname"] = "igRender" defs["igRender"][1]["comment"] = "" defs["igRender"][1]["defaults"] = {} defs["igRender"][1]["funcname"] = "Render" +defs["igRender"][1]["namespace"] = "ImGui" +defs["igRender"][1]["ov_cimguiname"] = "igRender" defs["igRender"][1]["ret"] = "void" defs["igRender"][1]["signature"] = "()" -defs["igRender"][1]["stname"] = "ImGui" +defs["igRender"][1]["stname"] = "" defs["igRender"]["()"] = defs["igRender"][1] defs["igResetMouseDragDelta"] = {} defs["igResetMouseDragDelta"][1] = {} @@ -10818,9 +11531,11 @@ defs["igResetMouseDragDelta"][1]["comment"] = "" defs["igResetMouseDragDelta"][1]["defaults"] = {} defs["igResetMouseDragDelta"][1]["defaults"]["button"] = "0" defs["igResetMouseDragDelta"][1]["funcname"] = "ResetMouseDragDelta" +defs["igResetMouseDragDelta"][1]["namespace"] = "ImGui" +defs["igResetMouseDragDelta"][1]["ov_cimguiname"] = "igResetMouseDragDelta" defs["igResetMouseDragDelta"][1]["ret"] = "void" defs["igResetMouseDragDelta"][1]["signature"] = "(int)" -defs["igResetMouseDragDelta"][1]["stname"] = "ImGui" +defs["igResetMouseDragDelta"][1]["stname"] = "" defs["igResetMouseDragDelta"]["(int)"] = defs["igResetMouseDragDelta"][1] defs["igSameLine"] = {} defs["igSameLine"][1] = {} @@ -10840,9 +11555,11 @@ defs["igSameLine"][1]["defaults"] = {} defs["igSameLine"][1]["defaults"]["local_pos_x"] = "0.0f" defs["igSameLine"][1]["defaults"]["spacing_w"] = "-1.0f" defs["igSameLine"][1]["funcname"] = "SameLine" +defs["igSameLine"][1]["namespace"] = "ImGui" +defs["igSameLine"][1]["ov_cimguiname"] = "igSameLine" defs["igSameLine"][1]["ret"] = "void" defs["igSameLine"][1]["signature"] = "(float,float)" -defs["igSameLine"][1]["stname"] = "ImGui" +defs["igSameLine"][1]["stname"] = "" defs["igSameLine"]["(float,float)"] = defs["igSameLine"][1] defs["igSaveIniSettingsToDisk"] = {} defs["igSaveIniSettingsToDisk"][1] = {} @@ -10857,9 +11574,11 @@ defs["igSaveIniSettingsToDisk"][1]["cimguiname"] = "igSaveIniSettingsToDisk" defs["igSaveIniSettingsToDisk"][1]["comment"] = "" defs["igSaveIniSettingsToDisk"][1]["defaults"] = {} defs["igSaveIniSettingsToDisk"][1]["funcname"] = "SaveIniSettingsToDisk" +defs["igSaveIniSettingsToDisk"][1]["namespace"] = "ImGui" +defs["igSaveIniSettingsToDisk"][1]["ov_cimguiname"] = "igSaveIniSettingsToDisk" defs["igSaveIniSettingsToDisk"][1]["ret"] = "void" defs["igSaveIniSettingsToDisk"][1]["signature"] = "(const char*)" -defs["igSaveIniSettingsToDisk"][1]["stname"] = "ImGui" +defs["igSaveIniSettingsToDisk"][1]["stname"] = "" defs["igSaveIniSettingsToDisk"]["(const char*)"] = defs["igSaveIniSettingsToDisk"][1] defs["igSaveIniSettingsToMemory"] = {} defs["igSaveIniSettingsToMemory"][1] = {} @@ -10868,16 +11587,18 @@ defs["igSaveIniSettingsToMemory"][1]["argsT"] = {} defs["igSaveIniSettingsToMemory"][1]["argsT"][1] = {} defs["igSaveIniSettingsToMemory"][1]["argsT"][1]["name"] = "out_ini_size" defs["igSaveIniSettingsToMemory"][1]["argsT"][1]["type"] = "size_t*" -defs["igSaveIniSettingsToMemory"][1]["argsoriginal"] = "(size_t* out_ini_size=((void *)0))" +defs["igSaveIniSettingsToMemory"][1]["argsoriginal"] = "(size_t* out_ini_size=((void*)0))" defs["igSaveIniSettingsToMemory"][1]["call_args"] = "(out_ini_size)" defs["igSaveIniSettingsToMemory"][1]["cimguiname"] = "igSaveIniSettingsToMemory" defs["igSaveIniSettingsToMemory"][1]["comment"] = "" defs["igSaveIniSettingsToMemory"][1]["defaults"] = {} -defs["igSaveIniSettingsToMemory"][1]["defaults"]["out_ini_size"] = "((void *)0)" +defs["igSaveIniSettingsToMemory"][1]["defaults"]["out_ini_size"] = "((void*)0)" defs["igSaveIniSettingsToMemory"][1]["funcname"] = "SaveIniSettingsToMemory" +defs["igSaveIniSettingsToMemory"][1]["namespace"] = "ImGui" +defs["igSaveIniSettingsToMemory"][1]["ov_cimguiname"] = "igSaveIniSettingsToMemory" defs["igSaveIniSettingsToMemory"][1]["ret"] = "const char*" defs["igSaveIniSettingsToMemory"][1]["signature"] = "(size_t*)" -defs["igSaveIniSettingsToMemory"][1]["stname"] = "ImGui" +defs["igSaveIniSettingsToMemory"][1]["stname"] = "" defs["igSaveIniSettingsToMemory"]["(size_t*)"] = defs["igSaveIniSettingsToMemory"][1] defs["igSelectable"] = {} defs["igSelectable"][1] = {} @@ -10904,10 +11625,11 @@ defs["igSelectable"][1]["defaults"]["flags"] = "0" defs["igSelectable"][1]["defaults"]["selected"] = "false" defs["igSelectable"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igSelectable"][1]["funcname"] = "Selectable" +defs["igSelectable"][1]["namespace"] = "ImGui" defs["igSelectable"][1]["ov_cimguiname"] = "igSelectable" defs["igSelectable"][1]["ret"] = "bool" defs["igSelectable"][1]["signature"] = "(const char*,bool,ImGuiSelectableFlags,const ImVec2)" -defs["igSelectable"][1]["stname"] = "ImGui" +defs["igSelectable"][1]["stname"] = "" defs["igSelectable"][2] = {} defs["igSelectable"][2]["args"] = "(const char* label,bool* p_selected,ImGuiSelectableFlags flags,const ImVec2 size)" defs["igSelectable"][2]["argsT"] = {} @@ -10931,10 +11653,11 @@ defs["igSelectable"][2]["defaults"] = {} defs["igSelectable"][2]["defaults"]["flags"] = "0" defs["igSelectable"][2]["defaults"]["size"] = "ImVec2(0,0)" defs["igSelectable"][2]["funcname"] = "Selectable" +defs["igSelectable"][2]["namespace"] = "ImGui" defs["igSelectable"][2]["ov_cimguiname"] = "igSelectableBoolPtr" defs["igSelectable"][2]["ret"] = "bool" defs["igSelectable"][2]["signature"] = "(const char*,bool*,ImGuiSelectableFlags,const ImVec2)" -defs["igSelectable"][2]["stname"] = "ImGui" +defs["igSelectable"][2]["stname"] = "" defs["igSelectable"]["(const char*,bool*,ImGuiSelectableFlags,const ImVec2)"] = defs["igSelectable"][2] defs["igSelectable"]["(const char*,bool,ImGuiSelectableFlags,const ImVec2)"] = defs["igSelectable"][1] defs["igSeparator"] = {} @@ -10947,9 +11670,11 @@ defs["igSeparator"][1]["cimguiname"] = "igSeparator" defs["igSeparator"][1]["comment"] = "" defs["igSeparator"][1]["defaults"] = {} defs["igSeparator"][1]["funcname"] = "Separator" +defs["igSeparator"][1]["namespace"] = "ImGui" +defs["igSeparator"][1]["ov_cimguiname"] = "igSeparator" defs["igSeparator"][1]["ret"] = "void" defs["igSeparator"][1]["signature"] = "()" -defs["igSeparator"][1]["stname"] = "ImGui" +defs["igSeparator"][1]["stname"] = "" defs["igSeparator"]["()"] = defs["igSeparator"][1] defs["igSetAllocatorFunctions"] = {} defs["igSetAllocatorFunctions"][1] = {} @@ -10968,16 +11693,18 @@ defs["igSetAllocatorFunctions"][1]["argsT"][2]["type"] = "void(*)(void* ptr,void defs["igSetAllocatorFunctions"][1]["argsT"][3] = {} defs["igSetAllocatorFunctions"][1]["argsT"][3]["name"] = "user_data" defs["igSetAllocatorFunctions"][1]["argsT"][3]["type"] = "void*" -defs["igSetAllocatorFunctions"][1]["argsoriginal"] = "(void*(*alloc_func)(size_t sz,void* user_data),void(*free_func)(void* ptr,void* user_data),void* user_data=((void *)0))" +defs["igSetAllocatorFunctions"][1]["argsoriginal"] = "(void*(*alloc_func)(size_t sz,void* user_data),void(*free_func)(void* ptr,void* user_data),void* user_data=((void*)0))" defs["igSetAllocatorFunctions"][1]["call_args"] = "(alloc_func,free_func,user_data)" defs["igSetAllocatorFunctions"][1]["cimguiname"] = "igSetAllocatorFunctions" defs["igSetAllocatorFunctions"][1]["comment"] = "" defs["igSetAllocatorFunctions"][1]["defaults"] = {} -defs["igSetAllocatorFunctions"][1]["defaults"]["user_data"] = "((void *)0)" +defs["igSetAllocatorFunctions"][1]["defaults"]["user_data"] = "((void*)0)" defs["igSetAllocatorFunctions"][1]["funcname"] = "SetAllocatorFunctions" +defs["igSetAllocatorFunctions"][1]["namespace"] = "ImGui" +defs["igSetAllocatorFunctions"][1]["ov_cimguiname"] = "igSetAllocatorFunctions" defs["igSetAllocatorFunctions"][1]["ret"] = "void" defs["igSetAllocatorFunctions"][1]["signature"] = "(void*(*)(size_t,void*),void(*)(void*,void*),void*)" -defs["igSetAllocatorFunctions"][1]["stname"] = "ImGui" +defs["igSetAllocatorFunctions"][1]["stname"] = "" defs["igSetAllocatorFunctions"]["(void*(*)(size_t,void*),void(*)(void*,void*),void*)"] = defs["igSetAllocatorFunctions"][1] defs["igSetClipboardText"] = {} defs["igSetClipboardText"][1] = {} @@ -10992,9 +11719,11 @@ defs["igSetClipboardText"][1]["cimguiname"] = "igSetClipboardText" defs["igSetClipboardText"][1]["comment"] = "" defs["igSetClipboardText"][1]["defaults"] = {} defs["igSetClipboardText"][1]["funcname"] = "SetClipboardText" +defs["igSetClipboardText"][1]["namespace"] = "ImGui" +defs["igSetClipboardText"][1]["ov_cimguiname"] = "igSetClipboardText" defs["igSetClipboardText"][1]["ret"] = "void" defs["igSetClipboardText"][1]["signature"] = "(const char*)" -defs["igSetClipboardText"][1]["stname"] = "ImGui" +defs["igSetClipboardText"][1]["stname"] = "" defs["igSetClipboardText"]["(const char*)"] = defs["igSetClipboardText"][1] defs["igSetColorEditOptions"] = {} defs["igSetColorEditOptions"][1] = {} @@ -11009,9 +11738,11 @@ defs["igSetColorEditOptions"][1]["cimguiname"] = "igSetColorEditOptions" defs["igSetColorEditOptions"][1]["comment"] = "" defs["igSetColorEditOptions"][1]["defaults"] = {} defs["igSetColorEditOptions"][1]["funcname"] = "SetColorEditOptions" +defs["igSetColorEditOptions"][1]["namespace"] = "ImGui" +defs["igSetColorEditOptions"][1]["ov_cimguiname"] = "igSetColorEditOptions" defs["igSetColorEditOptions"][1]["ret"] = "void" defs["igSetColorEditOptions"][1]["signature"] = "(ImGuiColorEditFlags)" -defs["igSetColorEditOptions"][1]["stname"] = "ImGui" +defs["igSetColorEditOptions"][1]["stname"] = "" defs["igSetColorEditOptions"]["(ImGuiColorEditFlags)"] = defs["igSetColorEditOptions"][1] defs["igSetColumnOffset"] = {} defs["igSetColumnOffset"][1] = {} @@ -11029,9 +11760,11 @@ defs["igSetColumnOffset"][1]["cimguiname"] = "igSetColumnOffset" defs["igSetColumnOffset"][1]["comment"] = "" defs["igSetColumnOffset"][1]["defaults"] = {} defs["igSetColumnOffset"][1]["funcname"] = "SetColumnOffset" +defs["igSetColumnOffset"][1]["namespace"] = "ImGui" +defs["igSetColumnOffset"][1]["ov_cimguiname"] = "igSetColumnOffset" defs["igSetColumnOffset"][1]["ret"] = "void" defs["igSetColumnOffset"][1]["signature"] = "(int,float)" -defs["igSetColumnOffset"][1]["stname"] = "ImGui" +defs["igSetColumnOffset"][1]["stname"] = "" defs["igSetColumnOffset"]["(int,float)"] = defs["igSetColumnOffset"][1] defs["igSetColumnWidth"] = {} defs["igSetColumnWidth"][1] = {} @@ -11049,9 +11782,11 @@ defs["igSetColumnWidth"][1]["cimguiname"] = "igSetColumnWidth" defs["igSetColumnWidth"][1]["comment"] = "" defs["igSetColumnWidth"][1]["defaults"] = {} defs["igSetColumnWidth"][1]["funcname"] = "SetColumnWidth" +defs["igSetColumnWidth"][1]["namespace"] = "ImGui" +defs["igSetColumnWidth"][1]["ov_cimguiname"] = "igSetColumnWidth" defs["igSetColumnWidth"][1]["ret"] = "void" defs["igSetColumnWidth"][1]["signature"] = "(int,float)" -defs["igSetColumnWidth"][1]["stname"] = "ImGui" +defs["igSetColumnWidth"][1]["stname"] = "" defs["igSetColumnWidth"]["(int,float)"] = defs["igSetColumnWidth"][1] defs["igSetCurrentContext"] = {} defs["igSetCurrentContext"][1] = {} @@ -11066,9 +11801,11 @@ defs["igSetCurrentContext"][1]["cimguiname"] = "igSetCurrentContext" defs["igSetCurrentContext"][1]["comment"] = "" defs["igSetCurrentContext"][1]["defaults"] = {} defs["igSetCurrentContext"][1]["funcname"] = "SetCurrentContext" +defs["igSetCurrentContext"][1]["namespace"] = "ImGui" +defs["igSetCurrentContext"][1]["ov_cimguiname"] = "igSetCurrentContext" defs["igSetCurrentContext"][1]["ret"] = "void" defs["igSetCurrentContext"][1]["signature"] = "(ImGuiContext*)" -defs["igSetCurrentContext"][1]["stname"] = "ImGui" +defs["igSetCurrentContext"][1]["stname"] = "" defs["igSetCurrentContext"]["(ImGuiContext*)"] = defs["igSetCurrentContext"][1] defs["igSetCursorPos"] = {} defs["igSetCursorPos"][1] = {} @@ -11083,9 +11820,11 @@ defs["igSetCursorPos"][1]["cimguiname"] = "igSetCursorPos" defs["igSetCursorPos"][1]["comment"] = "" defs["igSetCursorPos"][1]["defaults"] = {} defs["igSetCursorPos"][1]["funcname"] = "SetCursorPos" +defs["igSetCursorPos"][1]["namespace"] = "ImGui" +defs["igSetCursorPos"][1]["ov_cimguiname"] = "igSetCursorPos" defs["igSetCursorPos"][1]["ret"] = "void" defs["igSetCursorPos"][1]["signature"] = "(const ImVec2)" -defs["igSetCursorPos"][1]["stname"] = "ImGui" +defs["igSetCursorPos"][1]["stname"] = "" defs["igSetCursorPos"]["(const ImVec2)"] = defs["igSetCursorPos"][1] defs["igSetCursorPosX"] = {} defs["igSetCursorPosX"][1] = {} @@ -11100,9 +11839,11 @@ defs["igSetCursorPosX"][1]["cimguiname"] = "igSetCursorPosX" defs["igSetCursorPosX"][1]["comment"] = "" defs["igSetCursorPosX"][1]["defaults"] = {} defs["igSetCursorPosX"][1]["funcname"] = "SetCursorPosX" +defs["igSetCursorPosX"][1]["namespace"] = "ImGui" +defs["igSetCursorPosX"][1]["ov_cimguiname"] = "igSetCursorPosX" defs["igSetCursorPosX"][1]["ret"] = "void" defs["igSetCursorPosX"][1]["signature"] = "(float)" -defs["igSetCursorPosX"][1]["stname"] = "ImGui" +defs["igSetCursorPosX"][1]["stname"] = "" defs["igSetCursorPosX"]["(float)"] = defs["igSetCursorPosX"][1] defs["igSetCursorPosY"] = {} defs["igSetCursorPosY"][1] = {} @@ -11117,9 +11858,11 @@ defs["igSetCursorPosY"][1]["cimguiname"] = "igSetCursorPosY" defs["igSetCursorPosY"][1]["comment"] = "" defs["igSetCursorPosY"][1]["defaults"] = {} defs["igSetCursorPosY"][1]["funcname"] = "SetCursorPosY" +defs["igSetCursorPosY"][1]["namespace"] = "ImGui" +defs["igSetCursorPosY"][1]["ov_cimguiname"] = "igSetCursorPosY" defs["igSetCursorPosY"][1]["ret"] = "void" defs["igSetCursorPosY"][1]["signature"] = "(float)" -defs["igSetCursorPosY"][1]["stname"] = "ImGui" +defs["igSetCursorPosY"][1]["stname"] = "" defs["igSetCursorPosY"]["(float)"] = defs["igSetCursorPosY"][1] defs["igSetCursorScreenPos"] = {} defs["igSetCursorScreenPos"][1] = {} @@ -11134,9 +11877,11 @@ defs["igSetCursorScreenPos"][1]["cimguiname"] = "igSetCursorScreenPos" defs["igSetCursorScreenPos"][1]["comment"] = "" defs["igSetCursorScreenPos"][1]["defaults"] = {} defs["igSetCursorScreenPos"][1]["funcname"] = "SetCursorScreenPos" +defs["igSetCursorScreenPos"][1]["namespace"] = "ImGui" +defs["igSetCursorScreenPos"][1]["ov_cimguiname"] = "igSetCursorScreenPos" defs["igSetCursorScreenPos"][1]["ret"] = "void" defs["igSetCursorScreenPos"][1]["signature"] = "(const ImVec2)" -defs["igSetCursorScreenPos"][1]["stname"] = "ImGui" +defs["igSetCursorScreenPos"][1]["stname"] = "" defs["igSetCursorScreenPos"]["(const ImVec2)"] = defs["igSetCursorScreenPos"][1] defs["igSetDragDropPayload"] = {} defs["igSetDragDropPayload"][1] = {} @@ -11161,9 +11906,11 @@ defs["igSetDragDropPayload"][1]["comment"] = "" defs["igSetDragDropPayload"][1]["defaults"] = {} defs["igSetDragDropPayload"][1]["defaults"]["cond"] = "0" defs["igSetDragDropPayload"][1]["funcname"] = "SetDragDropPayload" +defs["igSetDragDropPayload"][1]["namespace"] = "ImGui" +defs["igSetDragDropPayload"][1]["ov_cimguiname"] = "igSetDragDropPayload" defs["igSetDragDropPayload"][1]["ret"] = "bool" defs["igSetDragDropPayload"][1]["signature"] = "(const char*,const void*,size_t,ImGuiCond)" -defs["igSetDragDropPayload"][1]["stname"] = "ImGui" +defs["igSetDragDropPayload"][1]["stname"] = "" defs["igSetDragDropPayload"]["(const char*,const void*,size_t,ImGuiCond)"] = defs["igSetDragDropPayload"][1] defs["igSetItemAllowOverlap"] = {} defs["igSetItemAllowOverlap"][1] = {} @@ -11175,9 +11922,11 @@ defs["igSetItemAllowOverlap"][1]["cimguiname"] = "igSetItemAllowOverlap" defs["igSetItemAllowOverlap"][1]["comment"] = "" defs["igSetItemAllowOverlap"][1]["defaults"] = {} defs["igSetItemAllowOverlap"][1]["funcname"] = "SetItemAllowOverlap" +defs["igSetItemAllowOverlap"][1]["namespace"] = "ImGui" +defs["igSetItemAllowOverlap"][1]["ov_cimguiname"] = "igSetItemAllowOverlap" defs["igSetItemAllowOverlap"][1]["ret"] = "void" defs["igSetItemAllowOverlap"][1]["signature"] = "()" -defs["igSetItemAllowOverlap"][1]["stname"] = "ImGui" +defs["igSetItemAllowOverlap"][1]["stname"] = "" defs["igSetItemAllowOverlap"]["()"] = defs["igSetItemAllowOverlap"][1] defs["igSetItemDefaultFocus"] = {} defs["igSetItemDefaultFocus"][1] = {} @@ -11189,9 +11938,11 @@ defs["igSetItemDefaultFocus"][1]["cimguiname"] = "igSetItemDefaultFocus" defs["igSetItemDefaultFocus"][1]["comment"] = "" defs["igSetItemDefaultFocus"][1]["defaults"] = {} defs["igSetItemDefaultFocus"][1]["funcname"] = "SetItemDefaultFocus" +defs["igSetItemDefaultFocus"][1]["namespace"] = "ImGui" +defs["igSetItemDefaultFocus"][1]["ov_cimguiname"] = "igSetItemDefaultFocus" defs["igSetItemDefaultFocus"][1]["ret"] = "void" defs["igSetItemDefaultFocus"][1]["signature"] = "()" -defs["igSetItemDefaultFocus"][1]["stname"] = "ImGui" +defs["igSetItemDefaultFocus"][1]["stname"] = "" defs["igSetItemDefaultFocus"]["()"] = defs["igSetItemDefaultFocus"][1] defs["igSetKeyboardFocusHere"] = {} defs["igSetKeyboardFocusHere"][1] = {} @@ -11207,9 +11958,11 @@ defs["igSetKeyboardFocusHere"][1]["comment"] = "" defs["igSetKeyboardFocusHere"][1]["defaults"] = {} defs["igSetKeyboardFocusHere"][1]["defaults"]["offset"] = "0" defs["igSetKeyboardFocusHere"][1]["funcname"] = "SetKeyboardFocusHere" +defs["igSetKeyboardFocusHere"][1]["namespace"] = "ImGui" +defs["igSetKeyboardFocusHere"][1]["ov_cimguiname"] = "igSetKeyboardFocusHere" defs["igSetKeyboardFocusHere"][1]["ret"] = "void" defs["igSetKeyboardFocusHere"][1]["signature"] = "(int)" -defs["igSetKeyboardFocusHere"][1]["stname"] = "ImGui" +defs["igSetKeyboardFocusHere"][1]["stname"] = "" defs["igSetKeyboardFocusHere"]["(int)"] = defs["igSetKeyboardFocusHere"][1] defs["igSetMouseCursor"] = {} defs["igSetMouseCursor"][1] = {} @@ -11224,9 +11977,11 @@ defs["igSetMouseCursor"][1]["cimguiname"] = "igSetMouseCursor" defs["igSetMouseCursor"][1]["comment"] = "" defs["igSetMouseCursor"][1]["defaults"] = {} defs["igSetMouseCursor"][1]["funcname"] = "SetMouseCursor" +defs["igSetMouseCursor"][1]["namespace"] = "ImGui" +defs["igSetMouseCursor"][1]["ov_cimguiname"] = "igSetMouseCursor" defs["igSetMouseCursor"][1]["ret"] = "void" defs["igSetMouseCursor"][1]["signature"] = "(ImGuiMouseCursor)" -defs["igSetMouseCursor"][1]["stname"] = "ImGui" +defs["igSetMouseCursor"][1]["stname"] = "" defs["igSetMouseCursor"]["(ImGuiMouseCursor)"] = defs["igSetMouseCursor"][1] defs["igSetNextTreeNodeOpen"] = {} defs["igSetNextTreeNodeOpen"][1] = {} @@ -11245,9 +12000,11 @@ defs["igSetNextTreeNodeOpen"][1]["comment"] = "" defs["igSetNextTreeNodeOpen"][1]["defaults"] = {} defs["igSetNextTreeNodeOpen"][1]["defaults"]["cond"] = "0" defs["igSetNextTreeNodeOpen"][1]["funcname"] = "SetNextTreeNodeOpen" +defs["igSetNextTreeNodeOpen"][1]["namespace"] = "ImGui" +defs["igSetNextTreeNodeOpen"][1]["ov_cimguiname"] = "igSetNextTreeNodeOpen" defs["igSetNextTreeNodeOpen"][1]["ret"] = "void" defs["igSetNextTreeNodeOpen"][1]["signature"] = "(bool,ImGuiCond)" -defs["igSetNextTreeNodeOpen"][1]["stname"] = "ImGui" +defs["igSetNextTreeNodeOpen"][1]["stname"] = "" defs["igSetNextTreeNodeOpen"]["(bool,ImGuiCond)"] = defs["igSetNextTreeNodeOpen"][1] defs["igSetNextWindowBgAlpha"] = {} defs["igSetNextWindowBgAlpha"][1] = {} @@ -11262,9 +12019,11 @@ defs["igSetNextWindowBgAlpha"][1]["cimguiname"] = "igSetNextWindowBgAlpha" defs["igSetNextWindowBgAlpha"][1]["comment"] = "" defs["igSetNextWindowBgAlpha"][1]["defaults"] = {} defs["igSetNextWindowBgAlpha"][1]["funcname"] = "SetNextWindowBgAlpha" +defs["igSetNextWindowBgAlpha"][1]["namespace"] = "ImGui" +defs["igSetNextWindowBgAlpha"][1]["ov_cimguiname"] = "igSetNextWindowBgAlpha" defs["igSetNextWindowBgAlpha"][1]["ret"] = "void" defs["igSetNextWindowBgAlpha"][1]["signature"] = "(float)" -defs["igSetNextWindowBgAlpha"][1]["stname"] = "ImGui" +defs["igSetNextWindowBgAlpha"][1]["stname"] = "" defs["igSetNextWindowBgAlpha"]["(float)"] = defs["igSetNextWindowBgAlpha"][1] defs["igSetNextWindowCollapsed"] = {} defs["igSetNextWindowCollapsed"][1] = {} @@ -11283,9 +12042,11 @@ defs["igSetNextWindowCollapsed"][1]["comment"] = "" defs["igSetNextWindowCollapsed"][1]["defaults"] = {} defs["igSetNextWindowCollapsed"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowCollapsed"][1]["funcname"] = "SetNextWindowCollapsed" +defs["igSetNextWindowCollapsed"][1]["namespace"] = "ImGui" +defs["igSetNextWindowCollapsed"][1]["ov_cimguiname"] = "igSetNextWindowCollapsed" defs["igSetNextWindowCollapsed"][1]["ret"] = "void" defs["igSetNextWindowCollapsed"][1]["signature"] = "(bool,ImGuiCond)" -defs["igSetNextWindowCollapsed"][1]["stname"] = "ImGui" +defs["igSetNextWindowCollapsed"][1]["stname"] = "" defs["igSetNextWindowCollapsed"]["(bool,ImGuiCond)"] = defs["igSetNextWindowCollapsed"][1] defs["igSetNextWindowContentSize"] = {} defs["igSetNextWindowContentSize"][1] = {} @@ -11300,9 +12061,11 @@ defs["igSetNextWindowContentSize"][1]["cimguiname"] = "igSetNextWindowContentSiz defs["igSetNextWindowContentSize"][1]["comment"] = "" defs["igSetNextWindowContentSize"][1]["defaults"] = {} defs["igSetNextWindowContentSize"][1]["funcname"] = "SetNextWindowContentSize" +defs["igSetNextWindowContentSize"][1]["namespace"] = "ImGui" +defs["igSetNextWindowContentSize"][1]["ov_cimguiname"] = "igSetNextWindowContentSize" defs["igSetNextWindowContentSize"][1]["ret"] = "void" defs["igSetNextWindowContentSize"][1]["signature"] = "(const ImVec2)" -defs["igSetNextWindowContentSize"][1]["stname"] = "ImGui" +defs["igSetNextWindowContentSize"][1]["stname"] = "" defs["igSetNextWindowContentSize"]["(const ImVec2)"] = defs["igSetNextWindowContentSize"][1] defs["igSetNextWindowFocus"] = {} defs["igSetNextWindowFocus"][1] = {} @@ -11314,9 +12077,11 @@ defs["igSetNextWindowFocus"][1]["cimguiname"] = "igSetNextWindowFocus" defs["igSetNextWindowFocus"][1]["comment"] = "" defs["igSetNextWindowFocus"][1]["defaults"] = {} defs["igSetNextWindowFocus"][1]["funcname"] = "SetNextWindowFocus" +defs["igSetNextWindowFocus"][1]["namespace"] = "ImGui" +defs["igSetNextWindowFocus"][1]["ov_cimguiname"] = "igSetNextWindowFocus" defs["igSetNextWindowFocus"][1]["ret"] = "void" defs["igSetNextWindowFocus"][1]["signature"] = "()" -defs["igSetNextWindowFocus"][1]["stname"] = "ImGui" +defs["igSetNextWindowFocus"][1]["stname"] = "" defs["igSetNextWindowFocus"]["()"] = defs["igSetNextWindowFocus"][1] defs["igSetNextWindowPos"] = {} defs["igSetNextWindowPos"][1] = {} @@ -11339,9 +12104,11 @@ defs["igSetNextWindowPos"][1]["defaults"] = {} defs["igSetNextWindowPos"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowPos"][1]["defaults"]["pivot"] = "ImVec2(0,0)" defs["igSetNextWindowPos"][1]["funcname"] = "SetNextWindowPos" +defs["igSetNextWindowPos"][1]["namespace"] = "ImGui" +defs["igSetNextWindowPos"][1]["ov_cimguiname"] = "igSetNextWindowPos" defs["igSetNextWindowPos"][1]["ret"] = "void" defs["igSetNextWindowPos"][1]["signature"] = "(const ImVec2,ImGuiCond,const ImVec2)" -defs["igSetNextWindowPos"][1]["stname"] = "ImGui" +defs["igSetNextWindowPos"][1]["stname"] = "" defs["igSetNextWindowPos"]["(const ImVec2,ImGuiCond,const ImVec2)"] = defs["igSetNextWindowPos"][1] defs["igSetNextWindowSize"] = {} defs["igSetNextWindowSize"][1] = {} @@ -11360,9 +12127,11 @@ defs["igSetNextWindowSize"][1]["comment"] = "" defs["igSetNextWindowSize"][1]["defaults"] = {} defs["igSetNextWindowSize"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowSize"][1]["funcname"] = "SetNextWindowSize" +defs["igSetNextWindowSize"][1]["namespace"] = "ImGui" +defs["igSetNextWindowSize"][1]["ov_cimguiname"] = "igSetNextWindowSize" defs["igSetNextWindowSize"][1]["ret"] = "void" defs["igSetNextWindowSize"][1]["signature"] = "(const ImVec2,ImGuiCond)" -defs["igSetNextWindowSize"][1]["stname"] = "ImGui" +defs["igSetNextWindowSize"][1]["stname"] = "" defs["igSetNextWindowSize"]["(const ImVec2,ImGuiCond)"] = defs["igSetNextWindowSize"][1] defs["igSetNextWindowSizeConstraints"] = {} defs["igSetNextWindowSizeConstraints"][1] = {} @@ -11380,17 +12149,19 @@ defs["igSetNextWindowSizeConstraints"][1]["argsT"][3]["type"] = "ImGuiSizeCallba defs["igSetNextWindowSizeConstraints"][1]["argsT"][4] = {} defs["igSetNextWindowSizeConstraints"][1]["argsT"][4]["name"] = "custom_callback_data" defs["igSetNextWindowSizeConstraints"][1]["argsT"][4]["type"] = "void*" -defs["igSetNextWindowSizeConstraints"][1]["argsoriginal"] = "(const ImVec2& size_min,const ImVec2& size_max,ImGuiSizeCallback custom_callback=((void *)0),void* custom_callback_data=((void *)0))" +defs["igSetNextWindowSizeConstraints"][1]["argsoriginal"] = "(const ImVec2& size_min,const ImVec2& size_max,ImGuiSizeCallback custom_callback=((void*)0),void* custom_callback_data=((void*)0))" defs["igSetNextWindowSizeConstraints"][1]["call_args"] = "(size_min,size_max,custom_callback,custom_callback_data)" defs["igSetNextWindowSizeConstraints"][1]["cimguiname"] = "igSetNextWindowSizeConstraints" defs["igSetNextWindowSizeConstraints"][1]["comment"] = "" defs["igSetNextWindowSizeConstraints"][1]["defaults"] = {} -defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback"] = "((void *)0)" -defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback_data"] = "((void *)0)" +defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback"] = "((void*)0)" +defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback_data"] = "((void*)0)" defs["igSetNextWindowSizeConstraints"][1]["funcname"] = "SetNextWindowSizeConstraints" +defs["igSetNextWindowSizeConstraints"][1]["namespace"] = "ImGui" +defs["igSetNextWindowSizeConstraints"][1]["ov_cimguiname"] = "igSetNextWindowSizeConstraints" defs["igSetNextWindowSizeConstraints"][1]["ret"] = "void" defs["igSetNextWindowSizeConstraints"][1]["signature"] = "(const ImVec2,const ImVec2,ImGuiSizeCallback,void*)" -defs["igSetNextWindowSizeConstraints"][1]["stname"] = "ImGui" +defs["igSetNextWindowSizeConstraints"][1]["stname"] = "" defs["igSetNextWindowSizeConstraints"]["(const ImVec2,const ImVec2,ImGuiSizeCallback,void*)"] = defs["igSetNextWindowSizeConstraints"][1] defs["igSetScrollFromPosY"] = {} defs["igSetScrollFromPosY"][1] = {} @@ -11409,9 +12180,11 @@ defs["igSetScrollFromPosY"][1]["comment"] = "" defs["igSetScrollFromPosY"][1]["defaults"] = {} defs["igSetScrollFromPosY"][1]["defaults"]["center_y_ratio"] = "0.5f" defs["igSetScrollFromPosY"][1]["funcname"] = "SetScrollFromPosY" +defs["igSetScrollFromPosY"][1]["namespace"] = "ImGui" +defs["igSetScrollFromPosY"][1]["ov_cimguiname"] = "igSetScrollFromPosY" defs["igSetScrollFromPosY"][1]["ret"] = "void" defs["igSetScrollFromPosY"][1]["signature"] = "(float,float)" -defs["igSetScrollFromPosY"][1]["stname"] = "ImGui" +defs["igSetScrollFromPosY"][1]["stname"] = "" defs["igSetScrollFromPosY"]["(float,float)"] = defs["igSetScrollFromPosY"][1] defs["igSetScrollHereY"] = {} defs["igSetScrollHereY"][1] = {} @@ -11427,9 +12200,11 @@ defs["igSetScrollHereY"][1]["comment"] = "" defs["igSetScrollHereY"][1]["defaults"] = {} defs["igSetScrollHereY"][1]["defaults"]["center_y_ratio"] = "0.5f" defs["igSetScrollHereY"][1]["funcname"] = "SetScrollHereY" +defs["igSetScrollHereY"][1]["namespace"] = "ImGui" +defs["igSetScrollHereY"][1]["ov_cimguiname"] = "igSetScrollHereY" defs["igSetScrollHereY"][1]["ret"] = "void" defs["igSetScrollHereY"][1]["signature"] = "(float)" -defs["igSetScrollHereY"][1]["stname"] = "ImGui" +defs["igSetScrollHereY"][1]["stname"] = "" defs["igSetScrollHereY"]["(float)"] = defs["igSetScrollHereY"][1] defs["igSetScrollX"] = {} defs["igSetScrollX"][1] = {} @@ -11444,9 +12219,11 @@ defs["igSetScrollX"][1]["cimguiname"] = "igSetScrollX" defs["igSetScrollX"][1]["comment"] = "" defs["igSetScrollX"][1]["defaults"] = {} defs["igSetScrollX"][1]["funcname"] = "SetScrollX" +defs["igSetScrollX"][1]["namespace"] = "ImGui" +defs["igSetScrollX"][1]["ov_cimguiname"] = "igSetScrollX" defs["igSetScrollX"][1]["ret"] = "void" defs["igSetScrollX"][1]["signature"] = "(float)" -defs["igSetScrollX"][1]["stname"] = "ImGui" +defs["igSetScrollX"][1]["stname"] = "" defs["igSetScrollX"]["(float)"] = defs["igSetScrollX"][1] defs["igSetScrollY"] = {} defs["igSetScrollY"][1] = {} @@ -11461,9 +12238,11 @@ defs["igSetScrollY"][1]["cimguiname"] = "igSetScrollY" defs["igSetScrollY"][1]["comment"] = "" defs["igSetScrollY"][1]["defaults"] = {} defs["igSetScrollY"][1]["funcname"] = "SetScrollY" +defs["igSetScrollY"][1]["namespace"] = "ImGui" +defs["igSetScrollY"][1]["ov_cimguiname"] = "igSetScrollY" defs["igSetScrollY"][1]["ret"] = "void" defs["igSetScrollY"][1]["signature"] = "(float)" -defs["igSetScrollY"][1]["stname"] = "ImGui" +defs["igSetScrollY"][1]["stname"] = "" defs["igSetScrollY"]["(float)"] = defs["igSetScrollY"][1] defs["igSetStateStorage"] = {} defs["igSetStateStorage"][1] = {} @@ -11478,9 +12257,11 @@ defs["igSetStateStorage"][1]["cimguiname"] = "igSetStateStorage" defs["igSetStateStorage"][1]["comment"] = "" defs["igSetStateStorage"][1]["defaults"] = {} defs["igSetStateStorage"][1]["funcname"] = "SetStateStorage" +defs["igSetStateStorage"][1]["namespace"] = "ImGui" +defs["igSetStateStorage"][1]["ov_cimguiname"] = "igSetStateStorage" defs["igSetStateStorage"][1]["ret"] = "void" defs["igSetStateStorage"][1]["signature"] = "(ImGuiStorage*)" -defs["igSetStateStorage"][1]["stname"] = "ImGui" +defs["igSetStateStorage"][1]["stname"] = "" defs["igSetStateStorage"]["(ImGuiStorage*)"] = defs["igSetStateStorage"][1] defs["igSetTabItemClosed"] = {} defs["igSetTabItemClosed"][1] = {} @@ -11495,9 +12276,11 @@ defs["igSetTabItemClosed"][1]["cimguiname"] = "igSetTabItemClosed" defs["igSetTabItemClosed"][1]["comment"] = "" defs["igSetTabItemClosed"][1]["defaults"] = {} defs["igSetTabItemClosed"][1]["funcname"] = "SetTabItemClosed" +defs["igSetTabItemClosed"][1]["namespace"] = "ImGui" +defs["igSetTabItemClosed"][1]["ov_cimguiname"] = "igSetTabItemClosed" defs["igSetTabItemClosed"][1]["ret"] = "void" defs["igSetTabItemClosed"][1]["signature"] = "(const char*)" -defs["igSetTabItemClosed"][1]["stname"] = "ImGui" +defs["igSetTabItemClosed"][1]["stname"] = "" defs["igSetTabItemClosed"]["(const char*)"] = defs["igSetTabItemClosed"][1] defs["igSetTooltip"] = {} defs["igSetTooltip"][1] = {} @@ -11516,9 +12299,11 @@ defs["igSetTooltip"][1]["comment"] = "" defs["igSetTooltip"][1]["defaults"] = {} defs["igSetTooltip"][1]["funcname"] = "SetTooltip" defs["igSetTooltip"][1]["isvararg"] = "...)" +defs["igSetTooltip"][1]["namespace"] = "ImGui" +defs["igSetTooltip"][1]["ov_cimguiname"] = "igSetTooltip" defs["igSetTooltip"][1]["ret"] = "void" defs["igSetTooltip"][1]["signature"] = "(const char*,...)" -defs["igSetTooltip"][1]["stname"] = "ImGui" +defs["igSetTooltip"][1]["stname"] = "" defs["igSetTooltip"]["(const char*,...)"] = defs["igSetTooltip"][1] defs["igSetTooltipV"] = {} defs["igSetTooltipV"][1] = {} @@ -11536,9 +12321,11 @@ defs["igSetTooltipV"][1]["cimguiname"] = "igSetTooltipV" defs["igSetTooltipV"][1]["comment"] = "" defs["igSetTooltipV"][1]["defaults"] = {} defs["igSetTooltipV"][1]["funcname"] = "SetTooltipV" +defs["igSetTooltipV"][1]["namespace"] = "ImGui" +defs["igSetTooltipV"][1]["ov_cimguiname"] = "igSetTooltipV" defs["igSetTooltipV"][1]["ret"] = "void" defs["igSetTooltipV"][1]["signature"] = "(const char*,va_list)" -defs["igSetTooltipV"][1]["stname"] = "ImGui" +defs["igSetTooltipV"][1]["stname"] = "" defs["igSetTooltipV"]["(const char*,va_list)"] = defs["igSetTooltipV"][1] defs["igSetWindowCollapsed"] = {} defs["igSetWindowCollapsed"][1] = {} @@ -11557,10 +12344,11 @@ defs["igSetWindowCollapsed"][1]["comment"] = "" defs["igSetWindowCollapsed"][1]["defaults"] = {} defs["igSetWindowCollapsed"][1]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][1]["funcname"] = "SetWindowCollapsed" +defs["igSetWindowCollapsed"][1]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][1]["ov_cimguiname"] = "igSetWindowCollapsedBool" defs["igSetWindowCollapsed"][1]["ret"] = "void" defs["igSetWindowCollapsed"][1]["signature"] = "(bool,ImGuiCond)" -defs["igSetWindowCollapsed"][1]["stname"] = "ImGui" +defs["igSetWindowCollapsed"][1]["stname"] = "" defs["igSetWindowCollapsed"][2] = {} defs["igSetWindowCollapsed"][2]["args"] = "(const char* name,bool collapsed,ImGuiCond cond)" defs["igSetWindowCollapsed"][2]["argsT"] = {} @@ -11580,10 +12368,11 @@ defs["igSetWindowCollapsed"][2]["comment"] = "" defs["igSetWindowCollapsed"][2]["defaults"] = {} defs["igSetWindowCollapsed"][2]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][2]["funcname"] = "SetWindowCollapsed" +defs["igSetWindowCollapsed"][2]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][2]["ov_cimguiname"] = "igSetWindowCollapsedStr" defs["igSetWindowCollapsed"][2]["ret"] = "void" defs["igSetWindowCollapsed"][2]["signature"] = "(const char*,bool,ImGuiCond)" -defs["igSetWindowCollapsed"][2]["stname"] = "ImGui" +defs["igSetWindowCollapsed"][2]["stname"] = "" defs["igSetWindowCollapsed"]["(bool,ImGuiCond)"] = defs["igSetWindowCollapsed"][1] defs["igSetWindowCollapsed"]["(const char*,bool,ImGuiCond)"] = defs["igSetWindowCollapsed"][2] defs["igSetWindowFocus"] = {} @@ -11596,10 +12385,11 @@ defs["igSetWindowFocus"][1]["cimguiname"] = "igSetWindowFocus" defs["igSetWindowFocus"][1]["comment"] = "" defs["igSetWindowFocus"][1]["defaults"] = {} defs["igSetWindowFocus"][1]["funcname"] = "SetWindowFocus" +defs["igSetWindowFocus"][1]["namespace"] = "ImGui" defs["igSetWindowFocus"][1]["ov_cimguiname"] = "igSetWindowFocus" defs["igSetWindowFocus"][1]["ret"] = "void" defs["igSetWindowFocus"][1]["signature"] = "()" -defs["igSetWindowFocus"][1]["stname"] = "ImGui" +defs["igSetWindowFocus"][1]["stname"] = "" defs["igSetWindowFocus"][2] = {} defs["igSetWindowFocus"][2]["args"] = "(const char* name)" defs["igSetWindowFocus"][2]["argsT"] = {} @@ -11612,10 +12402,11 @@ defs["igSetWindowFocus"][2]["cimguiname"] = "igSetWindowFocus" defs["igSetWindowFocus"][2]["comment"] = "" defs["igSetWindowFocus"][2]["defaults"] = {} defs["igSetWindowFocus"][2]["funcname"] = "SetWindowFocus" +defs["igSetWindowFocus"][2]["namespace"] = "ImGui" defs["igSetWindowFocus"][2]["ov_cimguiname"] = "igSetWindowFocusStr" defs["igSetWindowFocus"][2]["ret"] = "void" defs["igSetWindowFocus"][2]["signature"] = "(const char*)" -defs["igSetWindowFocus"][2]["stname"] = "ImGui" +defs["igSetWindowFocus"][2]["stname"] = "" defs["igSetWindowFocus"]["()"] = defs["igSetWindowFocus"][1] defs["igSetWindowFocus"]["(const char*)"] = defs["igSetWindowFocus"][2] defs["igSetWindowFontScale"] = {} @@ -11631,9 +12422,11 @@ defs["igSetWindowFontScale"][1]["cimguiname"] = "igSetWindowFontScale" defs["igSetWindowFontScale"][1]["comment"] = "" defs["igSetWindowFontScale"][1]["defaults"] = {} defs["igSetWindowFontScale"][1]["funcname"] = "SetWindowFontScale" +defs["igSetWindowFontScale"][1]["namespace"] = "ImGui" +defs["igSetWindowFontScale"][1]["ov_cimguiname"] = "igSetWindowFontScale" defs["igSetWindowFontScale"][1]["ret"] = "void" defs["igSetWindowFontScale"][1]["signature"] = "(float)" -defs["igSetWindowFontScale"][1]["stname"] = "ImGui" +defs["igSetWindowFontScale"][1]["stname"] = "" defs["igSetWindowFontScale"]["(float)"] = defs["igSetWindowFontScale"][1] defs["igSetWindowPos"] = {} defs["igSetWindowPos"][1] = {} @@ -11652,10 +12445,11 @@ defs["igSetWindowPos"][1]["comment"] = "" defs["igSetWindowPos"][1]["defaults"] = {} defs["igSetWindowPos"][1]["defaults"]["cond"] = "0" defs["igSetWindowPos"][1]["funcname"] = "SetWindowPos" +defs["igSetWindowPos"][1]["namespace"] = "ImGui" defs["igSetWindowPos"][1]["ov_cimguiname"] = "igSetWindowPosVec2" defs["igSetWindowPos"][1]["ret"] = "void" defs["igSetWindowPos"][1]["signature"] = "(const ImVec2,ImGuiCond)" -defs["igSetWindowPos"][1]["stname"] = "ImGui" +defs["igSetWindowPos"][1]["stname"] = "" defs["igSetWindowPos"][2] = {} defs["igSetWindowPos"][2]["args"] = "(const char* name,const ImVec2 pos,ImGuiCond cond)" defs["igSetWindowPos"][2]["argsT"] = {} @@ -11675,10 +12469,11 @@ defs["igSetWindowPos"][2]["comment"] = "" defs["igSetWindowPos"][2]["defaults"] = {} defs["igSetWindowPos"][2]["defaults"]["cond"] = "0" defs["igSetWindowPos"][2]["funcname"] = "SetWindowPos" +defs["igSetWindowPos"][2]["namespace"] = "ImGui" defs["igSetWindowPos"][2]["ov_cimguiname"] = "igSetWindowPosStr" defs["igSetWindowPos"][2]["ret"] = "void" defs["igSetWindowPos"][2]["signature"] = "(const char*,const ImVec2,ImGuiCond)" -defs["igSetWindowPos"][2]["stname"] = "ImGui" +defs["igSetWindowPos"][2]["stname"] = "" defs["igSetWindowPos"]["(const ImVec2,ImGuiCond)"] = defs["igSetWindowPos"][1] defs["igSetWindowPos"]["(const char*,const ImVec2,ImGuiCond)"] = defs["igSetWindowPos"][2] defs["igSetWindowSize"] = {} @@ -11698,10 +12493,11 @@ defs["igSetWindowSize"][1]["comment"] = "" defs["igSetWindowSize"][1]["defaults"] = {} defs["igSetWindowSize"][1]["defaults"]["cond"] = "0" defs["igSetWindowSize"][1]["funcname"] = "SetWindowSize" +defs["igSetWindowSize"][1]["namespace"] = "ImGui" defs["igSetWindowSize"][1]["ov_cimguiname"] = "igSetWindowSizeVec2" defs["igSetWindowSize"][1]["ret"] = "void" defs["igSetWindowSize"][1]["signature"] = "(const ImVec2,ImGuiCond)" -defs["igSetWindowSize"][1]["stname"] = "ImGui" +defs["igSetWindowSize"][1]["stname"] = "" defs["igSetWindowSize"][2] = {} defs["igSetWindowSize"][2]["args"] = "(const char* name,const ImVec2 size,ImGuiCond cond)" defs["igSetWindowSize"][2]["argsT"] = {} @@ -11721,10 +12517,11 @@ defs["igSetWindowSize"][2]["comment"] = "" defs["igSetWindowSize"][2]["defaults"] = {} defs["igSetWindowSize"][2]["defaults"]["cond"] = "0" defs["igSetWindowSize"][2]["funcname"] = "SetWindowSize" +defs["igSetWindowSize"][2]["namespace"] = "ImGui" defs["igSetWindowSize"][2]["ov_cimguiname"] = "igSetWindowSizeStr" defs["igSetWindowSize"][2]["ret"] = "void" defs["igSetWindowSize"][2]["signature"] = "(const char*,const ImVec2,ImGuiCond)" -defs["igSetWindowSize"][2]["stname"] = "ImGui" +defs["igSetWindowSize"][2]["stname"] = "" defs["igSetWindowSize"]["(const ImVec2,ImGuiCond)"] = defs["igSetWindowSize"][1] defs["igSetWindowSize"]["(const char*,const ImVec2,ImGuiCond)"] = defs["igSetWindowSize"][2] defs["igShowAboutWindow"] = {} @@ -11734,16 +12531,18 @@ defs["igShowAboutWindow"][1]["argsT"] = {} defs["igShowAboutWindow"][1]["argsT"][1] = {} defs["igShowAboutWindow"][1]["argsT"][1]["name"] = "p_open" defs["igShowAboutWindow"][1]["argsT"][1]["type"] = "bool*" -defs["igShowAboutWindow"][1]["argsoriginal"] = "(bool* p_open=((void *)0))" +defs["igShowAboutWindow"][1]["argsoriginal"] = "(bool* p_open=((void*)0))" defs["igShowAboutWindow"][1]["call_args"] = "(p_open)" defs["igShowAboutWindow"][1]["cimguiname"] = "igShowAboutWindow" defs["igShowAboutWindow"][1]["comment"] = "" defs["igShowAboutWindow"][1]["defaults"] = {} -defs["igShowAboutWindow"][1]["defaults"]["p_open"] = "((void *)0)" +defs["igShowAboutWindow"][1]["defaults"]["p_open"] = "((void*)0)" defs["igShowAboutWindow"][1]["funcname"] = "ShowAboutWindow" +defs["igShowAboutWindow"][1]["namespace"] = "ImGui" +defs["igShowAboutWindow"][1]["ov_cimguiname"] = "igShowAboutWindow" defs["igShowAboutWindow"][1]["ret"] = "void" defs["igShowAboutWindow"][1]["signature"] = "(bool*)" -defs["igShowAboutWindow"][1]["stname"] = "ImGui" +defs["igShowAboutWindow"][1]["stname"] = "" defs["igShowAboutWindow"]["(bool*)"] = defs["igShowAboutWindow"][1] defs["igShowDemoWindow"] = {} defs["igShowDemoWindow"][1] = {} @@ -11752,16 +12551,18 @@ defs["igShowDemoWindow"][1]["argsT"] = {} defs["igShowDemoWindow"][1]["argsT"][1] = {} defs["igShowDemoWindow"][1]["argsT"][1]["name"] = "p_open" defs["igShowDemoWindow"][1]["argsT"][1]["type"] = "bool*" -defs["igShowDemoWindow"][1]["argsoriginal"] = "(bool* p_open=((void *)0))" +defs["igShowDemoWindow"][1]["argsoriginal"] = "(bool* p_open=((void*)0))" defs["igShowDemoWindow"][1]["call_args"] = "(p_open)" defs["igShowDemoWindow"][1]["cimguiname"] = "igShowDemoWindow" defs["igShowDemoWindow"][1]["comment"] = "" defs["igShowDemoWindow"][1]["defaults"] = {} -defs["igShowDemoWindow"][1]["defaults"]["p_open"] = "((void *)0)" +defs["igShowDemoWindow"][1]["defaults"]["p_open"] = "((void*)0)" defs["igShowDemoWindow"][1]["funcname"] = "ShowDemoWindow" +defs["igShowDemoWindow"][1]["namespace"] = "ImGui" +defs["igShowDemoWindow"][1]["ov_cimguiname"] = "igShowDemoWindow" defs["igShowDemoWindow"][1]["ret"] = "void" defs["igShowDemoWindow"][1]["signature"] = "(bool*)" -defs["igShowDemoWindow"][1]["stname"] = "ImGui" +defs["igShowDemoWindow"][1]["stname"] = "" defs["igShowDemoWindow"]["(bool*)"] = defs["igShowDemoWindow"][1] defs["igShowFontSelector"] = {} defs["igShowFontSelector"][1] = {} @@ -11776,9 +12577,11 @@ defs["igShowFontSelector"][1]["cimguiname"] = "igShowFontSelector" defs["igShowFontSelector"][1]["comment"] = "" defs["igShowFontSelector"][1]["defaults"] = {} defs["igShowFontSelector"][1]["funcname"] = "ShowFontSelector" +defs["igShowFontSelector"][1]["namespace"] = "ImGui" +defs["igShowFontSelector"][1]["ov_cimguiname"] = "igShowFontSelector" defs["igShowFontSelector"][1]["ret"] = "void" defs["igShowFontSelector"][1]["signature"] = "(const char*)" -defs["igShowFontSelector"][1]["stname"] = "ImGui" +defs["igShowFontSelector"][1]["stname"] = "" defs["igShowFontSelector"]["(const char*)"] = defs["igShowFontSelector"][1] defs["igShowMetricsWindow"] = {} defs["igShowMetricsWindow"][1] = {} @@ -11787,16 +12590,18 @@ defs["igShowMetricsWindow"][1]["argsT"] = {} defs["igShowMetricsWindow"][1]["argsT"][1] = {} defs["igShowMetricsWindow"][1]["argsT"][1]["name"] = "p_open" defs["igShowMetricsWindow"][1]["argsT"][1]["type"] = "bool*" -defs["igShowMetricsWindow"][1]["argsoriginal"] = "(bool* p_open=((void *)0))" +defs["igShowMetricsWindow"][1]["argsoriginal"] = "(bool* p_open=((void*)0))" defs["igShowMetricsWindow"][1]["call_args"] = "(p_open)" defs["igShowMetricsWindow"][1]["cimguiname"] = "igShowMetricsWindow" defs["igShowMetricsWindow"][1]["comment"] = "" defs["igShowMetricsWindow"][1]["defaults"] = {} -defs["igShowMetricsWindow"][1]["defaults"]["p_open"] = "((void *)0)" +defs["igShowMetricsWindow"][1]["defaults"]["p_open"] = "((void*)0)" defs["igShowMetricsWindow"][1]["funcname"] = "ShowMetricsWindow" +defs["igShowMetricsWindow"][1]["namespace"] = "ImGui" +defs["igShowMetricsWindow"][1]["ov_cimguiname"] = "igShowMetricsWindow" defs["igShowMetricsWindow"][1]["ret"] = "void" defs["igShowMetricsWindow"][1]["signature"] = "(bool*)" -defs["igShowMetricsWindow"][1]["stname"] = "ImGui" +defs["igShowMetricsWindow"][1]["stname"] = "" defs["igShowMetricsWindow"]["(bool*)"] = defs["igShowMetricsWindow"][1] defs["igShowStyleEditor"] = {} defs["igShowStyleEditor"][1] = {} @@ -11805,16 +12610,18 @@ defs["igShowStyleEditor"][1]["argsT"] = {} defs["igShowStyleEditor"][1]["argsT"][1] = {} defs["igShowStyleEditor"][1]["argsT"][1]["name"] = "ref" defs["igShowStyleEditor"][1]["argsT"][1]["type"] = "ImGuiStyle*" -defs["igShowStyleEditor"][1]["argsoriginal"] = "(ImGuiStyle* ref=((void *)0))" +defs["igShowStyleEditor"][1]["argsoriginal"] = "(ImGuiStyle* ref=((void*)0))" defs["igShowStyleEditor"][1]["call_args"] = "(ref)" defs["igShowStyleEditor"][1]["cimguiname"] = "igShowStyleEditor" defs["igShowStyleEditor"][1]["comment"] = "" defs["igShowStyleEditor"][1]["defaults"] = {} -defs["igShowStyleEditor"][1]["defaults"]["ref"] = "((void *)0)" +defs["igShowStyleEditor"][1]["defaults"]["ref"] = "((void*)0)" defs["igShowStyleEditor"][1]["funcname"] = "ShowStyleEditor" +defs["igShowStyleEditor"][1]["namespace"] = "ImGui" +defs["igShowStyleEditor"][1]["ov_cimguiname"] = "igShowStyleEditor" defs["igShowStyleEditor"][1]["ret"] = "void" defs["igShowStyleEditor"][1]["signature"] = "(ImGuiStyle*)" -defs["igShowStyleEditor"][1]["stname"] = "ImGui" +defs["igShowStyleEditor"][1]["stname"] = "" defs["igShowStyleEditor"]["(ImGuiStyle*)"] = defs["igShowStyleEditor"][1] defs["igShowStyleSelector"] = {} defs["igShowStyleSelector"][1] = {} @@ -11829,9 +12636,11 @@ defs["igShowStyleSelector"][1]["cimguiname"] = "igShowStyleSelector" defs["igShowStyleSelector"][1]["comment"] = "" defs["igShowStyleSelector"][1]["defaults"] = {} defs["igShowStyleSelector"][1]["funcname"] = "ShowStyleSelector" +defs["igShowStyleSelector"][1]["namespace"] = "ImGui" +defs["igShowStyleSelector"][1]["ov_cimguiname"] = "igShowStyleSelector" defs["igShowStyleSelector"][1]["ret"] = "bool" defs["igShowStyleSelector"][1]["signature"] = "(const char*)" -defs["igShowStyleSelector"][1]["stname"] = "ImGui" +defs["igShowStyleSelector"][1]["stname"] = "" defs["igShowStyleSelector"]["(const char*)"] = defs["igShowStyleSelector"][1] defs["igShowUserGuide"] = {} defs["igShowUserGuide"][1] = {} @@ -11843,9 +12652,11 @@ defs["igShowUserGuide"][1]["cimguiname"] = "igShowUserGuide" defs["igShowUserGuide"][1]["comment"] = "" defs["igShowUserGuide"][1]["defaults"] = {} defs["igShowUserGuide"][1]["funcname"] = "ShowUserGuide" +defs["igShowUserGuide"][1]["namespace"] = "ImGui" +defs["igShowUserGuide"][1]["ov_cimguiname"] = "igShowUserGuide" defs["igShowUserGuide"][1]["ret"] = "void" defs["igShowUserGuide"][1]["signature"] = "()" -defs["igShowUserGuide"][1]["stname"] = "ImGui" +defs["igShowUserGuide"][1]["stname"] = "" defs["igShowUserGuide"]["()"] = defs["igShowUserGuide"][1] defs["igSliderAngle"] = {} defs["igSliderAngle"][1] = {} @@ -11875,9 +12686,11 @@ defs["igSliderAngle"][1]["defaults"]["format"] = "\"%.0f deg\"" defs["igSliderAngle"][1]["defaults"]["v_degrees_max"] = "+360.0f" defs["igSliderAngle"][1]["defaults"]["v_degrees_min"] = "-360.0f" defs["igSliderAngle"][1]["funcname"] = "SliderAngle" +defs["igSliderAngle"][1]["namespace"] = "ImGui" +defs["igSliderAngle"][1]["ov_cimguiname"] = "igSliderAngle" defs["igSliderAngle"][1]["ret"] = "bool" defs["igSliderAngle"][1]["signature"] = "(const char*,float*,float,float,const char*)" -defs["igSliderAngle"][1]["stname"] = "ImGui" +defs["igSliderAngle"][1]["stname"] = "" defs["igSliderAngle"]["(const char*,float*,float,float,const char*)"] = defs["igSliderAngle"][1] defs["igSliderFloat"] = {} defs["igSliderFloat"][1] = {} @@ -11909,9 +12722,11 @@ defs["igSliderFloat"][1]["defaults"] = {} defs["igSliderFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat"][1]["defaults"]["power"] = "1.0f" defs["igSliderFloat"][1]["funcname"] = "SliderFloat" +defs["igSliderFloat"][1]["namespace"] = "ImGui" +defs["igSliderFloat"][1]["ov_cimguiname"] = "igSliderFloat" defs["igSliderFloat"][1]["ret"] = "bool" defs["igSliderFloat"][1]["signature"] = "(const char*,float*,float,float,const char*,float)" -defs["igSliderFloat"][1]["stname"] = "ImGui" +defs["igSliderFloat"][1]["stname"] = "" defs["igSliderFloat"]["(const char*,float*,float,float,const char*,float)"] = defs["igSliderFloat"][1] defs["igSliderFloat2"] = {} defs["igSliderFloat2"][1] = {} @@ -11943,9 +12758,11 @@ defs["igSliderFloat2"][1]["defaults"] = {} defs["igSliderFloat2"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat2"][1]["defaults"]["power"] = "1.0f" defs["igSliderFloat2"][1]["funcname"] = "SliderFloat2" +defs["igSliderFloat2"][1]["namespace"] = "ImGui" +defs["igSliderFloat2"][1]["ov_cimguiname"] = "igSliderFloat2" defs["igSliderFloat2"][1]["ret"] = "bool" defs["igSliderFloat2"][1]["signature"] = "(const char*,float[2],float,float,const char*,float)" -defs["igSliderFloat2"][1]["stname"] = "ImGui" +defs["igSliderFloat2"][1]["stname"] = "" defs["igSliderFloat2"]["(const char*,float[2],float,float,const char*,float)"] = defs["igSliderFloat2"][1] defs["igSliderFloat3"] = {} defs["igSliderFloat3"][1] = {} @@ -11977,9 +12794,11 @@ defs["igSliderFloat3"][1]["defaults"] = {} defs["igSliderFloat3"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat3"][1]["defaults"]["power"] = "1.0f" defs["igSliderFloat3"][1]["funcname"] = "SliderFloat3" +defs["igSliderFloat3"][1]["namespace"] = "ImGui" +defs["igSliderFloat3"][1]["ov_cimguiname"] = "igSliderFloat3" defs["igSliderFloat3"][1]["ret"] = "bool" defs["igSliderFloat3"][1]["signature"] = "(const char*,float[3],float,float,const char*,float)" -defs["igSliderFloat3"][1]["stname"] = "ImGui" +defs["igSliderFloat3"][1]["stname"] = "" defs["igSliderFloat3"]["(const char*,float[3],float,float,const char*,float)"] = defs["igSliderFloat3"][1] defs["igSliderFloat4"] = {} defs["igSliderFloat4"][1] = {} @@ -12011,9 +12830,11 @@ defs["igSliderFloat4"][1]["defaults"] = {} defs["igSliderFloat4"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat4"][1]["defaults"]["power"] = "1.0f" defs["igSliderFloat4"][1]["funcname"] = "SliderFloat4" +defs["igSliderFloat4"][1]["namespace"] = "ImGui" +defs["igSliderFloat4"][1]["ov_cimguiname"] = "igSliderFloat4" defs["igSliderFloat4"][1]["ret"] = "bool" defs["igSliderFloat4"][1]["signature"] = "(const char*,float[4],float,float,const char*,float)" -defs["igSliderFloat4"][1]["stname"] = "ImGui" +defs["igSliderFloat4"][1]["stname"] = "" defs["igSliderFloat4"]["(const char*,float[4],float,float,const char*,float)"] = defs["igSliderFloat4"][1] defs["igSliderInt"] = {} defs["igSliderInt"][1] = {} @@ -12041,9 +12862,11 @@ defs["igSliderInt"][1]["comment"] = "" defs["igSliderInt"][1]["defaults"] = {} defs["igSliderInt"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt"][1]["funcname"] = "SliderInt" +defs["igSliderInt"][1]["namespace"] = "ImGui" +defs["igSliderInt"][1]["ov_cimguiname"] = "igSliderInt" defs["igSliderInt"][1]["ret"] = "bool" defs["igSliderInt"][1]["signature"] = "(const char*,int*,int,int,const char*)" -defs["igSliderInt"][1]["stname"] = "ImGui" +defs["igSliderInt"][1]["stname"] = "" defs["igSliderInt"]["(const char*,int*,int,int,const char*)"] = defs["igSliderInt"][1] defs["igSliderInt2"] = {} defs["igSliderInt2"][1] = {} @@ -12071,9 +12894,11 @@ defs["igSliderInt2"][1]["comment"] = "" defs["igSliderInt2"][1]["defaults"] = {} defs["igSliderInt2"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt2"][1]["funcname"] = "SliderInt2" +defs["igSliderInt2"][1]["namespace"] = "ImGui" +defs["igSliderInt2"][1]["ov_cimguiname"] = "igSliderInt2" defs["igSliderInt2"][1]["ret"] = "bool" defs["igSliderInt2"][1]["signature"] = "(const char*,int[2],int,int,const char*)" -defs["igSliderInt2"][1]["stname"] = "ImGui" +defs["igSliderInt2"][1]["stname"] = "" defs["igSliderInt2"]["(const char*,int[2],int,int,const char*)"] = defs["igSliderInt2"][1] defs["igSliderInt3"] = {} defs["igSliderInt3"][1] = {} @@ -12101,9 +12926,11 @@ defs["igSliderInt3"][1]["comment"] = "" defs["igSliderInt3"][1]["defaults"] = {} defs["igSliderInt3"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt3"][1]["funcname"] = "SliderInt3" +defs["igSliderInt3"][1]["namespace"] = "ImGui" +defs["igSliderInt3"][1]["ov_cimguiname"] = "igSliderInt3" defs["igSliderInt3"][1]["ret"] = "bool" defs["igSliderInt3"][1]["signature"] = "(const char*,int[3],int,int,const char*)" -defs["igSliderInt3"][1]["stname"] = "ImGui" +defs["igSliderInt3"][1]["stname"] = "" defs["igSliderInt3"]["(const char*,int[3],int,int,const char*)"] = defs["igSliderInt3"][1] defs["igSliderInt4"] = {} defs["igSliderInt4"][1] = {} @@ -12131,9 +12958,11 @@ defs["igSliderInt4"][1]["comment"] = "" defs["igSliderInt4"][1]["defaults"] = {} defs["igSliderInt4"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt4"][1]["funcname"] = "SliderInt4" +defs["igSliderInt4"][1]["namespace"] = "ImGui" +defs["igSliderInt4"][1]["ov_cimguiname"] = "igSliderInt4" defs["igSliderInt4"][1]["ret"] = "bool" defs["igSliderInt4"][1]["signature"] = "(const char*,int[4],int,int,const char*)" -defs["igSliderInt4"][1]["stname"] = "ImGui" +defs["igSliderInt4"][1]["stname"] = "" defs["igSliderInt4"]["(const char*,int[4],int,int,const char*)"] = defs["igSliderInt4"][1] defs["igSliderScalar"] = {} defs["igSliderScalar"][1] = {} @@ -12160,17 +12989,19 @@ defs["igSliderScalar"][1]["argsT"][6]["type"] = "const char*" defs["igSliderScalar"][1]["argsT"][7] = {} defs["igSliderScalar"][1]["argsT"][7]["name"] = "power" defs["igSliderScalar"][1]["argsT"][7]["type"] = "float" -defs["igSliderScalar"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,const void* v_min,const void* v_max,const char* format=((void *)0),float power=1.0f)" +defs["igSliderScalar"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,const void* v_min,const void* v_max,const char* format=((void*)0),float power=1.0f)" defs["igSliderScalar"][1]["call_args"] = "(label,data_type,v,v_min,v_max,format,power)" defs["igSliderScalar"][1]["cimguiname"] = "igSliderScalar" defs["igSliderScalar"][1]["comment"] = "" defs["igSliderScalar"][1]["defaults"] = {} -defs["igSliderScalar"][1]["defaults"]["format"] = "((void *)0)" +defs["igSliderScalar"][1]["defaults"]["format"] = "((void*)0)" defs["igSliderScalar"][1]["defaults"]["power"] = "1.0f" defs["igSliderScalar"][1]["funcname"] = "SliderScalar" +defs["igSliderScalar"][1]["namespace"] = "ImGui" +defs["igSliderScalar"][1]["ov_cimguiname"] = "igSliderScalar" defs["igSliderScalar"][1]["ret"] = "bool" defs["igSliderScalar"][1]["signature"] = "(const char*,ImGuiDataType,void*,const void*,const void*,const char*,float)" -defs["igSliderScalar"][1]["stname"] = "ImGui" +defs["igSliderScalar"][1]["stname"] = "" defs["igSliderScalar"]["(const char*,ImGuiDataType,void*,const void*,const void*,const char*,float)"] = defs["igSliderScalar"][1] defs["igSliderScalarN"] = {} defs["igSliderScalarN"][1] = {} @@ -12200,17 +13031,19 @@ defs["igSliderScalarN"][1]["argsT"][7]["type"] = "const char*" defs["igSliderScalarN"][1]["argsT"][8] = {} defs["igSliderScalarN"][1]["argsT"][8]["name"] = "power" defs["igSliderScalarN"][1]["argsT"][8]["type"] = "float" -defs["igSliderScalarN"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,int components,const void* v_min,const void* v_max,const char* format=((void *)0),float power=1.0f)" +defs["igSliderScalarN"][1]["argsoriginal"] = "(const char* label,ImGuiDataType data_type,void* v,int components,const void* v_min,const void* v_max,const char* format=((void*)0),float power=1.0f)" defs["igSliderScalarN"][1]["call_args"] = "(label,data_type,v,components,v_min,v_max,format,power)" defs["igSliderScalarN"][1]["cimguiname"] = "igSliderScalarN" defs["igSliderScalarN"][1]["comment"] = "" defs["igSliderScalarN"][1]["defaults"] = {} -defs["igSliderScalarN"][1]["defaults"]["format"] = "((void *)0)" +defs["igSliderScalarN"][1]["defaults"]["format"] = "((void*)0)" defs["igSliderScalarN"][1]["defaults"]["power"] = "1.0f" defs["igSliderScalarN"][1]["funcname"] = "SliderScalarN" +defs["igSliderScalarN"][1]["namespace"] = "ImGui" +defs["igSliderScalarN"][1]["ov_cimguiname"] = "igSliderScalarN" defs["igSliderScalarN"][1]["ret"] = "bool" defs["igSliderScalarN"][1]["signature"] = "(const char*,ImGuiDataType,void*,int,const void*,const void*,const char*,float)" -defs["igSliderScalarN"][1]["stname"] = "ImGui" +defs["igSliderScalarN"][1]["stname"] = "" defs["igSliderScalarN"]["(const char*,ImGuiDataType,void*,int,const void*,const void*,const char*,float)"] = defs["igSliderScalarN"][1] defs["igSmallButton"] = {} defs["igSmallButton"][1] = {} @@ -12225,9 +13058,11 @@ defs["igSmallButton"][1]["cimguiname"] = "igSmallButton" defs["igSmallButton"][1]["comment"] = "" defs["igSmallButton"][1]["defaults"] = {} defs["igSmallButton"][1]["funcname"] = "SmallButton" +defs["igSmallButton"][1]["namespace"] = "ImGui" +defs["igSmallButton"][1]["ov_cimguiname"] = "igSmallButton" defs["igSmallButton"][1]["ret"] = "bool" defs["igSmallButton"][1]["signature"] = "(const char*)" -defs["igSmallButton"][1]["stname"] = "ImGui" +defs["igSmallButton"][1]["stname"] = "" defs["igSmallButton"]["(const char*)"] = defs["igSmallButton"][1] defs["igSpacing"] = {} defs["igSpacing"][1] = {} @@ -12239,9 +13074,11 @@ defs["igSpacing"][1]["cimguiname"] = "igSpacing" defs["igSpacing"][1]["comment"] = "" defs["igSpacing"][1]["defaults"] = {} defs["igSpacing"][1]["funcname"] = "Spacing" +defs["igSpacing"][1]["namespace"] = "ImGui" +defs["igSpacing"][1]["ov_cimguiname"] = "igSpacing" defs["igSpacing"][1]["ret"] = "void" defs["igSpacing"][1]["signature"] = "()" -defs["igSpacing"][1]["stname"] = "ImGui" +defs["igSpacing"][1]["stname"] = "" defs["igSpacing"]["()"] = defs["igSpacing"][1] defs["igStyleColorsClassic"] = {} defs["igStyleColorsClassic"][1] = {} @@ -12250,16 +13087,18 @@ defs["igStyleColorsClassic"][1]["argsT"] = {} defs["igStyleColorsClassic"][1]["argsT"][1] = {} defs["igStyleColorsClassic"][1]["argsT"][1]["name"] = "dst" defs["igStyleColorsClassic"][1]["argsT"][1]["type"] = "ImGuiStyle*" -defs["igStyleColorsClassic"][1]["argsoriginal"] = "(ImGuiStyle* dst=((void *)0))" +defs["igStyleColorsClassic"][1]["argsoriginal"] = "(ImGuiStyle* dst=((void*)0))" defs["igStyleColorsClassic"][1]["call_args"] = "(dst)" defs["igStyleColorsClassic"][1]["cimguiname"] = "igStyleColorsClassic" defs["igStyleColorsClassic"][1]["comment"] = "" defs["igStyleColorsClassic"][1]["defaults"] = {} -defs["igStyleColorsClassic"][1]["defaults"]["dst"] = "((void *)0)" +defs["igStyleColorsClassic"][1]["defaults"]["dst"] = "((void*)0)" defs["igStyleColorsClassic"][1]["funcname"] = "StyleColorsClassic" +defs["igStyleColorsClassic"][1]["namespace"] = "ImGui" +defs["igStyleColorsClassic"][1]["ov_cimguiname"] = "igStyleColorsClassic" defs["igStyleColorsClassic"][1]["ret"] = "void" defs["igStyleColorsClassic"][1]["signature"] = "(ImGuiStyle*)" -defs["igStyleColorsClassic"][1]["stname"] = "ImGui" +defs["igStyleColorsClassic"][1]["stname"] = "" defs["igStyleColorsClassic"]["(ImGuiStyle*)"] = defs["igStyleColorsClassic"][1] defs["igStyleColorsDark"] = {} defs["igStyleColorsDark"][1] = {} @@ -12268,16 +13107,18 @@ defs["igStyleColorsDark"][1]["argsT"] = {} defs["igStyleColorsDark"][1]["argsT"][1] = {} defs["igStyleColorsDark"][1]["argsT"][1]["name"] = "dst" defs["igStyleColorsDark"][1]["argsT"][1]["type"] = "ImGuiStyle*" -defs["igStyleColorsDark"][1]["argsoriginal"] = "(ImGuiStyle* dst=((void *)0))" +defs["igStyleColorsDark"][1]["argsoriginal"] = "(ImGuiStyle* dst=((void*)0))" defs["igStyleColorsDark"][1]["call_args"] = "(dst)" defs["igStyleColorsDark"][1]["cimguiname"] = "igStyleColorsDark" defs["igStyleColorsDark"][1]["comment"] = "" defs["igStyleColorsDark"][1]["defaults"] = {} -defs["igStyleColorsDark"][1]["defaults"]["dst"] = "((void *)0)" +defs["igStyleColorsDark"][1]["defaults"]["dst"] = "((void*)0)" defs["igStyleColorsDark"][1]["funcname"] = "StyleColorsDark" +defs["igStyleColorsDark"][1]["namespace"] = "ImGui" +defs["igStyleColorsDark"][1]["ov_cimguiname"] = "igStyleColorsDark" defs["igStyleColorsDark"][1]["ret"] = "void" defs["igStyleColorsDark"][1]["signature"] = "(ImGuiStyle*)" -defs["igStyleColorsDark"][1]["stname"] = "ImGui" +defs["igStyleColorsDark"][1]["stname"] = "" defs["igStyleColorsDark"]["(ImGuiStyle*)"] = defs["igStyleColorsDark"][1] defs["igStyleColorsLight"] = {} defs["igStyleColorsLight"][1] = {} @@ -12286,16 +13127,18 @@ defs["igStyleColorsLight"][1]["argsT"] = {} defs["igStyleColorsLight"][1]["argsT"][1] = {} defs["igStyleColorsLight"][1]["argsT"][1]["name"] = "dst" defs["igStyleColorsLight"][1]["argsT"][1]["type"] = "ImGuiStyle*" -defs["igStyleColorsLight"][1]["argsoriginal"] = "(ImGuiStyle* dst=((void *)0))" +defs["igStyleColorsLight"][1]["argsoriginal"] = "(ImGuiStyle* dst=((void*)0))" defs["igStyleColorsLight"][1]["call_args"] = "(dst)" defs["igStyleColorsLight"][1]["cimguiname"] = "igStyleColorsLight" defs["igStyleColorsLight"][1]["comment"] = "" defs["igStyleColorsLight"][1]["defaults"] = {} -defs["igStyleColorsLight"][1]["defaults"]["dst"] = "((void *)0)" +defs["igStyleColorsLight"][1]["defaults"]["dst"] = "((void*)0)" defs["igStyleColorsLight"][1]["funcname"] = "StyleColorsLight" +defs["igStyleColorsLight"][1]["namespace"] = "ImGui" +defs["igStyleColorsLight"][1]["ov_cimguiname"] = "igStyleColorsLight" defs["igStyleColorsLight"][1]["ret"] = "void" defs["igStyleColorsLight"][1]["signature"] = "(ImGuiStyle*)" -defs["igStyleColorsLight"][1]["stname"] = "ImGui" +defs["igStyleColorsLight"][1]["stname"] = "" defs["igStyleColorsLight"]["(ImGuiStyle*)"] = defs["igStyleColorsLight"][1] defs["igText"] = {} defs["igText"][1] = {} @@ -12314,9 +13157,11 @@ defs["igText"][1]["comment"] = "" defs["igText"][1]["defaults"] = {} defs["igText"][1]["funcname"] = "Text" defs["igText"][1]["isvararg"] = "...)" +defs["igText"][1]["namespace"] = "ImGui" +defs["igText"][1]["ov_cimguiname"] = "igText" defs["igText"][1]["ret"] = "void" defs["igText"][1]["signature"] = "(const char*,...)" -defs["igText"][1]["stname"] = "ImGui" +defs["igText"][1]["stname"] = "" defs["igText"]["(const char*,...)"] = defs["igText"][1] defs["igTextColored"] = {} defs["igTextColored"][1] = {} @@ -12338,9 +13183,11 @@ defs["igTextColored"][1]["comment"] = "" defs["igTextColored"][1]["defaults"] = {} defs["igTextColored"][1]["funcname"] = "TextColored" defs["igTextColored"][1]["isvararg"] = "...)" +defs["igTextColored"][1]["namespace"] = "ImGui" +defs["igTextColored"][1]["ov_cimguiname"] = "igTextColored" defs["igTextColored"][1]["ret"] = "void" defs["igTextColored"][1]["signature"] = "(const ImVec4,const char*,...)" -defs["igTextColored"][1]["stname"] = "ImGui" +defs["igTextColored"][1]["stname"] = "" defs["igTextColored"]["(const ImVec4,const char*,...)"] = defs["igTextColored"][1] defs["igTextColoredV"] = {} defs["igTextColoredV"][1] = {} @@ -12361,9 +13208,11 @@ defs["igTextColoredV"][1]["cimguiname"] = "igTextColoredV" defs["igTextColoredV"][1]["comment"] = "" defs["igTextColoredV"][1]["defaults"] = {} defs["igTextColoredV"][1]["funcname"] = "TextColoredV" +defs["igTextColoredV"][1]["namespace"] = "ImGui" +defs["igTextColoredV"][1]["ov_cimguiname"] = "igTextColoredV" defs["igTextColoredV"][1]["ret"] = "void" defs["igTextColoredV"][1]["signature"] = "(const ImVec4,const char*,va_list)" -defs["igTextColoredV"][1]["stname"] = "ImGui" +defs["igTextColoredV"][1]["stname"] = "" defs["igTextColoredV"]["(const ImVec4,const char*,va_list)"] = defs["igTextColoredV"][1] defs["igTextDisabled"] = {} defs["igTextDisabled"][1] = {} @@ -12382,9 +13231,11 @@ defs["igTextDisabled"][1]["comment"] = "" defs["igTextDisabled"][1]["defaults"] = {} defs["igTextDisabled"][1]["funcname"] = "TextDisabled" defs["igTextDisabled"][1]["isvararg"] = "...)" +defs["igTextDisabled"][1]["namespace"] = "ImGui" +defs["igTextDisabled"][1]["ov_cimguiname"] = "igTextDisabled" defs["igTextDisabled"][1]["ret"] = "void" defs["igTextDisabled"][1]["signature"] = "(const char*,...)" -defs["igTextDisabled"][1]["stname"] = "ImGui" +defs["igTextDisabled"][1]["stname"] = "" defs["igTextDisabled"]["(const char*,...)"] = defs["igTextDisabled"][1] defs["igTextDisabledV"] = {} defs["igTextDisabledV"][1] = {} @@ -12402,9 +13253,11 @@ defs["igTextDisabledV"][1]["cimguiname"] = "igTextDisabledV" defs["igTextDisabledV"][1]["comment"] = "" defs["igTextDisabledV"][1]["defaults"] = {} defs["igTextDisabledV"][1]["funcname"] = "TextDisabledV" +defs["igTextDisabledV"][1]["namespace"] = "ImGui" +defs["igTextDisabledV"][1]["ov_cimguiname"] = "igTextDisabledV" defs["igTextDisabledV"][1]["ret"] = "void" defs["igTextDisabledV"][1]["signature"] = "(const char*,va_list)" -defs["igTextDisabledV"][1]["stname"] = "ImGui" +defs["igTextDisabledV"][1]["stname"] = "" defs["igTextDisabledV"]["(const char*,va_list)"] = defs["igTextDisabledV"][1] defs["igTextUnformatted"] = {} defs["igTextUnformatted"][1] = {} @@ -12416,16 +13269,18 @@ defs["igTextUnformatted"][1]["argsT"][1]["type"] = "const char*" defs["igTextUnformatted"][1]["argsT"][2] = {} defs["igTextUnformatted"][1]["argsT"][2]["name"] = "text_end" defs["igTextUnformatted"][1]["argsT"][2]["type"] = "const char*" -defs["igTextUnformatted"][1]["argsoriginal"] = "(const char* text,const char* text_end=((void *)0))" +defs["igTextUnformatted"][1]["argsoriginal"] = "(const char* text,const char* text_end=((void*)0))" defs["igTextUnformatted"][1]["call_args"] = "(text,text_end)" defs["igTextUnformatted"][1]["cimguiname"] = "igTextUnformatted" defs["igTextUnformatted"][1]["comment"] = "" defs["igTextUnformatted"][1]["defaults"] = {} -defs["igTextUnformatted"][1]["defaults"]["text_end"] = "((void *)0)" +defs["igTextUnformatted"][1]["defaults"]["text_end"] = "((void*)0)" defs["igTextUnformatted"][1]["funcname"] = "TextUnformatted" +defs["igTextUnformatted"][1]["namespace"] = "ImGui" +defs["igTextUnformatted"][1]["ov_cimguiname"] = "igTextUnformatted" defs["igTextUnformatted"][1]["ret"] = "void" defs["igTextUnformatted"][1]["signature"] = "(const char*,const char*)" -defs["igTextUnformatted"][1]["stname"] = "ImGui" +defs["igTextUnformatted"][1]["stname"] = "" defs["igTextUnformatted"]["(const char*,const char*)"] = defs["igTextUnformatted"][1] defs["igTextV"] = {} defs["igTextV"][1] = {} @@ -12443,9 +13298,11 @@ defs["igTextV"][1]["cimguiname"] = "igTextV" defs["igTextV"][1]["comment"] = "" defs["igTextV"][1]["defaults"] = {} defs["igTextV"][1]["funcname"] = "TextV" +defs["igTextV"][1]["namespace"] = "ImGui" +defs["igTextV"][1]["ov_cimguiname"] = "igTextV" defs["igTextV"][1]["ret"] = "void" defs["igTextV"][1]["signature"] = "(const char*,va_list)" -defs["igTextV"][1]["stname"] = "ImGui" +defs["igTextV"][1]["stname"] = "" defs["igTextV"]["(const char*,va_list)"] = defs["igTextV"][1] defs["igTextWrapped"] = {} defs["igTextWrapped"][1] = {} @@ -12464,9 +13321,11 @@ defs["igTextWrapped"][1]["comment"] = "" defs["igTextWrapped"][1]["defaults"] = {} defs["igTextWrapped"][1]["funcname"] = "TextWrapped" defs["igTextWrapped"][1]["isvararg"] = "...)" +defs["igTextWrapped"][1]["namespace"] = "ImGui" +defs["igTextWrapped"][1]["ov_cimguiname"] = "igTextWrapped" defs["igTextWrapped"][1]["ret"] = "void" defs["igTextWrapped"][1]["signature"] = "(const char*,...)" -defs["igTextWrapped"][1]["stname"] = "ImGui" +defs["igTextWrapped"][1]["stname"] = "" defs["igTextWrapped"]["(const char*,...)"] = defs["igTextWrapped"][1] defs["igTextWrappedV"] = {} defs["igTextWrappedV"][1] = {} @@ -12484,9 +13343,11 @@ defs["igTextWrappedV"][1]["cimguiname"] = "igTextWrappedV" defs["igTextWrappedV"][1]["comment"] = "" defs["igTextWrappedV"][1]["defaults"] = {} defs["igTextWrappedV"][1]["funcname"] = "TextWrappedV" +defs["igTextWrappedV"][1]["namespace"] = "ImGui" +defs["igTextWrappedV"][1]["ov_cimguiname"] = "igTextWrappedV" defs["igTextWrappedV"][1]["ret"] = "void" defs["igTextWrappedV"][1]["signature"] = "(const char*,va_list)" -defs["igTextWrappedV"][1]["stname"] = "ImGui" +defs["igTextWrappedV"][1]["stname"] = "" defs["igTextWrappedV"]["(const char*,va_list)"] = defs["igTextWrappedV"][1] defs["igTreeAdvanceToLabelPos"] = {} defs["igTreeAdvanceToLabelPos"][1] = {} @@ -12498,9 +13359,11 @@ defs["igTreeAdvanceToLabelPos"][1]["cimguiname"] = "igTreeAdvanceToLabelPos" defs["igTreeAdvanceToLabelPos"][1]["comment"] = "" defs["igTreeAdvanceToLabelPos"][1]["defaults"] = {} defs["igTreeAdvanceToLabelPos"][1]["funcname"] = "TreeAdvanceToLabelPos" +defs["igTreeAdvanceToLabelPos"][1]["namespace"] = "ImGui" +defs["igTreeAdvanceToLabelPos"][1]["ov_cimguiname"] = "igTreeAdvanceToLabelPos" defs["igTreeAdvanceToLabelPos"][1]["ret"] = "void" defs["igTreeAdvanceToLabelPos"][1]["signature"] = "()" -defs["igTreeAdvanceToLabelPos"][1]["stname"] = "ImGui" +defs["igTreeAdvanceToLabelPos"][1]["stname"] = "" defs["igTreeAdvanceToLabelPos"]["()"] = defs["igTreeAdvanceToLabelPos"][1] defs["igTreeNode"] = {} defs["igTreeNode"][1] = {} @@ -12515,10 +13378,11 @@ defs["igTreeNode"][1]["cimguiname"] = "igTreeNode" defs["igTreeNode"][1]["comment"] = "" defs["igTreeNode"][1]["defaults"] = {} defs["igTreeNode"][1]["funcname"] = "TreeNode" +defs["igTreeNode"][1]["namespace"] = "ImGui" defs["igTreeNode"][1]["ov_cimguiname"] = "igTreeNodeStr" defs["igTreeNode"][1]["ret"] = "bool" defs["igTreeNode"][1]["signature"] = "(const char*)" -defs["igTreeNode"][1]["stname"] = "ImGui" +defs["igTreeNode"][1]["stname"] = "" defs["igTreeNode"][2] = {} defs["igTreeNode"][2]["args"] = "(const char* str_id,const char* fmt,...)" defs["igTreeNode"][2]["argsT"] = {} @@ -12538,10 +13402,11 @@ defs["igTreeNode"][2]["comment"] = "" defs["igTreeNode"][2]["defaults"] = {} defs["igTreeNode"][2]["funcname"] = "TreeNode" defs["igTreeNode"][2]["isvararg"] = "...)" +defs["igTreeNode"][2]["namespace"] = "ImGui" defs["igTreeNode"][2]["ov_cimguiname"] = "igTreeNodeStrStr" defs["igTreeNode"][2]["ret"] = "bool" defs["igTreeNode"][2]["signature"] = "(const char*,const char*,...)" -defs["igTreeNode"][2]["stname"] = "ImGui" +defs["igTreeNode"][2]["stname"] = "" defs["igTreeNode"][3] = {} defs["igTreeNode"][3]["args"] = "(const void* ptr_id,const char* fmt,...)" defs["igTreeNode"][3]["argsT"] = {} @@ -12561,10 +13426,11 @@ defs["igTreeNode"][3]["comment"] = "" defs["igTreeNode"][3]["defaults"] = {} defs["igTreeNode"][3]["funcname"] = "TreeNode" defs["igTreeNode"][3]["isvararg"] = "...)" +defs["igTreeNode"][3]["namespace"] = "ImGui" defs["igTreeNode"][3]["ov_cimguiname"] = "igTreeNodePtr" defs["igTreeNode"][3]["ret"] = "bool" defs["igTreeNode"][3]["signature"] = "(const void*,const char*,...)" -defs["igTreeNode"][3]["stname"] = "ImGui" +defs["igTreeNode"][3]["stname"] = "" defs["igTreeNode"]["(const char*)"] = defs["igTreeNode"][1] defs["igTreeNode"]["(const char*,const char*,...)"] = defs["igTreeNode"][2] defs["igTreeNode"]["(const void*,const char*,...)"] = defs["igTreeNode"][3] @@ -12585,10 +13451,11 @@ defs["igTreeNodeEx"][1]["comment"] = "" defs["igTreeNodeEx"][1]["defaults"] = {} defs["igTreeNodeEx"][1]["defaults"]["flags"] = "0" defs["igTreeNodeEx"][1]["funcname"] = "TreeNodeEx" +defs["igTreeNodeEx"][1]["namespace"] = "ImGui" defs["igTreeNodeEx"][1]["ov_cimguiname"] = "igTreeNodeExStr" defs["igTreeNodeEx"][1]["ret"] = "bool" defs["igTreeNodeEx"][1]["signature"] = "(const char*,ImGuiTreeNodeFlags)" -defs["igTreeNodeEx"][1]["stname"] = "ImGui" +defs["igTreeNodeEx"][1]["stname"] = "" defs["igTreeNodeEx"][2] = {} defs["igTreeNodeEx"][2]["args"] = "(const char* str_id,ImGuiTreeNodeFlags flags,const char* fmt,...)" defs["igTreeNodeEx"][2]["argsT"] = {} @@ -12611,10 +13478,11 @@ defs["igTreeNodeEx"][2]["comment"] = "" defs["igTreeNodeEx"][2]["defaults"] = {} defs["igTreeNodeEx"][2]["funcname"] = "TreeNodeEx" defs["igTreeNodeEx"][2]["isvararg"] = "...)" +defs["igTreeNodeEx"][2]["namespace"] = "ImGui" defs["igTreeNodeEx"][2]["ov_cimguiname"] = "igTreeNodeExStrStr" defs["igTreeNodeEx"][2]["ret"] = "bool" defs["igTreeNodeEx"][2]["signature"] = "(const char*,ImGuiTreeNodeFlags,const char*,...)" -defs["igTreeNodeEx"][2]["stname"] = "ImGui" +defs["igTreeNodeEx"][2]["stname"] = "" defs["igTreeNodeEx"][3] = {} defs["igTreeNodeEx"][3]["args"] = "(const void* ptr_id,ImGuiTreeNodeFlags flags,const char* fmt,...)" defs["igTreeNodeEx"][3]["argsT"] = {} @@ -12637,10 +13505,11 @@ defs["igTreeNodeEx"][3]["comment"] = "" defs["igTreeNodeEx"][3]["defaults"] = {} defs["igTreeNodeEx"][3]["funcname"] = "TreeNodeEx" defs["igTreeNodeEx"][3]["isvararg"] = "...)" +defs["igTreeNodeEx"][3]["namespace"] = "ImGui" defs["igTreeNodeEx"][3]["ov_cimguiname"] = "igTreeNodeExPtr" defs["igTreeNodeEx"][3]["ret"] = "bool" defs["igTreeNodeEx"][3]["signature"] = "(const void*,ImGuiTreeNodeFlags,const char*,...)" -defs["igTreeNodeEx"][3]["stname"] = "ImGui" +defs["igTreeNodeEx"][3]["stname"] = "" defs["igTreeNodeEx"]["(const char*,ImGuiTreeNodeFlags)"] = defs["igTreeNodeEx"][1] defs["igTreeNodeEx"]["(const char*,ImGuiTreeNodeFlags,const char*,...)"] = defs["igTreeNodeEx"][2] defs["igTreeNodeEx"]["(const void*,ImGuiTreeNodeFlags,const char*,...)"] = defs["igTreeNodeEx"][3] @@ -12666,10 +13535,11 @@ defs["igTreeNodeExV"][1]["cimguiname"] = "igTreeNodeExV" defs["igTreeNodeExV"][1]["comment"] = "" defs["igTreeNodeExV"][1]["defaults"] = {} defs["igTreeNodeExV"][1]["funcname"] = "TreeNodeExV" +defs["igTreeNodeExV"][1]["namespace"] = "ImGui" defs["igTreeNodeExV"][1]["ov_cimguiname"] = "igTreeNodeExVStr" defs["igTreeNodeExV"][1]["ret"] = "bool" defs["igTreeNodeExV"][1]["signature"] = "(const char*,ImGuiTreeNodeFlags,const char*,va_list)" -defs["igTreeNodeExV"][1]["stname"] = "ImGui" +defs["igTreeNodeExV"][1]["stname"] = "" defs["igTreeNodeExV"][2] = {} defs["igTreeNodeExV"][2]["args"] = "(const void* ptr_id,ImGuiTreeNodeFlags flags,const char* fmt,va_list args)" defs["igTreeNodeExV"][2]["argsT"] = {} @@ -12691,10 +13561,11 @@ defs["igTreeNodeExV"][2]["cimguiname"] = "igTreeNodeExV" defs["igTreeNodeExV"][2]["comment"] = "" defs["igTreeNodeExV"][2]["defaults"] = {} defs["igTreeNodeExV"][2]["funcname"] = "TreeNodeExV" +defs["igTreeNodeExV"][2]["namespace"] = "ImGui" defs["igTreeNodeExV"][2]["ov_cimguiname"] = "igTreeNodeExVPtr" defs["igTreeNodeExV"][2]["ret"] = "bool" defs["igTreeNodeExV"][2]["signature"] = "(const void*,ImGuiTreeNodeFlags,const char*,va_list)" -defs["igTreeNodeExV"][2]["stname"] = "ImGui" +defs["igTreeNodeExV"][2]["stname"] = "" defs["igTreeNodeExV"]["(const char*,ImGuiTreeNodeFlags,const char*,va_list)"] = defs["igTreeNodeExV"][1] defs["igTreeNodeExV"]["(const void*,ImGuiTreeNodeFlags,const char*,va_list)"] = defs["igTreeNodeExV"][2] defs["igTreeNodeV"] = {} @@ -12716,10 +13587,11 @@ defs["igTreeNodeV"][1]["cimguiname"] = "igTreeNodeV" defs["igTreeNodeV"][1]["comment"] = "" defs["igTreeNodeV"][1]["defaults"] = {} defs["igTreeNodeV"][1]["funcname"] = "TreeNodeV" +defs["igTreeNodeV"][1]["namespace"] = "ImGui" defs["igTreeNodeV"][1]["ov_cimguiname"] = "igTreeNodeVStr" defs["igTreeNodeV"][1]["ret"] = "bool" defs["igTreeNodeV"][1]["signature"] = "(const char*,const char*,va_list)" -defs["igTreeNodeV"][1]["stname"] = "ImGui" +defs["igTreeNodeV"][1]["stname"] = "" defs["igTreeNodeV"][2] = {} defs["igTreeNodeV"][2]["args"] = "(const void* ptr_id,const char* fmt,va_list args)" defs["igTreeNodeV"][2]["argsT"] = {} @@ -12738,10 +13610,11 @@ defs["igTreeNodeV"][2]["cimguiname"] = "igTreeNodeV" defs["igTreeNodeV"][2]["comment"] = "" defs["igTreeNodeV"][2]["defaults"] = {} defs["igTreeNodeV"][2]["funcname"] = "TreeNodeV" +defs["igTreeNodeV"][2]["namespace"] = "ImGui" defs["igTreeNodeV"][2]["ov_cimguiname"] = "igTreeNodeVPtr" defs["igTreeNodeV"][2]["ret"] = "bool" defs["igTreeNodeV"][2]["signature"] = "(const void*,const char*,va_list)" -defs["igTreeNodeV"][2]["stname"] = "ImGui" +defs["igTreeNodeV"][2]["stname"] = "" defs["igTreeNodeV"]["(const char*,const char*,va_list)"] = defs["igTreeNodeV"][1] defs["igTreeNodeV"]["(const void*,const char*,va_list)"] = defs["igTreeNodeV"][2] defs["igTreePop"] = {} @@ -12754,9 +13627,11 @@ defs["igTreePop"][1]["cimguiname"] = "igTreePop" defs["igTreePop"][1]["comment"] = "" defs["igTreePop"][1]["defaults"] = {} defs["igTreePop"][1]["funcname"] = "TreePop" +defs["igTreePop"][1]["namespace"] = "ImGui" +defs["igTreePop"][1]["ov_cimguiname"] = "igTreePop" defs["igTreePop"][1]["ret"] = "void" defs["igTreePop"][1]["signature"] = "()" -defs["igTreePop"][1]["stname"] = "ImGui" +defs["igTreePop"][1]["stname"] = "" defs["igTreePop"]["()"] = defs["igTreePop"][1] defs["igTreePush"] = {} defs["igTreePush"][1] = {} @@ -12771,27 +13646,29 @@ defs["igTreePush"][1]["cimguiname"] = "igTreePush" defs["igTreePush"][1]["comment"] = "" defs["igTreePush"][1]["defaults"] = {} defs["igTreePush"][1]["funcname"] = "TreePush" +defs["igTreePush"][1]["namespace"] = "ImGui" defs["igTreePush"][1]["ov_cimguiname"] = "igTreePushStr" defs["igTreePush"][1]["ret"] = "void" defs["igTreePush"][1]["signature"] = "(const char*)" -defs["igTreePush"][1]["stname"] = "ImGui" +defs["igTreePush"][1]["stname"] = "" defs["igTreePush"][2] = {} defs["igTreePush"][2]["args"] = "(const void* ptr_id)" defs["igTreePush"][2]["argsT"] = {} defs["igTreePush"][2]["argsT"][1] = {} defs["igTreePush"][2]["argsT"][1]["name"] = "ptr_id" defs["igTreePush"][2]["argsT"][1]["type"] = "const void*" -defs["igTreePush"][2]["argsoriginal"] = "(const void* ptr_id=((void *)0))" +defs["igTreePush"][2]["argsoriginal"] = "(const void* ptr_id=((void*)0))" defs["igTreePush"][2]["call_args"] = "(ptr_id)" defs["igTreePush"][2]["cimguiname"] = "igTreePush" defs["igTreePush"][2]["comment"] = "" defs["igTreePush"][2]["defaults"] = {} -defs["igTreePush"][2]["defaults"]["ptr_id"] = "((void *)0)" +defs["igTreePush"][2]["defaults"]["ptr_id"] = "((void*)0)" defs["igTreePush"][2]["funcname"] = "TreePush" +defs["igTreePush"][2]["namespace"] = "ImGui" defs["igTreePush"][2]["ov_cimguiname"] = "igTreePushPtr" defs["igTreePush"][2]["ret"] = "void" defs["igTreePush"][2]["signature"] = "(const void*)" -defs["igTreePush"][2]["stname"] = "ImGui" +defs["igTreePush"][2]["stname"] = "" defs["igTreePush"]["(const char*)"] = defs["igTreePush"][1] defs["igTreePush"]["(const void*)"] = defs["igTreePush"][2] defs["igUnindent"] = {} @@ -12808,9 +13685,11 @@ defs["igUnindent"][1]["comment"] = "" defs["igUnindent"][1]["defaults"] = {} defs["igUnindent"][1]["defaults"]["indent_w"] = "0.0f" defs["igUnindent"][1]["funcname"] = "Unindent" +defs["igUnindent"][1]["namespace"] = "ImGui" +defs["igUnindent"][1]["ov_cimguiname"] = "igUnindent" defs["igUnindent"][1]["ret"] = "void" defs["igUnindent"][1]["signature"] = "(float)" -defs["igUnindent"][1]["stname"] = "ImGui" +defs["igUnindent"][1]["stname"] = "" defs["igUnindent"]["(float)"] = defs["igUnindent"][1] defs["igVSliderFloat"] = {} defs["igVSliderFloat"][1] = {} @@ -12845,9 +13724,11 @@ defs["igVSliderFloat"][1]["defaults"] = {} defs["igVSliderFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igVSliderFloat"][1]["defaults"]["power"] = "1.0f" defs["igVSliderFloat"][1]["funcname"] = "VSliderFloat" +defs["igVSliderFloat"][1]["namespace"] = "ImGui" +defs["igVSliderFloat"][1]["ov_cimguiname"] = "igVSliderFloat" defs["igVSliderFloat"][1]["ret"] = "bool" defs["igVSliderFloat"][1]["signature"] = "(const char*,const ImVec2,float*,float,float,const char*,float)" -defs["igVSliderFloat"][1]["stname"] = "ImGui" +defs["igVSliderFloat"][1]["stname"] = "" defs["igVSliderFloat"]["(const char*,const ImVec2,float*,float,float,const char*,float)"] = defs["igVSliderFloat"][1] defs["igVSliderInt"] = {} defs["igVSliderInt"][1] = {} @@ -12878,9 +13759,11 @@ defs["igVSliderInt"][1]["comment"] = "" defs["igVSliderInt"][1]["defaults"] = {} defs["igVSliderInt"][1]["defaults"]["format"] = "\"%d\"" defs["igVSliderInt"][1]["funcname"] = "VSliderInt" +defs["igVSliderInt"][1]["namespace"] = "ImGui" +defs["igVSliderInt"][1]["ov_cimguiname"] = "igVSliderInt" defs["igVSliderInt"][1]["ret"] = "bool" defs["igVSliderInt"][1]["signature"] = "(const char*,const ImVec2,int*,int,int,const char*)" -defs["igVSliderInt"][1]["stname"] = "ImGui" +defs["igVSliderInt"][1]["stname"] = "" defs["igVSliderInt"]["(const char*,const ImVec2,int*,int,int,const char*)"] = defs["igVSliderInt"][1] defs["igVSliderScalar"] = {} defs["igVSliderScalar"][1] = {} @@ -12910,17 +13793,19 @@ defs["igVSliderScalar"][1]["argsT"][7]["type"] = "const char*" defs["igVSliderScalar"][1]["argsT"][8] = {} defs["igVSliderScalar"][1]["argsT"][8]["name"] = "power" defs["igVSliderScalar"][1]["argsT"][8]["type"] = "float" -defs["igVSliderScalar"][1]["argsoriginal"] = "(const char* label,const ImVec2& size,ImGuiDataType data_type,void* v,const void* v_min,const void* v_max,const char* format=((void *)0),float power=1.0f)" +defs["igVSliderScalar"][1]["argsoriginal"] = "(const char* label,const ImVec2& size,ImGuiDataType data_type,void* v,const void* v_min,const void* v_max,const char* format=((void*)0),float power=1.0f)" defs["igVSliderScalar"][1]["call_args"] = "(label,size,data_type,v,v_min,v_max,format,power)" defs["igVSliderScalar"][1]["cimguiname"] = "igVSliderScalar" defs["igVSliderScalar"][1]["comment"] = "" defs["igVSliderScalar"][1]["defaults"] = {} -defs["igVSliderScalar"][1]["defaults"]["format"] = "((void *)0)" +defs["igVSliderScalar"][1]["defaults"]["format"] = "((void*)0)" defs["igVSliderScalar"][1]["defaults"]["power"] = "1.0f" defs["igVSliderScalar"][1]["funcname"] = "VSliderScalar" +defs["igVSliderScalar"][1]["namespace"] = "ImGui" +defs["igVSliderScalar"][1]["ov_cimguiname"] = "igVSliderScalar" defs["igVSliderScalar"][1]["ret"] = "bool" defs["igVSliderScalar"][1]["signature"] = "(const char*,const ImVec2,ImGuiDataType,void*,const void*,const void*,const char*,float)" -defs["igVSliderScalar"][1]["stname"] = "ImGui" +defs["igVSliderScalar"][1]["stname"] = "" defs["igVSliderScalar"]["(const char*,const ImVec2,ImGuiDataType,void*,const void*,const void*,const char*,float)"] = defs["igVSliderScalar"][1] defs["igValue"] = {} defs["igValue"][1] = {} @@ -12938,10 +13823,11 @@ defs["igValue"][1]["cimguiname"] = "igValue" defs["igValue"][1]["comment"] = "" defs["igValue"][1]["defaults"] = {} defs["igValue"][1]["funcname"] = "Value" +defs["igValue"][1]["namespace"] = "ImGui" defs["igValue"][1]["ov_cimguiname"] = "igValueBool" defs["igValue"][1]["ret"] = "void" defs["igValue"][1]["signature"] = "(const char*,bool)" -defs["igValue"][1]["stname"] = "ImGui" +defs["igValue"][1]["stname"] = "" defs["igValue"][2] = {} defs["igValue"][2]["args"] = "(const char* prefix,int v)" defs["igValue"][2]["argsT"] = {} @@ -12957,10 +13843,11 @@ defs["igValue"][2]["cimguiname"] = "igValue" defs["igValue"][2]["comment"] = "" defs["igValue"][2]["defaults"] = {} defs["igValue"][2]["funcname"] = "Value" +defs["igValue"][2]["namespace"] = "ImGui" defs["igValue"][2]["ov_cimguiname"] = "igValueInt" defs["igValue"][2]["ret"] = "void" defs["igValue"][2]["signature"] = "(const char*,int)" -defs["igValue"][2]["stname"] = "ImGui" +defs["igValue"][2]["stname"] = "" defs["igValue"][3] = {} defs["igValue"][3]["args"] = "(const char* prefix,unsigned int v)" defs["igValue"][3]["argsT"] = {} @@ -12976,10 +13863,11 @@ defs["igValue"][3]["cimguiname"] = "igValue" defs["igValue"][3]["comment"] = "" defs["igValue"][3]["defaults"] = {} defs["igValue"][3]["funcname"] = "Value" +defs["igValue"][3]["namespace"] = "ImGui" defs["igValue"][3]["ov_cimguiname"] = "igValueUint" defs["igValue"][3]["ret"] = "void" defs["igValue"][3]["signature"] = "(const char*,unsigned int)" -defs["igValue"][3]["stname"] = "ImGui" +defs["igValue"][3]["stname"] = "" defs["igValue"][4] = {} defs["igValue"][4]["args"] = "(const char* prefix,float v,const char* float_format)" defs["igValue"][4]["argsT"] = {} @@ -12992,17 +13880,18 @@ defs["igValue"][4]["argsT"][2]["type"] = "float" defs["igValue"][4]["argsT"][3] = {} defs["igValue"][4]["argsT"][3]["name"] = "float_format" defs["igValue"][4]["argsT"][3]["type"] = "const char*" -defs["igValue"][4]["argsoriginal"] = "(const char* prefix,float v,const char* float_format=((void *)0))" +defs["igValue"][4]["argsoriginal"] = "(const char* prefix,float v,const char* float_format=((void*)0))" defs["igValue"][4]["call_args"] = "(prefix,v,float_format)" defs["igValue"][4]["cimguiname"] = "igValue" defs["igValue"][4]["comment"] = "" defs["igValue"][4]["defaults"] = {} -defs["igValue"][4]["defaults"]["float_format"] = "((void *)0)" +defs["igValue"][4]["defaults"]["float_format"] = "((void*)0)" defs["igValue"][4]["funcname"] = "Value" +defs["igValue"][4]["namespace"] = "ImGui" defs["igValue"][4]["ov_cimguiname"] = "igValueFloat" defs["igValue"][4]["ret"] = "void" defs["igValue"][4]["signature"] = "(const char*,float,const char*)" -defs["igValue"][4]["stname"] = "ImGui" +defs["igValue"][4]["stname"] = "" defs["igValue"]["(const char*,bool)"] = defs["igValue"][1] defs["igValue"]["(const char*,float,const char*)"] = defs["igValue"][4] defs["igValue"]["(const char*,int)"] = defs["igValue"][2] diff --git a/generator/output/impl_definitions.json b/generator/output/impl_definitions.json index 735d6b4..1eb236c 100644 --- a/generator/output/impl_definitions.json +++ b/generator/output/impl_definitions.json @@ -18,7 +18,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_CharCallback", - "location": "imgui_impl_glfw", + "ov_cimguiname": "ImGui_ImplGlfw_CharCallback", "ret": "void", "signature": "(GLFWwindow*,unsigned int)", "stname": "" @@ -43,7 +43,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_InitForOpenGL", - "location": "imgui_impl_glfw", + "ov_cimguiname": "ImGui_ImplGlfw_InitForOpenGL", "ret": "bool", "signature": "(GLFWwindow*,bool)", "stname": "" @@ -68,7 +68,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_InitForVulkan", - "location": "imgui_impl_glfw", + "ov_cimguiname": "ImGui_ImplGlfw_InitForVulkan", "ret": "bool", "signature": "(GLFWwindow*,bool)", "stname": "" @@ -105,7 +105,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_KeyCallback", - "location": "imgui_impl_glfw", + "ov_cimguiname": "ImGui_ImplGlfw_KeyCallback", "ret": "void", "signature": "(GLFWwindow*,int,int,int,int)", "stname": "" @@ -138,7 +138,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_MouseButtonCallback", - "location": "imgui_impl_glfw", + "ov_cimguiname": "ImGui_ImplGlfw_MouseButtonCallback", "ret": "void", "signature": "(GLFWwindow*,int,int,int)", "stname": "" @@ -154,7 +154,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_NewFrame", - "location": "imgui_impl_glfw", + "ov_cimguiname": "ImGui_ImplGlfw_NewFrame", "ret": "void", "signature": "()", "stname": "" @@ -183,7 +183,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_ScrollCallback", - "location": "imgui_impl_glfw", + "ov_cimguiname": "ImGui_ImplGlfw_ScrollCallback", "ret": "void", "signature": "(GLFWwindow*,double,double)", "stname": "" @@ -199,7 +199,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplGlfw_Shutdown", - "location": "imgui_impl_glfw", + "ov_cimguiname": "ImGui_ImplGlfw_Shutdown", "ret": "void", "signature": "()", "stname": "" @@ -215,7 +215,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_CreateDeviceObjects", - "location": "imgui_impl_opengl2", + "ov_cimguiname": "ImGui_ImplOpenGL2_CreateDeviceObjects", "ret": "bool", "signature": "()", "stname": "" @@ -231,7 +231,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_CreateFontsTexture", - "location": "imgui_impl_opengl2", + "ov_cimguiname": "ImGui_ImplOpenGL2_CreateFontsTexture", "ret": "bool", "signature": "()", "stname": "" @@ -247,7 +247,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", - "location": "imgui_impl_opengl2", + "ov_cimguiname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", "ret": "void", "signature": "()", "stname": "" @@ -263,7 +263,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_DestroyFontsTexture", - "location": "imgui_impl_opengl2", + "ov_cimguiname": "ImGui_ImplOpenGL2_DestroyFontsTexture", "ret": "void", "signature": "()", "stname": "" @@ -279,7 +279,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_Init", - "location": "imgui_impl_opengl2", + "ov_cimguiname": "ImGui_ImplOpenGL2_Init", "ret": "bool", "signature": "()", "stname": "" @@ -295,7 +295,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_NewFrame", - "location": "imgui_impl_opengl2", + "ov_cimguiname": "ImGui_ImplOpenGL2_NewFrame", "ret": "void", "signature": "()", "stname": "" @@ -316,7 +316,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_RenderDrawData", - "location": "imgui_impl_opengl2", + "ov_cimguiname": "ImGui_ImplOpenGL2_RenderDrawData", "ret": "void", "signature": "(ImDrawData*)", "stname": "" @@ -332,7 +332,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL2_Shutdown", - "location": "imgui_impl_opengl2", + "ov_cimguiname": "ImGui_ImplOpenGL2_Shutdown", "ret": "void", "signature": "()", "stname": "" @@ -348,7 +348,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL3_CreateDeviceObjects", - "location": "imgui_impl_opengl3", + "ov_cimguiname": "ImGui_ImplOpenGL3_CreateDeviceObjects", "ret": "bool", "signature": "()", "stname": "" @@ -364,7 +364,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL3_CreateFontsTexture", - "location": "imgui_impl_opengl3", + "ov_cimguiname": "ImGui_ImplOpenGL3_CreateFontsTexture", "ret": "bool", "signature": "()", "stname": "" @@ -380,7 +380,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", - "location": "imgui_impl_opengl3", + "ov_cimguiname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", "ret": "void", "signature": "()", "stname": "" @@ -396,7 +396,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL3_DestroyFontsTexture", - "location": "imgui_impl_opengl3", + "ov_cimguiname": "ImGui_ImplOpenGL3_DestroyFontsTexture", "ret": "void", "signature": "()", "stname": "" @@ -419,7 +419,7 @@ "glsl_version": "NULL" }, "funcname": "ImGui_ImplOpenGL3_Init", - "location": "imgui_impl_opengl3", + "ov_cimguiname": "ImGui_ImplOpenGL3_Init", "ret": "bool", "signature": "(const char*)", "stname": "" @@ -435,7 +435,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL3_NewFrame", - "location": "imgui_impl_opengl3", + "ov_cimguiname": "ImGui_ImplOpenGL3_NewFrame", "ret": "void", "signature": "()", "stname": "" @@ -456,7 +456,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL3_RenderDrawData", - "location": "imgui_impl_opengl3", + "ov_cimguiname": "ImGui_ImplOpenGL3_RenderDrawData", "ret": "void", "signature": "(ImDrawData*)", "stname": "" @@ -472,7 +472,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplOpenGL3_Shutdown", - "location": "imgui_impl_opengl3", + "ov_cimguiname": "ImGui_ImplOpenGL3_Shutdown", "ret": "void", "signature": "()", "stname": "" @@ -497,7 +497,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplSDL2_InitForOpenGL", - "location": "imgui_impl_sdl", + "ov_cimguiname": "ImGui_ImplSDL2_InitForOpenGL", "ret": "bool", "signature": "(SDL_Window*,void*)", "stname": "" @@ -518,7 +518,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplSDL2_InitForVulkan", - "location": "imgui_impl_sdl", + "ov_cimguiname": "ImGui_ImplSDL2_InitForVulkan", "ret": "bool", "signature": "(SDL_Window*)", "stname": "" @@ -539,7 +539,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplSDL2_NewFrame", - "location": "imgui_impl_sdl", + "ov_cimguiname": "ImGui_ImplSDL2_NewFrame", "ret": "void", "signature": "(SDL_Window*)", "stname": "" @@ -560,7 +560,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplSDL2_ProcessEvent", - "location": "imgui_impl_sdl", + "ov_cimguiname": "ImGui_ImplSDL2_ProcessEvent", "ret": "bool", "signature": "(const SDL_Event*)", "stname": "" @@ -576,7 +576,7 @@ "comment": "", "defaults": [], "funcname": "ImGui_ImplSDL2_Shutdown", - "location": "imgui_impl_sdl", + "ov_cimguiname": "ImGui_ImplSDL2_Shutdown", "ret": "void", "signature": "()", "stname": "" diff --git a/generator/output/impl_definitions.lua b/generator/output/impl_definitions.lua index a3c5b47..d3bcdd8 100644 --- a/generator/output/impl_definitions.lua +++ b/generator/output/impl_definitions.lua @@ -15,7 +15,7 @@ defs["ImGui_ImplGlfw_CharCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CharCallb defs["ImGui_ImplGlfw_CharCallback"][1]["comment"] = "" defs["ImGui_ImplGlfw_CharCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_CharCallback"][1]["funcname"] = "ImGui_ImplGlfw_CharCallback" -defs["ImGui_ImplGlfw_CharCallback"][1]["location"] = "imgui_impl_glfw" +defs["ImGui_ImplGlfw_CharCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CharCallback" defs["ImGui_ImplGlfw_CharCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_CharCallback"][1]["signature"] = "(GLFWwindow*,unsigned int)" defs["ImGui_ImplGlfw_CharCallback"][1]["stname"] = "" @@ -36,7 +36,7 @@ defs["ImGui_ImplGlfw_InitForOpenGL"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForO defs["ImGui_ImplGlfw_InitForOpenGL"][1]["comment"] = "" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InitForOpenGL"][1]["funcname"] = "ImGui_ImplGlfw_InitForOpenGL" -defs["ImGui_ImplGlfw_InitForOpenGL"][1]["location"] = "imgui_impl_glfw" +defs["ImGui_ImplGlfw_InitForOpenGL"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForOpenGL" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["ret"] = "bool" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["signature"] = "(GLFWwindow*,bool)" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["stname"] = "" @@ -57,7 +57,7 @@ defs["ImGui_ImplGlfw_InitForVulkan"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForV defs["ImGui_ImplGlfw_InitForVulkan"][1]["comment"] = "" defs["ImGui_ImplGlfw_InitForVulkan"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InitForVulkan"][1]["funcname"] = "ImGui_ImplGlfw_InitForVulkan" -defs["ImGui_ImplGlfw_InitForVulkan"][1]["location"] = "imgui_impl_glfw" +defs["ImGui_ImplGlfw_InitForVulkan"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForVulkan" defs["ImGui_ImplGlfw_InitForVulkan"][1]["ret"] = "bool" defs["ImGui_ImplGlfw_InitForVulkan"][1]["signature"] = "(GLFWwindow*,bool)" defs["ImGui_ImplGlfw_InitForVulkan"][1]["stname"] = "" @@ -87,7 +87,7 @@ defs["ImGui_ImplGlfw_KeyCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_KeyCallbac defs["ImGui_ImplGlfw_KeyCallback"][1]["comment"] = "" defs["ImGui_ImplGlfw_KeyCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_KeyCallback"][1]["funcname"] = "ImGui_ImplGlfw_KeyCallback" -defs["ImGui_ImplGlfw_KeyCallback"][1]["location"] = "imgui_impl_glfw" +defs["ImGui_ImplGlfw_KeyCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_KeyCallback" defs["ImGui_ImplGlfw_KeyCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_KeyCallback"][1]["signature"] = "(GLFWwindow*,int,int,int,int)" defs["ImGui_ImplGlfw_KeyCallback"][1]["stname"] = "" @@ -114,7 +114,7 @@ defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_Mo defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["comment"] = "" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["funcname"] = "ImGui_ImplGlfw_MouseButtonCallback" -defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["location"] = "imgui_impl_glfw" +defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_MouseButtonCallback" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["signature"] = "(GLFWwindow*,int,int,int)" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["stname"] = "" @@ -129,7 +129,7 @@ defs["ImGui_ImplGlfw_NewFrame"][1]["cimguiname"] = "ImGui_ImplGlfw_NewFrame" defs["ImGui_ImplGlfw_NewFrame"][1]["comment"] = "" defs["ImGui_ImplGlfw_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplGlfw_NewFrame"][1]["funcname"] = "ImGui_ImplGlfw_NewFrame" -defs["ImGui_ImplGlfw_NewFrame"][1]["location"] = "imgui_impl_glfw" +defs["ImGui_ImplGlfw_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_NewFrame" defs["ImGui_ImplGlfw_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplGlfw_NewFrame"][1]["signature"] = "()" defs["ImGui_ImplGlfw_NewFrame"][1]["stname"] = "" @@ -153,7 +153,7 @@ defs["ImGui_ImplGlfw_ScrollCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_ScrollC defs["ImGui_ImplGlfw_ScrollCallback"][1]["comment"] = "" defs["ImGui_ImplGlfw_ScrollCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_ScrollCallback"][1]["funcname"] = "ImGui_ImplGlfw_ScrollCallback" -defs["ImGui_ImplGlfw_ScrollCallback"][1]["location"] = "imgui_impl_glfw" +defs["ImGui_ImplGlfw_ScrollCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_ScrollCallback" defs["ImGui_ImplGlfw_ScrollCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_ScrollCallback"][1]["signature"] = "(GLFWwindow*,double,double)" defs["ImGui_ImplGlfw_ScrollCallback"][1]["stname"] = "" @@ -168,7 +168,7 @@ defs["ImGui_ImplGlfw_Shutdown"][1]["cimguiname"] = "ImGui_ImplGlfw_Shutdown" defs["ImGui_ImplGlfw_Shutdown"][1]["comment"] = "" defs["ImGui_ImplGlfw_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplGlfw_Shutdown"][1]["funcname"] = "ImGui_ImplGlfw_Shutdown" -defs["ImGui_ImplGlfw_Shutdown"][1]["location"] = "imgui_impl_glfw" +defs["ImGui_ImplGlfw_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_Shutdown" defs["ImGui_ImplGlfw_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplGlfw_Shutdown"][1]["signature"] = "()" defs["ImGui_ImplGlfw_Shutdown"][1]["stname"] = "" @@ -183,7 +183,7 @@ defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpen defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["comment"] = "" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL2_CreateDeviceObjects" -defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_CreateDeviceObjects" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["signature"] = "()" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["stname"] = "" @@ -198,7 +198,7 @@ defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenG defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["comment"] = "" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL2_CreateFontsTexture" -defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_CreateFontsTexture" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["signature"] = "()" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["stname"] = "" @@ -213,7 +213,7 @@ defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpe defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["comment"] = "" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL2_DestroyDeviceObjects" -defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_DestroyDeviceObjects" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["signature"] = "()" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["stname"] = "" @@ -228,7 +228,7 @@ defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpen defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["comment"] = "" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL2_DestroyFontsTexture" -defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_DestroyFontsTexture" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["signature"] = "()" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["stname"] = "" @@ -243,7 +243,7 @@ defs["ImGui_ImplOpenGL2_Init"][1]["cimguiname"] = "ImGui_ImplOpenGL2_Init" defs["ImGui_ImplOpenGL2_Init"][1]["comment"] = "" defs["ImGui_ImplOpenGL2_Init"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_Init"][1]["funcname"] = "ImGui_ImplOpenGL2_Init" -defs["ImGui_ImplOpenGL2_Init"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_Init"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_Init" defs["ImGui_ImplOpenGL2_Init"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL2_Init"][1]["signature"] = "()" defs["ImGui_ImplOpenGL2_Init"][1]["stname"] = "" @@ -258,7 +258,7 @@ defs["ImGui_ImplOpenGL2_NewFrame"][1]["cimguiname"] = "ImGui_ImplOpenGL2_NewFram defs["ImGui_ImplOpenGL2_NewFrame"][1]["comment"] = "" defs["ImGui_ImplOpenGL2_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_NewFrame"][1]["funcname"] = "ImGui_ImplOpenGL2_NewFrame" -defs["ImGui_ImplOpenGL2_NewFrame"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_NewFrame" defs["ImGui_ImplOpenGL2_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_NewFrame"][1]["signature"] = "()" defs["ImGui_ImplOpenGL2_NewFrame"][1]["stname"] = "" @@ -276,7 +276,7 @@ defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["cimguiname"] = "ImGui_ImplOpenGL2_R defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["comment"] = "" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["funcname"] = "ImGui_ImplOpenGL2_RenderDrawData" -defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_RenderDrawData" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["signature"] = "(ImDrawData*)" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["stname"] = "" @@ -291,7 +291,7 @@ defs["ImGui_ImplOpenGL2_Shutdown"][1]["cimguiname"] = "ImGui_ImplOpenGL2_Shutdow defs["ImGui_ImplOpenGL2_Shutdown"][1]["comment"] = "" defs["ImGui_ImplOpenGL2_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_Shutdown"][1]["funcname"] = "ImGui_ImplOpenGL2_Shutdown" -defs["ImGui_ImplOpenGL2_Shutdown"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_Shutdown" defs["ImGui_ImplOpenGL2_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_Shutdown"][1]["signature"] = "()" defs["ImGui_ImplOpenGL2_Shutdown"][1]["stname"] = "" @@ -306,7 +306,7 @@ defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpen defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["comment"] = "" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL3_CreateDeviceObjects" -defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_CreateDeviceObjects" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["signature"] = "()" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["stname"] = "" @@ -321,7 +321,7 @@ defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenG defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["comment"] = "" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL3_CreateFontsTexture" -defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_CreateFontsTexture" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["signature"] = "()" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["stname"] = "" @@ -336,7 +336,7 @@ defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpe defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["comment"] = "" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL3_DestroyDeviceObjects" -defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_DestroyDeviceObjects" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["signature"] = "()" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["stname"] = "" @@ -351,7 +351,7 @@ defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpen defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["comment"] = "" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL3_DestroyFontsTexture" -defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_DestroyFontsTexture" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["signature"] = "()" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["stname"] = "" @@ -370,7 +370,7 @@ defs["ImGui_ImplOpenGL3_Init"][1]["comment"] = "" defs["ImGui_ImplOpenGL3_Init"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_Init"][1]["defaults"]["glsl_version"] = "NULL" defs["ImGui_ImplOpenGL3_Init"][1]["funcname"] = "ImGui_ImplOpenGL3_Init" -defs["ImGui_ImplOpenGL3_Init"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_Init"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_Init" defs["ImGui_ImplOpenGL3_Init"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL3_Init"][1]["signature"] = "(const char*)" defs["ImGui_ImplOpenGL3_Init"][1]["stname"] = "" @@ -385,7 +385,7 @@ defs["ImGui_ImplOpenGL3_NewFrame"][1]["cimguiname"] = "ImGui_ImplOpenGL3_NewFram defs["ImGui_ImplOpenGL3_NewFrame"][1]["comment"] = "" defs["ImGui_ImplOpenGL3_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_NewFrame"][1]["funcname"] = "ImGui_ImplOpenGL3_NewFrame" -defs["ImGui_ImplOpenGL3_NewFrame"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_NewFrame" defs["ImGui_ImplOpenGL3_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_NewFrame"][1]["signature"] = "()" defs["ImGui_ImplOpenGL3_NewFrame"][1]["stname"] = "" @@ -403,7 +403,7 @@ defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["cimguiname"] = "ImGui_ImplOpenGL3_R defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["comment"] = "" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["funcname"] = "ImGui_ImplOpenGL3_RenderDrawData" -defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_RenderDrawData" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["signature"] = "(ImDrawData*)" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["stname"] = "" @@ -418,7 +418,7 @@ defs["ImGui_ImplOpenGL3_Shutdown"][1]["cimguiname"] = "ImGui_ImplOpenGL3_Shutdow defs["ImGui_ImplOpenGL3_Shutdown"][1]["comment"] = "" defs["ImGui_ImplOpenGL3_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_Shutdown"][1]["funcname"] = "ImGui_ImplOpenGL3_Shutdown" -defs["ImGui_ImplOpenGL3_Shutdown"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_Shutdown" defs["ImGui_ImplOpenGL3_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_Shutdown"][1]["signature"] = "()" defs["ImGui_ImplOpenGL3_Shutdown"][1]["stname"] = "" @@ -439,7 +439,7 @@ defs["ImGui_ImplSDL2_InitForOpenGL"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForO defs["ImGui_ImplSDL2_InitForOpenGL"][1]["comment"] = "" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForOpenGL"][1]["funcname"] = "ImGui_ImplSDL2_InitForOpenGL" -defs["ImGui_ImplSDL2_InitForOpenGL"][1]["location"] = "imgui_impl_sdl" +defs["ImGui_ImplSDL2_InitForOpenGL"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForOpenGL" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["signature"] = "(SDL_Window*,void*)" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["stname"] = "" @@ -457,7 +457,7 @@ defs["ImGui_ImplSDL2_InitForVulkan"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForV defs["ImGui_ImplSDL2_InitForVulkan"][1]["comment"] = "" defs["ImGui_ImplSDL2_InitForVulkan"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForVulkan"][1]["funcname"] = "ImGui_ImplSDL2_InitForVulkan" -defs["ImGui_ImplSDL2_InitForVulkan"][1]["location"] = "imgui_impl_sdl" +defs["ImGui_ImplSDL2_InitForVulkan"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForVulkan" defs["ImGui_ImplSDL2_InitForVulkan"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForVulkan"][1]["signature"] = "(SDL_Window*)" defs["ImGui_ImplSDL2_InitForVulkan"][1]["stname"] = "" @@ -475,7 +475,7 @@ defs["ImGui_ImplSDL2_NewFrame"][1]["cimguiname"] = "ImGui_ImplSDL2_NewFrame" defs["ImGui_ImplSDL2_NewFrame"][1]["comment"] = "" defs["ImGui_ImplSDL2_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplSDL2_NewFrame"][1]["funcname"] = "ImGui_ImplSDL2_NewFrame" -defs["ImGui_ImplSDL2_NewFrame"][1]["location"] = "imgui_impl_sdl" +defs["ImGui_ImplSDL2_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_NewFrame" defs["ImGui_ImplSDL2_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplSDL2_NewFrame"][1]["signature"] = "(SDL_Window*)" defs["ImGui_ImplSDL2_NewFrame"][1]["stname"] = "" @@ -493,7 +493,7 @@ defs["ImGui_ImplSDL2_ProcessEvent"][1]["cimguiname"] = "ImGui_ImplSDL2_ProcessEv defs["ImGui_ImplSDL2_ProcessEvent"][1]["comment"] = "" defs["ImGui_ImplSDL2_ProcessEvent"][1]["defaults"] = {} defs["ImGui_ImplSDL2_ProcessEvent"][1]["funcname"] = "ImGui_ImplSDL2_ProcessEvent" -defs["ImGui_ImplSDL2_ProcessEvent"][1]["location"] = "imgui_impl_sdl" +defs["ImGui_ImplSDL2_ProcessEvent"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_ProcessEvent" defs["ImGui_ImplSDL2_ProcessEvent"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_ProcessEvent"][1]["signature"] = "(const SDL_Event*)" defs["ImGui_ImplSDL2_ProcessEvent"][1]["stname"] = "" @@ -508,7 +508,7 @@ defs["ImGui_ImplSDL2_Shutdown"][1]["cimguiname"] = "ImGui_ImplSDL2_Shutdown" defs["ImGui_ImplSDL2_Shutdown"][1]["comment"] = "" defs["ImGui_ImplSDL2_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplSDL2_Shutdown"][1]["funcname"] = "ImGui_ImplSDL2_Shutdown" -defs["ImGui_ImplSDL2_Shutdown"][1]["location"] = "imgui_impl_sdl" +defs["ImGui_ImplSDL2_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_Shutdown" defs["ImGui_ImplSDL2_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplSDL2_Shutdown"][1]["signature"] = "()" defs["ImGui_ImplSDL2_Shutdown"][1]["stname"] = "" diff --git a/generator/output/overloads.txt b/generator/output/overloads.txt index b2ed9be..6d3cf24 100644 --- a/generator/output/overloads.txt +++ b/generator/output/overloads.txt @@ -35,6 +35,9 @@ igSetWindowSize 2 igPushStyleColor 2 1 void igPushStyleColorU32 (ImGuiCol,ImU32) 2 void igPushStyleColor (ImGuiCol,const ImVec4) +ImVector_ImVector 2 +1 nil ImVector_ImVector () +2 nil ImVector_ImVectorVector_ (const ImVector_) igSetWindowCollapsed 2 1 void igSetWindowCollapsedBool (bool,ImGuiCond) 2 void igSetWindowCollapsedStr (const char*,bool,ImGuiCond) @@ -126,4 +129,4 @@ igTreeNode 3 igTreeNodeV 2 1 bool igTreeNodeVStr (const char*,const char*,va_list) 2 bool igTreeNodeVPtr (const void*,const char*,va_list) -89 overloaded \ No newline at end of file +91 overloaded \ No newline at end of file diff --git a/generator/output/typedefs_dict.json b/generator/output/typedefs_dict.json index 766c132..59f5988 100644 --- a/generator/output/typedefs_dict.json +++ b/generator/output/typedefs_dict.json @@ -60,6 +60,7 @@ "ImU64": "uint64_t", "ImVec2": "struct ImVec2", "ImVec4": "struct ImVec4", + "ImVector": "struct ImVector", "ImWchar": "unsigned short", "Pair": "struct Pair", "TextRange": "struct TextRange", diff --git a/generator/output/typedefs_dict.lua b/generator/output/typedefs_dict.lua index 19a2e8a..29a7528 100644 --- a/generator/output/typedefs_dict.lua +++ b/generator/output/typedefs_dict.lua @@ -60,6 +60,7 @@ defs["ImU32"] = "unsigned int" defs["ImU64"] = "uint64_t" defs["ImVec2"] = "struct ImVec2" defs["ImVec4"] = "struct ImVec4" +defs["ImVector"] = "struct ImVector" defs["ImWchar"] = "unsigned short" defs["Pair"] = "struct Pair" defs["TextRange"] = "struct TextRange"