diff --git a/README.md b/README.md index 5e69fd6..bbfeec7 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ History: Initially cimgui was developed by Stephan Dilly as hand-written code but lately turned into an auto-generated version by sonoro1234 in order to keep up with imgui more easily (letting the user select the desired branch and commit) Notes: -* currently this wrapper is based on version [1.92.7 of Dear ImGui with internal api] +* currently this wrapper is based on version [1.92.8 of Dear ImGui with internal api] * only functions, structs and enums from imgui.h (an optionally imgui_internal.h) are wrapped. * if you are interested in imgui backends you should look [LuaJIT-ImGui](https://github.com/sonoro1234/LuaJIT-ImGui) project. * All naming is algorithmic except for those names that were coded in cimgui_overloads table (https://github.com/cimgui/cimgui/blob/master/generator/generator.lua#L60). In the official version this table is empty. diff --git a/backend_test/example_sdl3_vulkan/main.c b/backend_test/example_sdl3_vulkan/main.c index 9d1760e..4316ff5 100644 --- a/backend_test/example_sdl3_vulkan/main.c +++ b/backend_test/example_sdl3_vulkan/main.c @@ -12,7 +12,7 @@ #endif //this must be equal to that in imgui_impl_vulkan.h -#define IMGUI_IMPL_VULKAN_MINIMUM_IMAGE_SAMPLER_POOL_SIZE (1) // Minimum per atlas +//#define IMGUI_IMPL_VULKAN_MINIMUM_IMAGE_SAMPLER_POOL_SIZE (1) // Minimum per atlas #define CIMGUI_DEFINE_ENUMS_AND_STRUCTS #include @@ -214,7 +214,8 @@ static void SetupVulkan(const char** extensions, uint32_t extensions_count) { VkDescriptorPoolSize pool_sizes[] = { - { VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER, IMGUI_IMPL_VULKAN_MINIMUM_IMAGE_SAMPLER_POOL_SIZE }, + { VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE, IMGUI_IMPL_VULKAN_MINIMUM_SAMPLED_IMAGE_POOL_SIZE }, + { VK_DESCRIPTOR_TYPE_SAMPLER, IMGUI_IMPL_VULKAN_MINIMUM_SAMPLER_POOL_SIZE }, }; VkDescriptorPoolCreateInfo pool_info = {}; pool_info.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO; @@ -281,9 +282,10 @@ static void CleanupVulkan() vkDestroyInstance(g_Instance, g_Allocator); } -static void CleanupVulkanWindow() +static void CleanupVulkanWindow(ImGui_ImplVulkanH_Window* wd) { - ImGui_ImplVulkanH_DestroyWindow(g_Instance, g_Device, &g_MainWindowData, g_Allocator); + ImGui_ImplVulkanH_DestroyWindow(g_Instance, g_Device, wd, g_Allocator); + vkDestroySurfaceKHR(g_Instance, wd->Surface, g_Allocator); } static void FrameRender(ImGui_ImplVulkanH_Window* wd, ImDrawData* draw_data) @@ -620,7 +622,7 @@ int main(int argc, char* argv[]) ImGui_ImplSDL3_Shutdown(); igDestroyContext(NULL); - CleanupVulkanWindow(); + CleanupVulkanWindow(&g_MainWindowData); CleanupVulkan(); SDL_DestroyWindow(window); diff --git a/backend_test/example_sdl_vulkan/main.c b/backend_test/example_sdl_vulkan/main.c index 09f2936..9cefcc5 100644 --- a/backend_test/example_sdl_vulkan/main.c +++ b/backend_test/example_sdl_vulkan/main.c @@ -16,7 +16,7 @@ #endif //this must be equal to that in imgui_impl_vulkan.h -#define IMGUI_IMPL_VULKAN_MINIMUM_IMAGE_SAMPLER_POOL_SIZE (1) // Minimum per atlas +//#define IMGUI_IMPL_VULKAN_MINIMUM_IMAGE_SAMPLER_POOL_SIZE (1) // Minimum per atlas #define CIMGUI_DEFINE_ENUMS_AND_STRUCTS #include "cimgui.h" @@ -218,7 +218,8 @@ static void SetupVulkan(const char** extensions, uint32_t extensions_count) { VkDescriptorPoolSize pool_sizes[] = { - { VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER, IMGUI_IMPL_VULKAN_MINIMUM_IMAGE_SAMPLER_POOL_SIZE }, + { VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE, IMGUI_IMPL_VULKAN_MINIMUM_SAMPLED_IMAGE_POOL_SIZE }, + { VK_DESCRIPTOR_TYPE_SAMPLER, IMGUI_IMPL_VULKAN_MINIMUM_SAMPLER_POOL_SIZE }, }; VkDescriptorPoolCreateInfo pool_info = {}; pool_info.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO; @@ -285,9 +286,10 @@ static void CleanupVulkan() vkDestroyInstance(g_Instance, g_Allocator); } -static void CleanupVulkanWindow() +static void CleanupVulkanWindow(ImGui_ImplVulkanH_Window* wd) { - ImGui_ImplVulkanH_DestroyWindow(g_Instance, g_Device, &g_MainWindowData, g_Allocator); + ImGui_ImplVulkanH_DestroyWindow(g_Instance, g_Device, wd, g_Allocator); + vkDestroySurfaceKHR(g_Instance, wd->Surface, g_Allocator); } static void FrameRender(ImGui_ImplVulkanH_Window* wd, ImDrawData* draw_data) @@ -615,7 +617,7 @@ int main(int argc, char* argv[]) ImGui_ImplSDL2_Shutdown(); igDestroyContext(NULL); - CleanupVulkanWindow(); + CleanupVulkanWindow(&g_MainWindowData); CleanupVulkan(); SDL_DestroyWindow(window); diff --git a/cimgui.cpp b/cimgui.cpp index 28f6a0a..3503439 100644 --- a/cimgui.cpp +++ b/cimgui.cpp @@ -1,5 +1,5 @@ //This file is automatically generated by generator.lua from https://github.com/cimgui/cimgui -//based on imgui.h file version "1.92.7" 19270 from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.92.8" 19280 from Dear ImGui https://github.com/ocornut/imgui //with imgui_internal.h api //with imgui_freetype.h api @@ -1725,7 +1725,7 @@ CIMGUI_API void igSetNextItemShortcut(ImGuiKeyChord key_chord,ImGuiInputFlags fl { return ImGui::SetNextItemShortcut(key_chord,flags); } -CIMGUI_API void igSetItemKeyOwner_Nil(ImGuiKey key) +CIMGUI_API bool igSetItemKeyOwner_Nil(ImGuiKey key) { return ImGui::SetItemKeyOwner(key); } @@ -2394,9 +2394,17 @@ CIMGUI_API void ImDrawList_AddLine(ImDrawList* self,const ImVec2_c p1,const ImVe { return self->AddLine(ConvertToCPP_ImVec2(p1),ConvertToCPP_ImVec2(p2),col,thickness); } -CIMGUI_API void ImDrawList_AddRect(ImDrawList* self,const ImVec2_c p_min,const ImVec2_c p_max,ImU32 col,float rounding,ImDrawFlags flags,float thickness) +CIMGUI_API void ImDrawList_AddLineH(ImDrawList* self,float min_x,float max_x,float y,ImU32 col,float thickness) { - return self->AddRect(ConvertToCPP_ImVec2(p_min),ConvertToCPP_ImVec2(p_max),col,rounding,flags,thickness); + return self->AddLineH(min_x,max_x,y,col,thickness); +} +CIMGUI_API void ImDrawList_AddLineV(ImDrawList* self,float x,float min_y,float max_y,ImU32 col,float thickness) +{ + return self->AddLineV(x,min_y,max_y,col,thickness); +} +CIMGUI_API void ImDrawList_AddRect(ImDrawList* self,const ImVec2_c p_min,const ImVec2_c p_max,ImU32 col,float rounding,float thickness,ImDrawFlags flags) +{ + return self->AddRect(ConvertToCPP_ImVec2(p_min),ConvertToCPP_ImVec2(p_max),col,rounding,thickness,flags); } CIMGUI_API void ImDrawList_AddRectFilled(ImDrawList* self,const ImVec2_c p_min,const ImVec2_c p_max,ImU32 col,float rounding,ImDrawFlags flags) { @@ -2462,9 +2470,9 @@ CIMGUI_API void ImDrawList_AddBezierQuadratic(ImDrawList* self,const ImVec2_c p1 { return self->AddBezierQuadratic(ConvertToCPP_ImVec2(p1),ConvertToCPP_ImVec2(p2),ConvertToCPP_ImVec2(p3),col,thickness,num_segments); } -CIMGUI_API void ImDrawList_AddPolyline(ImDrawList* self,const ImVec2_c* points,int num_points,ImU32 col,ImDrawFlags flags,float thickness) +CIMGUI_API void ImDrawList_AddPolyline(ImDrawList* self,const ImVec2_c* points,int num_points,ImU32 col,float thickness,ImDrawFlags flags) { - return self->AddPolyline(reinterpret_cast(points),num_points,col,flags,thickness); + return self->AddPolyline(reinterpret_cast(points),num_points,col,thickness,flags); } CIMGUI_API void ImDrawList_AddConvexPolyFilled(ImDrawList* self,const ImVec2_c* points,int num_points,ImU32 col) { @@ -2506,9 +2514,9 @@ CIMGUI_API void ImDrawList_PathFillConcave(ImDrawList* self,ImU32 col) { return self->PathFillConcave(col); } -CIMGUI_API void ImDrawList_PathStroke(ImDrawList* self,ImU32 col,ImDrawFlags flags,float thickness) +CIMGUI_API void ImDrawList_PathStroke(ImDrawList* self,ImU32 col,float thickness,ImDrawFlags flags) { - return self->PathStroke(col,flags,thickness); + return self->PathStroke(col,thickness,flags); } CIMGUI_API void ImDrawList_PathArcTo(ImDrawList* self,const ImVec2_c center,float radius,float a_min,float a_max,int num_segments) { @@ -2818,6 +2826,10 @@ CIMGUI_API void ImFontAtlas_Clear(ImFontAtlas* self) { return self->Clear(); } +CIMGUI_API void ImFontAtlas_ClearFonts(ImFontAtlas* self) +{ + return self->ClearFonts(); +} CIMGUI_API void ImFontAtlas_CompactCache(ImFontAtlas* self) { return self->CompactCache(); @@ -2830,10 +2842,6 @@ CIMGUI_API void ImFontAtlas_ClearInputData(ImFontAtlas* self) { return self->ClearInputData(); } -CIMGUI_API void ImFontAtlas_ClearFonts(ImFontAtlas* self) -{ - return self->ClearFonts(); -} CIMGUI_API void ImFontAtlas_ClearTexData(ImFontAtlas* self) { return self->ClearTexData(); @@ -3529,6 +3537,14 @@ CIMGUI_API void ImRect_Add_Rect(ImRect* self,const ImRect_c r) { return self->Add(ConvertToCPP_ImRect(r)); } +CIMGUI_API void ImRect_AddX(ImRect* self,float x) +{ + return self->AddX(x); +} +CIMGUI_API void ImRect_AddY(ImRect* self,float y) +{ + return self->AddY(y); +} CIMGUI_API void ImRect_Expand_Float(ImRect* self,const float amount) { return self->Expand(amount); @@ -4669,6 +4685,10 @@ CIMGUI_API bool igBeginChildEx(const char* name,ImGuiID id,const ImVec2_c size_a { return ImGui::BeginChildEx(name,id,ConvertToCPP_ImVec2(size_arg),child_flags,window_flags); } +CIMGUI_API ImGuiWindow* igFindFrontMostVisibleChildWindow(ImGuiWindow* window) +{ + return ImGui::FindFrontMostVisibleChildWindow(window); +} CIMGUI_API bool igBeginPopupEx(ImGuiID id,ImGuiWindowFlags extra_window_flags) { return ImGui::BeginPopupEx(id,extra_window_flags); @@ -4941,7 +4961,7 @@ CIMGUI_API void igSetKeyOwnersForKeyChord(ImGuiKeyChord key,ImGuiID owner_id,ImG { return ImGui::SetKeyOwnersForKeyChord(key,owner_id,flags); } -CIMGUI_API void igSetItemKeyOwner_InputFlags(ImGuiKey key,ImGuiInputFlags flags) +CIMGUI_API bool igSetItemKeyOwner_InputFlags(ImGuiKey key,ImGuiInputFlags flags) { return ImGui::SetItemKeyOwner(key,flags); } @@ -5009,6 +5029,10 @@ CIMGUI_API void igPopFocusScope() { return ImGui::PopFocusScope(); } +CIMGUI_API bool igIsInNavFocusRoute(ImGuiID focus_scope_id) +{ + return ImGui::IsInNavFocusRoute(focus_scope_id); +} CIMGUI_API ImGuiID igGetCurrentFocusScope() { return ImGui::GetCurrentFocusScope(); @@ -5037,9 +5061,9 @@ CIMGUI_API void igRenderDragDropTargetRectForItem(const ImRect_c bb) { return ImGui::RenderDragDropTargetRectForItem(ConvertToCPP_ImRect(bb)); } -CIMGUI_API void igRenderDragDropTargetRectEx(ImDrawList* draw_list,const ImRect_c bb) +CIMGUI_API void igRenderDragDropTargetRectEx(ImDrawList* draw_list,const ImRect_c bb,float rounding) { - return ImGui::RenderDragDropTargetRectEx(draw_list,ConvertToCPP_ImRect(bb)); + return ImGui::RenderDragDropTargetRectEx(draw_list,ConvertToCPP_ImRect(bb),rounding); } CIMGUI_API ImGuiTypingSelectRequest* igGetTypingSelectRequest(ImGuiTypingSelectFlags flags) { @@ -5209,6 +5233,10 @@ CIMGUI_API void igTableUpdateColumnsWeightFromWidth(ImGuiTable* table) { return ImGui::TableUpdateColumnsWeightFromWidth(table); } +CIMGUI_API void igTableApplyExternalUnclipRect(ImGuiTable* table,ImRect* rect) +{ + return ImGui::TableApplyExternalUnclipRect(table,*rect); +} CIMGUI_API void igTableDrawBorders(ImGuiTable* table) { return ImGui::TableDrawBorders(table); @@ -6150,6 +6178,10 @@ CIMGUI_API void igImFontAtlasTextureBlockQueueUpload(ImFontAtlas* atlas,ImTextur { return ImFontAtlasTextureBlockQueueUpload(atlas,tex,x,y,w,h); } +CIMGUI_API void igImTextureDataQueueUpload(ImTextureData* tex,int x,int y,int w,int h) +{ + return ImTextureDataQueueUpload(tex,x,y,w,h); +} CIMGUI_API int igImTextureDataGetFormatBytesPerPixel(ImTextureFormat format) { return ImTextureDataGetFormatBytesPerPixel(format); diff --git a/cimgui.h b/cimgui.h index 6aa449d..a1de951 100644 --- a/cimgui.h +++ b/cimgui.h @@ -1,5 +1,5 @@ //This file is automatically generated by generator.lua from https://github.com/cimgui/cimgui -//based on imgui.h file version "1.92.7" 19270 from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.92.8" 19280 from Dear ImGui https://github.com/ocornut/imgui //with imgui_internal.h api //with imgui_freetype.h api #ifndef CIMGUI_INCLUDED @@ -719,6 +719,7 @@ typedef enum { ImGuiCol_ScrollbarGrabHovered, ImGuiCol_ScrollbarGrabActive, ImGuiCol_CheckMark, + ImGuiCol_CheckboxSelectedBg, ImGuiCol_SliderGrab, ImGuiCol_SliderGrabActive, ImGuiCol_Button, @@ -798,6 +799,7 @@ typedef enum { ImGuiStyleVar_TableAngledHeadersTextAlign, ImGuiStyleVar_TreeLinesSize, ImGuiStyleVar_TreeLinesRounding, + ImGuiStyleVar_DragDropTargetRounding, ImGuiStyleVar_ButtonTextAlign, ImGuiStyleVar_SelectableTextAlign, ImGuiStyleVar_SeparatorSize, @@ -1374,12 +1376,12 @@ struct ImDrawListSplitter }; typedef enum { ImDrawFlags_None = 0, - ImDrawFlags_Closed = 1 << 0, ImDrawFlags_RoundCornersTopLeft = 1 << 4, ImDrawFlags_RoundCornersTopRight = 1 << 5, ImDrawFlags_RoundCornersBottomLeft = 1 << 6, ImDrawFlags_RoundCornersBottomRight = 1 << 7, ImDrawFlags_RoundCornersNone = 1 << 8, + ImDrawFlags_Closed = 1 << 9, ImDrawFlags_RoundCornersTop = ImDrawFlags_RoundCornersTopLeft | ImDrawFlags_RoundCornersTopRight, ImDrawFlags_RoundCornersBottom = ImDrawFlags_RoundCornersBottomLeft | ImDrawFlags_RoundCornersBottomRight, ImDrawFlags_RoundCornersLeft = ImDrawFlags_RoundCornersBottomLeft | ImDrawFlags_RoundCornersTopLeft, @@ -1387,6 +1389,7 @@ typedef enum { ImDrawFlags_RoundCornersAll = ImDrawFlags_RoundCornersTopLeft | ImDrawFlags_RoundCornersTopRight | ImDrawFlags_RoundCornersBottomLeft | ImDrawFlags_RoundCornersBottomRight, ImDrawFlags_RoundCornersDefault_ = ImDrawFlags_RoundCornersAll, ImDrawFlags_RoundCornersMask_ = ImDrawFlags_RoundCornersAll | ImDrawFlags_RoundCornersNone, + ImDrawFlags_InvalidMask_ = (ImDrawFlags)0x8000000F, }ImDrawFlags_; typedef enum { ImDrawListFlags_None = 0, @@ -1605,6 +1608,7 @@ typedef enum { ImFontFlags_NoLoadError = 1 << 1, ImFontFlags_NoLoadGlyphs = 1 << 2, ImFontFlags_LockBakedSizes = 1 << 3, + ImFontFlags_ImplicitRefSize = 1 << 4, }ImFontFlags_; typedef struct ImVector_ImFontConfigPtr {int Size;int Capacity;ImFontConfig** Data;} ImVector_ImFontConfigPtr; @@ -1654,6 +1658,9 @@ struct ImGuiPlatformIO int Renderer_TextureMaxWidth; int Renderer_TextureMaxHeight; void* Renderer_RenderState; + ImDrawCallback DrawCallback_ResetRenderState; + ImDrawCallback DrawCallback_SetSamplerLinear; + ImDrawCallback DrawCallback_SetSamplerNearest; ImVector_ImTextureDataPtr Textures; }; struct ImGuiPlatformImeData @@ -1866,6 +1873,7 @@ typedef enum { ImGuiItemStatusFlags_Visible = 1 << 8, ImGuiItemStatusFlags_HasClipRect = 1 << 9, ImGuiItemStatusFlags_HasShortcut = 1 << 10, + ImGuiItemStatusFlags_EditedInternal = 1 << 11, }ImGuiItemStatusFlags_; typedef enum { ImGuiHoveredFlags_DelayMask_ = ImGuiHoveredFlags_DelayNone | ImGuiHoveredFlags_DelayShort | ImGuiHoveredFlags_DelayNormal | ImGuiHoveredFlags_NoSharedDelay, @@ -2457,6 +2465,7 @@ struct ImGuiBoxSelectState ImGuiWindow* Window; bool UnclipMode; ImRect_c UnclipRect; + ImRect_c UnclipRects[2]; ImRect_c BoxSelectRectPrev; ImRect_c BoxSelectRectCurr; }; @@ -2468,7 +2477,6 @@ struct ImGuiMultiSelectTempData ImGuiMultiSelectFlags Flags; ImVec2_c ScopeRectMin; ImVec2_c BackupCursorMaxPos; - ImGuiSelectionUserData LastSubmittedItem; ImGuiID BoxSelectId; ImGuiKeyChord KeyMods; ImS8 LoopRequestSetAll; @@ -2720,6 +2728,7 @@ struct ImGuiContext float CurrentDpiScale; ImDrawListSharedData DrawListSharedData; ImGuiID WithinEndChildID; + ImGuiID WithinEndPopupID; void* TestEngine; ImVector_ImGuiInputEvent InputEventsQueue; ImVector_ImGuiInputEvent InputEventsTrail; @@ -3551,8 +3560,6 @@ typedef enum { ImGuiFreeTypeLoaderFlags_Bitmap = 1 << 9, }ImGuiFreeTypeLoaderFlags_; #endif -#define ImDrawCallback_ResetRenderState (ImDrawCallback)(-8) - #define ImTextureID_Invalid ((ImTextureID)0) #else @@ -4089,7 +4096,7 @@ CIMGUI_API const char* igGetKeyName(ImGuiKey key); CIMGUI_API void igSetNextFrameWantCaptureKeyboard(bool want_capture_keyboard); CIMGUI_API bool igShortcut_Nil(ImGuiKeyChord key_chord,ImGuiInputFlags flags); CIMGUI_API void igSetNextItemShortcut(ImGuiKeyChord key_chord,ImGuiInputFlags flags); -CIMGUI_API void igSetItemKeyOwner_Nil(ImGuiKey key); +CIMGUI_API bool igSetItemKeyOwner_Nil(ImGuiKey key); CIMGUI_API bool igIsMouseDown_Nil(ImGuiMouseButton button); CIMGUI_API bool igIsMouseClicked_Bool(ImGuiMouseButton button,bool repeat); CIMGUI_API bool igIsMouseReleased_Nil(ImGuiMouseButton button); @@ -4257,7 +4264,9 @@ CIMGUI_API void ImDrawList_PopTexture(ImDrawList* self); CIMGUI_API ImVec2_c ImDrawList_GetClipRectMin(ImDrawList* self); CIMGUI_API ImVec2_c ImDrawList_GetClipRectMax(ImDrawList* self); CIMGUI_API void ImDrawList_AddLine(ImDrawList* self,const ImVec2_c p1,const ImVec2_c p2,ImU32 col,float thickness); -CIMGUI_API void ImDrawList_AddRect(ImDrawList* self,const ImVec2_c p_min,const ImVec2_c p_max,ImU32 col,float rounding,ImDrawFlags flags,float thickness); +CIMGUI_API void ImDrawList_AddLineH(ImDrawList* self,float min_x,float max_x,float y,ImU32 col,float thickness); +CIMGUI_API void ImDrawList_AddLineV(ImDrawList* self,float x,float min_y,float max_y,ImU32 col,float thickness); +CIMGUI_API void ImDrawList_AddRect(ImDrawList* self,const ImVec2_c p_min,const ImVec2_c p_max,ImU32 col,float rounding,float thickness,ImDrawFlags flags); CIMGUI_API void ImDrawList_AddRectFilled(ImDrawList* self,const ImVec2_c p_min,const ImVec2_c p_max,ImU32 col,float rounding,ImDrawFlags flags); CIMGUI_API void ImDrawList_AddRectFilledMultiColor(ImDrawList* self,const ImVec2_c p_min,const ImVec2_c p_max,ImU32 col_upr_left,ImU32 col_upr_right,ImU32 col_bot_right,ImU32 col_bot_left); CIMGUI_API void ImDrawList_AddQuad(ImDrawList* self,const ImVec2_c p1,const ImVec2_c p2,const ImVec2_c p3,const ImVec2_c p4,ImU32 col,float thickness); @@ -4274,7 +4283,7 @@ CIMGUI_API void ImDrawList_AddText_Vec2(ImDrawList* self,const ImVec2_c pos,ImU3 CIMGUI_API void ImDrawList_AddText_FontPtr(ImDrawList* self,ImFont* font,float font_size,const ImVec2_c pos,ImU32 col,const char* text_begin,const char* text_end,float wrap_width,const ImVec4* cpu_fine_clip_rect); CIMGUI_API void ImDrawList_AddBezierCubic(ImDrawList* self,const ImVec2_c p1,const ImVec2_c p2,const ImVec2_c p3,const ImVec2_c p4,ImU32 col,float thickness,int num_segments); CIMGUI_API void ImDrawList_AddBezierQuadratic(ImDrawList* self,const ImVec2_c p1,const ImVec2_c p2,const ImVec2_c p3,ImU32 col,float thickness,int num_segments); -CIMGUI_API void ImDrawList_AddPolyline(ImDrawList* self,const ImVec2_c* points,int num_points,ImU32 col,ImDrawFlags flags,float thickness); +CIMGUI_API void ImDrawList_AddPolyline(ImDrawList* self,const ImVec2_c* points,int num_points,ImU32 col,float thickness,ImDrawFlags flags); CIMGUI_API void ImDrawList_AddConvexPolyFilled(ImDrawList* self,const ImVec2_c* points,int num_points,ImU32 col); CIMGUI_API void ImDrawList_AddConcavePolyFilled(ImDrawList* self,const ImVec2_c* points,int num_points,ImU32 col); CIMGUI_API void ImDrawList_AddImage(ImDrawList* self,ImTextureRef_c tex_ref,const ImVec2_c p_min,const ImVec2_c p_max,const ImVec2_c uv_min,const ImVec2_c uv_max,ImU32 col); @@ -4285,7 +4294,7 @@ CIMGUI_API void ImDrawList_PathLineTo(ImDrawList* self,const ImVec2_c pos); CIMGUI_API void ImDrawList_PathLineToMergeDuplicate(ImDrawList* self,const ImVec2_c pos); CIMGUI_API void ImDrawList_PathFillConvex(ImDrawList* self,ImU32 col); CIMGUI_API void ImDrawList_PathFillConcave(ImDrawList* self,ImU32 col); -CIMGUI_API void ImDrawList_PathStroke(ImDrawList* self,ImU32 col,ImDrawFlags flags,float thickness); +CIMGUI_API void ImDrawList_PathStroke(ImDrawList* self,ImU32 col,float thickness,ImDrawFlags flags); CIMGUI_API void ImDrawList_PathArcTo(ImDrawList* self,const ImVec2_c center,float radius,float a_min,float a_max,int num_segments); CIMGUI_API void ImDrawList_PathArcToFast(ImDrawList* self,const ImVec2_c center,float radius,int a_min_of_12,int a_max_of_12); CIMGUI_API void ImDrawList_PathEllipticalArcTo(ImDrawList* self,const ImVec2_c center,const ImVec2_c radius,float rot,float a_min,float a_max,int num_segments); @@ -4363,10 +4372,10 @@ CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryCompressedTTF(ImFontAtlas* self, CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryCompressedBase85TTF(ImFontAtlas* self,const char* compressed_font_data_base85,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges); CIMGUI_API void ImFontAtlas_RemoveFont(ImFontAtlas* self,ImFont* font); CIMGUI_API void ImFontAtlas_Clear(ImFontAtlas* self); +CIMGUI_API void ImFontAtlas_ClearFonts(ImFontAtlas* self); CIMGUI_API void ImFontAtlas_CompactCache(ImFontAtlas* self); CIMGUI_API void ImFontAtlas_SetFontLoader(ImFontAtlas* self,const ImFontLoader* font_loader); CIMGUI_API void ImFontAtlas_ClearInputData(ImFontAtlas* self); -CIMGUI_API void ImFontAtlas_ClearFonts(ImFontAtlas* self); CIMGUI_API void ImFontAtlas_ClearTexData(ImFontAtlas* self); CIMGUI_API const ImWchar* ImFontAtlas_GetGlyphRangesDefault(ImFontAtlas* self); CIMGUI_API ImFontAtlasRectId ImFontAtlas_AddCustomRect(ImFontAtlas* self,int width,int height,ImFontAtlasRect* out_r); @@ -4542,6 +4551,8 @@ CIMGUI_API bool ImRect_ContainsWithPad(ImRect* self,const ImVec2_c p,const ImVec CIMGUI_API bool ImRect_Overlaps(ImRect* self,const ImRect_c r); CIMGUI_API void ImRect_Add_Vec2(ImRect* self,const ImVec2_c p); CIMGUI_API void ImRect_Add_Rect(ImRect* self,const ImRect_c r); +CIMGUI_API void ImRect_AddX(ImRect* self,float x); +CIMGUI_API void ImRect_AddY(ImRect* self,float y); CIMGUI_API void ImRect_Expand_Float(ImRect* self,const float amount); CIMGUI_API void ImRect_Expand_Vec2(ImRect* self,const ImVec2_c amount); CIMGUI_API void ImRect_Translate(ImRect* self,const ImVec2_c d); @@ -4827,6 +4838,7 @@ CIMGUI_API void igLogToBuffer(int auto_open_depth); CIMGUI_API void igLogRenderedText(const ImVec2_c* ref_pos,const char* text,const char* text_end); CIMGUI_API void igLogSetNextTextDecoration(const char* prefix,const char* suffix); CIMGUI_API bool igBeginChildEx(const char* name,ImGuiID id,const ImVec2_c size_arg,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags); +CIMGUI_API ImGuiWindow* igFindFrontMostVisibleChildWindow(ImGuiWindow* window); CIMGUI_API bool igBeginPopupEx(ImGuiID id,ImGuiWindowFlags extra_window_flags); CIMGUI_API bool igBeginPopupMenuEx(ImGuiID id,const char* label,ImGuiWindowFlags extra_window_flags); CIMGUI_API void igOpenPopupEx(ImGuiID id,ImGuiPopupFlags popup_flags); @@ -4895,7 +4907,7 @@ CIMGUI_API bool igIsActiveIdUsingNavDir(ImGuiDir dir); CIMGUI_API ImGuiID igGetKeyOwner(ImGuiKey key); CIMGUI_API void igSetKeyOwner(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags); CIMGUI_API void igSetKeyOwnersForKeyChord(ImGuiKeyChord key,ImGuiID owner_id,ImGuiInputFlags flags); -CIMGUI_API void igSetItemKeyOwner_InputFlags(ImGuiKey key,ImGuiInputFlags flags); +CIMGUI_API bool igSetItemKeyOwner_InputFlags(ImGuiKey key,ImGuiInputFlags flags); CIMGUI_API bool igTestKeyOwner(ImGuiKey key,ImGuiID owner_id); CIMGUI_API ImGuiKeyOwnerData* igGetKeyOwnerData(ImGuiContext* ctx,ImGuiKey key); CIMGUI_API bool igIsKeyDown_ID(ImGuiKey key,ImGuiID owner_id); @@ -4912,6 +4924,7 @@ CIMGUI_API bool igTestShortcutRouting(ImGuiKeyChord key_chord,ImGuiID owner_id); CIMGUI_API ImGuiKeyRoutingData* igGetShortcutRoutingData(ImGuiKeyChord key_chord); CIMGUI_API void igPushFocusScope(ImGuiID id); CIMGUI_API void igPopFocusScope(void); +CIMGUI_API bool igIsInNavFocusRoute(ImGuiID focus_scope_id); CIMGUI_API ImGuiID igGetCurrentFocusScope(void); CIMGUI_API bool igIsDragDropActive(void); CIMGUI_API bool igBeginDragDropTargetCustom(const ImRect_c bb,ImGuiID id); @@ -4919,7 +4932,7 @@ CIMGUI_API bool igBeginDragDropTargetViewport(ImGuiViewport* viewport,const ImRe CIMGUI_API void igClearDragDrop(void); CIMGUI_API bool igIsDragDropPayloadBeingAccepted(void); CIMGUI_API void igRenderDragDropTargetRectForItem(const ImRect_c bb); -CIMGUI_API void igRenderDragDropTargetRectEx(ImDrawList* draw_list,const ImRect_c bb); +CIMGUI_API void igRenderDragDropTargetRectEx(ImDrawList* draw_list,const ImRect_c bb,float rounding); CIMGUI_API ImGuiTypingSelectRequest* igGetTypingSelectRequest(ImGuiTypingSelectFlags flags); CIMGUI_API int igTypingSelectFindMatch(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data,int nav_item_idx); CIMGUI_API int igTypingSelectFindNextSingleCharMatch(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data,int nav_item_idx); @@ -4962,6 +4975,7 @@ CIMGUI_API void igTableSetupDrawChannels(ImGuiTable* table); CIMGUI_API void igTableUpdateLayout(ImGuiTable* table); CIMGUI_API void igTableUpdateBorders(ImGuiTable* table); CIMGUI_API void igTableUpdateColumnsWeightFromWidth(ImGuiTable* table); +CIMGUI_API void igTableApplyExternalUnclipRect(ImGuiTable* table,ImRect* rect); CIMGUI_API void igTableDrawBorders(ImGuiTable* table); CIMGUI_API void igTableDrawDefaultContextMenu(ImGuiTable* table,ImGuiTableFlags flags_for_section_to_display); CIMGUI_API bool igTableBeginContextMenuPopup(ImGuiTable* table); @@ -5198,6 +5212,7 @@ CIMGUI_API void igImFontAtlasTextureBlockPostProcessMultiply(ImFontAtlasPostProc CIMGUI_API void igImFontAtlasTextureBlockFill(ImTextureData* dst_tex,int dst_x,int dst_y,int w,int h,ImU32 col); CIMGUI_API void igImFontAtlasTextureBlockCopy(ImTextureData* src_tex,int src_x,int src_y,ImTextureData* dst_tex,int dst_x,int dst_y,int w,int h); CIMGUI_API void igImFontAtlasTextureBlockQueueUpload(ImFontAtlas* atlas,ImTextureData* tex,int x,int y,int w,int h); +CIMGUI_API void igImTextureDataQueueUpload(ImTextureData* tex,int x,int y,int w,int h); CIMGUI_API int igImTextureDataGetFormatBytesPerPixel(ImTextureFormat format); CIMGUI_API const char* igImTextureDataGetStatusName(ImTextureStatus status); CIMGUI_API const char* igImTextureDataGetFormatName(ImTextureFormat format); diff --git a/cimgui_impl.h b/cimgui_impl.h index ccc38e1..5c2e37e 100644 --- a/cimgui_impl.h +++ b/cimgui_impl.h @@ -196,6 +196,8 @@ typedef ImVector ImVector_ImGui_ImplVulkanH_Frame; typedef ImVector ImVector_ImGui_ImplVulkanH_FrameSemaphores; typedef ImVector ImVector_VkDynamicState; #endif //CIMGUI_DEFINE_ENUMS_AND_STRUCTS +#define IMGUI_IMPL_VULKAN_MINIMUM_SAMPLED_IMAGE_POOL_SIZE (8) +#define IMGUI_IMPL_VULKAN_MINIMUM_SAMPLER_POOL_SIZE (2) CIMGUI_API void ImGui_ImplVulkanH_CreateOrResizeWindow(VkInstance instance,VkPhysicalDevice physical_device,VkDevice device,ImGui_ImplVulkanH_Window* wd,uint32_t queue_family,const VkAllocationCallbacks* allocator,int w,int h,uint32_t min_image_count,VkImageUsageFlags image_usage); CIMGUI_API void ImGui_ImplVulkanH_DestroyWindow(VkInstance instance,VkDevice device,ImGui_ImplVulkanH_Window* wd,const VkAllocationCallbacks* allocator); CIMGUI_API int ImGui_ImplVulkanH_GetMinImageCountFromPresentMode(VkPresentModeKHR present_mode); @@ -204,7 +206,7 @@ CIMGUI_API VkPresentModeKHR ImGui_ImplVulkanH_SelectPresentMode(VkPhysicalDevice CIMGUI_API uint32_t ImGui_ImplVulkanH_SelectQueueFamilyIndex(VkPhysicalDevice physical_device); CIMGUI_API VkSurfaceFormatKHR ImGui_ImplVulkanH_SelectSurfaceFormat(VkPhysicalDevice physical_device,VkSurfaceKHR surface,const VkFormat* request_formats,int request_formats_count,VkColorSpaceKHR request_color_space); CIMGUI_API ImGui_ImplVulkanH_Window* ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window(void); -CIMGUI_API VkDescriptorSet ImGui_ImplVulkan_AddTexture(VkSampler sampler,VkImageView image_view,VkImageLayout image_layout); +CIMGUI_API VkDescriptorSet ImGui_ImplVulkan_AddTexture(VkImageView image_view,VkImageLayout image_layout); CIMGUI_API void ImGui_ImplVulkan_CreateMainPipeline(const ImGui_ImplVulkan_PipelineInfo* info); CIMGUI_API bool ImGui_ImplVulkan_Init(ImGui_ImplVulkan_InitInfo* info); CIMGUI_API bool ImGui_ImplVulkan_LoadFunctions(uint32_t api_version,PFN_vkVoidFunction(*loader_func)(const char* function_name,void* user_data),void* user_data); diff --git a/generator/cpp2ffi.lua b/generator/cpp2ffi.lua index b8f83f0..2e9401b 100644 --- a/generator/cpp2ffi.lua +++ b/generator/cpp2ffi.lua @@ -195,6 +195,11 @@ local function check_template(code) te = te:gsub("%s","_") te = te:gsub("%*","Ptr") te = te:gsub("::","_") + te = te:gsub("%(","_") + te = te:gsub("%)","_") + te = te:gsub("&","amp") + te = te:gsub("<","_") + te = te:gsub(">","_") code2 = code:gsub("(<[%w_%*%s]+>)([^%s%*])","%1 %2") code2 = code2:gsub("<([^<>]-)>","_"..te) @@ -202,6 +207,26 @@ local function check_template(code) return ttype,template,te,code2 end ---------------------------------------- +local CCCnum = 0 +local function getffiint32val(val) + local str = [[ + local ffi = require"ffi" + ffi.cdef("static const int32_t CCC]]..CCCnum..[[ = ]]..val..[[;") return ffi.C.CCC]]..CCCnum + local f,err = loadstring(str) + assert(f,err) + CCCnum = CCCnum + 1 + return f() +end +local function getffival(name,val) + local str = [[ + local ffi = require"ffi" + ffi.cdef("static const int32_t ]]..name..[[ = ]]..val..[[;") return ffi.C.]]..name + print(str) + local f,err = loadstring(str) + assert(f,err) + return f() +end + local function parse_enum_value(value, allenums,dontpost) local function clean(val) if type(val)=="string" then @@ -224,12 +249,23 @@ local function parse_enum_value(value, allenums,dontpost) ------------precedence order (hope not ()) --delete (int) value = value:gsub("%(int%)","") + value = value:gsub("%(%w+%)","") --first drop outer () value = value:gsub("^(%()",""):gsub("(%))$","") assert(not value:match("[%(%)]"),value) + local numval = tonumber(value) + --check int32_t + -- if numval then + -- local ok,numval2 = pcall(getffiint32val,value) + -- if ok and numval~=numval2 then + -- print("===========",value,numval,numval2) + -- end + -- end + if numval then return numval end + local several,seps = strsplit(value,"([<>&|~%+%-]+)") - --M.prtable(value,several,seps) + --M.prtable("ccc",value,tonumber(value),several,seps) assert(#seps+1==#several) local i = 1 @@ -288,7 +324,7 @@ local function parse_enum_value(value, allenums,dontpost) --M.prtable("allenums",allenums) end assert(#seps==0) - assert(type(several[1])=="number" or type(several[1])=="cdata") + assert(type(several[1])=="number" or type(several[1])=="cdata",type(several[1])) --converst 1ULL to "1ULL" if type(several[1])=="cdata" then several[1] = tostring(several[1]) end return several[1] @@ -338,16 +374,17 @@ local function getRE() local res = { function_re = "^([^;{}]+%b()[\n%s]*;)%s*", function_re = "^([^;{}=]+%b()[\n%s%w]*;)", --const at the end - function_re = "^([^;{}=]+%b()[\n%s%w%(%)_]*;)", --attribute(deprecated) + function_re = "^([^;{}=]+%b()[\n%s=%w%(%)_]*;)", --attribute(deprecated) --we need to skip = as function because of "var = f()" initialization in struct fields -- but we don want operator== to appear as a var and as we should skip this kind of function solution is: operator_re = "^([^;{}]+operator[^;{}]+%b()[\n%s%w%(%)_]*;)", struct_re = "^([^;{}]-struct[^;{}]-%b{}[%s%w_%(%)]*;)", + class_re = "^([^;{}]-class[^;{}]-%b{}[%s%w_%(%)]*;)", + --class_re = "^([^;{}]-class[^;{}]-%b{}%s*;)", enum_re = "^([^;{}]-enum[^;{}]-%b{}[%s%w_%(%)]*;)", union_re = "^([^;{}]-union[^;{}]-%b{}[%s%w_%(%)]*;)", structenum_re = "^([^;{}]-%b{}[%s%w_%(%)]*;)", namespace_re = "^([^;{}]-namespace[^;{}]-%b{})", - class_re = "^([^;{}]-class[^;{}]-%b{}%s*;)", typedef_re = "^\n*%s*(typedef[^;]+;)", typedef_st_re = "^\n*(typedef%s+struct%s*%b{}.-;)", functypedef_re = "^\n*%s*(typedef[%w%s%*_]+%(%s*%*%s*[%w_]+%s*%)%s*%b()%s*;)", @@ -457,7 +494,7 @@ local function parseItems(txt,linenumdict, itparent, dumpit) --take locat from parent if itparent and itparent.locat then loca = itparent.locat - print("parent loca",string.format("%q , %q ",itemold,itemfirstline),#itemfirstline,loca) + --print("parent loca",string.format("%q , %q ",itemold,itemfirstline),#itemfirstline,loca) else loca = 0 print("not loca",string.format("%q , %q ",itemold,itemfirstline),#itemfirstline,loca) @@ -467,7 +504,7 @@ local function parseItems(txt,linenumdict, itparent, dumpit) else error"no linenumdict" end - table.insert(itemarr,{re_name=re_name,item=item,locat=loca,prevcomments=comments}) + table.insert(itemarr,{re_name=re_name,item=item,locat=loca,prevcomments=comments,parent=itparent}) items[re_name] = items[re_name] or {} table.insert(items[re_name],item) end @@ -738,10 +775,13 @@ local function parseFunction(self,stname,itt,namespace,locat) --print("template",lineorig) return end + local ret = line:match("([^%(%):,]+[%*%s])%s?~?[_%w]+%b()") + --local ret = line:match("(.+[%*%s])%s?~?[_%w]+%b()") --local funcname, args = line:match("(~?[_%w]+)%s*(%b())") local funcname, args, extraconst = line:match("(~?[_%w]+)%s*(%b())(.*)") + if extraconst == "=delete;" then return end extraconst = extraconst:match("const") if not args then @@ -782,7 +822,7 @@ local function parseFunction(self,stname,itt,namespace,locat) end end - + --[[ --- templates in args for i,ar in ipairs(argsTa) do --TODO several diferent templates @@ -796,13 +836,23 @@ local function parseFunction(self,stname,itt,namespace,locat) end argsTa[i] = te and code2 or ar --ar:gsub("<([%w_%*%s]+)>",te) --ImVector end - +--]] --get typ, name and defaults local functype_re = "^%s*[%w%s%*]+%(%*%s*[%w_]+%)%([^%(%)]*%)" local functype_reex = "^(%s*[%w%s%*]+)%(%*%s*([%w_]+)%)(%([^%(%)]*%))" local argsTa2 = {} local noname_counter = 0 for i,ar in ipairs(argsTa) do + local ttype,template,te,code2 = check_template(ar) --ar:match("([^%s,%(%)]+)%s*<(.-)>") + if template then + if self.typenames[stname] ~= template then --rule out template typename + self.templates[ttype] = self.templates[ttype] or {} + self.templates[ttype][template] = te + end + end + argsTa[i] = te and code2 or ar + local template_orig = te and ar or nil + ar = argsTa[i] --avoid var name without space type&name -> type& name -- also do type &name -> type& name --ar = ar:gsub("(%S)&(%S)","%1& %2") @@ -819,7 +869,14 @@ local function parseFunction(self,stname,itt,namespace,locat) else reftoptr = nil if ar:match("&") then - if ar:match("const") then + ar1,defa = ar:match"([^=]+)=([^=]+)" + ar1 = ar1 or ar + local typ11,name11 = ar1:match("(.+)%s([^%s]+)") + typ11 = typ11:gsub("const ","") + typ11 = typ11:gsub("&","") + if ar:match("const") and not self.opaque_structs[typ11] then + --if ar:match"Palette" then print("--w---w--w",ar,typ11,name11) end + --print("--w---w--w",ar,cname) ar = ar:gsub("&","") else ar = ar:gsub("&","*") @@ -848,7 +905,7 @@ local function parseFunction(self,stname,itt,namespace,locat) name = name:gsub("(%[%d*%])","") end end - argsTa2[i] = {type=typ,name=name,default=defa,reftoptr=reftoptr,ret=retf,signature=sigf,has_cdecl=has_cdecl} + argsTa2[i] = {type=typ,name=name,default=defa,reftoptr=reftoptr,ret=retf,signature=sigf,has_cdecl=has_cdecl,template_orig=template_orig} if ar:match("&") and not ar:match("const") then --only post error if not manual local cname = self.getCname(stname,funcname, namespace) --cimguiname @@ -938,7 +995,7 @@ local function parseFunction(self,stname,itt,namespace,locat) defT.call_args = caar --call_args defT.isvararg = signat:match("%.%.%.%)$") defT.location = locat - local comentario = (itt.comments or "")..(comment or "") + local comentario = (itt.prevcomments or "")..(itt.comments or "")..(comment or "") if comentario=="" then comentario=nil end defT.comment = comentario defT.argsT = argsArr @@ -949,7 +1006,15 @@ local function parseFunction(self,stname,itt,namespace,locat) defT.skipped = true end if ret then + defT.stdret = line:match("^\n*%s*std::") + --if ret:match"string" then print("parsefunction",defT.cimguiname, ret, line) end defT.ret = clean_spaces(ret:gsub("&","*")) + --name_conversion + local rr = defT.ret:gsub("*","") + rr = rr:gsub("const ","") + if self.name_conversion and self.name_conversion[rr] then + defT.ret = defT.ret:gsub(rr,self.name_conversion[rr]) + end defT.retref = ret:match("&") -- if defT.ret=="ImVec2" or defT.ret=="ImVec4" or defT.ret=="ImColor" then -- defT.ret = defT.ret.."_Simple" @@ -1131,6 +1196,9 @@ local function get_nonPOD(FP) end end FP.structs_and_enums_table.nonPOD = nonPOD + if next(nonPOD) then + M.prtable("nonPOD",nonPOD) + end return nonPOD end local function recur_calc_depth(FP, structs, k,n) @@ -1297,19 +1365,9 @@ local function get_nonPODused(FP) FP.structs_and_enums_table.nonPOD_used = FP.nP_used FP.nP_args = typeargs FP.nP_ret = typeargs_ret - --genConversions(FP) - --M.prtable(typeargs,typeargs_ret,all_type_nP) - -- local typeargs2 = {} - -- for k,v in pairs(typeargs) do table.insert(typeargs2,k) end - -- table.sort(typeargs2) - -- print"------------typeargs2----------------" - -- M.prtable(typeargs2) - - -- local typeargs2_ret = {} - -- for k,v in pairs(typeargs_ret) do table.insert(typeargs2_ret,k) end - -- table.sort(typeargs2_ret) - -- print"------------typeargs2_ret----------------" - -- M.prtable(typeargs2_ret) + if next(FP.nP_ret) then + M.prtable("np_ret",FP.nP_ret) + end end local function header_subs_nonPOD(FP,txt) @@ -1326,21 +1384,118 @@ local function header_subs_nonPOD(FP,txt) return txt end M.header_subs_nonPOD = header_subs_nonPOD +local function get_std_function(ar) + local skip = false + local ty=ar.template_orig:gsub(ar.name,"") + ty = ty:match("std::function(%b<>)") + ty = ty:sub(2,-2) + local ret, args = ty:match("([^%(%)]+)(%b())") + local ret2 + if ret:match"std::string_view" then + ret2 = "const char*" + elseif ret:match"std::string" then + ret2 = "const char*" + end + args = args:sub(2,-2) + local argsT = strsplit(args,",") + --get noname args + local argsT2 = {} + local noname_counter = 0 + for i,v in ipairs(argsT) do + local typ, name = v:match("(.+)%s+(%w+)") + if not name then + typ = v + noname_counter = noname_counter + 1 + name = "noname" .. noname_counter + end + argsT2[i] = {type=typ,name=name} + end + --get conversions + local argsT3 = {} + for i,v in ipairs(argsT2) do + local typ,name,conv + if v.type:match("std::string_view") then + typ = "const char*" + conv = v.name..".data()" + elseif v.type:match("std::string") then + typ = "const char*" + conv = v.name..".c_str()" + elseif v.type:match("std::") then + skip = true + else + end + argsT3[i] = {type=typ or v.type,conv=conv,name=v.name} + end + local asp = "" + local caar1 = "" + local caar2 = "" + for i,v in ipairs(argsT3) do + asp = asp..v.type.."," + caar1 = caar1 .. argsT2[i].type.." "..argsT2[i].name.."," + caar2 = caar2..(argsT3[i].conv or argsT3[i].name).."," + end + caar1 = caar1:sub(1,-2) + caar1 = "[cb]("..caar1..")" + caar2 = caar2:sub(1,-2) + caar2 = "cb("..caar2..")" + if ret ~= "void" then + if ret:match"std::string$" then + caar2 = "return std::string("..caar2..")" + -- elseif ret:match"std::string_view" then + -- caar2 = "return "..caar2..".data()" + else + caar2 = "return "..caar2 + end + end + local caar = caar1 .."{"..caar2..";}" + asp = asp:sub(1,-2) + asp = (ret2 or ret).."(*cb)("..asp..")" + -- print(ty,ret,args) + -- M.prtable(argsT3) + -- print("ret",ret) + -- print("asp",asp) + -- print("caar1",caar1) + -- print("caar2",caar2) + -- print("caar",caar) + -- print("skip",skip) + return caar,asp,skip +end local function ADDnonUDT(FP) local nonPOD = get_nonPOD(FP) get_nonPODused(FP) for k,defs in pairs(FP.defsT) do - for i, def in ipairs(defs) do + for i, def in ipairs(defs) do + local skip = nil --ret local rets = (def.ret or ""):gsub("const ","") rets = rets:gsub("*","") + --returns nonPOD -> nonPOD_c with conversion if FP.nP_ret[def.ret] then - def.conv = (def.ret):gsub("const ","") + def.conv = (def.ret)--:gsub("const ","") def.ret = FP.nP_ret[def.ret] def.nonUDT = 1 + --returns nonPOD* -> returns nonPOD_c with reinterpret_cast elseif FP.nP_ret[rets] then def.ret = def.ret:gsub(rets, FP.nP_ret[rets]) def.nonUDT = 2 + --return std::string -> return const char* + elseif def.ret=="string" then + def.ret = "const char*" + def.nonUDT = "string" + --return opaque_struct + elseif FP.opaque_structs[rets] then + if not def.ret:match"%*" then + --assert(def.ret:match"%*","return opaque struct without pointer") + --M.prtable(def) + --error"return opaque struct without pointer" + def.nonUDT = "opaque" + def.ret = def.ret.."*" --def.ret:gsub(rets,rets.."_opq") + else + --def.ret = def.ret:gsub(rets.."%s*%*",rets.."_opq") + end + --return std:: -> skip function + elseif def.stdret then -- not std::string + skip = true end --args local caar,asp @@ -1356,13 +1511,44 @@ local function ADDnonUDT(FP) else local typ = v.type:gsub("const ","") local typ2 = typ:gsub("*","") + --nonPOD arg -> convert if FP.nP_args[v.type] then caar = caar .. "ConvertToCPP_"..typ.."("..name..")," asp = asp .. v.type:gsub(typ,typ.."_c").." "..v.name.."," + --nonPOD* arg -> reinterpret_cast elseif FP.nP_args[typ2] then local typ3 = v.type:gsub(typ2,typ2.."_c") caar = caar .. "reinterpret_cast<"..v.type..">("..name..")," asp = asp .. typ3 .." "..v.name.."," + elseif v.type:match("std::string_view") then + caar = caar ..name.."," + asp = asp .. "const char* "..v.name.."," + elseif v.type:match("std::string") then + caar = caar .. "std::string("..name..")," + asp = asp .. "const char* "..v.name.."," + elseif v.type:match"std::function" then + local ca2,asp2,skip2 = get_std_function(v) + caar = caar .. ca2.."," + asp = asp .. asp2.."," + if skip2 then skip = true end + --skip = true + elseif v.type:match("std::") then + skip = true + elseif FP.opaque_structs[typ2] then + --assert(v.type:match"%*","opaque struct arg without pointer") + if not v.type:match"%*" then + --M.prtable(def) + --error"opaque struct arg without pointer" + local newt = v.type.."*" --v.type:gsub(typ2,typ2.."_opq") + local callname = "*"..name + caar = caar .. callname .. "," + asp = asp .. newt.." "..name .. "," + else + local newt = v.type --v.type:gsub(typ2.."%s*%*",typ2.."_opq") + local callname = v.reftoptr and "*"..name or name + caar = caar .. callname .. "," + asp = asp .. newt.." "..name .. "," + end else local siz = v.type:match("(%[%d*%])") or "" local typ = v.type:gsub("(%[%d*%])","") @@ -1378,9 +1564,14 @@ local function ADDnonUDT(FP) caar = "()" asp = "()" end - def.call_args_old = def.call_args - def.call_args = caar - def.args = asp + if skip then + def.skipped = skip + FP.skipped[def.ov_cimguiname] = true + else + def.call_args_old = def.call_args + def.call_args = caar + def.args = asp + end end end end @@ -1582,6 +1773,12 @@ local function save_output(self) save_data("./output/structs_and_enums.json",json.encode(self.structs_and_enums_table)) save_data("./output/typedefs_dict.json",json.encode(self.typedefs_dict)) save_data("./output/constants.json",json.encode(self.constants)) + + local modulename = self.modulename + copyfile("./output/"..modulename..".h", "../"..modulename..".h") + copyfile("./output/"..modulename..".cpp", "../"..modulename..".cpp") + os.remove("./output/"..modulename..".h") + os.remove("./output/"..modulename..".cpp") end ------------- local numerr = 0 --for popen error file @@ -1602,6 +1799,8 @@ function M.Parser() par.manuals = {} par.skipped = {} par.UDTs = {} + par.opaque_structs = {} + par.forced_opaque = {} par.save_output = save_output par.genConversors = genConversions @@ -1612,8 +1811,13 @@ function M.Parser() table.insert(cdefs,{line:gsub("^(%s*.-)%s*$", "%1"),loca}) end function par.getCname(stname,funcname, namespace) - if #stname == 0 then return funcname end --top level - local pre = stname.."_" + --if #stname == 0 then return funcname end --top level + local pre = (namespace and namespace~="") and (namespace:gsub("::","_") .. "_") or "" + pre = pre .. (stname~="" and (stname .. "_") or "") + if pre:match":" then print(stname, funcname, namespace); error"debug" end + -- if stname== "" then + -- local pre = (stname == "") and (namespace and (namespace.."_") or "") or stname.."_" + -- local pre = stname.."_" return pre..funcname end function par.getCname_overload(stname,funcname,signature, namespace) @@ -1628,6 +1832,8 @@ function M.Parser() return par.skipped[def.ov_cimguiname] or par.skipped[def.cimguiname] end function par:take_lines(cmd_line,names,compiler) + assert(compiler) + self.COMPILER = compiler if self.COMMENTS_GENERATION then cmd_line = cmd_line .. (compiler=="cl" and " /C " or " -C ") end @@ -1658,13 +1864,90 @@ function M.Parser() self.constants = defines return defines end + -------------------------------------------------------------------- + local function get_cdefs(gccline,locat,cdef) + --print("get_cdefs",gccline,locat,cdef) + cdef = cdef or {} + numerr = numerr + 1 + local errfile = "err_cdefs"..numerr..".txt" + local pipe,err = io.popen(gccline.." 2>"..errfile,"r") + --local pipe,err = io.popen(gccline,"r") + if not pipe then error("could not execute gcc "..err) end + local skip + for line in M.location(pipe,{locat}) do + --print(line) + line = line:gsub("extern __attribute__%(%(dllexport%)%)%s*","") + line = line:gsub("extern __declspec%(dllexport%)%s*","") + skip = false + if line~="" then + if line:match("^%s*static const") and not line:match("static const int") then skip=true end + if not skip then + table.insert(cdef,line) + end + end + end + pipe:close() + + local f = assert(io.open(errfile,"r")) + local errstr = f:read"*a" + f:close() + print(#errstr,"errstr") + print(errstr) + --try to guess a compiler error + assert(not errstr:match" error") + os.remove(errfile) + return cdef + end + local ffi = require"ffi" + --utility functions + local ffi_cdef = function(code) + local ret,err = pcall(ffi.cdef,code) + if not ret then + local lineN = 1 + for line in code:gmatch("([^\n\r]*)\r?\n") do + print(lineN, line) + lineN = lineN + 1 + end + print(err) + error"bad cdef" + end + end + + function par:get_cal_value_ffi() + local COMPILER, CPRE = self.COMPILER + if COMPILER == "cl" then + CPRE = COMPILER..[[ /E /DCIMGUI_DEFINE_ENUMS_AND_STRUCTS -DIMGUI_ENABLE_FREETYPE ./ccode.h]] + else + CPRE = COMPILER..[[ -E -DCIMGUI_DEFINE_ENUMS_AND_STRUCTS -DIMGUI_ENABLE_FREETYPE ./ccode.h]] + end + local cdefs = "typedef void FILE;" + cdefs = cdefs..self.structs_and_enums[1]..self.structs_and_enums[2] + save_data("ccode.h", cdefs) + + local cdefs = get_cdefs(CPRE,"ccode") + --M.prtable(cdefs) + cdefs = table.concat(cdefs,"\n") + --print("===================================",cdefs) + save_data("ccode.h.lua", cdefs) + local ffi = require"ffi" + ffi_cdef(cdefs) + for k,enum in pairs(self.structs_and_enums_table.enums) do + for i,field in ipairs(enum) do + --print(field.calc_value) + if field.calc_value ~= ffi.C[field.name] then + print(field.name,field.calc_value , ffi.C[field.name]) + end + end + end + end function par:do_parse() self:parseItems() self:gen_structs_and_enums_table() self:compute_overloads() self:gen_structs_and_enums() - --self:compute_overloads() --self:compute_templated() + --check int32_t and others + --self:get_cal_value_ffi() ADDdestructors(self) end function par:initTypedefsDict() @@ -1710,30 +1993,99 @@ function M.Parser() end end end + local function derived_check(it) + --print("checks",it.name) + --expects struct or class + assert(it.re_name=="struct_re" or it.re_name=="class_re",it.re_name) + local inistruct = clean_spaces(it.item:match("(.-)%b{}")) + --clean final: + inistruct = inistruct:gsub("%s*final%s*:",":") + local stname, derived + if inistruct:match":" then + stname,derived = inistruct:match"struct%s*([^%s:]+):(.+)" + if not stname then stname,derived = inistruct:match"class%s*([^%s:]+):(.+)" end + if derived then + derived = derived:match"(%S+)$" + else assert(inistruct:match"private" or inistruct:match"protected",inistruct) end + else + if it.re_name == "struct_re" then + stname = inistruct:match"struct%s(%S+)" + elseif it.re_name == "class_re" then + stname = inistruct:match"class%s(%S+)" + end + end + return stname, derived + end + local function get_parents_name(it) + local parnam = "" + while it.parent do + parnam = it.parent.name.."::"..parnam + it = it.parent + end + return parnam + end + local function get_parents_nameC(it) + local parnam = "" + while it.parent do + parnam = it.parent.name.."::"..parnam + it = it.parent + end + if parnam~="" then parnam = parnam:sub(1,-3) end + return parnam + end --recursive item parsing function par:parseItemsR2(txt, itparent) local itsarr,its = parseItems(txt,self.linenumdict,itparent) + --clean protect + if itparent and itparent.re_name == "class_re" then + local first_private + for j,child in ipairs(itsarr) do + if child.item:match("^\n*%s*private:") or child.item:match("^\n*%s*protected:") then + first_private = j + break + end + end + if first_private then + for j=first_private,#itsarr do + --print("private discards",it.childs[j].re_name,it.childs[j].name) + itsarr[j] = nil + end + end + end for i,it in ipairs(itsarr) do - --clean class + --clean class and get name if it.re_name == "class_re" then it.name = it.item:match("class%s+(%S+)") print("cleaning class",it.name) - it.item = it.item:gsub("private:.+};$","};") + --it.item = it.item:gsub("private:.+};$","};") --it.item = it.item:gsub("private:","") it.item = it.item:gsub("public:","") it.item = it.item:gsub("enum%s*class","enum") + elseif it.re_name == "struct_re" then + it.name = it.item:match("struct%s+([^%s{]+)") + if self.name_conversion and self.name_conversion[it.name] then + it.name = self.name_conversion[it.name] + print("=========conversion",it.name) + end + elseif it.re_name == "namespace_re" then + it.name = it.item:match("namespace%s+(%S+)") end + if not isLeaf(it.re_name) then local inner = strip_end(it.item:match("%b{}"):sub(2,-2)) + --print("not isLeaf",it.re_name,it.name) + --print(inner) it.childs = par:parseItemsR2(inner, it) - for j,child in ipairs(it.childs) do - child.parent = it - end + --if it.name == "TextEditor" then M.prtable(it.childs) end + -- for j,child in ipairs(it.childs) do + -- child.parent = it + -- end + if it.re_name == "struct_re" then local typename = it.item:match("^%s*template%s*<%s*typename%s*(%S+)%s*>") --local stname = it.item:match("struct%s+(%S+)") - local stname = it.item:match("struct%s+([^%s{]+)") --unamed - it.name = stname + --local stname = it.item:match("struct%s+([^%s{]+)") --unamed + local stname = it.name --local templa1,templa2 = it.item:match("^%s*template%s*<%s*(%S+)%s*(%S+)%s*>") local templa2 = it.item:match("^%s*template%s*<%s*([^<>]+)%s*>") @@ -1744,9 +2096,65 @@ function M.Parser() self.typenames[stname] = typename or templa2 end elseif it.re_name == "namespace_re" then - it.name = it.item:match("namespace%s+(%S+)") + --it.name = it.item:match("namespace%s+(%S+)") elseif it.re_name == "class_re" then - --it.name = it.item:match("class%s+(%S+)") + -- local first_private + -- for j,child in ipairs(it.childs) do + -- if child.item:match("^\n*%s*private:") or child.item:match("^\n*%s*protected:") then + -- first_private = j + -- break + -- end + -- end + -- if first_private then + -- for j=first_private,#it.childs do + ----print("private discards",it.childs[j].re_name,it.childs[j].name) + -- it.childs[j] = nil + -- end + -- end + end + + --create opaque_struct + if it.re_name == "struct_re" or it.re_name == "class_re" then + local stname,derived = derived_check(it) + if derived then + local derived2 = derived:gsub("%b<>","") + derived2 = derived2:gsub("%w+::","") + print("--derived check",stname, derived, derived2) + M.prtable(self.opaque_structs) + if self.opaque_structs[derived2] then + print("--make opaque opaque derived",it.name,derived,derived2) + it.opaque_struct = get_parents_name(it)..it.name + self.opaque_structs[it.name] = it.opaque_struct + end + end + if derived and derived:match"std::" then + print("--make opaque std::derived",it.name,derived) + --it.opaque_struct = (itparent and itparent.name .."::" or "")..it.name + it.opaque_struct = get_parents_name(it)..it.name + self.opaque_structs[it.name] = it.opaque_struct + end + if self.forced_opaque[it.name] then + print("--make forced opaque opaque derived",it.name) + it.opaque_struct = get_parents_name(it)..it.name + self.opaque_structs[it.name] = it.opaque_struct + end + for j,child in ipairs(it.childs) do + -- if child.re_name == "vardef_re" and child.item:match"using" then + -- print("=====using",child.item) + -- end + if (child.re_name == "vardef_re") and child.item:match"std::" then + print("--make opaque",it.name,child.item) + --M.prtable(itparent) + --it.opaque_struct = (itparent and itparent.name .."::" or "")..it.name + it.opaque_struct = get_parents_name(it)..it.name + print("===parents1",get_parents_name(it),"===parents2",(itparent and itparent.name .."::" or "")) + print("===",it.opaque_struct) + --cant do that as function is recursive + --self.opaque_structs[it.name] = get_parents_name(it)..it.name--(itparent and itparent.name .."::" or "")..it.name + self.opaque_structs[it.name] = it.opaque_struct + break + end + end end end end @@ -1825,12 +2233,21 @@ function M.Parser() table.insert(txtclean,txt:sub(ini)) print("end cleaning ------------------------------",nn) txt = table.concat(txtclean) + --]] end --save_data("./preparse"..tostring(self):gsub("table: ","")..".c",txt) - --]] self.itemsarr = par:parseItemsR2(txt) - --save_data("./itemsarr.lua",ToStr(self.itemsarr)) + save_data("./itemsarr.lua",M.serializeTableF(self.itemsarr))--ToStr(self.itemsarr)) itemsarr = self.itemsarr + ---find opaque_structs + self:Listing(itemsarr,function(it) + if it.re_name == "struct_re" or it.re_name == "class_re" then + if it.opaque_struct then + self.opaque_structs[it.name] = it.opaque_struct + end + end + end) + if next(self.opaque_structs) then M.prtable("opaque_structs:",self.opaque_structs) end end function par:printItems() @@ -1869,6 +2286,7 @@ function M.Parser() end) return table.concat(ttd,"") end + function par:clean_structR1(itst,doheader) local stru = itst.item local outtab = {} @@ -1883,7 +2301,8 @@ function M.Parser() local stname, derived if inistruct:match":" then stname,derived = inistruct:match"struct%s*([^%s:]+):(.+)" - --print(inistruct,stname,derived) + if not stname then stname,derived = inistruct:match"class%s*([^%s:]+):(.+)" end + print("derived------",inistruct,stname,derived, derived:match"(%S+)$") derived = derived:match"(%S+)$" else if itst.re_name == "struct_re" then @@ -1912,6 +2331,12 @@ function M.Parser() error"could not get stname" end end + + if self.name_conversion and self.name_conversion[stname] then + itst.or_name = stname + stname = self.name_conversion[stname] + end + --stname = self.name_conversion and self.name_conversion[stname] or stname --initial table.insert(outtab,"\nstruct "..stname.."\n") @@ -1928,8 +2353,11 @@ function M.Parser() print("clean_struct with empty struc",stname); -- M.prtable(itst) -- if stname=="StbUndoRecord" then error"dddd" end - return "" + return "" end --here we avoid empty structs + if itst.opaque_struct then + return "", stname,nil,nil,"" + end for j,it in ipairs(itlist) do if (it.re_name == "vardef_re" or it.re_name == "functype_re") then -- or it.re_name == "union_re") then if not (it.re_name == "vardef_re" and it.item:match"static") then --skip static variables @@ -1938,28 +2366,41 @@ function M.Parser() --local ttype,template = it.item:match("([^%s,%(%)]+)%s*<(.+)>") local ttype,template,te,code2 = check_template(it2) --it.item:match"([^%s,%(%)]+)%s*<(.+)>" if template then + --print(it2) --print("not doheader",ttype,template,te, self.typenames[ttype]) - if self.typenames[ttype] ~= template and self.typenames[ttype].."*" ~= template then --rule out T (template typename) + --M.prtable(self.typenames) + if self.typenames[ttype] and self.typenames[ttype] ~= template and self.typenames[ttype].."*" ~= template then --rule out T (template typename) self.templates[ttype] = self.templates[ttype] or {} self.templates[ttype][template] = te it2=code2 end - if doheader then - + if doheader and self.templates[ttype] then local templatetypedef = self:gentemplatetypedef(ttype, template,self.templates[ttype][template]) predeclare = predeclare .. templatetypedef end end + --clean using + if it.re_name == "vardef_re" and it.item:match("using%s+([^=%s]+)%s*=%s*([^;]+);") then + print("===using",it.item) + local typedef, assign = it2:match("using%s+([^=%s]+)%s*=%s*([^;]+);") + print(typedef,assign) + assign = assign:gsub("%w+::","") + predeclare = predeclare .. "\ntypedef "..assign.." "..typedef..";" + it2 = "" --"\ntypedef "..assign.." "..typedef..";" + end --clean mutable it2 = it2:gsub("mutable","") - --clean namespaces - it2 = it2:gsub("%w+::","") + --clean namespaces but not std:: + --if not it2:match"std::" then + it2 = it2:gsub("%w+::","") + --end --clean initializations if it.re_name == "vardef_re" then it2 = it2:gsub("%s*=.+;",";") it2 = it2:gsub("%b{}","") end table.insert(outtab,it2) + --print("cleanstruct",it2) table.insert(commtab,{above=it.prevcomments,sameline=it.comments})--it.comments or "") end elseif it.re_name == "union_re" then @@ -1971,10 +2412,12 @@ function M.Parser() table.insert(outtab,item) com = (com ~= "") and com or nil table.insert(commtab,{above=it.prevcomments,sameline=com}) - elseif it.re_name == "struct_re" then + elseif it.re_name == "struct_re" or it.re_name == "class_re" then --print("nested struct in",stname,it.name) --check if has declaration - local decl = it.item:match"%b{}%s*([^%s}{]+)%s*;" + --local decl = it.item:match"%b{}%s*([^%s}{]+)%s*;" + local decl = it.item:match"^[^{}]+%b{}%s*([^%s}{]+)%s*;" + --local decl1,decl2,decl3 = it.item:match"^([^{}]+%b{})(%s*[^%s}{]+%s*;)(.*)$" local cleanst,structname,strtab,comstab,predec = self:clean_structR1(it,doheader) if not structname then --unamed nested struct --print("----generate unamed nested struct----",it.name) @@ -1989,7 +2432,7 @@ function M.Parser() table.insert(commtab,{above=it.prevcomments,sameline=it.comments})--it.comments or "") end - if doheader then + if doheader and not it.opaque_struct then local tst = "\ntypedef struct "..structname.." "..structname..";\n" if check_unique_typedefs(tst,uniques) then --table.insert(outtab,tst) @@ -2000,7 +2443,11 @@ function M.Parser() predeclare = predeclare .. predec .. cleanst end elseif it.re_name == "enum_re" then - --nop + if doheader then + local outtab1 = {} + self:enum_for_header( it, outtab1) + predeclare = predeclare .. table.concat(outtab1) + end elseif it.re_name ~= "functionD_re" and it.re_name ~= "function_re" and it.re_name ~= "operator_re" then print(it.re_name,"not processed clean_struct in",stname,it.item:sub(1,24)) --M.prtable(it) @@ -2013,36 +2460,31 @@ function M.Parser() end return table.concat(outtab,""),stname,outtab,commtab, predeclare end - local function get_parents_name(it) - local parnam = "" - while it.parent do - parnam = it.parent.name.."::"..parnam - it = it.parent - end - return parnam - end - local function get_parents_nameC(it) - local parnam = "" - while it.parent do - parnam = it.parent.name.."::"..parnam - it = it.parent - end - if parnam~="" then parnam = parnam:sub(1,-3) end - return parnam - end + function par:header_text_insert(tab,txt,it) + --print("--header_text_insert",txt)--:sub(1,40)) table.insert(tab, txt) end local function function_parse(self,it) + --print"------------function_parse" local stname = "" local namespace if it.parent then + -- local parr = it.parent + -- it.parent = nil + -- print(parr.re_name,parr.name) + -- M.prtable(it) + -- it.parent = parr if it.parent.re_name == "struct_re" or it.parent.re_name == "typedef_st_re" or it.parent.re_name == "class_re" then stname = it.parent.name + namespace = get_parents_nameC(it) elseif it.parent.re_name == "namespace_re" then namespace = get_parents_nameC(it) --it.parent.name + --print("--function_parse namespace",namespace) end end + --print("--namespace",namespace) + --if namespace == "ax::NodeEditor::Config" then error"debug" end if it.item:match"^%s*template%s+<" then local ttype,fun = it.item:match"^%s*template%s+<%s*typename%s+([^>]+)%s*>%s*(.+)$" if self.ftemplate_list and self.ftemplate_list[ttype] then @@ -2057,6 +2499,51 @@ function M.Parser() self:parseFunction(stname,it,namespace,it.locat) end end + function par:enum_for_header( it,outtab) + --local enumname, enumbody = it.item:match"^%s*enum%s+([^%s;{}]+)[%s\n\r]*(%b{})" + local enumname = it.item:match"^%s*enum%s+([^%s;{}:]+)" + --if enumname and enumname:match":" then print("---enumname",enumname); error"debug" end + if enumname then + --if it's an enum with int type changed + if self.structs_and_enums_table.enumtypes[enumname] then + local enumtype = self.structs_and_enums_table.enumtypes[enumname] + local enumbody = "" + local extraenums = "" + for i,v in ipairs(self.structs_and_enums_table.enums[enumname]) do + if type(v.calc_value)=="string" then + extraenums = extraenums .."\nstatic const "..enumtype.." "..v.name.." = "..v.calc_value..";" + else + enumbody = enumbody .. "\n" ..v.name .."="..v.value.."," + end + end + enumbody = "{"..enumbody.."\n}" + --table.insert(outtab,"\ntypedef enum ".. enumbody..enumname..";"..extraenums) + local it2 = "\ntypedef enum ".. enumbody..enumname..";"..extraenums + self:header_text_insert(outtab, it2, it) + else + local enumbody = it.item:match"(%b{})" + enumbody = clean_comments(enumbody) + --table.insert(outtab,"\ntypedef enum ".. enumbody..enumname..";") + local it2 = "\ntypedef enum ".. enumbody..enumname..";" + self:header_text_insert(outtab, it2, it) + end + if it.parent then + local namespace = get_parents_nameC(it) + self.embeded_enums[enumname] = namespace.."::"..enumname + -- if it.parent.re_name == "namespace_re" then + -- local namespace = it.parent.item:match("namespace%s+(%S+)") + -- self.embeded_enums[enumname] = namespace.."::"..enumname + -- else + --self.embeded_enums[enumname] = it.parent.name.."::"..enumname + -- end + end + else --unamed enum just repeat declaration + local cl_item = clean_comments(it.item) + --table.insert(outtab,cl_item) + self:header_text_insert(outtab, cl_item, it) + print("unnamed enum",cl_item) + end + end function par:gen_structs_and_enums() print"--------------gen_structs_and_enums" --M.prtable(self.typenames) @@ -2064,9 +2551,14 @@ function M.Parser() local outtabpre = {} local typedefs_table = {} self.embeded_enums = {} - --local uniques = {} + --local uniques = {} local processer = function(it) + -- if it.re_name == "enum_re" then + -- it.name = it.item:match"^%s*enum%s+([^%s;{}]+)" + -- end + -- print("gen_structs_and_enums",it.re_name, it.name) + --table.insert(outtab,it.re_name.." "..(it.name or "unkn ")) if it.re_name == "typedef_re" or it.re_name == "functypedef_re" or it.re_name == "vardef_re" then if not it.parent or it.parent.re_name=="namespace_re" then local it2 = it.item @@ -2108,12 +2600,25 @@ function M.Parser() print("--skip extern vardef declaration:",it2) it2 = "" end + if it2:match("using") then + local typedef, assign = it2:match("using%s+([^=%s]+)%s*=%s*([^;]+);") + print("====using",string.format("%q %q",typedef, assign)) + if assign and assign:match"%(%s*%*%s*%)" then --function typedef + it2 = "\ntypedef "..assign:gsub("%(%s*%*%s*%)","(*"..typedef..")")..";" + end + end end --table.insert(outtabpre,it2) --table.insert(outtab,it2) + if it2:match"template" then + it2="" + end self:header_text_insert(outtab, it2, it) -- add typedef after struct name if it.re_name == "vardef_re" and it.item:match"^%s*struct" then + -- print("---------emmbed") + -- print(it.item, it.locat) + -- error"debug" local stname = it.item:match("struct%s*(%S+)%s*;") --table.insert(typedefs_table,"typedef struct "..stname.." "..stname..";\n") local tst = "\ntypedef struct "..stname.." "..stname..";" @@ -2129,48 +2634,20 @@ function M.Parser() end end elseif it.re_name == "enum_re" then - --local enumname, enumbody = it.item:match"^%s*enum%s+([^%s;{}]+)[%s\n\r]*(%b{})" - local enumname = it.item:match"^%s*enum%s+([^%s;{}]+)" - if enumname then - --if it's an enum with int type changed - if self.structs_and_enums_table.enumtypes[enumname] then - local enumtype = self.structs_and_enums_table.enumtypes[enumname] - local enumbody = "" - local extraenums = "" - for i,v in ipairs(self.structs_and_enums_table.enums[enumname]) do - if type(v.calc_value)=="string" then - extraenums = extraenums .."\nstatic const "..enumtype.." "..v.name.." = "..v.calc_value..";" - else - enumbody = enumbody .. "\n" ..v.name .."="..v.value.."," - end - end - enumbody = "{"..enumbody.."\n}" - --table.insert(outtab,"\ntypedef enum ".. enumbody..enumname..";"..extraenums) - local it2 = "\ntypedef enum ".. enumbody..enumname..";"..extraenums - self:header_text_insert(outtab, it2, it) - else - local enumbody = it.item:match"(%b{})" - enumbody = clean_comments(enumbody) - --table.insert(outtab,"\ntypedef enum ".. enumbody..enumname..";") - local it2 = "\ntypedef enum ".. enumbody..enumname..";" - self:header_text_insert(outtab, it2, it) - end - if it.parent then - if it.parent.re_name == "namespace_re" then - local namespace = it.parent.item:match("namespace%s+(%S+)") - self.embeded_enums[enumname] = namespace.."::"..enumname - else - self.embeded_enums[enumname] = it.parent.name.."::"..enumname - end - end - else --unamed enum just repeat declaration - local cl_item = clean_comments(it.item) - --table.insert(outtab,cl_item) - self:header_text_insert(outtab, cl_item, it) - print("unnamed enum",cl_item) + --dont insert child enums as they are inserted before parent struct + if not (it.parent and (it.parent.re_name == "struct_re" or it.parent.re_name == "class_re")) then + --self:header_text_insert(outtab, predec .. cleanst, it) + self:enum_for_header(it,outtab) end + elseif it.re_name == "struct_re" or it.re_name == "typedef_st_re" or it.re_name == "class_re" then + if it.opaque_struct then + --self:header_text_insert(outtab, "\ntypedef struct "..it.name.."* "..it.name.."_opq;\n",it) + self:header_text_insert(outtab, "\ntypedef struct "..it.name.." "..it.name..";\n",it) + else + --self:header_text_insert(outtab,"\n///inittt "..it.name.."\n", it) local cleanst,structname,strtab,comstab,predec = self:clean_structR1(it,true) + --self:header_text_insert(outtab,"\n///endttt "..it.name.."\n", it) if not structname then print("NO NAME",cleanst,it.item) end --if not void stname or templated if structname and not self.typenames[structname] then @@ -2185,25 +2662,30 @@ function M.Parser() end self.typedefs_dict[structname]="struct "..structname --dont insert child structs as they are inserted before parent struct - if not (it.parent and it.parent.re_name == "struct_re") then + if not (it.parent and (it.parent.re_name == "struct_re" or it.parent.re_name == "class_re")) then --table.insert(outtab,predec .. cleanst) self:header_text_insert(outtab, predec .. cleanst, it) end end if it.parent then --and (it.parent.re_name == "struct_re" or it.parent.re_name == "typedef_st_re" then - local embededst = (it.re_name == "struct_re" and it.item:match("struct%s+([^%s{]+)")) - or (it.re_name == "typedef_st_re" and it.item:match("%b{}%s*(%S+)%s*;")) + --local embededst = (it.re_name == "struct_re" and it.item:match("struct%s+([^%s{]+)")) + --or (it.re_name == "typedef_st_re" and it.item:match("%b{}%s*(%S+)%s*;")) + local embededst = (it.re_name == "struct_re" or it.re_name == "class_re") and it.name + --print("--------embedd1",it.re_name, it.name, embededst) --TODO nesting namespace and class if embededst then --discards false which can happen with untagged structs + local embed2 = it.or_name or it.name local parname = get_parents_name(it) if it.parent.re_name == "struct_re" then --needed by cimnodes with struct tag name equals member name - self.embeded_structs[embededst] = "struct "..parname..embededst + self.embeded_structs[embededst] = "struct "..parname..embed2 else - self.embeded_structs[embededst] = parname..embededst + --print("---------embeddd2",parname,embededst) + self.embeded_structs[embededst] = parname..embed2 end end end + end --opaque_struct elseif it.re_name == "namespace_re" or it.re_name == "union_re" or it.re_name == "functype_re" then --nop elseif it.re_name == "functionD_re" or it.re_name == "function_re" then @@ -2226,6 +2708,10 @@ function M.Parser() -- end --check arg detection failure if no name in function declaration check_arg_detection(self.defsT,self.typedefs_dict) + --table.insert(outtabpre,1,"\n/////outtabpre start\n") + --table.insert(outtabpre,"\n/////outtabpre end\n") + --table.insert(outtab,1,"\n/////outtab start\n") + --table.insert(outtab,"\n/////outtab end\n") local outtabprest, outtabst = table.concat(outtabpre,""),table.concat(outtab,"") outtabprest = M.header_subs_nonPOD(self,outtabprest) outtabst = M.header_subs_nonPOD(self,outtabst) @@ -2242,12 +2728,14 @@ function M.Parser() end local functype_re = "^%s*[%w%s%*]+%(%*[%w_]+%)%([^%(%)]*%)" local functype_reex = "^(%s*[%w%s%*]+%(%*)([%w_]+)(%)%([^%(%)]*%))" + if line=="" then table.insert(outtab,{type="nil",name="nil"}) ;return end line = clean_spaces(line) if line:match(functype_re) then local t1,name,t2 = line:match(functype_reex) table.insert(outtab,{type=t1..t2,name=name,comment=comment}) else --split type name1,name2; in several lines + --print(line) local typen,rest = line:match("%s*([^,]+)%s(%S+[,;])") --print(typen,"rest:",rest) if not typen then -- Lets try Type*name @@ -2280,10 +2768,12 @@ function M.Parser() end end end + local unnamed_enum_counter = 0 local function enums_for_table(it, outtab, enumsordered) --local enumname = it.item:match"^%s*enum%s+([^%s;{}]+)" - local enumname = it.item:match"^[^;{}]-enum%s+([^%s;{}]+)" + --local enumname = it.item:match"^[^;{}]-enum%s+([^%s;{}]+)" + local enumname = it.item:match"^%s*enum%s+([^%s;{}:]+)" if not enumname then unnamed_enum_counter = unnamed_enum_counter + 1 enumname = "unnamed"..unnamed_enum_counter @@ -2345,7 +2835,7 @@ function M.Parser() par.enums_for_table = enums_for_table function par:gen_structs_and_enums_table() print"--------------gen_structs_and_enums_table" - local outtab = {enums={},structs={},locations={},enumtypes={},struct_comments={},enum_comments={}} + local outtab = {enums={},structs={},locations={},enumtypes={},struct_comments={},enum_comments={},opaque_structs={}} --self.typedefs_table = {} local enumsordered = {} unnamed_enum_counter = 0 @@ -2408,6 +2898,7 @@ function M.Parser() enums_for_table(it, outtab, enumsordered) elseif it.re_name == "struct_re" or it.re_name == "typedef_st_re" or it.re_name == "class_re" then local cleanst,structname,strtab,comstab = self:clean_structR1(it) + if it.name then outtab.opaque_structs[it.name] = it.opaque_struct end --if not void stname or templated if not structname then print("NO NAME",cleanst,it.item) end if structname and not self.typenames[structname] then @@ -2415,28 +2906,38 @@ function M.Parser() outtab.struct_comments[structname] = {sameline=it.comments,above=it.prevcomments} outtab.struct_comments[structname] = next(outtab.struct_comments[structname]) and outtab.struct_comments[structname] or nil outtab.locations[structname] = it.locat + if strtab then for j=3,#strtab-1 do self:parse_struct_line(strtab[j],outtab.structs[structname],comstab[j]) end - else + end + -- if structname == "Change" then + -- print(it.item) + -- M.prtable(outtab.structs[structname]) + -- end + else --self.typenames[structname] + --M.prtable("--self.typenames",structname,self.typenames[structname]) + --M.prtable("strtab 3, -1",strtab) --templated struct if structname then print("saving templated struct",structname) self.templated_structs[structname] = {} + if strtab then for j=3,#strtab-1 do self:parse_struct_line(strtab[j],self.templated_structs[structname],comstab[j]) end - --M.prtable(self.templated_structs[structname]) + end + --M.prtable("--template_structs",structname,self.templated_structs[structname]) else print("skipped unnamed struct",structname) end end elseif it.re_name == "namespace_re" or it.re_name == "union_re" or it.re_name == "functype_re" then --nop - elseif it.re_name ~= "functionD_re" or it.re_name ~= "function_re" then + elseif it.re_name == "functionD_re" or it.re_name == "function_re" then function_parse(self,it) elseif it.re_name ~= "operator_re" then - print("not processed gen table",it.re_name) + print("---not processed gen table",it.re_name) end end @@ -2521,6 +3022,7 @@ function M.Parser() table.insert(strt,"----------------overloadings---------------------------") --require"anima.utils" M.table_do_sorted(self.defsT, function(k,v) + if k:match":" then error(k) end get_types(v) if #v > 1 then numoverloaded = numoverloaded + #v @@ -2687,7 +3189,11 @@ function M.Parser() end function par:gen_template_typedef_auto(ttype,te,newte) --M.prtable(self.templated_structs) - assert(self.templated_structs[ttype],ttype) + --assert(self.templated_structs[ttype],ttype) + if not self.templated_structs[ttype] then + print("----gentemplatetypedef failed for", ttype) + return "" + end local defi = self.templated_structs[ttype] local Targ = strsplit(self.typenames[ttype],",") local defa = {} @@ -2728,6 +3234,32 @@ function M.Parser() end return table.concat(precode).."\ntypedef struct "..ttype.."_"..newte.." {"..table.concat(code).."} "..ttype.."_"..newte..";\n" end + --generate cimgui.cpp cimgui.h + function par:cimgui_generation( cimgui_header) + local name = self.modulename + local hstrfile = read_data("./"..name.."_template.h") + M.prtable("templates",self.templates) + M.prtable("typenames",self.typenames) + local outpre,outpost = self.structs_and_enums[1], self.structs_and_enums[2] + local tdt = self:generate_templates() + M.prtable("generate_templates",tdt) + local cstructsstr = outpre..tdt..outpost + + hstrfile = hstrfile:gsub([[#include "imgui_structs%.h"]],cstructsstr) + hstrfile = hstrfile:gsub([[PLACE_STRUCTS_C]],self:gen_structs_c()) + local cfuncsstr = M.func_header_generate(self) + hstrfile = hstrfile:gsub([[#include "auto_funcs%.h"]],cfuncsstr) + save_data("./output/"..name..".h",cimgui_header,hstrfile) + + --merge it in cimplot_template.cpp to cimplot.cpp + local cimplem = M.func_implementation(self) + + local hstrfile = read_data("./"..name.."_template.cpp") + + hstrfile = hstrfile:gsub([[#include "auto_funcs%.cpp"]],cimplem) + save_data("./output/"..name..".cpp",cimgui_header,hstrfile) + + end return par end -- more compact serialization @@ -2941,10 +3473,12 @@ local function location(file,locpathT,defines,COMPILER,keepemptylines) -- Is this a location pragma? local loc_num_t,location_match = line:match(location_re) if location_match then + --print(location_match) in_location = false for i,path_re in ipairs(path_reT) do local locpath = location_match:match(path_re) - if locpath then + if locpath then + --print("locpath",locpath) in_location = true; loc_num = loc_num_t loc_num_incr = 0 @@ -3009,7 +3543,7 @@ local function ImGui_f_implementation(def) table.insert(outtab,"CIMGUI_API".." "..def.ret.." "..def.ov_cimguiname..def.args.."\n") table.insert(outtab,"{\n") local namespace = def.namespace and def.namespace.."::" or "" - namespace = def.is_static_function and namespace..def.stname.."::" or namespace + --namespace = def.is_static_function and namespace..def.stname.."::" or namespace if def.isvararg then local call_args = def.call_args:gsub("%.%.%.","args") table.insert(outtab," va_list args;\n") @@ -3037,6 +3571,12 @@ local function ImGui_f_implementation(def) insert(outtab," return ConvertFromCPP_"..def.conv.."("..namespace..def.funcname..def.call_args..");\n") elseif def.nonUDT == 2 then insert(outtab," return reinterpret_cast<"..def.ret..">("..ptret..namespace..def.funcname..def.call_args..");\n") + elseif def.nonUDT == "string" then + insert(outtab," static std::string str = "..ptret..namespace..def.funcname..def.call_args..";\n") + insert(outtab," return str.c_str();\n") + elseif def.nonUDT == "opaque" then + insert(outtab," static auto opq = "..ptret..namespace..def.funcname..def.call_args..";\n") + insert(outtab," return &opq;\n") end table.insert(outtab,"}\n") else --standard ImGui @@ -3075,6 +3615,12 @@ local function struct_f_implementation(def) insert(outtab," return ConvertFromCPP_"..def.conv.."(self->"..def.funcname..def.call_args..");\n") elseif def.nonUDT == 2 then insert(outtab," return reinterpret_cast<"..def.ret..">("..ptret.."self->"..def.funcname..def.call_args..");\n") + elseif def.nonUDT == "string" then + insert(outtab," static std::string str = "..ptret.."self->"..def.funcname..def.call_args..";\n") + insert(outtab," return str.c_str();\n") + elseif def.nonUDT == "opaque" then + insert(outtab," static auto opq = "..ptret.."self->"..def.funcname..def.call_args..";\n") + insert(outtab," return &opq;\n") end else --standard struct table.insert(outtab," return "..ptret.."self->"..def.funcname..def.call_args..";\n") @@ -3096,7 +3642,9 @@ local function func_implementation(FP) custom = FP.custom_implementation(outtab, def, FP) end local manual = FP.get_manuals(def) - if not custom and not manual and not def.templated and not FP.get_skipped(def) then + if not custom and not manual and not def.templated and not FP.get_skipped(def) + and not (FP.opaque_structs[def.stname] and not def.is_static_function) + then if def.constructor then local tab = {} assert(def.stname ~= "","constructor without struct") @@ -3155,17 +3703,32 @@ local function func_header_generate_structs(FP) local outtab = {}--"\n/////func_header_generate_structs\n"} table_do_sorted(FP.embeded_structs,function(k,v) - table.insert(outtab,"typedef "..v.." "..k..";\n") + if not FP.typenames[k] then + print("embeded",k,v) + table.insert(outtab,"typedef "..v.." "..k..";\n") + end end) table_do_sorted(FP.embeded_enums,function(k,v) table.insert(outtab,"typedef "..v.." "..k..";\n") end) - + --table.insert(outtab, "\n//////////templates\n") table_do_sorted(FP.templates,function(ttype,v) - table_do_sorted(v,function(ttypein,te) - local ttype2 = ttype:gsub("::","_") --std::string - table.insert(outtab,"typedef "..ttype.."<"..ttypein.."> "..ttype2.."_"..te..";\n") - end) + --print("func_header_generate_structs",ttype) + if not (ttype == "std::function") then + table_do_sorted(v,function(ttypein,te) + local ttype2 = ttype:gsub("::","_") --std::string + table.insert(outtab,"typedef "..ttype.."<"..ttypein.."> "..ttype2.."_"..te..";\n") + end) + end end) + --M.prtable(FP.typenames) + table_do_sorted(FP.opaque_structs,function(k,v) + if not FP.typenames[k] then + table.insert(outtab,"typedef "..v.." "..k..";\n") + --table.insert(outtab,"typedef const "..v.."* "..k.."_opq;\n") + --table.insert(outtab,"typedef "..v.."* "..k.."_opq;\n") + end + end) + --table.insert(outtab, "\n//////////end func header\n") return outtab end M.func_header_generate_structs = func_header_generate_structs @@ -3186,7 +3749,8 @@ local function func_header_generate_funcs(FP) custom = FP.custom_header(outtab, def) end local manual = FP.get_manuals(def) - if not custom and not manual and not def.templated and not FP.get_skipped(def) then + if not custom and not manual and not def.templated and not FP.get_skipped(def) and + not (FP.opaque_structs[def.stname] and not def.is_static_function) then local addcoment = "" --def.comment or "" local empty = def.args:match("^%(%)") --no args @@ -3244,6 +3808,55 @@ local function func_header_generate(FP) end M.func_header_generate = func_header_generate +function M.GetScriptArgs(defines,...) + assert(_VERSION=='Lua 5.1',"Must use LuaJIT") + assert(bit,"Must use LuaJIT") + local script_args = {...} + local COMPILER = script_args[1] + local INTERNAL_GENERATION = (script_args[2] and script_args[2]:match("internal")) and true or false + local COMMENTS_GENERATION = (script_args[2] and script_args[2]:match("comments")) and true or false + + local predefine = COMPILER == "cl" and "/D" or "-D" + local defines_str = "" + for i,define in ipairs(defines) do + defines_str = defines_str .. " "..predefine..define + end + + local CPRE,CTEST + if COMPILER == "gcc" or COMPILER == "clang" or COMPILER == "g++" then + CPRE = COMPILER..[[ -E -dD -std=c++17 -DIMGUI_DISABLE_OBSOLETE_FUNCTIONS -DIMGUI_API="" ]]..defines_str ---std=c++17 + CTEST = COMPILER.." --version" + elseif COMPILER == "cl" then + CPRE = COMPILER..[[ /E /d1PP /DIMGUI_DISABLE_OBSOLETE_FUNCTIONS /DIMGUI_API="" ]]..defines_str + CTEST = COMPILER + else + print("Working without compiler ") + error("cant work with "..COMPILER.." compiler") + end + --test compiler present + local HAVE_COMPILER = false + + local pipe,err = io.popen(CTEST,"r") + if pipe then + local str = pipe:read"*a" + print(str) + pipe:close() + if str=="" then + HAVE_COMPILER = false + else + HAVE_COMPILER = true + end + else + HAVE_COMPILER = false + print(err) + end + assert(HAVE_COMPILER,"gcc, clang or cl needed to run script") + + print("HAVE_COMPILER",HAVE_COMPILER) + print("INTERNAL_GENERATION",INTERNAL_GENERATION) + + return COMPILER, CPRE, INTERNAL_GENERATION,COMMENTS_GENERATION +end --[=[ -- tests diff --git a/generator/generator.lua b/generator/generator.lua index b786dfa..edd7fa7 100644 --- a/generator/generator.lua +++ b/generator/generator.lua @@ -120,10 +120,13 @@ local save_data = cpp2ffi.save_data local copyfile = cpp2ffi.copyfile local serializeTableF = cpp2ffi.serializeTableF -local function func_header_impl_generate(FP) +local function func_header_impl_generate(FP, defines) local outtab = {} - + --may be key sorting is not enough and declaration order needed + cpp2ffi.table_do_sorted(defines, function(k,v) + table.insert(outtab,"#define "..k.." "..v.."\n") + end) -- for _,t in ipairs(FP.funcdefs) do -- if t.cimguiname then -- local cimf = FP.defsT[t.cimguiname] @@ -286,6 +289,7 @@ local function cimgui_generation(parser) local tdt = parser:generate_templates() + cpp2ffi.prtable("generate_templates",tdt) local cstructsstr = outpre..tdt..outpost if gdefines.IMGUI_HAS_DOCK then @@ -379,16 +383,15 @@ end local function parseImGuiHeader(header,names) --prepare parser local parser = cpp2ffi.Parser() - + parser.modulename = "cimgui" parser.getCname = function(stname,funcname,namespace) local pre = (stname == "") and (namespace and (namespace=="ImGui" and "ig" or namespace.."_") or "ig") or stname.."_" return pre..funcname end parser.cname_overloads = cimgui_overloads - --parser.manuals = cimgui_manuals parser:set_manuals(cimgui_manuals, "cimgui") parser.skipped = cimgui_skipped - parser.UDTs = {"ImVec2","ImVec4","ImColor","ImRect"} + --parser.UDTs = {"ImVec2","ImVec4","ImColor","ImRect"} --parser.gen_template_typedef = gen_template_typedef --use auto parser.COMMENTS_GENERATION = COMMENTS_GENERATION parser.CONSTRUCTORS_GENERATION = CONSTRUCTORS_GENERATION @@ -457,7 +460,11 @@ if ff then else backends_folder = IMGUI_PATH .. "/backends/" end - +local function getCname(stname,funcname, namespace) + if #stname == 0 then return funcname end --top level + local pre = stname.."_" + return pre..funcname + end local parser2 if #implementations > 0 then @@ -489,13 +496,15 @@ if #implementations > 0 then end end parser2.cimgui_inherited = dofile([[./output/structs_and_enums.lua]]) + parser2.getCname = getCname local defines = parser2:take_lines(CPRE..extra_defines..extra_includes..source, {locati}, COMPILER) - + local parser3 = cpp2ffi.Parser() + parser3.getCname = getCname parser3.cimgui_inherited = dofile([[./output/structs_and_enums.lua]]) - parser3:take_lines(CPRE..extra_defines..extra_includes..source, {locati}, COMPILER) + local defines = parser3:take_lines(CPRE..extra_defines..extra_includes..source, {locati}, COMPILER) parser3:do_parse() - local cfuncsstr = func_header_impl_generate(parser3) + local cfuncsstr = func_header_impl_generate(parser3, defines) local cstructstr1,cstructstr2 = parser3.structs_and_enums[1], parser3.structs_and_enums[2] local cstru = cstructstr1 .. cstructstr2 if cstru ~="" then @@ -547,9 +556,5 @@ if parser2 then save_data("./output/impl_definitions.json",json.encode(json_prepare(parser2.defsT),{dict_on_empty={defaults=true}})) end --]] --------------------copy C files to repo root -copyfile("./output/cimgui.h", "../cimgui.h") -copyfile("./output/cimgui.cpp", "../cimgui.cpp") -os.remove("./output/cimgui.h") -os.remove("./output/cimgui.cpp") + print"all done!!" diff --git a/generator/output/constants.json b/generator/output/constants.json index 90af53e..46c3dc8 100644 --- a/generator/output/constants.json +++ b/generator/output/constants.json @@ -19,8 +19,8 @@ "IMGUI_TABLE_MAX_COLUMNS": "512", "IMGUI_TEST_ENGINE_ITEM_ADD(_ID,_BB,_ITEM_DATA)": "((void)0)", "IMGUI_TEST_ENGINE_ITEM_INFO(_ID,_LABEL,_FLAGS)": "((void)g)", - "IMGUI_VERSION": "\"1.92.7\"", - "IMGUI_VERSION_NUM": "19270", + "IMGUI_VERSION": "\"1.92.8\"", + "IMGUI_VERSION_NUM": "19280", "IMGUI_WINDOW_HARD_MIN_SIZE": "4.0f", "IMSTB_TEXTEDIT_CHARTYPE": "char", "IMSTB_TEXTEDIT_GETWIDTH_NEWLINE": "(-1.0f)", @@ -83,7 +83,6 @@ "ImAtof(STR)": "atof(STR)", "ImCeil(X)": "ceilf(X)", "ImCos(X)": "cosf(X)", - "ImDrawCallback_ResetRenderState": "(ImDrawCallback)(-8)", "ImFabs(X)": "fabsf(X)", "ImFmod(X,Y)": "fmodf((X), (Y))", "ImFontAtlasRectId_GenerationMask_": "(0x3FF00000)", diff --git a/generator/output/constants.lua b/generator/output/constants.lua index 721c7ec..c4bbaa7 100644 --- a/generator/output/constants.lua +++ b/generator/output/constants.lua @@ -19,8 +19,8 @@ local t={ IMGUI_TABLE_MAX_COLUMNS="512", ["IMGUI_TEST_ENGINE_ITEM_ADD(_ID,_BB,_ITEM_DATA)"]="((void)0)", ["IMGUI_TEST_ENGINE_ITEM_INFO(_ID,_LABEL,_FLAGS)"]="((void)g)", - IMGUI_VERSION="\"1.92.7\"", - IMGUI_VERSION_NUM="19270", + IMGUI_VERSION="\"1.92.8\"", + IMGUI_VERSION_NUM="19280", IMGUI_WINDOW_HARD_MIN_SIZE="4.0f", IMSTB_TEXTEDIT_CHARTYPE="char", IMSTB_TEXTEDIT_GETWIDTH_NEWLINE="(-1.0f)", @@ -83,7 +83,6 @@ local t={ ["ImAtof(STR)"]="atof(STR)", ["ImCeil(X)"]="ceilf(X)", ["ImCos(X)"]="cosf(X)", - ImDrawCallback_ResetRenderState="(ImDrawCallback)(-8)", ["ImFabs(X)"]="fabsf(X)", ["ImFmod(X,Y)"]="fmodf((X), (Y))", ImFontAtlasRectId_GenerationMask_="(0x3FF00000)", diff --git a/generator/output/definitions.json b/generator/output/definitions.json index 933325b..407f84d 100644 --- a/generator/output/definitions.json +++ b/generator/output/definitions.json @@ -14,7 +14,8 @@ "cimguiname": "ImBitArray_ClearAllBits", "defaults": {}, "funcname": "ClearAllBits", - "location": "imgui_internal:648", + "location": "imgui_internal:654", + "namespace": "ImBitArray", "ov_cimguiname": "ImBitArray_ClearAllBits", "ret": "void", "signature": "()", @@ -41,7 +42,8 @@ "cimguiname": "ImBitArray_ClearBit", "defaults": {}, "funcname": "ClearBit", - "location": "imgui_internal:652", + "location": "imgui_internal:658", + "namespace": "ImBitArray", "ov_cimguiname": "ImBitArray_ClearBit", "ret": "void", "signature": "(int)", @@ -60,7 +62,8 @@ "constructor": true, "defaults": {}, "funcname": "ImBitArray", - "location": "imgui_internal:647", + "location": "imgui_internal:653", + "namespace": "ImBitArray", "ov_cimguiname": "ImBitArray_ImBitArray", "signature": "()", "stname": "ImBitArray", @@ -82,7 +85,8 @@ "cimguiname": "ImBitArray_SetAllBits", "defaults": {}, "funcname": "SetAllBits", - "location": "imgui_internal:649", + "location": "imgui_internal:655", + "namespace": "ImBitArray", "ov_cimguiname": "ImBitArray_SetAllBits", "ret": "void", "signature": "()", @@ -109,7 +113,8 @@ "cimguiname": "ImBitArray_SetBit", "defaults": {}, "funcname": "SetBit", - "location": "imgui_internal:651", + "location": "imgui_internal:657", + "namespace": "ImBitArray", "ov_cimguiname": "ImBitArray_SetBit", "ret": "void", "signature": "(int)", @@ -140,7 +145,8 @@ "cimguiname": "ImBitArray_SetBitRange", "defaults": {}, "funcname": "SetBitRange", - "location": "imgui_internal:653", + "location": "imgui_internal:659", + "namespace": "ImBitArray", "ov_cimguiname": "ImBitArray_SetBitRange", "ret": "void", "signature": "(int,int)", @@ -167,7 +173,8 @@ "cimguiname": "ImBitArray_TestBit", "defaults": {}, "funcname": "TestBit", - "location": "imgui_internal:650", + "location": "imgui_internal:656", + "namespace": "ImBitArray", "ov_cimguiname": "ImBitArray_TestBit", "ret": "bool", "signature": "(int)const", @@ -188,7 +195,7 @@ "cimguiname": "ImBitArray_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:647", + "location": "imgui_internal:653", "ov_cimguiname": "ImBitArray_destroy", "ret": "void", "signature": "(ImBitArray*)", @@ -211,7 +218,8 @@ "cimguiname": "ImBitVector_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:663", + "location": "imgui_internal:669", + "namespace": "ImBitVector", "ov_cimguiname": "ImBitVector_Clear", "ret": "void", "signature": "()", @@ -237,7 +245,8 @@ "cimguiname": "ImBitVector_ClearBit", "defaults": {}, "funcname": "ClearBit", - "location": "imgui_internal:666", + "location": "imgui_internal:672", + "namespace": "ImBitVector", "ov_cimguiname": "ImBitVector_ClearBit", "ret": "void", "signature": "(int)", @@ -263,7 +272,8 @@ "cimguiname": "ImBitVector_Create", "defaults": {}, "funcname": "Create", - "location": "imgui_internal:662", + "location": "imgui_internal:668", + "namespace": "ImBitVector", "ov_cimguiname": "ImBitVector_Create", "ret": "void", "signature": "(int)", @@ -289,7 +299,8 @@ "cimguiname": "ImBitVector_SetBit", "defaults": {}, "funcname": "SetBit", - "location": "imgui_internal:665", + "location": "imgui_internal:671", + "namespace": "ImBitVector", "ov_cimguiname": "ImBitVector_SetBit", "ret": "void", "signature": "(int)", @@ -315,7 +326,8 @@ "cimguiname": "ImBitVector_TestBit", "defaults": {}, "funcname": "TestBit", - "location": "imgui_internal:664", + "location": "imgui_internal:670", + "namespace": "ImBitVector", "ov_cimguiname": "ImBitVector_TestBit", "ret": "bool", "signature": "(int)const", @@ -341,7 +353,8 @@ "cimguiname": "ImChunkStream_alloc_chunk", "defaults": {}, "funcname": "alloc_chunk", - "location": "imgui_internal:800", + "location": "imgui_internal:806", + "namespace": "ImChunkStream", "ov_cimguiname": "ImChunkStream_alloc_chunk", "ret": "T*", "signature": "(size_t)", @@ -364,7 +377,8 @@ "cimguiname": "ImChunkStream_begin", "defaults": {}, "funcname": "begin", - "location": "imgui_internal:801", + "location": "imgui_internal:807", + "namespace": "ImChunkStream", "ov_cimguiname": "ImChunkStream_begin", "ret": "T*", "signature": "()", @@ -391,7 +405,8 @@ "cimguiname": "ImChunkStream_chunk_size", "defaults": {}, "funcname": "chunk_size", - "location": "imgui_internal:803", + "location": "imgui_internal:809", + "namespace": "ImChunkStream", "ov_cimguiname": "ImChunkStream_chunk_size", "ret": "int", "signature": "(const T*)", @@ -414,7 +429,8 @@ "cimguiname": "ImChunkStream_clear", "defaults": {}, "funcname": "clear", - "location": "imgui_internal:797", + "location": "imgui_internal:803", + "namespace": "ImChunkStream", "ov_cimguiname": "ImChunkStream_clear", "ret": "void", "signature": "()", @@ -437,7 +453,8 @@ "cimguiname": "ImChunkStream_empty", "defaults": {}, "funcname": "empty", - "location": "imgui_internal:798", + "location": "imgui_internal:804", + "namespace": "ImChunkStream", "ov_cimguiname": "ImChunkStream_empty", "ret": "bool", "signature": "()const", @@ -460,7 +477,8 @@ "cimguiname": "ImChunkStream_end", "defaults": {}, "funcname": "end", - "location": "imgui_internal:804", + "location": "imgui_internal:810", + "namespace": "ImChunkStream", "ov_cimguiname": "ImChunkStream_end", "ret": "T*", "signature": "()", @@ -487,7 +505,8 @@ "cimguiname": "ImChunkStream_next_chunk", "defaults": {}, "funcname": "next_chunk", - "location": "imgui_internal:802", + "location": "imgui_internal:808", + "namespace": "ImChunkStream", "ov_cimguiname": "ImChunkStream_next_chunk", "ret": "T*", "signature": "(T*)", @@ -514,7 +533,8 @@ "cimguiname": "ImChunkStream_offset_from_ptr", "defaults": {}, "funcname": "offset_from_ptr", - "location": "imgui_internal:805", + "location": "imgui_internal:811", + "namespace": "ImChunkStream", "ov_cimguiname": "ImChunkStream_offset_from_ptr", "ret": "int", "signature": "(const T*)", @@ -541,7 +561,8 @@ "cimguiname": "ImChunkStream_ptr_from_offset", "defaults": {}, "funcname": "ptr_from_offset", - "location": "imgui_internal:806", + "location": "imgui_internal:812", + "namespace": "ImChunkStream", "ov_cimguiname": "ImChunkStream_ptr_from_offset", "ret": "T*", "signature": "(int)", @@ -564,7 +585,8 @@ "cimguiname": "ImChunkStream_size", "defaults": {}, "funcname": "size", - "location": "imgui_internal:799", + "location": "imgui_internal:805", + "namespace": "ImChunkStream", "ov_cimguiname": "ImChunkStream_size", "ret": "int", "signature": "()const", @@ -583,6 +605,7 @@ { "name": "rhs", "reftoptr": true, + "template_orig": "ImChunkStream& rhs", "type": "ImChunkStream_T *" } ], @@ -592,7 +615,8 @@ "cimguiname": "ImChunkStream_swap", "defaults": {}, "funcname": "swap", - "location": "imgui_internal:807", + "location": "imgui_internal:813", + "namespace": "ImChunkStream", "ov_cimguiname": "ImChunkStream_swap", "ret": "void", "signature": "(ImChunkStream_T *)", @@ -631,7 +655,8 @@ }, "funcname": "HSV", "is_static_function": true, - "location": "imgui:2982", + "location": "imgui:2985", + "namespace": "ImColor", "nonUDT": 1, "ov_cimguiname": "ImColor_HSV", "ret": "ImColor_c", @@ -650,7 +675,8 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2972", + "location": "imgui:2975", + "namespace": "ImColor", "ov_cimguiname": "ImColor_ImColor_Nil", "signature": "()", "stname": "ImColor" @@ -684,7 +710,8 @@ "a": "1.0f" }, "funcname": "ImColor", - "location": "imgui:2973", + "location": "imgui:2976", + "namespace": "ImColor", "ov_cimguiname": "ImColor_ImColor_Float", "signature": "(float,float,float,float)", "stname": "ImColor" @@ -704,7 +731,8 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2974", + "location": "imgui:2977", + "namespace": "ImColor", "ov_cimguiname": "ImColor_ImColor_Vec4", "signature": "(const ImVec4)", "stname": "ImColor" @@ -738,7 +766,8 @@ "a": "255" }, "funcname": "ImColor", - "location": "imgui:2975", + "location": "imgui:2978", + "namespace": "ImColor", "ov_cimguiname": "ImColor_ImColor_Int", "signature": "(int,int,int,int)", "stname": "ImColor" @@ -758,7 +787,8 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2976", + "location": "imgui:2979", + "namespace": "ImColor", "ov_cimguiname": "ImColor_ImColor_U32", "signature": "(ImU32)", "stname": "ImColor" @@ -797,7 +827,8 @@ "a": "1.0f" }, "funcname": "SetHSV", - "location": "imgui:2981", + "location": "imgui:2984", + "namespace": "ImColor", "ov_cimguiname": "ImColor_SetHSV", "ret": "void", "signature": "(float,float,float,float)", @@ -817,7 +848,7 @@ "cimguiname": "ImColor_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2972", + "location": "imgui:2975", "ov_cimguiname": "ImColor_destroy", "ret": "void", "signature": "(ImColor*)", @@ -839,7 +870,8 @@ "cimguiname": "ImDrawCmd_GetTexID", "defaults": {}, "funcname": "GetTexID", - "location": "imgui:3196", + "location": "imgui:3193", + "namespace": "ImDrawCmd", "ov_cimguiname": "ImDrawCmd_GetTexID", "ret": "ImTextureID", "signature": "()const", @@ -857,7 +889,8 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawCmd", - "location": "imgui:3192", + "location": "imgui:3189", + "namespace": "ImDrawCmd", "ov_cimguiname": "ImDrawCmd_ImDrawCmd", "signature": "()", "stname": "ImDrawCmd" @@ -876,7 +909,7 @@ "cimguiname": "ImDrawCmd_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3192", + "location": "imgui:3189", "ov_cimguiname": "ImDrawCmd_destroy", "ret": "void", "signature": "(ImDrawCmd*)", @@ -894,7 +927,8 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawDataBuilder", - "location": "imgui_internal:892", + "location": "imgui_internal:898", + "namespace": "ImDrawDataBuilder", "ov_cimguiname": "ImDrawDataBuilder_ImDrawDataBuilder", "signature": "()", "stname": "ImDrawDataBuilder" @@ -913,7 +947,7 @@ "cimguiname": "ImDrawDataBuilder_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:892", + "location": "imgui_internal:898", "ov_cimguiname": "ImDrawDataBuilder_destroy", "ret": "void", "signature": "(ImDrawDataBuilder*)", @@ -939,7 +973,8 @@ "cimguiname": "ImDrawData_AddDrawList", "defaults": {}, "funcname": "AddDrawList", - "location": "imgui:3461", + "location": "imgui:3468", + "namespace": "ImDrawData", "ov_cimguiname": "ImDrawData_AddDrawList", "ret": "void", "signature": "(ImDrawList*)", @@ -961,7 +996,8 @@ "cimguiname": "ImDrawData_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:3460", + "location": "imgui:3467", + "namespace": "ImDrawData", "ov_cimguiname": "ImDrawData_Clear", "ret": "void", "signature": "()", @@ -983,7 +1019,8 @@ "cimguiname": "ImDrawData_DeIndexAllBuffers", "defaults": {}, "funcname": "DeIndexAllBuffers", - "location": "imgui:3462", + "location": "imgui:3469", + "namespace": "ImDrawData", "ov_cimguiname": "ImDrawData_DeIndexAllBuffers", "ret": "void", "signature": "()", @@ -1001,7 +1038,8 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawData", - "location": "imgui:3459", + "location": "imgui:3466", + "namespace": "ImDrawData", "ov_cimguiname": "ImDrawData_ImDrawData", "signature": "()", "stname": "ImDrawData" @@ -1026,7 +1064,8 @@ "cimguiname": "ImDrawData_ScaleClipRects", "defaults": {}, "funcname": "ScaleClipRects", - "location": "imgui:3463", + "location": "imgui:3470", + "namespace": "ImDrawData", "ov_cimguiname": "ImDrawData_ScaleClipRects", "ret": "void", "signature": "(const ImVec2)", @@ -1046,7 +1085,7 @@ "cimguiname": "ImDrawData_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3459", + "location": "imgui:3466", "ov_cimguiname": "ImDrawData_destroy", "ret": "void", "signature": "(ImDrawData*)", @@ -1064,7 +1103,8 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawListSharedData", - "location": "imgui_internal:882", + "location": "imgui_internal:888", + "namespace": "ImDrawListSharedData", "ov_cimguiname": "ImDrawListSharedData_ImDrawListSharedData", "signature": "()", "stname": "ImDrawListSharedData" @@ -1089,7 +1129,8 @@ "cimguiname": "ImDrawListSharedData_SetCircleTessellationMaxError", "defaults": {}, "funcname": "SetCircleTessellationMaxError", - "location": "imgui_internal:884", + "location": "imgui_internal:890", + "namespace": "ImDrawListSharedData", "ov_cimguiname": "ImDrawListSharedData_SetCircleTessellationMaxError", "ret": "void", "signature": "(float)", @@ -1109,7 +1150,7 @@ "cimguiname": "ImDrawListSharedData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:883", + "location": "imgui_internal:889", "ov_cimguiname": "ImDrawListSharedData_destroy", "realdestructor": true, "ret": "void", @@ -1132,7 +1173,8 @@ "cimguiname": "ImDrawListSplitter_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:3240", + "location": "imgui:3237", + "namespace": "ImDrawListSplitter", "ov_cimguiname": "ImDrawListSplitter_Clear", "ret": "void", "signature": "()", @@ -1154,7 +1196,8 @@ "cimguiname": "ImDrawListSplitter_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui:3241", + "location": "imgui:3238", + "namespace": "ImDrawListSplitter", "ov_cimguiname": "ImDrawListSplitter_ClearFreeMemory", "ret": "void", "signature": "()", @@ -1172,7 +1215,8 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawListSplitter", - "location": "imgui:3238", + "location": "imgui:3235", + "namespace": "ImDrawListSplitter", "ov_cimguiname": "ImDrawListSplitter_ImDrawListSplitter", "signature": "()", "stname": "ImDrawListSplitter" @@ -1197,7 +1241,8 @@ "cimguiname": "ImDrawListSplitter_Merge", "defaults": {}, "funcname": "Merge", - "location": "imgui:3243", + "location": "imgui:3240", + "namespace": "ImDrawListSplitter", "ov_cimguiname": "ImDrawListSplitter_Merge", "ret": "void", "signature": "(ImDrawList*)", @@ -1227,7 +1272,8 @@ "cimguiname": "ImDrawListSplitter_SetCurrentChannel", "defaults": {}, "funcname": "SetCurrentChannel", - "location": "imgui:3244", + "location": "imgui:3241", + "namespace": "ImDrawListSplitter", "ov_cimguiname": "ImDrawListSplitter_SetCurrentChannel", "ret": "void", "signature": "(ImDrawList*,int)", @@ -1257,7 +1303,8 @@ "cimguiname": "ImDrawListSplitter_Split", "defaults": {}, "funcname": "Split", - "location": "imgui:3242", + "location": "imgui:3239", + "namespace": "ImDrawListSplitter", "ov_cimguiname": "ImDrawListSplitter_Split", "ret": "void", "signature": "(ImDrawList*,int)", @@ -1277,7 +1324,7 @@ "cimguiname": "ImDrawListSplitter_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3239", + "location": "imgui:3236", "ov_cimguiname": "ImDrawListSplitter_destroy", "realdestructor": true, "ret": "void", @@ -1330,7 +1377,8 @@ "num_segments": "0" }, "funcname": "AddBezierCubic", - "location": "imgui:3345", + "location": "imgui:3344", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddBezierCubic", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1378,7 +1426,8 @@ "num_segments": "0" }, "funcname": "AddBezierQuadratic", - "location": "imgui:3346", + "location": "imgui:3345", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddBezierQuadratic", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1406,15 +1455,17 @@ "type": "size_t" } ], - "argsoriginal": "(ImDrawCallback callback,void* userdata,size_t userdata_size=0)", + "argsoriginal": "(ImDrawCallback callback,void* userdata=((void*)0),size_t userdata_size=0)", "call_args": "(callback,userdata,userdata_size)", "call_args_old": "(callback,userdata,userdata_size)", "cimguiname": "ImDrawList_AddCallback", "defaults": { + "userdata": "NULL", "userdata_size": "0" }, "funcname": "AddCallback", "location": "imgui:3388", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddCallback", "ret": "void", "signature": "(ImDrawCallback,void*,size_t)", @@ -1459,7 +1510,8 @@ "thickness": "1.0f" }, "funcname": "AddCircle", - "location": "imgui:3337", + "location": "imgui:3336", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddCircle", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -1499,7 +1551,8 @@ "num_segments": "0" }, "funcname": "AddCircleFilled", - "location": "imgui:3338", + "location": "imgui:3337", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddCircleFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", @@ -1533,7 +1586,8 @@ "cimguiname": "ImDrawList_AddConcavePolyFilled", "defaults": {}, "funcname": "AddConcavePolyFilled", - "location": "imgui:3353", + "location": "imgui:3352", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddConcavePolyFilled", "ret": "void", "signature": "(const ImVec2*,int,ImU32)", @@ -1567,7 +1621,8 @@ "cimguiname": "ImDrawList_AddConvexPolyFilled", "defaults": {}, "funcname": "AddConvexPolyFilled", - "location": "imgui:3352", + "location": "imgui:3351", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddConvexPolyFilled", "ret": "void", "signature": "(const ImVec2*,int,ImU32)", @@ -1590,6 +1645,7 @@ "defaults": {}, "funcname": "AddDrawCmd", "location": "imgui:3391", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddDrawCmd", "ret": "void", "signature": "()", @@ -1639,7 +1695,8 @@ "thickness": "1.0f" }, "funcname": "AddEllipse", - "location": "imgui:3341", + "location": "imgui:3340", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddEllipse", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,int,float)", @@ -1684,7 +1741,8 @@ "rot": "0.0f" }, "funcname": "AddEllipseFilled", - "location": "imgui:3342", + "location": "imgui:3341", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddEllipseFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,int)", @@ -1734,7 +1792,8 @@ "uv_min": "ImVec2(0,0)" }, "funcname": "AddImage", - "location": "imgui:3359", + "location": "imgui:3358", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddImage", "ret": "void", "signature": "(ImTextureRef,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1802,7 +1861,8 @@ "uv4": "ImVec2(0,1)" }, "funcname": "AddImageQuad", - "location": "imgui:3360", + "location": "imgui:3359", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddImageQuad", "ret": "void", "signature": "(ImTextureRef,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1858,7 +1918,8 @@ "flags": "0" }, "funcname": "AddImageRounded", - "location": "imgui:3361", + "location": "imgui:3360", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddImageRounded", "ret": "void", "signature": "(ImTextureRef,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -1898,13 +1959,104 @@ "thickness": "1.0f" }, "funcname": "AddLine", - "location": "imgui:3329", + "location": "imgui:3326", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddLine", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float)", "stname": "ImDrawList" } ], + "ImDrawList_AddLineH": [ + { + "args": "(ImDrawList* self,float min_x,float max_x,float y,ImU32 col,float thickness)", + "argsT": [ + { + "name": "self", + "type": "ImDrawList*" + }, + { + "name": "min_x", + "type": "float" + }, + { + "name": "max_x", + "type": "float" + }, + { + "name": "y", + "type": "float" + }, + { + "name": "col", + "type": "ImU32" + }, + { + "name": "thickness", + "type": "float" + } + ], + "argsoriginal": "(float min_x,float max_x,float y,ImU32 col,float thickness=1.0f)", + "call_args": "(min_x,max_x,y,col,thickness)", + "call_args_old": "(min_x,max_x,y,col,thickness)", + "cimguiname": "ImDrawList_AddLineH", + "defaults": { + "thickness": "1.0f" + }, + "funcname": "AddLineH", + "location": "imgui:3327", + "namespace": "ImDrawList", + "ov_cimguiname": "ImDrawList_AddLineH", + "ret": "void", + "signature": "(float,float,float,ImU32,float)", + "stname": "ImDrawList" + } + ], + "ImDrawList_AddLineV": [ + { + "args": "(ImDrawList* self,float x,float min_y,float max_y,ImU32 col,float thickness)", + "argsT": [ + { + "name": "self", + "type": "ImDrawList*" + }, + { + "name": "x", + "type": "float" + }, + { + "name": "min_y", + "type": "float" + }, + { + "name": "max_y", + "type": "float" + }, + { + "name": "col", + "type": "ImU32" + }, + { + "name": "thickness", + "type": "float" + } + ], + "argsoriginal": "(float x,float min_y,float max_y,ImU32 col,float thickness=1.0f)", + "call_args": "(x,min_y,max_y,col,thickness)", + "call_args_old": "(x,min_y,max_y,col,thickness)", + "cimguiname": "ImDrawList_AddLineV", + "defaults": { + "thickness": "1.0f" + }, + "funcname": "AddLineV", + "location": "imgui:3328", + "namespace": "ImDrawList", + "ov_cimguiname": "ImDrawList_AddLineV", + "ret": "void", + "signature": "(float,float,float,ImU32,float)", + "stname": "ImDrawList" + } + ], "ImDrawList_AddNgon": [ { "args": "(ImDrawList* self,const ImVec2_c center,float radius,ImU32 col,int num_segments,float thickness)", @@ -1942,7 +2094,8 @@ "thickness": "1.0f" }, "funcname": "AddNgon", - "location": "imgui:3339", + "location": "imgui:3338", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddNgon", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -1980,7 +2133,8 @@ "cimguiname": "ImDrawList_AddNgonFilled", "defaults": {}, "funcname": "AddNgonFilled", - "location": "imgui:3340", + "location": "imgui:3339", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddNgonFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", @@ -1989,7 +2143,7 @@ ], "ImDrawList_AddPolyline": [ { - "args": "(ImDrawList* self,const ImVec2_c* points,int num_points,ImU32 col,ImDrawFlags flags,float thickness)", + "args": "(ImDrawList* self,const ImVec2_c* points,int num_points,ImU32 col,float thickness,ImDrawFlags flags)", "argsT": [ { "name": "self", @@ -2007,25 +2161,28 @@ "name": "col", "type": "ImU32" }, - { - "name": "flags", - "type": "ImDrawFlags" - }, { "name": "thickness", "type": "float" + }, + { + "name": "flags", + "type": "ImDrawFlags" } ], - "argsoriginal": "(const ImVec2* points,int num_points,ImU32 col,ImDrawFlags flags,float thickness)", - "call_args": "(reinterpret_cast(points),num_points,col,flags,thickness)", - "call_args_old": "(points,num_points,col,flags,thickness)", + "argsoriginal": "(const ImVec2* points,int num_points,ImU32 col,float thickness,ImDrawFlags flags=0)", + "call_args": "(reinterpret_cast(points),num_points,col,thickness,flags)", + "call_args_old": "(points,num_points,col,thickness,flags)", "cimguiname": "ImDrawList_AddPolyline", - "defaults": {}, + "defaults": { + "flags": "0" + }, "funcname": "AddPolyline", - "location": "imgui:3351", + "location": "imgui:3350", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddPolyline", "ret": "void", - "signature": "(const ImVec2*,int,ImU32,ImDrawFlags,float)", + "signature": "(const ImVec2*,int,ImU32,float,ImDrawFlags)", "stname": "ImDrawList" } ], @@ -2070,7 +2227,8 @@ "thickness": "1.0f" }, "funcname": "AddQuad", - "location": "imgui:3333", + "location": "imgui:3332", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddQuad", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -2112,7 +2270,8 @@ "cimguiname": "ImDrawList_AddQuadFilled", "defaults": {}, "funcname": "AddQuadFilled", - "location": "imgui:3334", + "location": "imgui:3333", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddQuadFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2121,7 +2280,7 @@ ], "ImDrawList_AddRect": [ { - "args": "(ImDrawList* self,const ImVec2_c p_min,const ImVec2_c p_max,ImU32 col,float rounding,ImDrawFlags flags,float thickness)", + "args": "(ImDrawList* self,const ImVec2_c p_min,const ImVec2_c p_max,ImU32 col,float rounding,float thickness,ImDrawFlags flags)", "argsT": [ { "name": "self", @@ -2143,18 +2302,18 @@ "name": "rounding", "type": "float" }, - { - "name": "flags", - "type": "ImDrawFlags" - }, { "name": "thickness", "type": "float" + }, + { + "name": "flags", + "type": "ImDrawFlags" } ], - "argsoriginal": "(const ImVec2& p_min,const ImVec2& p_max,ImU32 col,float rounding=0.0f,ImDrawFlags flags=0,float thickness=1.0f)", - "call_args": "(ConvertToCPP_ImVec2(p_min),ConvertToCPP_ImVec2(p_max),col,rounding,flags,thickness)", - "call_args_old": "(p_min,p_max,col,rounding,flags,thickness)", + "argsoriginal": "(const ImVec2& p_min,const ImVec2& p_max,ImU32 col,float rounding=0.0f,float thickness=1.0f,ImDrawFlags flags=0)", + "call_args": "(ConvertToCPP_ImVec2(p_min),ConvertToCPP_ImVec2(p_max),col,rounding,thickness,flags)", + "call_args_old": "(p_min,p_max,col,rounding,thickness,flags)", "cimguiname": "ImDrawList_AddRect", "defaults": { "flags": "0", @@ -2162,10 +2321,11 @@ "thickness": "1.0f" }, "funcname": "AddRect", - "location": "imgui:3330", + "location": "imgui:3329", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddRect", "ret": "void", - "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags,float)", + "signature": "(const ImVec2,const ImVec2,ImU32,float,float,ImDrawFlags)", "stname": "ImDrawList" } ], @@ -2207,7 +2367,8 @@ "rounding": "0.0f" }, "funcname": "AddRectFilled", - "location": "imgui:3331", + "location": "imgui:3330", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddRectFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -2253,7 +2414,8 @@ "cimguiname": "ImDrawList_AddRectFilledMultiColor", "defaults": {}, "funcname": "AddRectFilledMultiColor", - "location": "imgui:3332", + "location": "imgui:3331", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddRectFilledMultiColor", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)", @@ -2293,7 +2455,8 @@ "text_end": "NULL" }, "funcname": "AddText", - "location": "imgui:3343", + "location": "imgui:3342", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddText_Vec2", "ret": "void", "signature": "(const ImVec2,ImU32,const char*,const char*)", @@ -2349,7 +2512,8 @@ "wrap_width": "0.0f" }, "funcname": "AddText", - "location": "imgui:3344", + "location": "imgui:3343", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddText_FontPtr", "ret": "void", "signature": "(ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)", @@ -2393,7 +2557,8 @@ "thickness": "1.0f" }, "funcname": "AddTriangle", - "location": "imgui:3335", + "location": "imgui:3334", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddTriangle", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -2431,7 +2596,8 @@ "cimguiname": "ImDrawList_AddTriangleFilled", "defaults": {}, "funcname": "AddTriangleFilled", - "location": "imgui:3336", + "location": "imgui:3335", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddTriangleFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2454,6 +2620,7 @@ "defaults": {}, "funcname": "ChannelsMerge", "location": "imgui:3401", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_ChannelsMerge", "ret": "void", "signature": "()", @@ -2480,6 +2647,7 @@ "defaults": {}, "funcname": "ChannelsSetCurrent", "location": "imgui:3402", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_ChannelsSetCurrent", "ret": "void", "signature": "(int)", @@ -2506,6 +2674,7 @@ "defaults": {}, "funcname": "ChannelsSplit", "location": "imgui:3400", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_ChannelsSplit", "ret": "void", "signature": "(int)", @@ -2528,6 +2697,7 @@ "defaults": {}, "funcname": "CloneOutput", "location": "imgui:3392", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_CloneOutput", "ret": "ImDrawList*", "signature": "()const", @@ -2550,7 +2720,8 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetClipRectMax", - "location": "imgui:3320", + "location": "imgui:3317", + "namespace": "ImDrawList", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMax", "ret": "ImVec2_c", @@ -2574,7 +2745,8 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetClipRectMin", - "location": "imgui:3319", + "location": "imgui:3316", + "namespace": "ImDrawList", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMin", "ret": "ImVec2_c", @@ -2598,7 +2770,8 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawList", - "location": "imgui:3311", + "location": "imgui:3308", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_ImDrawList", "signature": "(ImDrawListSharedData*)", "stname": "ImDrawList" @@ -2641,7 +2814,8 @@ "num_segments": "0" }, "funcname": "PathArcTo", - "location": "imgui:3372", + "location": "imgui:3371", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PathArcTo", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", @@ -2679,7 +2853,8 @@ "cimguiname": "ImDrawList_PathArcToFast", "defaults": {}, "funcname": "PathArcToFast", - "location": "imgui:3373", + "location": "imgui:3372", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PathArcToFast", "ret": "void", "signature": "(const ImVec2,float,int,int)", @@ -2719,7 +2894,8 @@ "num_segments": "0" }, "funcname": "PathBezierCubicCurveTo", - "location": "imgui:3375", + "location": "imgui:3374", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PathBezierCubicCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,int)", @@ -2755,7 +2931,8 @@ "num_segments": "0" }, "funcname": "PathBezierQuadraticCurveTo", - "location": "imgui:3376", + "location": "imgui:3375", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PathBezierQuadraticCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,int)", @@ -2777,7 +2954,8 @@ "cimguiname": "ImDrawList_PathClear", "defaults": {}, "funcname": "PathClear", - "location": "imgui:3366", + "location": "imgui:3365", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PathClear", "ret": "void", "signature": "()", @@ -2825,7 +3003,8 @@ "num_segments": "0" }, "funcname": "PathEllipticalArcTo", - "location": "imgui:3374", + "location": "imgui:3373", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PathEllipticalArcTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,float,float,float,int)", @@ -2851,7 +3030,8 @@ "cimguiname": "ImDrawList_PathFillConcave", "defaults": {}, "funcname": "PathFillConcave", - "location": "imgui:3370", + "location": "imgui:3369", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PathFillConcave", "ret": "void", "signature": "(ImU32)", @@ -2877,7 +3057,8 @@ "cimguiname": "ImDrawList_PathFillConvex", "defaults": {}, "funcname": "PathFillConvex", - "location": "imgui:3369", + "location": "imgui:3368", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PathFillConvex", "ret": "void", "signature": "(ImU32)", @@ -2903,7 +3084,8 @@ "cimguiname": "ImDrawList_PathLineTo", "defaults": {}, "funcname": "PathLineTo", - "location": "imgui:3367", + "location": "imgui:3366", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PathLineTo", "ret": "void", "signature": "(const ImVec2)", @@ -2929,7 +3111,8 @@ "cimguiname": "ImDrawList_PathLineToMergeDuplicate", "defaults": {}, "funcname": "PathLineToMergeDuplicate", - "location": "imgui:3368", + "location": "imgui:3367", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PathLineToMergeDuplicate", "ret": "void", "signature": "(const ImVec2)", @@ -2970,7 +3153,8 @@ "rounding": "0.0f" }, "funcname": "PathRect", - "location": "imgui:3377", + "location": "imgui:3376", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PathRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,float,ImDrawFlags)", @@ -2979,7 +3163,7 @@ ], "ImDrawList_PathStroke": [ { - "args": "(ImDrawList* self,ImU32 col,ImDrawFlags flags,float thickness)", + "args": "(ImDrawList* self,ImU32 col,float thickness,ImDrawFlags flags)", "argsT": [ { "name": "self", @@ -2989,28 +3173,29 @@ "name": "col", "type": "ImU32" }, - { - "name": "flags", - "type": "ImDrawFlags" - }, { "name": "thickness", "type": "float" + }, + { + "name": "flags", + "type": "ImDrawFlags" } ], - "argsoriginal": "(ImU32 col,ImDrawFlags flags=0,float thickness=1.0f)", - "call_args": "(col,flags,thickness)", - "call_args_old": "(col,flags,thickness)", + "argsoriginal": "(ImU32 col,float thickness=1.0f,ImDrawFlags flags=0)", + "call_args": "(col,thickness,flags)", + "call_args_old": "(col,thickness,flags)", "cimguiname": "ImDrawList_PathStroke", "defaults": { "flags": "0", "thickness": "1.0f" }, "funcname": "PathStroke", - "location": "imgui:3371", + "location": "imgui:3370", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PathStroke", "ret": "void", - "signature": "(ImU32,ImDrawFlags,float)", + "signature": "(ImU32,float,ImDrawFlags)", "stname": "ImDrawList" } ], @@ -3029,7 +3214,8 @@ "cimguiname": "ImDrawList_PopClipRect", "defaults": {}, "funcname": "PopClipRect", - "location": "imgui:3316", + "location": "imgui:3313", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PopClipRect", "ret": "void", "signature": "()", @@ -3051,7 +3237,8 @@ "cimguiname": "ImDrawList_PopTexture", "defaults": {}, "funcname": "PopTexture", - "location": "imgui:3318", + "location": "imgui:3315", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PopTexture", "ret": "void", "signature": "()", @@ -3110,6 +3297,7 @@ "defaults": {}, "funcname": "PrimQuadUV", "location": "imgui:3411", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PrimQuadUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -3144,6 +3332,7 @@ "defaults": {}, "funcname": "PrimRect", "location": "imgui:3409", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PrimRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -3186,6 +3375,7 @@ "defaults": {}, "funcname": "PrimRectUV", "location": "imgui:3410", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PrimRectUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -3216,6 +3406,7 @@ "defaults": {}, "funcname": "PrimReserve", "location": "imgui:3407", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PrimReserve", "ret": "void", "signature": "(int,int)", @@ -3246,6 +3437,7 @@ "defaults": {}, "funcname": "PrimUnreserve", "location": "imgui:3408", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PrimUnreserve", "ret": "void", "signature": "(int,int)", @@ -3280,6 +3472,7 @@ "defaults": {}, "funcname": "PrimVtx", "location": "imgui:3414", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PrimVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -3306,6 +3499,7 @@ "defaults": {}, "funcname": "PrimWriteIdx", "location": "imgui:3413", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PrimWriteIdx", "ret": "void", "signature": "(ImDrawIdx)", @@ -3340,6 +3534,7 @@ "defaults": {}, "funcname": "PrimWriteVtx", "location": "imgui:3412", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PrimWriteVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -3375,7 +3570,8 @@ "intersect_with_current_clip_rect": "false" }, "funcname": "PushClipRect", - "location": "imgui:3314", + "location": "imgui:3311", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PushClipRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,bool)", @@ -3397,7 +3593,8 @@ "cimguiname": "ImDrawList_PushClipRectFullScreen", "defaults": {}, "funcname": "PushClipRectFullScreen", - "location": "imgui:3315", + "location": "imgui:3312", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PushClipRectFullScreen", "ret": "void", "signature": "()", @@ -3423,7 +3620,8 @@ "cimguiname": "ImDrawList_PushTexture", "defaults": {}, "funcname": "PushTexture", - "location": "imgui:3317", + "location": "imgui:3314", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PushTexture", "ret": "void", "signature": "(ImTextureRef)", @@ -3449,7 +3647,8 @@ "cimguiname": "ImDrawList__CalcCircleAutoSegmentCount", "defaults": {}, "funcname": "_CalcCircleAutoSegmentCount", - "location": "imgui:3437", + "location": "imgui:3444", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList__CalcCircleAutoSegmentCount", "ret": "int", "signature": "(float)const", @@ -3471,7 +3670,8 @@ "cimguiname": "ImDrawList__ClearFreeMemory", "defaults": {}, "funcname": "_ClearFreeMemory", - "location": "imgui:3430", + "location": "imgui:3437", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList__ClearFreeMemory", "ret": "void", "signature": "()", @@ -3493,7 +3693,8 @@ "cimguiname": "ImDrawList__OnChangedClipRect", "defaults": {}, "funcname": "_OnChangedClipRect", - "location": "imgui:3433", + "location": "imgui:3440", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList__OnChangedClipRect", "ret": "void", "signature": "()", @@ -3515,7 +3716,8 @@ "cimguiname": "ImDrawList__OnChangedTexture", "defaults": {}, "funcname": "_OnChangedTexture", - "location": "imgui:3434", + "location": "imgui:3441", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList__OnChangedTexture", "ret": "void", "signature": "()", @@ -3537,7 +3739,8 @@ "cimguiname": "ImDrawList__OnChangedVtxOffset", "defaults": {}, "funcname": "_OnChangedVtxOffset", - "location": "imgui:3435", + "location": "imgui:3442", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList__OnChangedVtxOffset", "ret": "void", "signature": "()", @@ -3579,7 +3782,8 @@ "cimguiname": "ImDrawList__PathArcToFastEx", "defaults": {}, "funcname": "_PathArcToFastEx", - "location": "imgui:3438", + "location": "imgui:3445", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList__PathArcToFastEx", "ret": "void", "signature": "(const ImVec2,float,int,int,int)", @@ -3621,7 +3825,8 @@ "cimguiname": "ImDrawList__PathArcToN", "defaults": {}, "funcname": "_PathArcToN", - "location": "imgui:3439", + "location": "imgui:3446", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList__PathArcToN", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", @@ -3643,7 +3848,8 @@ "cimguiname": "ImDrawList__PopUnusedDrawCmd", "defaults": {}, "funcname": "_PopUnusedDrawCmd", - "location": "imgui:3431", + "location": "imgui:3438", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList__PopUnusedDrawCmd", "ret": "void", "signature": "()", @@ -3665,7 +3871,8 @@ "cimguiname": "ImDrawList__ResetForNewFrame", "defaults": {}, "funcname": "_ResetForNewFrame", - "location": "imgui:3429", + "location": "imgui:3436", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList__ResetForNewFrame", "ret": "void", "signature": "()", @@ -3691,7 +3898,8 @@ "cimguiname": "ImDrawList__SetDrawListSharedData", "defaults": {}, "funcname": "_SetDrawListSharedData", - "location": "imgui:3428", + "location": "imgui:3435", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList__SetDrawListSharedData", "ret": "void", "signature": "(ImDrawListSharedData*)", @@ -3717,7 +3925,8 @@ "cimguiname": "ImDrawList__SetTexture", "defaults": {}, "funcname": "_SetTexture", - "location": "imgui:3436", + "location": "imgui:3443", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList__SetTexture", "ret": "void", "signature": "(ImTextureRef)", @@ -3739,7 +3948,8 @@ "cimguiname": "ImDrawList__TryMergeDrawCmds", "defaults": {}, "funcname": "_TryMergeDrawCmds", - "location": "imgui:3432", + "location": "imgui:3439", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList__TryMergeDrawCmds", "ret": "void", "signature": "()", @@ -3759,7 +3969,7 @@ "cimguiname": "ImDrawList_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3312", + "location": "imgui:3309", "ov_cimguiname": "ImDrawList_destroy", "realdestructor": true, "ret": "void", @@ -3778,7 +3988,8 @@ "constructor": true, "defaults": {}, "funcname": "ImFontAtlasBuilder", - "location": "imgui_internal:3906", + "location": "imgui_internal:3921", + "namespace": "ImFontAtlasBuilder", "ov_cimguiname": "ImFontAtlasBuilder_ImFontAtlasBuilder", "signature": "()", "stname": "ImFontAtlasBuilder" @@ -3797,7 +4008,7 @@ "cimguiname": "ImFontAtlasBuilder_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:3906", + "location": "imgui_internal:3921", "ov_cimguiname": "ImFontAtlasBuilder_destroy", "ret": "void", "signature": "(ImFontAtlasBuilder*)", @@ -3815,7 +4026,8 @@ "constructor": true, "defaults": {}, "funcname": "ImFontAtlasRect", - "location": "imgui:3641", + "location": "imgui:3649", + "namespace": "ImFontAtlasRect", "ov_cimguiname": "ImFontAtlasRect_ImFontAtlasRect", "signature": "()", "stname": "ImFontAtlasRect" @@ -3834,7 +4046,7 @@ "cimguiname": "ImFontAtlasRect_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3641", + "location": "imgui:3649", "ov_cimguiname": "ImFontAtlasRect_destroy", "ret": "void", "signature": "(ImFontAtlasRect*)", @@ -3870,7 +4082,8 @@ "out_r": "NULL" }, "funcname": "AddCustomRect", - "location": "imgui:3754", + "location": "imgui:3762", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_AddCustomRect", "ret": "ImFontAtlasRectId", "signature": "(int,int,ImFontAtlasRect*)", @@ -3896,7 +4109,8 @@ "cimguiname": "ImFontAtlas_AddFont", "defaults": {}, "funcname": "AddFont", - "location": "imgui:3676", + "location": "imgui:3684", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_AddFont", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -3924,7 +4138,8 @@ "font_cfg": "NULL" }, "funcname": "AddFontDefault", - "location": "imgui:3677", + "location": "imgui:3685", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_AddFontDefault", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -3952,7 +4167,8 @@ "font_cfg": "NULL" }, "funcname": "AddFontDefaultBitmap", - "location": "imgui:3679", + "location": "imgui:3687", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_AddFontDefaultBitmap", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -3980,7 +4196,8 @@ "font_cfg": "NULL" }, "funcname": "AddFontDefaultVector", - "location": "imgui:3678", + "location": "imgui:3686", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_AddFontDefaultVector", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -4022,7 +4239,8 @@ "size_pixels": "0.0f" }, "funcname": "AddFontFromFileTTF", - "location": "imgui:3680", + "location": "imgui:3688", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_AddFontFromFileTTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -4064,7 +4282,8 @@ "size_pixels": "0.0f" }, "funcname": "AddFontFromMemoryCompressedBase85TTF", - "location": "imgui:3683", + "location": "imgui:3691", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -4110,7 +4329,8 @@ "size_pixels": "0.0f" }, "funcname": "AddFontFromMemoryCompressedTTF", - "location": "imgui:3682", + "location": "imgui:3690", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedTTF", "ret": "ImFont*", "signature": "(const void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -4156,7 +4376,8 @@ "size_pixels": "0.0f" }, "funcname": "AddFontFromMemoryTTF", - "location": "imgui:3681", + "location": "imgui:3689", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryTTF", "ret": "ImFont*", "signature": "(void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -4178,7 +4399,8 @@ "cimguiname": "ImFontAtlas_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:3686", + "location": "imgui:3694", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_Clear", "ret": "void", "signature": "()", @@ -4200,7 +4422,8 @@ "cimguiname": "ImFontAtlas_ClearFonts", "defaults": {}, "funcname": "ClearFonts", - "location": "imgui:3692", + "location": "imgui:3695", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_ClearFonts", "ret": "void", "signature": "()", @@ -4222,7 +4445,8 @@ "cimguiname": "ImFontAtlas_ClearInputData", "defaults": {}, "funcname": "ClearInputData", - "location": "imgui:3691", + "location": "imgui:3700", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_ClearInputData", "ret": "void", "signature": "()", @@ -4244,7 +4468,8 @@ "cimguiname": "ImFontAtlas_ClearTexData", "defaults": {}, "funcname": "ClearTexData", - "location": "imgui:3693", + "location": "imgui:3701", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_ClearTexData", "ret": "void", "signature": "()", @@ -4266,7 +4491,8 @@ "cimguiname": "ImFontAtlas_CompactCache", "defaults": {}, "funcname": "CompactCache", - "location": "imgui:3687", + "location": "imgui:3696", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_CompactCache", "ret": "void", "signature": "()", @@ -4296,7 +4522,8 @@ "cimguiname": "ImFontAtlas_GetCustomRect", "defaults": {}, "funcname": "GetCustomRect", - "location": "imgui:3756", + "location": "imgui:3764", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_GetCustomRect", "ret": "bool", "signature": "(ImFontAtlasRectId,ImFontAtlasRect*)const", @@ -4318,7 +4545,8 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "defaults": {}, "funcname": "GetGlyphRangesDefault", - "location": "imgui:3717", + "location": "imgui:3725", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "ret": "const ImWchar*", "signature": "()", @@ -4336,7 +4564,8 @@ "constructor": true, "defaults": {}, "funcname": "ImFontAtlas", - "location": "imgui:3674", + "location": "imgui:3682", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_ImFontAtlas", "signature": "()", "stname": "ImFontAtlas" @@ -4361,7 +4590,8 @@ "cimguiname": "ImFontAtlas_RemoveCustomRect", "defaults": {}, "funcname": "RemoveCustomRect", - "location": "imgui:3755", + "location": "imgui:3763", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_RemoveCustomRect", "ret": "void", "signature": "(ImFontAtlasRectId)", @@ -4387,7 +4617,8 @@ "cimguiname": "ImFontAtlas_RemoveFont", "defaults": {}, "funcname": "RemoveFont", - "location": "imgui:3684", + "location": "imgui:3692", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_RemoveFont", "ret": "void", "signature": "(ImFont*)", @@ -4413,7 +4644,8 @@ "cimguiname": "ImFontAtlas_SetFontLoader", "defaults": {}, "funcname": "SetFontLoader", - "location": "imgui:3688", + "location": "imgui:3697", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_SetFontLoader", "ret": "void", "signature": "(const ImFontLoader*)", @@ -4433,7 +4665,7 @@ "cimguiname": "ImFontAtlas_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3675", + "location": "imgui:3683", "ov_cimguiname": "ImFontAtlas_destroy", "realdestructor": true, "ret": "void", @@ -4456,7 +4688,8 @@ "cimguiname": "ImFontBaked_ClearOutputData", "defaults": {}, "funcname": "ClearOutputData", - "location": "imgui:3849", + "location": "imgui:3857", + "namespace": "ImFontBaked", "ov_cimguiname": "ImFontBaked_ClearOutputData", "ret": "void", "signature": "()", @@ -4482,7 +4715,8 @@ "cimguiname": "ImFontBaked_FindGlyph", "defaults": {}, "funcname": "FindGlyph", - "location": "imgui:3850", + "location": "imgui:3858", + "namespace": "ImFontBaked", "ov_cimguiname": "ImFontBaked_FindGlyph", "ret": "ImFontGlyph*", "signature": "(ImWchar)", @@ -4508,7 +4742,8 @@ "cimguiname": "ImFontBaked_FindGlyphNoFallback", "defaults": {}, "funcname": "FindGlyphNoFallback", - "location": "imgui:3851", + "location": "imgui:3859", + "namespace": "ImFontBaked", "ov_cimguiname": "ImFontBaked_FindGlyphNoFallback", "ret": "ImFontGlyph*", "signature": "(ImWchar)", @@ -4534,7 +4769,8 @@ "cimguiname": "ImFontBaked_GetCharAdvance", "defaults": {}, "funcname": "GetCharAdvance", - "location": "imgui:3852", + "location": "imgui:3860", + "namespace": "ImFontBaked", "ov_cimguiname": "ImFontBaked_GetCharAdvance", "ret": "float", "signature": "(ImWchar)", @@ -4552,7 +4788,8 @@ "constructor": true, "defaults": {}, "funcname": "ImFontBaked", - "location": "imgui:3848", + "location": "imgui:3856", + "namespace": "ImFontBaked", "ov_cimguiname": "ImFontBaked_ImFontBaked", "signature": "()", "stname": "ImFontBaked" @@ -4577,7 +4814,8 @@ "cimguiname": "ImFontBaked_IsGlyphLoaded", "defaults": {}, "funcname": "IsGlyphLoaded", - "location": "imgui:3853", + "location": "imgui:3861", + "namespace": "ImFontBaked", "ov_cimguiname": "ImFontBaked_IsGlyphLoaded", "ret": "bool", "signature": "(ImWchar)", @@ -4597,7 +4835,7 @@ "cimguiname": "ImFontBaked_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3848", + "location": "imgui:3856", "ov_cimguiname": "ImFontBaked_destroy", "ret": "void", "signature": "(ImFontBaked*)", @@ -4615,7 +4853,8 @@ "constructor": true, "defaults": {}, "funcname": "ImFontConfig", - "location": "imgui:3592", + "location": "imgui:3600", + "namespace": "ImFontConfig", "ov_cimguiname": "ImFontConfig_ImFontConfig", "signature": "()", "stname": "ImFontConfig" @@ -4634,7 +4873,7 @@ "cimguiname": "ImFontConfig_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3592", + "location": "imgui:3600", "ov_cimguiname": "ImFontConfig_destroy", "ret": "void", "signature": "(ImFontConfig*)", @@ -4660,7 +4899,8 @@ "cimguiname": "ImFontGlyphRangesBuilder_AddChar", "defaults": {}, "funcname": "AddChar", - "location": "imgui:3621", + "location": "imgui:3629", + "namespace": "ImFontGlyphRangesBuilder", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddChar", "ret": "void", "signature": "(ImWchar)", @@ -4686,7 +4926,8 @@ "cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "defaults": {}, "funcname": "AddRanges", - "location": "imgui:3623", + "location": "imgui:3631", + "namespace": "ImFontGlyphRangesBuilder", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "ret": "void", "signature": "(const ImWchar*)", @@ -4718,7 +4959,8 @@ "text_end": "NULL" }, "funcname": "AddText", - "location": "imgui:3622", + "location": "imgui:3630", + "namespace": "ImFontGlyphRangesBuilder", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddText", "ret": "void", "signature": "(const char*,const char*)", @@ -4735,6 +4977,7 @@ }, { "name": "out_ranges", + "template_orig": "ImVector* out_ranges", "type": "ImVector_ImWchar*" } ], @@ -4744,7 +4987,8 @@ "cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "defaults": {}, "funcname": "BuildRanges", - "location": "imgui:3624", + "location": "imgui:3632", + "namespace": "ImFontGlyphRangesBuilder", "ov_cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "ret": "void", "signature": "(ImVector_ImWchar*)", @@ -4766,7 +5010,8 @@ "cimguiname": "ImFontGlyphRangesBuilder_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:3618", + "location": "imgui:3626", + "namespace": "ImFontGlyphRangesBuilder", "ov_cimguiname": "ImFontGlyphRangesBuilder_Clear", "ret": "void", "signature": "()", @@ -4792,7 +5037,8 @@ "cimguiname": "ImFontGlyphRangesBuilder_GetBit", "defaults": {}, "funcname": "GetBit", - "location": "imgui:3619", + "location": "imgui:3627", + "namespace": "ImFontGlyphRangesBuilder", "ov_cimguiname": "ImFontGlyphRangesBuilder_GetBit", "ret": "bool", "signature": "(size_t)const", @@ -4810,7 +5056,8 @@ "constructor": true, "defaults": {}, "funcname": "ImFontGlyphRangesBuilder", - "location": "imgui:3617", + "location": "imgui:3625", + "namespace": "ImFontGlyphRangesBuilder", "ov_cimguiname": "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder", "signature": "()", "stname": "ImFontGlyphRangesBuilder" @@ -4835,7 +5082,8 @@ "cimguiname": "ImFontGlyphRangesBuilder_SetBit", "defaults": {}, "funcname": "SetBit", - "location": "imgui:3620", + "location": "imgui:3628", + "namespace": "ImFontGlyphRangesBuilder", "ov_cimguiname": "ImFontGlyphRangesBuilder_SetBit", "ret": "void", "signature": "(size_t)", @@ -4855,7 +5103,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3617", + "location": "imgui:3625", "ov_cimguiname": "ImFontGlyphRangesBuilder_destroy", "ret": "void", "signature": "(ImFontGlyphRangesBuilder*)", @@ -4873,7 +5121,8 @@ "constructor": true, "defaults": {}, "funcname": "ImFontGlyph", - "location": "imgui:3608", + "location": "imgui:3616", + "namespace": "ImFontGlyph", "ov_cimguiname": "ImFontGlyph_ImFontGlyph", "signature": "()", "stname": "ImFontGlyph" @@ -4892,7 +5141,7 @@ "cimguiname": "ImFontGlyph_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3608", + "location": "imgui:3616", "ov_cimguiname": "ImFontGlyph_destroy", "ret": "void", "signature": "(ImFontGlyph*)", @@ -4910,7 +5159,8 @@ "constructor": true, "defaults": {}, "funcname": "ImFontLoader", - "location": "imgui_internal:3809", + "location": "imgui_internal:3824", + "namespace": "ImFontLoader", "ov_cimguiname": "ImFontLoader_ImFontLoader", "signature": "()", "stname": "ImFontLoader" @@ -4929,7 +5179,7 @@ "cimguiname": "ImFontLoader_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:3809", + "location": "imgui_internal:3824", "ov_cimguiname": "ImFontLoader_destroy", "ret": "void", "signature": "(ImFontLoader*)", @@ -4959,7 +5209,8 @@ "cimguiname": "ImFont_AddRemapChar", "defaults": {}, "funcname": "AddRemapChar", - "location": "imgui:3914", + "location": "imgui:3923", + "namespace": "ImFont", "ov_cimguiname": "ImFont_AddRemapChar", "ret": "void", "signature": "(ImWchar,ImWchar)", @@ -5009,7 +5260,8 @@ "text_end": "NULL" }, "funcname": "CalcTextSizeA", - "location": "imgui:3904", + "location": "imgui:3913", + "namespace": "ImFont", "nonUDT": 1, "ov_cimguiname": "ImFont_CalcTextSizeA", "ret": "ImVec2_c", @@ -5048,7 +5300,8 @@ "cimguiname": "ImFont_CalcWordWrapPosition", "defaults": {}, "funcname": "CalcWordWrapPosition", - "location": "imgui:3905", + "location": "imgui:3914", + "namespace": "ImFont", "ov_cimguiname": "ImFont_CalcWordWrapPosition", "ret": "const char*", "signature": "(float,const char*,const char*,float)", @@ -5070,7 +5323,8 @@ "cimguiname": "ImFont_ClearOutputData", "defaults": {}, "funcname": "ClearOutputData", - "location": "imgui:3913", + "location": "imgui:3922", + "namespace": "ImFont", "ov_cimguiname": "ImFont_ClearOutputData", "ret": "void", "signature": "()", @@ -5092,7 +5346,8 @@ "cimguiname": "ImFont_GetDebugName", "defaults": {}, "funcname": "GetDebugName", - "location": "imgui:3898", + "location": "imgui:3907", + "namespace": "ImFont", "ov_cimguiname": "ImFont_GetDebugName", "ret": "const char*", "signature": "()const", @@ -5124,7 +5379,8 @@ "density": "-1.0f" }, "funcname": "GetFontBaked", - "location": "imgui:3903", + "location": "imgui:3912", + "namespace": "ImFont", "ov_cimguiname": "ImFont_GetFontBaked", "ret": "ImFontBaked*", "signature": "(float,float)", @@ -5142,7 +5398,8 @@ "constructor": true, "defaults": {}, "funcname": "ImFont", - "location": "imgui:3894", + "location": "imgui:3903", + "namespace": "ImFont", "ov_cimguiname": "ImFont_ImFont", "signature": "()", "stname": "ImFont" @@ -5167,7 +5424,8 @@ "cimguiname": "ImFont_IsGlyphInFont", "defaults": {}, "funcname": "IsGlyphInFont", - "location": "imgui:3896", + "location": "imgui:3905", + "namespace": "ImFont", "ov_cimguiname": "ImFont_IsGlyphInFont", "ret": "bool", "signature": "(ImWchar)", @@ -5197,7 +5455,8 @@ "cimguiname": "ImFont_IsGlyphRangeUnused", "defaults": {}, "funcname": "IsGlyphRangeUnused", - "location": "imgui:3915", + "location": "imgui:3924", + "namespace": "ImFont", "ov_cimguiname": "ImFont_IsGlyphRangeUnused", "ret": "bool", "signature": "(unsigned int,unsigned int)", @@ -5219,7 +5478,8 @@ "cimguiname": "ImFont_IsLoaded", "defaults": {}, "funcname": "IsLoaded", - "location": "imgui:3897", + "location": "imgui:3906", + "namespace": "ImFont", "ov_cimguiname": "ImFont_IsLoaded", "ret": "bool", "signature": "()const", @@ -5267,7 +5527,8 @@ "cpu_fine_clip": "NULL" }, "funcname": "RenderChar", - "location": "imgui:3906", + "location": "imgui:3915", + "namespace": "ImFont", "ov_cimguiname": "ImFont_RenderChar", "ret": "void", "signature": "(ImDrawList*,float,const ImVec2,ImU32,ImWchar,const ImVec4*)", @@ -5328,7 +5589,8 @@ "wrap_width": "0.0f" }, "funcname": "RenderText", - "location": "imgui:3907", + "location": "imgui:3916", + "namespace": "ImFont", "ov_cimguiname": "ImFont_RenderText", "ret": "void", "signature": "(ImDrawList*,float,const ImVec2,ImU32,const ImVec4,const char*,const char*,float,ImDrawTextFlags)", @@ -5348,7 +5610,7 @@ "cimguiname": "ImFont_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3895", + "location": "imgui:3904", "ov_cimguiname": "ImFont_destroy", "realdestructor": true, "ret": "void", @@ -5367,7 +5629,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiBoxSelectState", - "location": "imgui_internal:1896", + "location": "imgui_internal:1906", + "namespace": "ImGuiBoxSelectState", "ov_cimguiname": "ImGuiBoxSelectState_ImGuiBoxSelectState", "signature": "()", "stname": "ImGuiBoxSelectState" @@ -5386,7 +5649,7 @@ "cimguiname": "ImGuiBoxSelectState_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1896", + "location": "imgui_internal:1906", "ov_cimguiname": "ImGuiBoxSelectState_destroy", "ret": "void", "signature": "(ImGuiBoxSelectState*)", @@ -5404,7 +5667,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiComboPreviewData", - "location": "imgui_internal:1166", + "location": "imgui_internal:1173", + "namespace": "ImGuiComboPreviewData", "ov_cimguiname": "ImGuiComboPreviewData_ImGuiComboPreviewData", "signature": "()", "stname": "ImGuiComboPreviewData" @@ -5423,7 +5687,7 @@ "cimguiname": "ImGuiComboPreviewData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1166", + "location": "imgui_internal:1173", "ov_cimguiname": "ImGuiComboPreviewData_destroy", "ret": "void", "signature": "(ImGuiComboPreviewData*)", @@ -5441,7 +5705,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiContextHook", - "location": "imgui_internal:2183", + "location": "imgui_internal:2194", + "namespace": "ImGuiContextHook", "ov_cimguiname": "ImGuiContextHook_ImGuiContextHook", "signature": "()", "stname": "ImGuiContextHook" @@ -5460,7 +5725,7 @@ "cimguiname": "ImGuiContextHook_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2183", + "location": "imgui_internal:2194", "ov_cimguiname": "ImGuiContextHook_destroy", "ret": "void", "signature": "(ImGuiContextHook*)", @@ -5483,7 +5748,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiContext", - "location": "imgui_internal:2584", + "location": "imgui_internal:2596", + "namespace": "ImGuiContext", "ov_cimguiname": "ImGuiContext_ImGuiContext", "signature": "(ImFontAtlas*)", "stname": "ImGuiContext" @@ -5502,7 +5768,7 @@ "cimguiname": "ImGuiContext_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2585", + "location": "imgui_internal:2597", "ov_cimguiname": "ImGuiContext_destroy", "realdestructor": true, "ret": "void", @@ -5521,7 +5787,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiDebugAllocInfo", - "location": "imgui_internal:2112", + "location": "imgui_internal:2123", + "namespace": "ImGuiDebugAllocInfo", "ov_cimguiname": "ImGuiDebugAllocInfo_ImGuiDebugAllocInfo", "signature": "()", "stname": "ImGuiDebugAllocInfo" @@ -5540,7 +5807,7 @@ "cimguiname": "ImGuiDebugAllocInfo_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2112", + "location": "imgui_internal:2123", "ov_cimguiname": "ImGuiDebugAllocInfo_destroy", "ret": "void", "signature": "(ImGuiDebugAllocInfo*)", @@ -5558,7 +5825,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiDebugItemPathQuery", - "location": "imgui_internal:2154", + "location": "imgui_internal:2165", + "namespace": "ImGuiDebugItemPathQuery", "ov_cimguiname": "ImGuiDebugItemPathQuery_ImGuiDebugItemPathQuery", "signature": "()", "stname": "ImGuiDebugItemPathQuery" @@ -5577,7 +5845,7 @@ "cimguiname": "ImGuiDebugItemPathQuery_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2154", + "location": "imgui_internal:2165", "ov_cimguiname": "ImGuiDebugItemPathQuery_destroy", "ret": "void", "signature": "(ImGuiDebugItemPathQuery*)", @@ -5595,7 +5863,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiErrorRecoveryState", - "location": "imgui_internal:1422", + "location": "imgui_internal:1430", + "namespace": "ImGuiErrorRecoveryState", "ov_cimguiname": "ImGuiErrorRecoveryState_ImGuiErrorRecoveryState", "signature": "()", "stname": "ImGuiErrorRecoveryState" @@ -5614,7 +5883,7 @@ "cimguiname": "ImGuiErrorRecoveryState_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1422", + "location": "imgui_internal:1430", "ov_cimguiname": "ImGuiErrorRecoveryState_destroy", "ret": "void", "signature": "(ImGuiErrorRecoveryState*)", @@ -5710,7 +5979,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiIDStackTool", - "location": "imgui_internal:2165", + "location": "imgui_internal:2176", + "namespace": "ImGuiIDStackTool", "ov_cimguiname": "ImGuiIDStackTool_ImGuiIDStackTool", "signature": "()", "stname": "ImGuiIDStackTool" @@ -5729,7 +5999,7 @@ "cimguiname": "ImGuiIDStackTool_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2165", + "location": "imgui_internal:2176", "ov_cimguiname": "ImGuiIDStackTool_destroy", "ret": "void", "signature": "(ImGuiIDStackTool*)", @@ -5755,7 +6025,8 @@ "cimguiname": "ImGuiIO_AddFocusEvent", "defaults": {}, "funcname": "AddFocusEvent", - "location": "imgui:2525", + "location": "imgui:2528", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_AddFocusEvent", "ret": "void", "signature": "(bool)", @@ -5781,7 +6052,8 @@ "cimguiname": "ImGuiIO_AddInputCharacter", "defaults": {}, "funcname": "AddInputCharacter", - "location": "imgui:2526", + "location": "imgui:2529", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_AddInputCharacter", "ret": "void", "signature": "(unsigned int)", @@ -5807,7 +6079,8 @@ "cimguiname": "ImGuiIO_AddInputCharacterUTF16", "defaults": {}, "funcname": "AddInputCharacterUTF16", - "location": "imgui:2527", + "location": "imgui:2530", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_AddInputCharacterUTF16", "ret": "void", "signature": "(ImWchar16)", @@ -5833,7 +6106,8 @@ "cimguiname": "ImGuiIO_AddInputCharactersUTF8", "defaults": {}, "funcname": "AddInputCharactersUTF8", - "location": "imgui:2528", + "location": "imgui:2531", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_AddInputCharactersUTF8", "ret": "void", "signature": "(const char*)", @@ -5867,7 +6141,8 @@ "cimguiname": "ImGuiIO_AddKeyAnalogEvent", "defaults": {}, "funcname": "AddKeyAnalogEvent", - "location": "imgui:2520", + "location": "imgui:2523", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_AddKeyAnalogEvent", "ret": "void", "signature": "(ImGuiKey,bool,float)", @@ -5897,7 +6172,8 @@ "cimguiname": "ImGuiIO_AddKeyEvent", "defaults": {}, "funcname": "AddKeyEvent", - "location": "imgui:2519", + "location": "imgui:2522", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_AddKeyEvent", "ret": "void", "signature": "(ImGuiKey,bool)", @@ -5927,7 +6203,8 @@ "cimguiname": "ImGuiIO_AddMouseButtonEvent", "defaults": {}, "funcname": "AddMouseButtonEvent", - "location": "imgui:2522", + "location": "imgui:2525", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_AddMouseButtonEvent", "ret": "void", "signature": "(int,bool)", @@ -5957,7 +6234,8 @@ "cimguiname": "ImGuiIO_AddMousePosEvent", "defaults": {}, "funcname": "AddMousePosEvent", - "location": "imgui:2521", + "location": "imgui:2524", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_AddMousePosEvent", "ret": "void", "signature": "(float,float)", @@ -5983,7 +6261,8 @@ "cimguiname": "ImGuiIO_AddMouseSourceEvent", "defaults": {}, "funcname": "AddMouseSourceEvent", - "location": "imgui:2524", + "location": "imgui:2527", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_AddMouseSourceEvent", "ret": "void", "signature": "(ImGuiMouseSource)", @@ -6013,7 +6292,8 @@ "cimguiname": "ImGuiIO_AddMouseWheelEvent", "defaults": {}, "funcname": "AddMouseWheelEvent", - "location": "imgui:2523", + "location": "imgui:2526", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_AddMouseWheelEvent", "ret": "void", "signature": "(float,float)", @@ -6035,7 +6315,8 @@ "cimguiname": "ImGuiIO_ClearEventsQueue", "defaults": {}, "funcname": "ClearEventsQueue", - "location": "imgui:2532", + "location": "imgui:2535", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_ClearEventsQueue", "ret": "void", "signature": "()", @@ -6057,7 +6338,8 @@ "cimguiname": "ImGuiIO_ClearInputKeys", "defaults": {}, "funcname": "ClearInputKeys", - "location": "imgui:2533", + "location": "imgui:2536", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_ClearInputKeys", "ret": "void", "signature": "()", @@ -6079,7 +6361,8 @@ "cimguiname": "ImGuiIO_ClearInputMouse", "defaults": {}, "funcname": "ClearInputMouse", - "location": "imgui:2534", + "location": "imgui:2537", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_ClearInputMouse", "ret": "void", "signature": "()", @@ -6097,7 +6380,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiIO", - "location": "imgui:2623", + "location": "imgui:2626", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_ImGuiIO", "signature": "()", "stname": "ImGuiIO" @@ -6122,7 +6406,8 @@ "cimguiname": "ImGuiIO_SetAppAcceptingEvents", "defaults": {}, "funcname": "SetAppAcceptingEvents", - "location": "imgui:2531", + "location": "imgui:2534", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_SetAppAcceptingEvents", "ret": "void", "signature": "(bool)", @@ -6162,7 +6447,8 @@ "native_legacy_index": "-1" }, "funcname": "SetKeyEventNativeData", - "location": "imgui:2530", + "location": "imgui:2533", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_SetKeyEventNativeData", "ret": "void", "signature": "(ImGuiKey,int,int,int)", @@ -6182,7 +6468,7 @@ "cimguiname": "ImGuiIO_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2623", + "location": "imgui:2626", "ov_cimguiname": "ImGuiIO_destroy", "ret": "void", "signature": "(ImGuiIO*)", @@ -6200,7 +6486,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputEvent", - "location": "imgui_internal:1561", + "location": "imgui_internal:1570", + "namespace": "ImGuiInputEvent", "ov_cimguiname": "ImGuiInputEvent_ImGuiInputEvent", "signature": "()", "stname": "ImGuiInputEvent" @@ -6219,7 +6506,7 @@ "cimguiname": "ImGuiInputEvent_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1561", + "location": "imgui_internal:1570", "ov_cimguiname": "ImGuiInputEvent_destroy", "ret": "void", "signature": "(ImGuiInputEvent*)", @@ -6241,7 +6528,8 @@ "cimguiname": "ImGuiInputTextCallbackData_ClearSelection", "defaults": {}, "funcname": "ClearSelection", - "location": "imgui:2670", + "location": "imgui:2673", + "namespace": "ImGuiInputTextCallbackData", "ov_cimguiname": "ImGuiInputTextCallbackData_ClearSelection", "ret": "void", "signature": "()", @@ -6271,7 +6559,8 @@ "cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "defaults": {}, "funcname": "DeleteChars", - "location": "imgui:2666", + "location": "imgui:2669", + "namespace": "ImGuiInputTextCallbackData", "ov_cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "ret": "void", "signature": "(int,int)", @@ -6293,7 +6582,8 @@ "cimguiname": "ImGuiInputTextCallbackData_HasSelection", "defaults": {}, "funcname": "HasSelection", - "location": "imgui:2671", + "location": "imgui:2674", + "namespace": "ImGuiInputTextCallbackData", "ov_cimguiname": "ImGuiInputTextCallbackData_HasSelection", "ret": "bool", "signature": "()const", @@ -6311,7 +6601,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextCallbackData", - "location": "imgui:2665", + "location": "imgui:2668", + "namespace": "ImGuiInputTextCallbackData", "ov_cimguiname": "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData", "signature": "()", "stname": "ImGuiInputTextCallbackData" @@ -6346,7 +6637,8 @@ "text_end": "NULL" }, "funcname": "InsertChars", - "location": "imgui:2667", + "location": "imgui:2670", + "namespace": "ImGuiInputTextCallbackData", "ov_cimguiname": "ImGuiInputTextCallbackData_InsertChars", "ret": "void", "signature": "(int,const char*,const char*)", @@ -6368,7 +6660,8 @@ "cimguiname": "ImGuiInputTextCallbackData_SelectAll", "defaults": {}, "funcname": "SelectAll", - "location": "imgui:2668", + "location": "imgui:2671", + "namespace": "ImGuiInputTextCallbackData", "ov_cimguiname": "ImGuiInputTextCallbackData_SelectAll", "ret": "void", "signature": "()", @@ -6398,7 +6691,8 @@ "cimguiname": "ImGuiInputTextCallbackData_SetSelection", "defaults": {}, "funcname": "SetSelection", - "location": "imgui:2669", + "location": "imgui:2672", + "namespace": "ImGuiInputTextCallbackData", "ov_cimguiname": "ImGuiInputTextCallbackData_SetSelection", "ret": "void", "signature": "(int,int)", @@ -6418,7 +6712,7 @@ "cimguiname": "ImGuiInputTextCallbackData_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2665", + "location": "imgui:2668", "ov_cimguiname": "ImGuiInputTextCallbackData_destroy", "ret": "void", "signature": "(ImGuiInputTextCallbackData*)", @@ -6440,7 +6734,8 @@ "cimguiname": "ImGuiInputTextDeactivatedState_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui_internal:1213", + "location": "imgui_internal:1221", + "namespace": "ImGuiInputTextDeactivatedState", "ov_cimguiname": "ImGuiInputTextDeactivatedState_ClearFreeMemory", "ret": "void", "signature": "()", @@ -6458,7 +6753,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextDeactivatedState", - "location": "imgui_internal:1212", + "location": "imgui_internal:1220", + "namespace": "ImGuiInputTextDeactivatedState", "ov_cimguiname": "ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState", "signature": "()", "stname": "ImGuiInputTextDeactivatedState" @@ -6477,7 +6773,7 @@ "cimguiname": "ImGuiInputTextDeactivatedState_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1212", + "location": "imgui_internal:1220", "ov_cimguiname": "ImGuiInputTextDeactivatedState_destroy", "ret": "void", "signature": "(ImGuiInputTextDeactivatedState*)", @@ -6499,7 +6795,8 @@ "cimguiname": "ImGuiInputTextState_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui_internal:1258", + "location": "imgui_internal:1266", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_ClearFreeMemory", "ret": "void", "signature": "()", @@ -6521,7 +6818,8 @@ "cimguiname": "ImGuiInputTextState_ClearSelection", "defaults": {}, "funcname": "ClearSelection", - "location": "imgui_internal:1268", + "location": "imgui_internal:1276", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_ClearSelection", "ret": "void", "signature": "()", @@ -6543,7 +6841,8 @@ "cimguiname": "ImGuiInputTextState_ClearText", "defaults": {}, "funcname": "ClearText", - "location": "imgui_internal:1257", + "location": "imgui_internal:1265", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_ClearText", "ret": "void", "signature": "()", @@ -6565,7 +6864,8 @@ "cimguiname": "ImGuiInputTextState_CursorAnimReset", "defaults": {}, "funcname": "CursorAnimReset", - "location": "imgui_internal:1265", + "location": "imgui_internal:1273", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_CursorAnimReset", "ret": "void", "signature": "()", @@ -6587,7 +6887,8 @@ "cimguiname": "ImGuiInputTextState_CursorClamp", "defaults": {}, "funcname": "CursorClamp", - "location": "imgui_internal:1266", + "location": "imgui_internal:1274", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_CursorClamp", "ret": "void", "signature": "()", @@ -6609,7 +6910,8 @@ "cimguiname": "ImGuiInputTextState_GetCursorPos", "defaults": {}, "funcname": "GetCursorPos", - "location": "imgui_internal:1269", + "location": "imgui_internal:1277", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_GetCursorPos", "ret": "int", "signature": "()const", @@ -6631,7 +6933,8 @@ "cimguiname": "ImGuiInputTextState_GetPreferredOffsetX", "defaults": {}, "funcname": "GetPreferredOffsetX", - "location": "imgui_internal:1261", + "location": "imgui_internal:1269", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_GetPreferredOffsetX", "ret": "float", "signature": "()const", @@ -6653,7 +6956,8 @@ "cimguiname": "ImGuiInputTextState_GetSelectionEnd", "defaults": {}, "funcname": "GetSelectionEnd", - "location": "imgui_internal:1271", + "location": "imgui_internal:1279", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_GetSelectionEnd", "ret": "int", "signature": "()const", @@ -6675,7 +6979,8 @@ "cimguiname": "ImGuiInputTextState_GetSelectionStart", "defaults": {}, "funcname": "GetSelectionStart", - "location": "imgui_internal:1270", + "location": "imgui_internal:1278", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_GetSelectionStart", "ret": "int", "signature": "()const", @@ -6697,7 +7002,8 @@ "cimguiname": "ImGuiInputTextState_GetText", "defaults": {}, "funcname": "GetText", - "location": "imgui_internal:1262", + "location": "imgui_internal:1270", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_GetText", "ret": "const char*", "signature": "()", @@ -6719,7 +7025,8 @@ "cimguiname": "ImGuiInputTextState_HasSelection", "defaults": {}, "funcname": "HasSelection", - "location": "imgui_internal:1267", + "location": "imgui_internal:1275", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_HasSelection", "ret": "bool", "signature": "()const", @@ -6737,7 +7044,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextState", - "location": "imgui_internal:1255", + "location": "imgui_internal:1263", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_ImGuiInputTextState", "signature": "()", "stname": "ImGuiInputTextState" @@ -6762,7 +7070,8 @@ "cimguiname": "ImGuiInputTextState_OnCharPressed", "defaults": {}, "funcname": "OnCharPressed", - "location": "imgui_internal:1260", + "location": "imgui_internal:1268", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_OnCharPressed", "ret": "void", "signature": "(unsigned int)", @@ -6788,7 +7097,8 @@ "cimguiname": "ImGuiInputTextState_OnKeyPressed", "defaults": {}, "funcname": "OnKeyPressed", - "location": "imgui_internal:1259", + "location": "imgui_internal:1267", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_OnKeyPressed", "ret": "void", "signature": "(int)", @@ -6810,7 +7120,8 @@ "cimguiname": "ImGuiInputTextState_ReloadUserBufAndKeepSelection", "defaults": {}, "funcname": "ReloadUserBufAndKeepSelection", - "location": "imgui_internal:1281", + "location": "imgui_internal:1289", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_ReloadUserBufAndKeepSelection", "ret": "void", "signature": "()", @@ -6832,7 +7143,8 @@ "cimguiname": "ImGuiInputTextState_ReloadUserBufAndMoveToEnd", "defaults": {}, "funcname": "ReloadUserBufAndMoveToEnd", - "location": "imgui_internal:1282", + "location": "imgui_internal:1290", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_ReloadUserBufAndMoveToEnd", "ret": "void", "signature": "()", @@ -6854,7 +7166,8 @@ "cimguiname": "ImGuiInputTextState_ReloadUserBufAndSelectAll", "defaults": {}, "funcname": "ReloadUserBufAndSelectAll", - "location": "imgui_internal:1280", + "location": "imgui_internal:1288", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_ReloadUserBufAndSelectAll", "ret": "void", "signature": "()", @@ -6876,7 +7189,8 @@ "cimguiname": "ImGuiInputTextState_SelectAll", "defaults": {}, "funcname": "SelectAll", - "location": "imgui_internal:1273", + "location": "imgui_internal:1281", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_SelectAll", "ret": "void", "signature": "()", @@ -6906,7 +7220,8 @@ "cimguiname": "ImGuiInputTextState_SetSelection", "defaults": {}, "funcname": "SetSelection", - "location": "imgui_internal:1272", + "location": "imgui_internal:1280", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_SetSelection", "ret": "void", "signature": "(int,int)", @@ -6926,7 +7241,7 @@ "cimguiname": "ImGuiInputTextState_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1256", + "location": "imgui_internal:1264", "ov_cimguiname": "ImGuiInputTextState_destroy", "realdestructor": true, "ret": "void", @@ -6945,7 +7260,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiKeyOwnerData", - "location": "imgui_internal:1605", + "location": "imgui_internal:1614", + "namespace": "ImGuiKeyOwnerData", "ov_cimguiname": "ImGuiKeyOwnerData_ImGuiKeyOwnerData", "signature": "()", "stname": "ImGuiKeyOwnerData" @@ -6964,7 +7280,7 @@ "cimguiname": "ImGuiKeyOwnerData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1605", + "location": "imgui_internal:1614", "ov_cimguiname": "ImGuiKeyOwnerData_destroy", "ret": "void", "signature": "(ImGuiKeyOwnerData*)", @@ -6982,7 +7298,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiKeyRoutingData", - "location": "imgui_internal:1581", + "location": "imgui_internal:1590", + "namespace": "ImGuiKeyRoutingData", "ov_cimguiname": "ImGuiKeyRoutingData_ImGuiKeyRoutingData", "signature": "()", "stname": "ImGuiKeyRoutingData" @@ -7001,7 +7318,7 @@ "cimguiname": "ImGuiKeyRoutingData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1581", + "location": "imgui_internal:1590", "ov_cimguiname": "ImGuiKeyRoutingData_destroy", "ret": "void", "signature": "(ImGuiKeyRoutingData*)", @@ -7023,7 +7340,8 @@ "cimguiname": "ImGuiKeyRoutingTable_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:1593", + "location": "imgui_internal:1602", + "namespace": "ImGuiKeyRoutingTable", "ov_cimguiname": "ImGuiKeyRoutingTable_Clear", "ret": "void", "signature": "()", @@ -7041,7 +7359,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiKeyRoutingTable", - "location": "imgui_internal:1592", + "location": "imgui_internal:1601", + "namespace": "ImGuiKeyRoutingTable", "ov_cimguiname": "ImGuiKeyRoutingTable_ImGuiKeyRoutingTable", "signature": "()", "stname": "ImGuiKeyRoutingTable" @@ -7060,7 +7379,7 @@ "cimguiname": "ImGuiKeyRoutingTable_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1592", + "location": "imgui_internal:1601", "ov_cimguiname": "ImGuiKeyRoutingTable_destroy", "ret": "void", "signature": "(ImGuiKeyRoutingTable*)", @@ -7078,7 +7397,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiLastItemData", - "location": "imgui_internal:1389", + "location": "imgui_internal:1397", + "namespace": "ImGuiLastItemData", "ov_cimguiname": "ImGuiLastItemData_ImGuiLastItemData", "signature": "()", "stname": "ImGuiLastItemData" @@ -7097,7 +7417,7 @@ "cimguiname": "ImGuiLastItemData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1389", + "location": "imgui_internal:1397", "ov_cimguiname": "ImGuiLastItemData_destroy", "ret": "void", "signature": "(ImGuiLastItemData*)", @@ -7115,7 +7435,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiListClipperData", - "location": "imgui_internal:1676", + "location": "imgui_internal:1685", + "namespace": "ImGuiListClipperData", "ov_cimguiname": "ImGuiListClipperData_ImGuiListClipperData", "signature": "()", "stname": "ImGuiListClipperData" @@ -7140,7 +7461,8 @@ "cimguiname": "ImGuiListClipperData_Reset", "defaults": {}, "funcname": "Reset", - "location": "imgui_internal:1677", + "location": "imgui_internal:1686", + "namespace": "ImGuiListClipperData", "ov_cimguiname": "ImGuiListClipperData_Reset", "ret": "void", "signature": "(ImGuiListClipper*)", @@ -7160,7 +7482,7 @@ "cimguiname": "ImGuiListClipperData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1676", + "location": "imgui_internal:1685", "ov_cimguiname": "ImGuiListClipperData_destroy", "ret": "void", "signature": "(ImGuiListClipperData*)", @@ -7187,7 +7509,8 @@ "defaults": {}, "funcname": "FromIndices", "is_static_function": true, - "location": "imgui_internal:1663", + "location": "imgui_internal:1672", + "namespace": "ImGuiListClipperRange", "ov_cimguiname": "ImGuiListClipperRange_FromIndices", "ret": "ImGuiListClipperRange", "signature": "(int,int)", @@ -7222,7 +7545,8 @@ "defaults": {}, "funcname": "FromPositions", "is_static_function": true, - "location": "imgui_internal:1664", + "location": "imgui_internal:1673", + "namespace": "ImGuiListClipperRange", "ov_cimguiname": "ImGuiListClipperRange_FromPositions", "ret": "ImGuiListClipperRange", "signature": "(float,float,int,int)", @@ -7254,7 +7578,8 @@ "items_height": "-1.0f" }, "funcname": "Begin", - "location": "imgui:2874", + "location": "imgui:2877", + "namespace": "ImGuiListClipper", "ov_cimguiname": "ImGuiListClipper_Begin", "ret": "void", "signature": "(int,float)", @@ -7276,7 +7601,8 @@ "cimguiname": "ImGuiListClipper_End", "defaults": {}, "funcname": "End", - "location": "imgui:2875", + "location": "imgui:2878", + "namespace": "ImGuiListClipper", "ov_cimguiname": "ImGuiListClipper_End", "ret": "void", "signature": "()", @@ -7294,7 +7620,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiListClipper", - "location": "imgui:2872", + "location": "imgui:2875", + "namespace": "ImGuiListClipper", "ov_cimguiname": "ImGuiListClipper_ImGuiListClipper", "signature": "()", "stname": "ImGuiListClipper" @@ -7319,7 +7646,8 @@ "cimguiname": "ImGuiListClipper_IncludeItemByIndex", "defaults": {}, "funcname": "IncludeItemByIndex", - "location": "imgui:2880", + "location": "imgui:2883", + "namespace": "ImGuiListClipper", "ov_cimguiname": "ImGuiListClipper_IncludeItemByIndex", "ret": "void", "signature": "(int)", @@ -7349,7 +7677,8 @@ "cimguiname": "ImGuiListClipper_IncludeItemsByIndex", "defaults": {}, "funcname": "IncludeItemsByIndex", - "location": "imgui:2881", + "location": "imgui:2884", + "namespace": "ImGuiListClipper", "ov_cimguiname": "ImGuiListClipper_IncludeItemsByIndex", "ret": "void", "signature": "(int,int)", @@ -7375,7 +7704,8 @@ "cimguiname": "ImGuiListClipper_SeekCursorForItem", "defaults": {}, "funcname": "SeekCursorForItem", - "location": "imgui:2886", + "location": "imgui:2889", + "namespace": "ImGuiListClipper", "ov_cimguiname": "ImGuiListClipper_SeekCursorForItem", "ret": "void", "signature": "(int)", @@ -7397,7 +7727,8 @@ "cimguiname": "ImGuiListClipper_Step", "defaults": {}, "funcname": "Step", - "location": "imgui:2876", + "location": "imgui:2879", + "namespace": "ImGuiListClipper", "ov_cimguiname": "ImGuiListClipper_Step", "ret": "bool", "signature": "()", @@ -7417,7 +7748,7 @@ "cimguiname": "ImGuiListClipper_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2873", + "location": "imgui:2876", "ov_cimguiname": "ImGuiListClipper_destroy", "realdestructor": true, "ret": "void", @@ -7444,7 +7775,8 @@ "cimguiname": "ImGuiMenuColumns_CalcNextTotalWidth", "defaults": {}, "funcname": "CalcNextTotalWidth", - "location": "imgui_internal:1203", + "location": "imgui_internal:1210", + "namespace": "ImGuiMenuColumns", "ov_cimguiname": "ImGuiMenuColumns_CalcNextTotalWidth", "ret": "void", "signature": "(bool)", @@ -7482,7 +7814,8 @@ "cimguiname": "ImGuiMenuColumns_DeclColumns", "defaults": {}, "funcname": "DeclColumns", - "location": "imgui_internal:1202", + "location": "imgui_internal:1209", + "namespace": "ImGuiMenuColumns", "ov_cimguiname": "ImGuiMenuColumns_DeclColumns", "ret": "float", "signature": "(float,float,float,float)", @@ -7500,7 +7833,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiMenuColumns", - "location": "imgui_internal:1200", + "location": "imgui_internal:1207", + "namespace": "ImGuiMenuColumns", "ov_cimguiname": "ImGuiMenuColumns_ImGuiMenuColumns", "signature": "()", "stname": "ImGuiMenuColumns" @@ -7529,7 +7863,8 @@ "cimguiname": "ImGuiMenuColumns_Update", "defaults": {}, "funcname": "Update", - "location": "imgui_internal:1201", + "location": "imgui_internal:1208", + "namespace": "ImGuiMenuColumns", "ov_cimguiname": "ImGuiMenuColumns_Update", "ret": "void", "signature": "(float,bool)", @@ -7549,7 +7884,7 @@ "cimguiname": "ImGuiMenuColumns_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1200", + "location": "imgui_internal:1207", "ov_cimguiname": "ImGuiMenuColumns_destroy", "ret": "void", "signature": "(ImGuiMenuColumns*)", @@ -7567,7 +7902,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiMultiSelectState", - "location": "imgui_internal:1943", + "location": "imgui_internal:1954", + "namespace": "ImGuiMultiSelectState", "ov_cimguiname": "ImGuiMultiSelectState_ImGuiMultiSelectState", "signature": "()", "stname": "ImGuiMultiSelectState" @@ -7586,7 +7922,7 @@ "cimguiname": "ImGuiMultiSelectState_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1943", + "location": "imgui_internal:1954", "ov_cimguiname": "ImGuiMultiSelectState_destroy", "ret": "void", "signature": "(ImGuiMultiSelectState*)", @@ -7608,7 +7944,8 @@ "cimguiname": "ImGuiMultiSelectTempData_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:1927", + "location": "imgui_internal:1938", + "namespace": "ImGuiMultiSelectTempData", "ov_cimguiname": "ImGuiMultiSelectTempData_Clear", "ret": "void", "signature": "()", @@ -7630,7 +7967,8 @@ "cimguiname": "ImGuiMultiSelectTempData_ClearIO", "defaults": {}, "funcname": "ClearIO", - "location": "imgui_internal:1928", + "location": "imgui_internal:1939", + "namespace": "ImGuiMultiSelectTempData", "ov_cimguiname": "ImGuiMultiSelectTempData_ClearIO", "ret": "void", "signature": "()", @@ -7648,7 +7986,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiMultiSelectTempData", - "location": "imgui_internal:1926", + "location": "imgui_internal:1937", + "namespace": "ImGuiMultiSelectTempData", "ov_cimguiname": "ImGuiMultiSelectTempData_ImGuiMultiSelectTempData", "signature": "()", "stname": "ImGuiMultiSelectTempData" @@ -7667,7 +8006,7 @@ "cimguiname": "ImGuiMultiSelectTempData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1926", + "location": "imgui_internal:1937", "ov_cimguiname": "ImGuiMultiSelectTempData_destroy", "ret": "void", "signature": "(ImGuiMultiSelectTempData*)", @@ -7689,7 +8028,8 @@ "cimguiname": "ImGuiNavItemData_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:1768", + "location": "imgui_internal:1777", + "namespace": "ImGuiNavItemData", "ov_cimguiname": "ImGuiNavItemData_Clear", "ret": "void", "signature": "()", @@ -7707,7 +8047,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNavItemData", - "location": "imgui_internal:1767", + "location": "imgui_internal:1776", + "namespace": "ImGuiNavItemData", "ov_cimguiname": "ImGuiNavItemData_ImGuiNavItemData", "signature": "()", "stname": "ImGuiNavItemData" @@ -7726,7 +8067,7 @@ "cimguiname": "ImGuiNavItemData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1767", + "location": "imgui_internal:1776", "ov_cimguiname": "ImGuiNavItemData_destroy", "ret": "void", "signature": "(ImGuiNavItemData*)", @@ -7748,7 +8089,8 @@ "cimguiname": "ImGuiNextItemData_ClearFlags", "defaults": {}, "funcname": "ClearFlags", - "location": "imgui_internal:1373", + "location": "imgui_internal:1381", + "namespace": "ImGuiNextItemData", "ov_cimguiname": "ImGuiNextItemData_ClearFlags", "ret": "void", "signature": "()", @@ -7766,7 +8108,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNextItemData", - "location": "imgui_internal:1372", + "location": "imgui_internal:1380", + "namespace": "ImGuiNextItemData", "ov_cimguiname": "ImGuiNextItemData_ImGuiNextItemData", "signature": "()", "stname": "ImGuiNextItemData" @@ -7785,7 +8128,7 @@ "cimguiname": "ImGuiNextItemData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1372", + "location": "imgui_internal:1380", "ov_cimguiname": "ImGuiNextItemData_destroy", "ret": "void", "signature": "(ImGuiNextItemData*)", @@ -7807,7 +8150,8 @@ "cimguiname": "ImGuiNextWindowData_ClearFlags", "defaults": {}, "funcname": "ClearFlags", - "location": "imgui_internal:1341", + "location": "imgui_internal:1349", + "namespace": "ImGuiNextWindowData", "ov_cimguiname": "ImGuiNextWindowData_ClearFlags", "ret": "void", "signature": "()", @@ -7825,7 +8169,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNextWindowData", - "location": "imgui_internal:1340", + "location": "imgui_internal:1348", + "namespace": "ImGuiNextWindowData", "ov_cimguiname": "ImGuiNextWindowData_ImGuiNextWindowData", "signature": "()", "stname": "ImGuiNextWindowData" @@ -7844,7 +8189,7 @@ "cimguiname": "ImGuiNextWindowData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1340", + "location": "imgui_internal:1348", "ov_cimguiname": "ImGuiNextWindowData_destroy", "ret": "void", "signature": "(ImGuiNextWindowData*)", @@ -7862,7 +8207,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOldColumnData", - "location": "imgui_internal:1847", + "location": "imgui_internal:1856", + "namespace": "ImGuiOldColumnData", "ov_cimguiname": "ImGuiOldColumnData_ImGuiOldColumnData", "signature": "()", "stname": "ImGuiOldColumnData" @@ -7881,7 +8227,7 @@ "cimguiname": "ImGuiOldColumnData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1847", + "location": "imgui_internal:1856", "ov_cimguiname": "ImGuiOldColumnData_destroy", "ret": "void", "signature": "(ImGuiOldColumnData*)", @@ -7899,7 +8245,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOldColumns", - "location": "imgui_internal:1868", + "location": "imgui_internal:1877", + "namespace": "ImGuiOldColumns", "ov_cimguiname": "ImGuiOldColumns_ImGuiOldColumns", "signature": "()", "stname": "ImGuiOldColumns" @@ -7918,7 +8265,7 @@ "cimguiname": "ImGuiOldColumns_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1868", + "location": "imgui_internal:1877", "ov_cimguiname": "ImGuiOldColumns_destroy", "ret": "void", "signature": "(ImGuiOldColumns*)", @@ -7936,7 +8283,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOnceUponAFrame", - "location": "imgui:2722", + "location": "imgui:2725", + "namespace": "ImGuiOnceUponAFrame", "ov_cimguiname": "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame", "signature": "()", "stname": "ImGuiOnceUponAFrame" @@ -7955,7 +8303,7 @@ "cimguiname": "ImGuiOnceUponAFrame_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2722", + "location": "imgui:2725", "ov_cimguiname": "ImGuiOnceUponAFrame_destroy", "ret": "void", "signature": "(ImGuiOnceUponAFrame*)", @@ -7977,7 +8325,8 @@ "cimguiname": "ImGuiPayload_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2700", + "location": "imgui:2703", + "namespace": "ImGuiPayload", "ov_cimguiname": "ImGuiPayload_Clear", "ret": "void", "signature": "()", @@ -7995,7 +8344,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPayload", - "location": "imgui:2699", + "location": "imgui:2702", + "namespace": "ImGuiPayload", "ov_cimguiname": "ImGuiPayload_ImGuiPayload", "signature": "()", "stname": "ImGuiPayload" @@ -8020,7 +8370,8 @@ "cimguiname": "ImGuiPayload_IsDataType", "defaults": {}, "funcname": "IsDataType", - "location": "imgui:2701", + "location": "imgui:2704", + "namespace": "ImGuiPayload", "ov_cimguiname": "ImGuiPayload_IsDataType", "ret": "bool", "signature": "(const char*)const", @@ -8042,7 +8393,8 @@ "cimguiname": "ImGuiPayload_IsDelivery", "defaults": {}, "funcname": "IsDelivery", - "location": "imgui:2703", + "location": "imgui:2706", + "namespace": "ImGuiPayload", "ov_cimguiname": "ImGuiPayload_IsDelivery", "ret": "bool", "signature": "()const", @@ -8064,7 +8416,8 @@ "cimguiname": "ImGuiPayload_IsPreview", "defaults": {}, "funcname": "IsPreview", - "location": "imgui:2702", + "location": "imgui:2705", + "namespace": "ImGuiPayload", "ov_cimguiname": "ImGuiPayload_IsPreview", "ret": "bool", "signature": "()const", @@ -8084,7 +8437,7 @@ "cimguiname": "ImGuiPayload_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2699", + "location": "imgui:2702", "ov_cimguiname": "ImGuiPayload_destroy", "ret": "void", "signature": "(ImGuiPayload*)", @@ -8106,7 +8459,8 @@ "cimguiname": "ImGuiPlatformIO_ClearPlatformHandlers", "defaults": {}, "funcname": "ClearPlatformHandlers", - "location": "imgui:4036", + "location": "imgui:4051", + "namespace": "ImGuiPlatformIO", "ov_cimguiname": "ImGuiPlatformIO_ClearPlatformHandlers", "ret": "void", "signature": "()", @@ -8128,7 +8482,8 @@ "cimguiname": "ImGuiPlatformIO_ClearRendererHandlers", "defaults": {}, "funcname": "ClearRendererHandlers", - "location": "imgui:4037", + "location": "imgui:4052", + "namespace": "ImGuiPlatformIO", "ov_cimguiname": "ImGuiPlatformIO_ClearRendererHandlers", "ret": "void", "signature": "()", @@ -8146,7 +8501,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPlatformIO", - "location": "imgui:3986", + "location": "imgui:3995", + "namespace": "ImGuiPlatformIO", "ov_cimguiname": "ImGuiPlatformIO_ImGuiPlatformIO", "signature": "()", "stname": "ImGuiPlatformIO" @@ -8165,7 +8521,7 @@ "cimguiname": "ImGuiPlatformIO_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3986", + "location": "imgui:3995", "ov_cimguiname": "ImGuiPlatformIO_destroy", "ret": "void", "signature": "(ImGuiPlatformIO*)", @@ -8183,7 +8539,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPlatformImeData", - "location": "imgui:4049", + "location": "imgui:4064", + "namespace": "ImGuiPlatformImeData", "ov_cimguiname": "ImGuiPlatformImeData_ImGuiPlatformImeData", "signature": "()", "stname": "ImGuiPlatformImeData" @@ -8202,7 +8559,7 @@ "cimguiname": "ImGuiPlatformImeData_destroy", "defaults": {}, "destructor": true, - "location": "imgui:4049", + "location": "imgui:4064", "ov_cimguiname": "ImGuiPlatformImeData_destroy", "ret": "void", "signature": "(ImGuiPlatformImeData*)", @@ -8220,7 +8577,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPopupData", - "location": "imgui_internal:1483", + "location": "imgui_internal:1492", + "namespace": "ImGuiPopupData", "ov_cimguiname": "ImGuiPopupData_ImGuiPopupData", "signature": "()", "stname": "ImGuiPopupData" @@ -8239,7 +8597,7 @@ "cimguiname": "ImGuiPopupData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1483", + "location": "imgui_internal:1492", "ov_cimguiname": "ImGuiPopupData_destroy", "ret": "void", "signature": "(ImGuiPopupData*)", @@ -8262,7 +8620,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPtrOrIndex", - "location": "imgui_internal:1447", + "location": "imgui_internal:1455", + "namespace": "ImGuiPtrOrIndex", "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr", "signature": "(void*)", "stname": "ImGuiPtrOrIndex" @@ -8282,7 +8641,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPtrOrIndex", - "location": "imgui_internal:1448", + "location": "imgui_internal:1456", + "namespace": "ImGuiPtrOrIndex", "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int", "signature": "(int)", "stname": "ImGuiPtrOrIndex" @@ -8301,7 +8661,7 @@ "cimguiname": "ImGuiPtrOrIndex_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1447", + "location": "imgui_internal:1455", "ov_cimguiname": "ImGuiPtrOrIndex_destroy", "ret": "void", "signature": "(ImGuiPtrOrIndex*)", @@ -8327,7 +8687,8 @@ "cimguiname": "ImGuiSelectionBasicStorage_ApplyRequests", "defaults": {}, "funcname": "ApplyRequests", - "location": "imgui:3119", + "location": "imgui:3122", + "namespace": "ImGuiSelectionBasicStorage", "ov_cimguiname": "ImGuiSelectionBasicStorage_ApplyRequests", "ret": "void", "signature": "(ImGuiMultiSelectIO*)", @@ -8349,7 +8710,8 @@ "cimguiname": "ImGuiSelectionBasicStorage_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:3121", + "location": "imgui:3124", + "namespace": "ImGuiSelectionBasicStorage", "ov_cimguiname": "ImGuiSelectionBasicStorage_Clear", "ret": "void", "signature": "()", @@ -8375,7 +8737,8 @@ "cimguiname": "ImGuiSelectionBasicStorage_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui:3120", + "location": "imgui:3123", + "namespace": "ImGuiSelectionBasicStorage", "ov_cimguiname": "ImGuiSelectionBasicStorage_Contains", "ret": "bool", "signature": "(ImGuiID)const", @@ -8405,7 +8768,8 @@ "cimguiname": "ImGuiSelectionBasicStorage_GetNextSelectedItem", "defaults": {}, "funcname": "GetNextSelectedItem", - "location": "imgui:3124", + "location": "imgui:3127", + "namespace": "ImGuiSelectionBasicStorage", "ov_cimguiname": "ImGuiSelectionBasicStorage_GetNextSelectedItem", "ret": "bool", "signature": "(void**,ImGuiID*)", @@ -8431,7 +8795,8 @@ "cimguiname": "ImGuiSelectionBasicStorage_GetStorageIdFromIndex", "defaults": {}, "funcname": "GetStorageIdFromIndex", - "location": "imgui:3125", + "location": "imgui:3128", + "namespace": "ImGuiSelectionBasicStorage", "ov_cimguiname": "ImGuiSelectionBasicStorage_GetStorageIdFromIndex", "ret": "ImGuiID", "signature": "(int)", @@ -8449,7 +8814,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiSelectionBasicStorage", - "location": "imgui:3118", + "location": "imgui:3121", + "namespace": "ImGuiSelectionBasicStorage", "ov_cimguiname": "ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage", "signature": "()", "stname": "ImGuiSelectionBasicStorage" @@ -8478,7 +8844,8 @@ "cimguiname": "ImGuiSelectionBasicStorage_SetItemSelected", "defaults": {}, "funcname": "SetItemSelected", - "location": "imgui:3123", + "location": "imgui:3126", + "namespace": "ImGuiSelectionBasicStorage", "ov_cimguiname": "ImGuiSelectionBasicStorage_SetItemSelected", "ret": "void", "signature": "(ImGuiID,bool)", @@ -8505,7 +8872,8 @@ "cimguiname": "ImGuiSelectionBasicStorage_Swap", "defaults": {}, "funcname": "Swap", - "location": "imgui:3122", + "location": "imgui:3125", + "namespace": "ImGuiSelectionBasicStorage", "ov_cimguiname": "ImGuiSelectionBasicStorage_Swap", "ret": "void", "signature": "(ImGuiSelectionBasicStorage*)", @@ -8525,7 +8893,7 @@ "cimguiname": "ImGuiSelectionBasicStorage_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3118", + "location": "imgui:3121", "ov_cimguiname": "ImGuiSelectionBasicStorage_destroy", "ret": "void", "signature": "(ImGuiSelectionBasicStorage*)", @@ -8551,7 +8919,8 @@ "cimguiname": "ImGuiSelectionExternalStorage_ApplyRequests", "defaults": {}, "funcname": "ApplyRequests", - "location": "imgui:3138", + "location": "imgui:3141", + "namespace": "ImGuiSelectionExternalStorage", "ov_cimguiname": "ImGuiSelectionExternalStorage_ApplyRequests", "ret": "void", "signature": "(ImGuiMultiSelectIO*)", @@ -8569,7 +8938,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiSelectionExternalStorage", - "location": "imgui:3137", + "location": "imgui:3140", + "namespace": "ImGuiSelectionExternalStorage", "ov_cimguiname": "ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage", "signature": "()", "stname": "ImGuiSelectionExternalStorage" @@ -8588,7 +8958,7 @@ "cimguiname": "ImGuiSelectionExternalStorage_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3137", + "location": "imgui:3140", "ov_cimguiname": "ImGuiSelectionExternalStorage_destroy", "ret": "void", "signature": "(ImGuiSelectionExternalStorage*)", @@ -8606,7 +8976,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiSettingsHandler", - "location": "imgui_internal:2023", + "location": "imgui_internal:2034", + "namespace": "ImGuiSettingsHandler", "ov_cimguiname": "ImGuiSettingsHandler_ImGuiSettingsHandler", "signature": "()", "stname": "ImGuiSettingsHandler" @@ -8625,7 +8996,7 @@ "cimguiname": "ImGuiSettingsHandler_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2023", + "location": "imgui_internal:2034", "ov_cimguiname": "ImGuiSettingsHandler_destroy", "ret": "void", "signature": "(ImGuiSettingsHandler*)", @@ -8643,7 +9014,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStackLevelInfo", - "location": "imgui_internal:2141", + "location": "imgui_internal:2152", + "namespace": "ImGuiStackLevelInfo", "ov_cimguiname": "ImGuiStackLevelInfo_ImGuiStackLevelInfo", "signature": "()", "stname": "ImGuiStackLevelInfo" @@ -8662,7 +9034,7 @@ "cimguiname": "ImGuiStackLevelInfo_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2141", + "location": "imgui_internal:2152", "ov_cimguiname": "ImGuiStackLevelInfo_destroy", "ret": "void", "signature": "(ImGuiStackLevelInfo*)", @@ -8689,7 +9061,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2780", + "location": "imgui:2783", + "namespace": "ImGuiStoragePair", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Int", "signature": "(ImGuiID,int)", "stname": "ImGuiStoragePair" @@ -8713,7 +9086,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2781", + "location": "imgui:2784", + "namespace": "ImGuiStoragePair", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Float", "signature": "(ImGuiID,float)", "stname": "ImGuiStoragePair" @@ -8737,7 +9111,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2782", + "location": "imgui:2785", + "namespace": "ImGuiStoragePair", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Ptr", "signature": "(ImGuiID,void*)", "stname": "ImGuiStoragePair" @@ -8756,7 +9131,7 @@ "cimguiname": "ImGuiStoragePair_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2780", + "location": "imgui:2783", "ov_cimguiname": "ImGuiStoragePair_destroy", "ret": "void", "signature": "(ImGuiStoragePair*)", @@ -8778,7 +9153,8 @@ "cimguiname": "ImGuiStorage_BuildSortByKey", "defaults": {}, "funcname": "BuildSortByKey", - "location": "imgui:2821", + "location": "imgui:2824", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_BuildSortByKey", "ret": "void", "signature": "()", @@ -8800,7 +9176,8 @@ "cimguiname": "ImGuiStorage_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2801", + "location": "imgui:2804", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_Clear", "ret": "void", "signature": "()", @@ -8832,7 +9209,8 @@ "default_val": "false" }, "funcname": "GetBool", - "location": "imgui:2804", + "location": "imgui:2807", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_GetBool", "ret": "bool", "signature": "(ImGuiID,bool)const", @@ -8864,7 +9242,8 @@ "default_val": "false" }, "funcname": "GetBoolRef", - "location": "imgui:2816", + "location": "imgui:2819", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_GetBoolRef", "ret": "bool*", "signature": "(ImGuiID,bool)", @@ -8896,7 +9275,8 @@ "default_val": "0.0f" }, "funcname": "GetFloat", - "location": "imgui:2806", + "location": "imgui:2809", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_GetFloat", "ret": "float", "signature": "(ImGuiID,float)const", @@ -8928,7 +9308,8 @@ "default_val": "0.0f" }, "funcname": "GetFloatRef", - "location": "imgui:2817", + "location": "imgui:2820", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_GetFloatRef", "ret": "float*", "signature": "(ImGuiID,float)", @@ -8960,7 +9341,8 @@ "default_val": "0" }, "funcname": "GetInt", - "location": "imgui:2802", + "location": "imgui:2805", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_GetInt", "ret": "int", "signature": "(ImGuiID,int)const", @@ -8992,7 +9374,8 @@ "default_val": "0" }, "funcname": "GetIntRef", - "location": "imgui:2815", + "location": "imgui:2818", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_GetIntRef", "ret": "int*", "signature": "(ImGuiID,int)", @@ -9018,7 +9401,8 @@ "cimguiname": "ImGuiStorage_GetVoidPtr", "defaults": {}, "funcname": "GetVoidPtr", - "location": "imgui:2808", + "location": "imgui:2811", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_GetVoidPtr", "ret": "void*", "signature": "(ImGuiID)const", @@ -9050,7 +9434,8 @@ "default_val": "NULL" }, "funcname": "GetVoidPtrRef", - "location": "imgui:2818", + "location": "imgui:2821", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_GetVoidPtrRef", "ret": "void**", "signature": "(ImGuiID,void*)", @@ -9076,7 +9461,8 @@ "cimguiname": "ImGuiStorage_SetAllInt", "defaults": {}, "funcname": "SetAllInt", - "location": "imgui:2823", + "location": "imgui:2826", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_SetAllInt", "ret": "void", "signature": "(int)", @@ -9106,7 +9492,8 @@ "cimguiname": "ImGuiStorage_SetBool", "defaults": {}, "funcname": "SetBool", - "location": "imgui:2805", + "location": "imgui:2808", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_SetBool", "ret": "void", "signature": "(ImGuiID,bool)", @@ -9136,7 +9523,8 @@ "cimguiname": "ImGuiStorage_SetFloat", "defaults": {}, "funcname": "SetFloat", - "location": "imgui:2807", + "location": "imgui:2810", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_SetFloat", "ret": "void", "signature": "(ImGuiID,float)", @@ -9166,7 +9554,8 @@ "cimguiname": "ImGuiStorage_SetInt", "defaults": {}, "funcname": "SetInt", - "location": "imgui:2803", + "location": "imgui:2806", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_SetInt", "ret": "void", "signature": "(ImGuiID,int)", @@ -9196,7 +9585,8 @@ "cimguiname": "ImGuiStorage_SetVoidPtr", "defaults": {}, "funcname": "SetVoidPtr", - "location": "imgui:2809", + "location": "imgui:2812", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_SetVoidPtr", "ret": "void", "signature": "(ImGuiID,void*)", @@ -9223,7 +9613,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:926", + "location": "imgui_internal:932", + "namespace": "ImGuiStyleMod", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Int", "signature": "(ImGuiStyleVar,int)", "stname": "ImGuiStyleMod" @@ -9247,7 +9638,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:927", + "location": "imgui_internal:933", + "namespace": "ImGuiStyleMod", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Float", "signature": "(ImGuiStyleVar,float)", "stname": "ImGuiStyleMod" @@ -9271,7 +9663,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:928", + "location": "imgui_internal:934", + "namespace": "ImGuiStyleMod", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Vec2", "signature": "(ImGuiStyleVar,ImVec2)", "stname": "ImGuiStyleMod" @@ -9290,7 +9683,7 @@ "cimguiname": "ImGuiStyleMod_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:926", + "location": "imgui_internal:932", "ov_cimguiname": "ImGuiStyleMod_destroy", "ret": "void", "signature": "(ImGuiStyleMod*)", @@ -9316,7 +9709,8 @@ "cimguiname": "ImGuiStyleVarInfo_GetVarPtr", "defaults": {}, "funcname": "GetVarPtr", - "location": "imgui_internal:911", + "location": "imgui_internal:917", + "namespace": "ImGuiStyleVarInfo", "ov_cimguiname": "ImGuiStyleVarInfo_GetVarPtr", "ret": "void*", "signature": "(void*)const", @@ -9334,7 +9728,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyle", - "location": "imgui:2367", + "location": "imgui:2370", + "namespace": "ImGuiStyle", "ov_cimguiname": "ImGuiStyle_ImGuiStyle", "signature": "()", "stname": "ImGuiStyle" @@ -9359,7 +9754,8 @@ "cimguiname": "ImGuiStyle_ScaleAllSizes", "defaults": {}, "funcname": "ScaleAllSizes", - "location": "imgui:2368", + "location": "imgui:2371", + "namespace": "ImGuiStyle", "ov_cimguiname": "ImGuiStyle_ScaleAllSizes", "ret": "void", "signature": "(float)", @@ -9379,7 +9775,7 @@ "cimguiname": "ImGuiStyle_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2367", + "location": "imgui:2370", "ov_cimguiname": "ImGuiStyle_destroy", "ret": "void", "signature": "(ImGuiStyle*)", @@ -9397,7 +9793,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTabBar", - "location": "imgui_internal:2863", + "location": "imgui_internal:2875", + "namespace": "ImGuiTabBar", "ov_cimguiname": "ImGuiTabBar_ImGuiTabBar", "signature": "()", "stname": "ImGuiTabBar" @@ -9416,7 +9813,7 @@ "cimguiname": "ImGuiTabBar_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2863", + "location": "imgui_internal:2875", "ov_cimguiname": "ImGuiTabBar_destroy", "ret": "void", "signature": "(ImGuiTabBar*)", @@ -9434,7 +9831,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTabItem", - "location": "imgui_internal:2819", + "location": "imgui_internal:2831", + "namespace": "ImGuiTabItem", "ov_cimguiname": "ImGuiTabItem_ImGuiTabItem", "signature": "()", "stname": "ImGuiTabItem" @@ -9453,7 +9851,7 @@ "cimguiname": "ImGuiTabItem_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2819", + "location": "imgui_internal:2831", "ov_cimguiname": "ImGuiTabItem_destroy", "ret": "void", "signature": "(ImGuiTabItem*)", @@ -9471,7 +9869,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumnSettings", - "location": "imgui_internal:3130", + "location": "imgui_internal:3142", + "namespace": "ImGuiTableColumnSettings", "ov_cimguiname": "ImGuiTableColumnSettings_ImGuiTableColumnSettings", "signature": "()", "stname": "ImGuiTableColumnSettings" @@ -9490,7 +9889,7 @@ "cimguiname": "ImGuiTableColumnSettings_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:3130", + "location": "imgui_internal:3142", "ov_cimguiname": "ImGuiTableColumnSettings_destroy", "ret": "void", "signature": "(ImGuiTableColumnSettings*)", @@ -9508,7 +9907,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumnSortSpecs", - "location": "imgui:2163", + "location": "imgui:2166", + "namespace": "ImGuiTableColumnSortSpecs", "ov_cimguiname": "ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs", "signature": "()", "stname": "ImGuiTableColumnSortSpecs" @@ -9527,7 +9927,7 @@ "cimguiname": "ImGuiTableColumnSortSpecs_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2163", + "location": "imgui:2166", "ov_cimguiname": "ImGuiTableColumnSortSpecs_destroy", "ret": "void", "signature": "(ImGuiTableColumnSortSpecs*)", @@ -9545,7 +9945,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumn", - "location": "imgui_internal:2922", + "location": "imgui_internal:2934", + "namespace": "ImGuiTableColumn", "ov_cimguiname": "ImGuiTableColumn_ImGuiTableColumn", "signature": "()", "stname": "ImGuiTableColumn" @@ -9564,7 +9965,7 @@ "cimguiname": "ImGuiTableColumn_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2922", + "location": "imgui_internal:2934", "ov_cimguiname": "ImGuiTableColumn_destroy", "ret": "void", "signature": "(ImGuiTableColumn*)", @@ -9582,7 +9983,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableInstanceData", - "location": "imgui_internal:2965", + "location": "imgui_internal:2977", + "namespace": "ImGuiTableInstanceData", "ov_cimguiname": "ImGuiTableInstanceData_ImGuiTableInstanceData", "signature": "()", "stname": "ImGuiTableInstanceData" @@ -9601,7 +10003,7 @@ "cimguiname": "ImGuiTableInstanceData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2965", + "location": "imgui_internal:2977", "ov_cimguiname": "ImGuiTableInstanceData_destroy", "ret": "void", "signature": "(ImGuiTableInstanceData*)", @@ -9623,7 +10025,8 @@ "cimguiname": "ImGuiTableSettings_GetColumnSettings", "defaults": {}, "funcname": "GetColumnSettings", - "location": "imgui_internal:3153", + "location": "imgui_internal:3165", + "namespace": "ImGuiTableSettings", "ov_cimguiname": "ImGuiTableSettings_GetColumnSettings", "ret": "ImGuiTableColumnSettings*", "signature": "()", @@ -9641,7 +10044,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableSettings", - "location": "imgui_internal:3152", + "location": "imgui_internal:3164", + "namespace": "ImGuiTableSettings", "ov_cimguiname": "ImGuiTableSettings_ImGuiTableSettings", "signature": "()", "stname": "ImGuiTableSettings" @@ -9660,7 +10064,7 @@ "cimguiname": "ImGuiTableSettings_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:3152", + "location": "imgui_internal:3164", "ov_cimguiname": "ImGuiTableSettings_destroy", "ret": "void", "signature": "(ImGuiTableSettings*)", @@ -9678,7 +10082,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableSortSpecs", - "location": "imgui:2152", + "location": "imgui:2155", + "namespace": "ImGuiTableSortSpecs", "ov_cimguiname": "ImGuiTableSortSpecs_ImGuiTableSortSpecs", "signature": "()", "stname": "ImGuiTableSortSpecs" @@ -9697,7 +10102,7 @@ "cimguiname": "ImGuiTableSortSpecs_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2152", + "location": "imgui:2155", "ov_cimguiname": "ImGuiTableSortSpecs_destroy", "ret": "void", "signature": "(ImGuiTableSortSpecs*)", @@ -9715,7 +10120,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableTempData", - "location": "imgui_internal:3115", + "location": "imgui_internal:3127", + "namespace": "ImGuiTableTempData", "ov_cimguiname": "ImGuiTableTempData_ImGuiTableTempData", "signature": "()", "stname": "ImGuiTableTempData" @@ -9734,7 +10140,7 @@ "cimguiname": "ImGuiTableTempData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:3115", + "location": "imgui_internal:3127", "ov_cimguiname": "ImGuiTableTempData_destroy", "ret": "void", "signature": "(ImGuiTableTempData*)", @@ -9752,7 +10158,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTable", - "location": "imgui_internal:3086", + "location": "imgui_internal:3098", + "namespace": "ImGuiTable", "ov_cimguiname": "ImGuiTable_ImGuiTable", "signature": "()", "stname": "ImGuiTable" @@ -9771,7 +10178,7 @@ "cimguiname": "ImGuiTable_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:3087", + "location": "imgui_internal:3099", "ov_cimguiname": "ImGuiTable_destroy", "realdestructor": true, "ret": "void", @@ -9790,7 +10197,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextBuffer", - "location": "imgui:2760", + "location": "imgui:2763", + "namespace": "ImGuiTextBuffer", "ov_cimguiname": "ImGuiTextBuffer_ImGuiTextBuffer", "signature": "()", "stname": "ImGuiTextBuffer" @@ -9821,7 +10229,8 @@ "str_end": "NULL" }, "funcname": "append", - "location": "imgui:2770", + "location": "imgui:2773", + "namespace": "ImGuiTextBuffer", "ov_cimguiname": "ImGuiTextBuffer_append", "ret": "void", "signature": "(const char*,const char*)", @@ -9852,8 +10261,9 @@ "defaults": {}, "funcname": "appendf", "isvararg": "...)", - "location": "imgui:2771", + "location": "imgui:2774", "manual": true, + "namespace": "ImGuiTextBuffer", "ov_cimguiname": "ImGuiTextBuffer_appendf", "ret": "void", "signature": "(ImGuiTextBuffer*, const char*,...)", @@ -9883,7 +10293,8 @@ "cimguiname": "ImGuiTextBuffer_appendfv", "defaults": {}, "funcname": "appendfv", - "location": "imgui:2772", + "location": "imgui:2775", + "namespace": "ImGuiTextBuffer", "ov_cimguiname": "ImGuiTextBuffer_appendfv", "ret": "void", "signature": "(const char*,va_list)", @@ -9905,7 +10316,8 @@ "cimguiname": "ImGuiTextBuffer_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:2762", + "location": "imgui:2765", + "namespace": "ImGuiTextBuffer", "ov_cimguiname": "ImGuiTextBuffer_begin", "ret": "const char*", "signature": "()const", @@ -9927,7 +10339,8 @@ "cimguiname": "ImGuiTextBuffer_c_str", "defaults": {}, "funcname": "c_str", - "location": "imgui:2769", + "location": "imgui:2772", + "namespace": "ImGuiTextBuffer", "ov_cimguiname": "ImGuiTextBuffer_c_str", "ret": "const char*", "signature": "()const", @@ -9949,7 +10362,8 @@ "cimguiname": "ImGuiTextBuffer_clear", "defaults": {}, "funcname": "clear", - "location": "imgui:2766", + "location": "imgui:2769", + "namespace": "ImGuiTextBuffer", "ov_cimguiname": "ImGuiTextBuffer_clear", "ret": "void", "signature": "()", @@ -9969,7 +10383,7 @@ "cimguiname": "ImGuiTextBuffer_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2760", + "location": "imgui:2763", "ov_cimguiname": "ImGuiTextBuffer_destroy", "ret": "void", "signature": "(ImGuiTextBuffer*)", @@ -9991,7 +10405,8 @@ "cimguiname": "ImGuiTextBuffer_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:2765", + "location": "imgui:2768", + "namespace": "ImGuiTextBuffer", "ov_cimguiname": "ImGuiTextBuffer_empty", "ret": "bool", "signature": "()const", @@ -10013,7 +10428,8 @@ "cimguiname": "ImGuiTextBuffer_end", "defaults": {}, "funcname": "end", - "location": "imgui:2763", + "location": "imgui:2766", + "namespace": "ImGuiTextBuffer", "ov_cimguiname": "ImGuiTextBuffer_end", "ret": "const char*", "signature": "()const", @@ -10039,7 +10455,8 @@ "cimguiname": "ImGuiTextBuffer_reserve", "defaults": {}, "funcname": "reserve", - "location": "imgui:2768", + "location": "imgui:2771", + "namespace": "ImGuiTextBuffer", "ov_cimguiname": "ImGuiTextBuffer_reserve", "ret": "void", "signature": "(int)", @@ -10065,7 +10482,8 @@ "cimguiname": "ImGuiTextBuffer_resize", "defaults": {}, "funcname": "resize", - "location": "imgui:2767", + "location": "imgui:2770", + "namespace": "ImGuiTextBuffer", "ov_cimguiname": "ImGuiTextBuffer_resize", "ret": "void", "signature": "(int)", @@ -10087,7 +10505,8 @@ "cimguiname": "ImGuiTextBuffer_size", "defaults": {}, "funcname": "size", - "location": "imgui:2764", + "location": "imgui:2767", + "namespace": "ImGuiTextBuffer", "ov_cimguiname": "ImGuiTextBuffer_size", "ret": "int", "signature": "()const", @@ -10109,7 +10528,8 @@ "cimguiname": "ImGuiTextFilter_Build", "defaults": {}, "funcname": "Build", - "location": "imgui:2733", + "location": "imgui:2736", + "namespace": "ImGuiTextFilter", "ov_cimguiname": "ImGuiTextFilter_Build", "ret": "void", "signature": "()", @@ -10131,7 +10551,8 @@ "cimguiname": "ImGuiTextFilter_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2734", + "location": "imgui:2737", + "namespace": "ImGuiTextFilter", "ov_cimguiname": "ImGuiTextFilter_Clear", "ret": "void", "signature": "()", @@ -10164,7 +10585,8 @@ "width": "0.0f" }, "funcname": "Draw", - "location": "imgui:2731", + "location": "imgui:2734", + "namespace": "ImGuiTextFilter", "ov_cimguiname": "ImGuiTextFilter_Draw", "ret": "bool", "signature": "(const char*,float)", @@ -10189,7 +10611,8 @@ "default_filter": "\"\"" }, "funcname": "ImGuiTextFilter", - "location": "imgui:2730", + "location": "imgui:2733", + "namespace": "ImGuiTextFilter", "ov_cimguiname": "ImGuiTextFilter_ImGuiTextFilter", "signature": "(const char*)", "stname": "ImGuiTextFilter" @@ -10210,7 +10633,8 @@ "cimguiname": "ImGuiTextFilter_IsActive", "defaults": {}, "funcname": "IsActive", - "location": "imgui:2735", + "location": "imgui:2738", + "namespace": "ImGuiTextFilter", "ov_cimguiname": "ImGuiTextFilter_IsActive", "ret": "bool", "signature": "()const", @@ -10242,7 +10666,8 @@ "text_end": "NULL" }, "funcname": "PassFilter", - "location": "imgui:2732", + "location": "imgui:2735", + "namespace": "ImGuiTextFilter", "ov_cimguiname": "ImGuiTextFilter_PassFilter", "ret": "bool", "signature": "(const char*,const char*)const", @@ -10262,7 +10687,7 @@ "cimguiname": "ImGuiTextFilter_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2730", + "location": "imgui:2733", "ov_cimguiname": "ImGuiTextFilter_destroy", "ret": "void", "signature": "(ImGuiTextFilter*)", @@ -10296,7 +10721,8 @@ "cimguiname": "ImGuiTextIndex_append", "defaults": {}, "funcname": "append", - "location": "imgui_internal:821", + "location": "imgui_internal:827", + "namespace": "ImGuiTextIndex", "ov_cimguiname": "ImGuiTextIndex_append", "ret": "void", "signature": "(const char*,int,int)", @@ -10318,7 +10744,8 @@ "cimguiname": "ImGuiTextIndex_clear", "defaults": {}, "funcname": "clear", - "location": "imgui_internal:817", + "location": "imgui_internal:823", + "namespace": "ImGuiTextIndex", "ov_cimguiname": "ImGuiTextIndex_clear", "ret": "void", "signature": "()", @@ -10348,7 +10775,8 @@ "cimguiname": "ImGuiTextIndex_get_line_begin", "defaults": {}, "funcname": "get_line_begin", - "location": "imgui_internal:819", + "location": "imgui_internal:825", + "namespace": "ImGuiTextIndex", "ov_cimguiname": "ImGuiTextIndex_get_line_begin", "ret": "const char*", "signature": "(const char*,int)", @@ -10378,7 +10806,8 @@ "cimguiname": "ImGuiTextIndex_get_line_end", "defaults": {}, "funcname": "get_line_end", - "location": "imgui_internal:820", + "location": "imgui_internal:826", + "namespace": "ImGuiTextIndex", "ov_cimguiname": "ImGuiTextIndex_get_line_end", "ret": "const char*", "signature": "(const char*,int)", @@ -10400,7 +10829,8 @@ "cimguiname": "ImGuiTextIndex_size", "defaults": {}, "funcname": "size", - "location": "imgui_internal:818", + "location": "imgui_internal:824", + "namespace": "ImGuiTextIndex", "ov_cimguiname": "ImGuiTextIndex_size", "ret": "int", "signature": "()", @@ -10418,7 +10848,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextRange", - "location": "imgui:2743", + "location": "imgui:2746", + "namespace": "ImGuiTextFilter::ImGuiTextRange", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRange_Nil", "signature": "()", "stname": "ImGuiTextRange" @@ -10442,7 +10873,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextRange", - "location": "imgui:2744", + "location": "imgui:2747", + "namespace": "ImGuiTextFilter::ImGuiTextRange", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRange_Str", "signature": "(const char*,const char*)", "stname": "ImGuiTextRange" @@ -10461,7 +10893,7 @@ "cimguiname": "ImGuiTextRange_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2743", + "location": "imgui:2746", "ov_cimguiname": "ImGuiTextRange_destroy", "ret": "void", "signature": "(ImGuiTextRange*)", @@ -10483,7 +10915,8 @@ "cimguiname": "ImGuiTextRange_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:2745", + "location": "imgui:2748", + "namespace": "ImGuiTextFilter::ImGuiTextRange", "ov_cimguiname": "ImGuiTextRange_empty", "ret": "bool", "signature": "()const", @@ -10504,6 +10937,7 @@ }, { "name": "out", + "template_orig": "ImVector* out", "type": "ImVector_ImGuiTextRange*" } ], @@ -10513,7 +10947,8 @@ "cimguiname": "ImGuiTextRange_split", "defaults": {}, "funcname": "split", - "location": "imgui:2746", + "location": "imgui:2749", + "namespace": "ImGuiTextFilter::ImGuiTextRange", "ov_cimguiname": "ImGuiTextRange_split", "ret": "void", "signature": "(char,ImVector_ImGuiTextRange*)const", @@ -10535,7 +10970,8 @@ "cimguiname": "ImGuiTypingSelectState_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:1812", + "location": "imgui_internal:1821", + "namespace": "ImGuiTypingSelectState", "ov_cimguiname": "ImGuiTypingSelectState_Clear", "ret": "void", "signature": "()", @@ -10553,7 +10989,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTypingSelectState", - "location": "imgui_internal:1811", + "location": "imgui_internal:1820", + "namespace": "ImGuiTypingSelectState", "ov_cimguiname": "ImGuiTypingSelectState_ImGuiTypingSelectState", "signature": "()", "stname": "ImGuiTypingSelectState" @@ -10572,7 +11009,7 @@ "cimguiname": "ImGuiTypingSelectState_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1811", + "location": "imgui_internal:1820", "ov_cimguiname": "ImGuiTypingSelectState_destroy", "ret": "void", "signature": "(ImGuiTypingSelectState*)", @@ -10599,7 +11036,8 @@ "conv": "ImVec2", "defaults": {}, "funcname": "CalcWorkRectPos", - "location": "imgui_internal:1980", + "location": "imgui_internal:1991", + "namespace": "ImGuiViewportP", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_CalcWorkRectPos", "ret": "ImVec2_c", @@ -10631,7 +11069,8 @@ "conv": "ImVec2", "defaults": {}, "funcname": "CalcWorkRectSize", - "location": "imgui_internal:1981", + "location": "imgui_internal:1992", + "namespace": "ImGuiViewportP", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_CalcWorkRectSize", "ret": "ImVec2_c", @@ -10655,7 +11094,8 @@ "conv": "ImRect", "defaults": {}, "funcname": "GetBuildWorkRect", - "location": "imgui_internal:1987", + "location": "imgui_internal:1998", + "namespace": "ImGuiViewportP", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetBuildWorkRect", "ret": "ImRect_c", @@ -10679,7 +11119,8 @@ "conv": "ImRect", "defaults": {}, "funcname": "GetMainRect", - "location": "imgui_internal:1985", + "location": "imgui_internal:1996", + "namespace": "ImGuiViewportP", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetMainRect", "ret": "ImRect_c", @@ -10703,7 +11144,8 @@ "conv": "ImRect", "defaults": {}, "funcname": "GetWorkRect", - "location": "imgui_internal:1986", + "location": "imgui_internal:1997", + "namespace": "ImGuiViewportP", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetWorkRect", "ret": "ImRect_c", @@ -10722,7 +11164,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiViewportP", - "location": "imgui_internal:1976", + "location": "imgui_internal:1987", + "namespace": "ImGuiViewportP", "ov_cimguiname": "ImGuiViewportP_ImGuiViewportP", "signature": "()", "stname": "ImGuiViewportP" @@ -10743,7 +11186,8 @@ "cimguiname": "ImGuiViewportP_UpdateWorkRect", "defaults": {}, "funcname": "UpdateWorkRect", - "location": "imgui_internal:1982", + "location": "imgui_internal:1993", + "namespace": "ImGuiViewportP", "ov_cimguiname": "ImGuiViewportP_UpdateWorkRect", "ret": "void", "signature": "()", @@ -10763,7 +11207,7 @@ "cimguiname": "ImGuiViewportP_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1977", + "location": "imgui_internal:1988", "ov_cimguiname": "ImGuiViewportP_destroy", "realdestructor": true, "ret": "void", @@ -10787,7 +11231,8 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetCenter", - "location": "imgui:3975", + "location": "imgui:3984", + "namespace": "ImGuiViewport", "nonUDT": 1, "ov_cimguiname": "ImGuiViewport_GetCenter", "ret": "ImVec2_c", @@ -10811,7 +11256,8 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetWorkCenter", - "location": "imgui:3976", + "location": "imgui:3985", + "namespace": "ImGuiViewport", "nonUDT": 1, "ov_cimguiname": "ImGuiViewport_GetWorkCenter", "ret": "ImVec2_c", @@ -10830,7 +11276,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiViewport", - "location": "imgui:3972", + "location": "imgui:3981", + "namespace": "ImGuiViewport", "ov_cimguiname": "ImGuiViewport_ImGuiViewport", "signature": "()", "stname": "ImGuiViewport" @@ -10849,7 +11296,7 @@ "cimguiname": "ImGuiViewport_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3972", + "location": "imgui:3981", "ov_cimguiname": "ImGuiViewport_destroy", "ret": "void", "signature": "(ImGuiViewport*)", @@ -10871,7 +11318,8 @@ "cimguiname": "ImGuiWindowSettings_GetName", "defaults": {}, "funcname": "GetName", - "location": "imgui_internal:2008", + "location": "imgui_internal:2019", + "namespace": "ImGuiWindowSettings", "ov_cimguiname": "ImGuiWindowSettings_GetName", "ret": "char*", "signature": "()", @@ -10889,7 +11337,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindowSettings", - "location": "imgui_internal:2007", + "location": "imgui_internal:2018", + "namespace": "ImGuiWindowSettings", "ov_cimguiname": "ImGuiWindowSettings_ImGuiWindowSettings", "signature": "()", "stname": "ImGuiWindowSettings" @@ -10908,7 +11357,7 @@ "cimguiname": "ImGuiWindowSettings_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2007", + "location": "imgui_internal:2018", "ov_cimguiname": "ImGuiWindowSettings_destroy", "ret": "void", "signature": "(ImGuiWindowSettings*)", @@ -10940,7 +11389,8 @@ "str_end": "NULL" }, "funcname": "GetID", - "location": "imgui_internal:2766", + "location": "imgui_internal:2778", + "namespace": "ImGuiWindow", "ov_cimguiname": "ImGuiWindow_GetID_Str", "ret": "ImGuiID", "signature": "(const char*,const char*)", @@ -10964,7 +11414,8 @@ "cimguiname": "ImGuiWindow_GetID", "defaults": {}, "funcname": "GetID", - "location": "imgui_internal:2767", + "location": "imgui_internal:2779", + "namespace": "ImGuiWindow", "ov_cimguiname": "ImGuiWindow_GetID_Ptr", "ret": "ImGuiID", "signature": "(const void*)", @@ -10988,7 +11439,8 @@ "cimguiname": "ImGuiWindow_GetID", "defaults": {}, "funcname": "GetID", - "location": "imgui_internal:2768", + "location": "imgui_internal:2780", + "namespace": "ImGuiWindow", "ov_cimguiname": "ImGuiWindow_GetID_Int", "ret": "ImGuiID", "signature": "(int)", @@ -11014,7 +11466,8 @@ "cimguiname": "ImGuiWindow_GetIDFromPos", "defaults": {}, "funcname": "GetIDFromPos", - "location": "imgui_internal:2769", + "location": "imgui_internal:2781", + "namespace": "ImGuiWindow", "ov_cimguiname": "ImGuiWindow_GetIDFromPos", "ret": "ImGuiID", "signature": "(const ImVec2)", @@ -11040,7 +11493,8 @@ "cimguiname": "ImGuiWindow_GetIDFromRectangle", "defaults": {}, "funcname": "GetIDFromRectangle", - "location": "imgui_internal:2770", + "location": "imgui_internal:2782", + "namespace": "ImGuiWindow", "ov_cimguiname": "ImGuiWindow_GetIDFromRectangle", "ret": "ImGuiID", "signature": "(const ImRect)", @@ -11067,7 +11521,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindow", - "location": "imgui_internal:2762", + "location": "imgui_internal:2774", + "namespace": "ImGuiWindow", "ov_cimguiname": "ImGuiWindow_ImGuiWindow", "signature": "(ImGuiContext*,const char*)", "stname": "ImGuiWindow" @@ -11089,7 +11544,8 @@ "conv": "ImRect", "defaults": {}, "funcname": "MenuBarRect", - "location": "imgui_internal:2775", + "location": "imgui_internal:2787", + "namespace": "ImGuiWindow", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_MenuBarRect", "ret": "ImRect_c", @@ -11113,7 +11569,8 @@ "conv": "ImRect", "defaults": {}, "funcname": "Rect", - "location": "imgui_internal:2773", + "location": "imgui_internal:2785", + "namespace": "ImGuiWindow", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_Rect", "ret": "ImRect_c", @@ -11137,7 +11594,8 @@ "conv": "ImRect", "defaults": {}, "funcname": "TitleBarRect", - "location": "imgui_internal:2774", + "location": "imgui_internal:2786", + "namespace": "ImGuiWindow", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_TitleBarRect", "ret": "ImRect_c", @@ -11158,7 +11616,7 @@ "cimguiname": "ImGuiWindow_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2764", + "location": "imgui_internal:2776", "ov_cimguiname": "ImGuiWindow_destroy", "realdestructor": true, "ret": "void", @@ -11181,7 +11639,8 @@ "cimguiname": "ImPool_Add", "defaults": {}, "funcname": "Add", - "location": "imgui_internal:774", + "location": "imgui_internal:780", + "namespace": "ImPool", "ov_cimguiname": "ImPool_Add", "ret": "T*", "signature": "()", @@ -11204,7 +11663,8 @@ "cimguiname": "ImPool_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:773", + "location": "imgui_internal:779", + "namespace": "ImPool", "ov_cimguiname": "ImPool_Clear", "ret": "void", "signature": "()", @@ -11231,7 +11691,8 @@ "cimguiname": "ImPool_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui_internal:772", + "location": "imgui_internal:778", + "namespace": "ImPool", "ov_cimguiname": "ImPool_Contains", "ret": "bool", "signature": "(const T*)const", @@ -11254,7 +11715,8 @@ "cimguiname": "ImPool_GetAliveCount", "defaults": {}, "funcname": "GetAliveCount", - "location": "imgui_internal:781", + "location": "imgui_internal:787", + "namespace": "ImPool", "ov_cimguiname": "ImPool_GetAliveCount", "ret": "int", "signature": "()const", @@ -11277,7 +11739,8 @@ "cimguiname": "ImPool_GetBufSize", "defaults": {}, "funcname": "GetBufSize", - "location": "imgui_internal:782", + "location": "imgui_internal:788", + "namespace": "ImPool", "ov_cimguiname": "ImPool_GetBufSize", "ret": "int", "signature": "()const", @@ -11304,7 +11767,8 @@ "cimguiname": "ImPool_GetByIndex", "defaults": {}, "funcname": "GetByIndex", - "location": "imgui_internal:769", + "location": "imgui_internal:775", + "namespace": "ImPool", "ov_cimguiname": "ImPool_GetByIndex", "ret": "T*", "signature": "(ImPoolIdx)", @@ -11331,7 +11795,8 @@ "cimguiname": "ImPool_GetByKey", "defaults": {}, "funcname": "GetByKey", - "location": "imgui_internal:768", + "location": "imgui_internal:774", + "namespace": "ImPool", "ov_cimguiname": "ImPool_GetByKey", "ret": "T*", "signature": "(ImGuiID)", @@ -11358,7 +11823,8 @@ "cimguiname": "ImPool_GetIndex", "defaults": {}, "funcname": "GetIndex", - "location": "imgui_internal:770", + "location": "imgui_internal:776", + "namespace": "ImPool", "ov_cimguiname": "ImPool_GetIndex", "ret": "ImPoolIdx", "signature": "(const T*)const", @@ -11381,7 +11847,8 @@ "cimguiname": "ImPool_GetMapSize", "defaults": {}, "funcname": "GetMapSize", - "location": "imgui_internal:783", + "location": "imgui_internal:789", + "namespace": "ImPool", "ov_cimguiname": "ImPool_GetMapSize", "ret": "int", "signature": "()const", @@ -11408,7 +11875,8 @@ "cimguiname": "ImPool_GetOrAddByKey", "defaults": {}, "funcname": "GetOrAddByKey", - "location": "imgui_internal:771", + "location": "imgui_internal:777", + "namespace": "ImPool", "ov_cimguiname": "ImPool_GetOrAddByKey", "ret": "T*", "signature": "(ImGuiID)", @@ -11427,7 +11895,8 @@ "constructor": true, "defaults": {}, "funcname": "ImPool", - "location": "imgui_internal:766", + "location": "imgui_internal:772", + "namespace": "ImPool", "ov_cimguiname": "ImPool_ImPool", "signature": "()", "stname": "ImPool", @@ -11457,7 +11926,8 @@ "cimguiname": "ImPool_Remove", "defaults": {}, "funcname": "Remove", - "location": "imgui_internal:775", + "location": "imgui_internal:781", + "namespace": "ImPool", "ov_cimguiname": "ImPool_Remove_TPtr", "ret": "void", "signature": "(ImGuiID,const T*)", @@ -11486,7 +11956,8 @@ "cimguiname": "ImPool_Remove", "defaults": {}, "funcname": "Remove", - "location": "imgui_internal:776", + "location": "imgui_internal:782", + "namespace": "ImPool", "ov_cimguiname": "ImPool_Remove_PoolIdx", "ret": "void", "signature": "(ImGuiID,ImPoolIdx)", @@ -11513,7 +11984,8 @@ "cimguiname": "ImPool_Reserve", "defaults": {}, "funcname": "Reserve", - "location": "imgui_internal:777", + "location": "imgui_internal:783", + "namespace": "ImPool", "ov_cimguiname": "ImPool_Reserve", "ret": "void", "signature": "(int)", @@ -11540,7 +12012,8 @@ "cimguiname": "ImPool_TryGetMapData", "defaults": {}, "funcname": "TryGetMapData", - "location": "imgui_internal:784", + "location": "imgui_internal:790", + "namespace": "ImPool", "ov_cimguiname": "ImPool_TryGetMapData", "ret": "T*", "signature": "(ImPoolIdx)", @@ -11561,7 +12034,7 @@ "cimguiname": "ImPool_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:767", + "location": "imgui_internal:773", "ov_cimguiname": "ImPool_destroy", "realdestructor": true, "ret": "void", @@ -11589,7 +12062,8 @@ "cimguiname": "ImRect_Add", "defaults": {}, "funcname": "Add", - "location": "imgui_internal:604", + "location": "imgui_internal:608", + "namespace": "ImRect", "ov_cimguiname": "ImRect_Add_Vec2", "ret": "void", "signature": "(const ImVec2)", @@ -11613,13 +12087,68 @@ "cimguiname": "ImRect_Add", "defaults": {}, "funcname": "Add", - "location": "imgui_internal:605", + "location": "imgui_internal:609", + "namespace": "ImRect", "ov_cimguiname": "ImRect_Add_Rect", "ret": "void", "signature": "(const ImRect)", "stname": "ImRect" } ], + "ImRect_AddX": [ + { + "args": "(ImRect* self,float x)", + "argsT": [ + { + "name": "self", + "type": "ImRect*" + }, + { + "name": "x", + "type": "float" + } + ], + "argsoriginal": "(float x)", + "call_args": "(x)", + "call_args_old": "(x)", + "cimguiname": "ImRect_AddX", + "defaults": {}, + "funcname": "AddX", + "location": "imgui_internal:610", + "namespace": "ImRect", + "ov_cimguiname": "ImRect_AddX", + "ret": "void", + "signature": "(float)", + "stname": "ImRect" + } + ], + "ImRect_AddY": [ + { + "args": "(ImRect* self,float y)", + "argsT": [ + { + "name": "self", + "type": "ImRect*" + }, + { + "name": "y", + "type": "float" + } + ], + "argsoriginal": "(float y)", + "call_args": "(y)", + "call_args_old": "(y)", + "cimguiname": "ImRect_AddY", + "defaults": {}, + "funcname": "AddY", + "location": "imgui_internal:611", + "namespace": "ImRect", + "ov_cimguiname": "ImRect_AddY", + "ret": "void", + "signature": "(float)", + "stname": "ImRect" + } + ], "ImRect_AsVec4": [ { "args": "(ImRect* self)", @@ -11635,7 +12164,8 @@ "cimguiname": "ImRect_AsVec4", "defaults": {}, "funcname": "AsVec4", - "location": "imgui_internal:615", + "location": "imgui_internal:621", + "namespace": "ImRect", "nonUDT": 2, "ov_cimguiname": "ImRect_AsVec4", "ret": "const ImVec4_c*", @@ -11663,7 +12193,8 @@ "cimguiname": "ImRect_ClipWith", "defaults": {}, "funcname": "ClipWith", - "location": "imgui_internal:611", + "location": "imgui_internal:617", + "namespace": "ImRect", "ov_cimguiname": "ImRect_ClipWith", "ret": "void", "signature": "(const ImRect)", @@ -11689,7 +12220,8 @@ "cimguiname": "ImRect_ClipWithFull", "defaults": {}, "funcname": "ClipWithFull", - "location": "imgui_internal:612", + "location": "imgui_internal:618", + "namespace": "ImRect", "ov_cimguiname": "ImRect_ClipWithFull", "ret": "void", "signature": "(const ImRect)", @@ -11715,7 +12247,8 @@ "cimguiname": "ImRect_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui_internal:600", + "location": "imgui_internal:604", + "namespace": "ImRect", "ov_cimguiname": "ImRect_Contains_Vec2", "ret": "bool", "signature": "(const ImVec2)const", @@ -11739,7 +12272,8 @@ "cimguiname": "ImRect_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui_internal:601", + "location": "imgui_internal:605", + "namespace": "ImRect", "ov_cimguiname": "ImRect_Contains_Rect", "ret": "bool", "signature": "(const ImRect)const", @@ -11769,7 +12303,8 @@ "cimguiname": "ImRect_ContainsWithPad", "defaults": {}, "funcname": "ContainsWithPad", - "location": "imgui_internal:602", + "location": "imgui_internal:606", + "namespace": "ImRect", "ov_cimguiname": "ImRect_ContainsWithPad", "ret": "bool", "signature": "(const ImVec2,const ImVec2)const", @@ -11795,7 +12330,8 @@ "cimguiname": "ImRect_Expand", "defaults": {}, "funcname": "Expand", - "location": "imgui_internal:606", + "location": "imgui_internal:612", + "namespace": "ImRect", "ov_cimguiname": "ImRect_Expand_Float", "ret": "void", "signature": "(const float)", @@ -11819,7 +12355,8 @@ "cimguiname": "ImRect_Expand", "defaults": {}, "funcname": "Expand", - "location": "imgui_internal:607", + "location": "imgui_internal:613", + "namespace": "ImRect", "ov_cimguiname": "ImRect_Expand_Vec2", "ret": "void", "signature": "(const ImVec2)", @@ -11841,7 +12378,8 @@ "cimguiname": "ImRect_GetArea", "defaults": {}, "funcname": "GetArea", - "location": "imgui_internal:595", + "location": "imgui_internal:599", + "namespace": "ImRect", "ov_cimguiname": "ImRect_GetArea", "ret": "float", "signature": "()const", @@ -11864,7 +12402,8 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetBL", - "location": "imgui_internal:598", + "location": "imgui_internal:602", + "namespace": "ImRect", "nonUDT": 1, "ov_cimguiname": "ImRect_GetBL", "ret": "ImVec2_c", @@ -11888,7 +12427,8 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetBR", - "location": "imgui_internal:599", + "location": "imgui_internal:603", + "namespace": "ImRect", "nonUDT": 1, "ov_cimguiname": "ImRect_GetBR", "ret": "ImVec2_c", @@ -11912,7 +12452,8 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetCenter", - "location": "imgui_internal:591", + "location": "imgui_internal:595", + "namespace": "ImRect", "nonUDT": 1, "ov_cimguiname": "ImRect_GetCenter", "ret": "ImVec2_c", @@ -11935,7 +12476,8 @@ "cimguiname": "ImRect_GetHeight", "defaults": {}, "funcname": "GetHeight", - "location": "imgui_internal:594", + "location": "imgui_internal:598", + "namespace": "ImRect", "ov_cimguiname": "ImRect_GetHeight", "ret": "float", "signature": "()const", @@ -11958,7 +12500,8 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetSize", - "location": "imgui_internal:592", + "location": "imgui_internal:596", + "namespace": "ImRect", "nonUDT": 1, "ov_cimguiname": "ImRect_GetSize", "ret": "ImVec2_c", @@ -11982,7 +12525,8 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetTL", - "location": "imgui_internal:596", + "location": "imgui_internal:600", + "namespace": "ImRect", "nonUDT": 1, "ov_cimguiname": "ImRect_GetTL", "ret": "ImVec2_c", @@ -12006,7 +12550,8 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetTR", - "location": "imgui_internal:597", + "location": "imgui_internal:601", + "namespace": "ImRect", "nonUDT": 1, "ov_cimguiname": "ImRect_GetTR", "ret": "ImVec2_c", @@ -12029,7 +12574,8 @@ "cimguiname": "ImRect_GetWidth", "defaults": {}, "funcname": "GetWidth", - "location": "imgui_internal:593", + "location": "imgui_internal:597", + "namespace": "ImRect", "ov_cimguiname": "ImRect_GetWidth", "ret": "float", "signature": "()const", @@ -12047,7 +12593,8 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:586", + "location": "imgui_internal:590", + "namespace": "ImRect", "ov_cimguiname": "ImRect_ImRect_Nil", "signature": "()", "stname": "ImRect" @@ -12071,7 +12618,8 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:587", + "location": "imgui_internal:591", + "namespace": "ImRect", "ov_cimguiname": "ImRect_ImRect_Vec2", "signature": "(const ImVec2,const ImVec2)", "stname": "ImRect" @@ -12091,7 +12639,8 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:588", + "location": "imgui_internal:592", + "namespace": "ImRect", "ov_cimguiname": "ImRect_ImRect_Vec4", "signature": "(const ImVec4)", "stname": "ImRect" @@ -12123,7 +12672,8 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:589", + "location": "imgui_internal:593", + "namespace": "ImRect", "ov_cimguiname": "ImRect_ImRect_Float", "signature": "(float,float,float,float)", "stname": "ImRect" @@ -12144,7 +12694,8 @@ "cimguiname": "ImRect_IsInverted", "defaults": {}, "funcname": "IsInverted", - "location": "imgui_internal:613", + "location": "imgui_internal:619", + "namespace": "ImRect", "ov_cimguiname": "ImRect_IsInverted", "ret": "bool", "signature": "()const", @@ -12170,7 +12721,8 @@ "cimguiname": "ImRect_Overlaps", "defaults": {}, "funcname": "Overlaps", - "location": "imgui_internal:603", + "location": "imgui_internal:607", + "namespace": "ImRect", "ov_cimguiname": "ImRect_Overlaps", "ret": "bool", "signature": "(const ImRect)const", @@ -12193,7 +12745,8 @@ "conv": "ImVec4", "defaults": {}, "funcname": "ToVec4", - "location": "imgui_internal:614", + "location": "imgui_internal:620", + "namespace": "ImRect", "nonUDT": 1, "ov_cimguiname": "ImRect_ToVec4", "ret": "ImVec4_c", @@ -12220,7 +12773,8 @@ "cimguiname": "ImRect_Translate", "defaults": {}, "funcname": "Translate", - "location": "imgui_internal:608", + "location": "imgui_internal:614", + "namespace": "ImRect", "ov_cimguiname": "ImRect_Translate", "ret": "void", "signature": "(const ImVec2)", @@ -12246,7 +12800,8 @@ "cimguiname": "ImRect_TranslateX", "defaults": {}, "funcname": "TranslateX", - "location": "imgui_internal:609", + "location": "imgui_internal:615", + "namespace": "ImRect", "ov_cimguiname": "ImRect_TranslateX", "ret": "void", "signature": "(float)", @@ -12272,7 +12827,8 @@ "cimguiname": "ImRect_TranslateY", "defaults": {}, "funcname": "TranslateY", - "location": "imgui_internal:610", + "location": "imgui_internal:616", + "namespace": "ImRect", "ov_cimguiname": "ImRect_TranslateY", "ret": "void", "signature": "(float)", @@ -12292,7 +12848,7 @@ "cimguiname": "ImRect_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:586", + "location": "imgui_internal:590", "ov_cimguiname": "ImRect_destroy", "ret": "void", "signature": "(ImRect*)", @@ -12314,7 +12870,8 @@ "cimguiname": "ImSpanAllocator_GetArenaSizeInBytes", "defaults": {}, "funcname": "GetArenaSizeInBytes", - "location": "imgui_internal:713", + "location": "imgui_internal:719", + "namespace": "ImSpanAllocator", "ov_cimguiname": "ImSpanAllocator_GetArenaSizeInBytes", "ret": "int", "signature": "()", @@ -12341,7 +12898,8 @@ "cimguiname": "ImSpanAllocator_GetSpanPtrBegin", "defaults": {}, "funcname": "GetSpanPtrBegin", - "location": "imgui_internal:715", + "location": "imgui_internal:721", + "namespace": "ImSpanAllocator", "ov_cimguiname": "ImSpanAllocator_GetSpanPtrBegin", "ret": "void*", "signature": "(int)", @@ -12368,7 +12926,8 @@ "cimguiname": "ImSpanAllocator_GetSpanPtrEnd", "defaults": {}, "funcname": "GetSpanPtrEnd", - "location": "imgui_internal:716", + "location": "imgui_internal:722", + "namespace": "ImSpanAllocator", "ov_cimguiname": "ImSpanAllocator_GetSpanPtrEnd", "ret": "void*", "signature": "(int)", @@ -12387,7 +12946,8 @@ "constructor": true, "defaults": {}, "funcname": "ImSpanAllocator", - "location": "imgui_internal:711", + "location": "imgui_internal:717", + "namespace": "ImSpanAllocator", "ov_cimguiname": "ImSpanAllocator_ImSpanAllocator", "signature": "()", "stname": "ImSpanAllocator", @@ -12423,7 +12983,8 @@ "a": "4" }, "funcname": "Reserve", - "location": "imgui_internal:712", + "location": "imgui_internal:718", + "namespace": "ImSpanAllocator", "ov_cimguiname": "ImSpanAllocator_Reserve", "ret": "void", "signature": "(int,size_t,int)", @@ -12450,7 +13011,8 @@ "cimguiname": "ImSpanAllocator_SetArenaBasePtr", "defaults": {}, "funcname": "SetArenaBasePtr", - "location": "imgui_internal:714", + "location": "imgui_internal:720", + "namespace": "ImSpanAllocator", "ov_cimguiname": "ImSpanAllocator_SetArenaBasePtr", "ret": "void", "signature": "(void*)", @@ -12471,7 +13033,7 @@ "cimguiname": "ImSpanAllocator_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:711", + "location": "imgui_internal:717", "ov_cimguiname": "ImSpanAllocator_destroy", "ret": "void", "signature": "(ImSpanAllocator*)", @@ -12490,7 +13052,8 @@ "constructor": true, "defaults": {}, "funcname": "ImSpan", - "location": "imgui_internal:679", + "location": "imgui_internal:685", + "namespace": "ImSpan", "ov_cimguiname": "ImSpan_ImSpan_Nil", "signature": "()", "stname": "ImSpan", @@ -12515,7 +13078,8 @@ "constructor": true, "defaults": {}, "funcname": "ImSpan", - "location": "imgui_internal:680", + "location": "imgui_internal:686", + "namespace": "ImSpan", "ov_cimguiname": "ImSpan_ImSpan_TPtrInt", "signature": "(T*,int)", "stname": "ImSpan", @@ -12540,7 +13104,8 @@ "constructor": true, "defaults": {}, "funcname": "ImSpan", - "location": "imgui_internal:681", + "location": "imgui_internal:687", + "namespace": "ImSpan", "ov_cimguiname": "ImSpan_ImSpan_TPtrTPtr", "signature": "(T*,T*)", "stname": "ImSpan", @@ -12562,7 +13127,8 @@ "cimguiname": "ImSpan_begin", "defaults": {}, "funcname": "begin", - "location": "imgui_internal:690", + "location": "imgui_internal:696", + "namespace": "ImSpan", "ov_cimguiname": "ImSpan_begin_Nil", "ret": "T*", "signature": "()", @@ -12583,7 +13149,8 @@ "cimguiname": "ImSpan_begin", "defaults": {}, "funcname": "begin", - "location": "imgui_internal:691", + "location": "imgui_internal:697", + "namespace": "ImSpan", "ov_cimguiname": "ImSpan_begin__const", "ret": "const T*", "signature": "()const", @@ -12604,7 +13171,7 @@ "cimguiname": "ImSpan_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:679", + "location": "imgui_internal:685", "ov_cimguiname": "ImSpan_destroy", "ret": "void", "signature": "(ImSpan*)", @@ -12627,7 +13194,8 @@ "cimguiname": "ImSpan_end", "defaults": {}, "funcname": "end", - "location": "imgui_internal:692", + "location": "imgui_internal:698", + "namespace": "ImSpan", "ov_cimguiname": "ImSpan_end_Nil", "ret": "T*", "signature": "()", @@ -12648,7 +13216,8 @@ "cimguiname": "ImSpan_end", "defaults": {}, "funcname": "end", - "location": "imgui_internal:693", + "location": "imgui_internal:699", + "namespace": "ImSpan", "ov_cimguiname": "ImSpan_end__const", "ret": "const T*", "signature": "()const", @@ -12675,7 +13244,8 @@ "cimguiname": "ImSpan_index_from_ptr", "defaults": {}, "funcname": "index_from_ptr", - "location": "imgui_internal:696", + "location": "imgui_internal:702", + "namespace": "ImSpan", "ov_cimguiname": "ImSpan_index_from_ptr", "ret": "int", "signature": "(const T*)const", @@ -12706,7 +13276,8 @@ "cimguiname": "ImSpan_set", "defaults": {}, "funcname": "set", - "location": "imgui_internal:683", + "location": "imgui_internal:689", + "namespace": "ImSpan", "ov_cimguiname": "ImSpan_set_Int", "ret": "void", "signature": "(T*,int)", @@ -12735,7 +13306,8 @@ "cimguiname": "ImSpan_set", "defaults": {}, "funcname": "set", - "location": "imgui_internal:684", + "location": "imgui_internal:690", + "namespace": "ImSpan", "ov_cimguiname": "ImSpan_set_TPtr", "ret": "void", "signature": "(T*,T*)", @@ -12758,7 +13330,8 @@ "cimguiname": "ImSpan_size", "defaults": {}, "funcname": "size", - "location": "imgui_internal:685", + "location": "imgui_internal:691", + "namespace": "ImSpan", "ov_cimguiname": "ImSpan_size", "ret": "int", "signature": "()const", @@ -12781,7 +13354,8 @@ "cimguiname": "ImSpan_size_in_bytes", "defaults": {}, "funcname": "size_in_bytes", - "location": "imgui_internal:686", + "location": "imgui_internal:692", + "namespace": "ImSpan", "ov_cimguiname": "ImSpan_size_in_bytes", "ret": "int", "signature": "()const", @@ -12804,7 +13378,8 @@ "cimguiname": "ImStableVector_clear", "defaults": {}, "funcname": "clear", - "location": "imgui_internal:735", + "location": "imgui_internal:741", + "namespace": "ImStableVector", "ov_cimguiname": "ImStableVector_clear", "ret": "void", "signature": "()", @@ -12831,7 +13406,8 @@ "cimguiname": "ImStableVector_push_back", "defaults": {}, "funcname": "push_back", - "location": "imgui_internal:751", + "location": "imgui_internal:757", + "namespace": "ImStableVector", "ov_cimguiname": "ImStableVector_push_back", "ret": "T*", "signature": "(const T)", @@ -12858,7 +13434,8 @@ "cimguiname": "ImStableVector_reserve", "defaults": {}, "funcname": "reserve", - "location": "imgui_internal:737", + "location": "imgui_internal:743", + "namespace": "ImStableVector", "ov_cimguiname": "ImStableVector_reserve", "ret": "void", "signature": "(int)", @@ -12885,7 +13462,8 @@ "cimguiname": "ImStableVector_resize", "defaults": {}, "funcname": "resize", - "location": "imgui_internal:736", + "location": "imgui_internal:742", + "namespace": "ImStableVector", "ov_cimguiname": "ImStableVector_resize", "ret": "void", "signature": "(int)", @@ -12920,7 +13498,8 @@ "cimguiname": "ImTextureData_Create", "defaults": {}, "funcname": "Create", - "location": "imgui:3533", + "location": "imgui:3541", + "namespace": "ImTextureData", "ov_cimguiname": "ImTextureData_Create", "ret": "void", "signature": "(ImTextureFormat,int,int)", @@ -12942,7 +13521,8 @@ "cimguiname": "ImTextureData_DestroyPixels", "defaults": {}, "funcname": "DestroyPixels", - "location": "imgui:3534", + "location": "imgui:3542", + "namespace": "ImTextureData", "ov_cimguiname": "ImTextureData_DestroyPixels", "ret": "void", "signature": "()", @@ -12964,7 +13544,8 @@ "cimguiname": "ImTextureData_GetPitch", "defaults": {}, "funcname": "GetPitch", - "location": "imgui:3538", + "location": "imgui:3546", + "namespace": "ImTextureData", "ov_cimguiname": "ImTextureData_GetPitch", "ret": "int", "signature": "()const", @@ -12986,7 +13567,8 @@ "cimguiname": "ImTextureData_GetPixels", "defaults": {}, "funcname": "GetPixels", - "location": "imgui:3535", + "location": "imgui:3543", + "namespace": "ImTextureData", "ov_cimguiname": "ImTextureData_GetPixels", "ret": "void*", "signature": "()", @@ -13016,7 +13598,8 @@ "cimguiname": "ImTextureData_GetPixelsAt", "defaults": {}, "funcname": "GetPixelsAt", - "location": "imgui:3536", + "location": "imgui:3544", + "namespace": "ImTextureData", "ov_cimguiname": "ImTextureData_GetPixelsAt", "ret": "void*", "signature": "(int,int)", @@ -13038,7 +13621,8 @@ "cimguiname": "ImTextureData_GetSizeInBytes", "defaults": {}, "funcname": "GetSizeInBytes", - "location": "imgui:3537", + "location": "imgui:3545", + "namespace": "ImTextureData", "ov_cimguiname": "ImTextureData_GetSizeInBytes", "ret": "int", "signature": "()const", @@ -13060,7 +13644,8 @@ "cimguiname": "ImTextureData_GetTexID", "defaults": {}, "funcname": "GetTexID", - "location": "imgui:3540", + "location": "imgui:3548", + "namespace": "ImTextureData", "ov_cimguiname": "ImTextureData_GetTexID", "ret": "ImTextureID", "signature": "()const", @@ -13083,7 +13668,8 @@ "conv": "ImTextureRef", "defaults": {}, "funcname": "GetTexRef", - "location": "imgui:3539", + "location": "imgui:3547", + "namespace": "ImTextureData", "nonUDT": 1, "ov_cimguiname": "ImTextureData_GetTexRef", "ret": "ImTextureRef_c", @@ -13102,7 +13688,8 @@ "constructor": true, "defaults": {}, "funcname": "ImTextureData", - "location": "imgui:3531", + "location": "imgui:3539", + "namespace": "ImTextureData", "ov_cimguiname": "ImTextureData_ImTextureData", "signature": "()", "stname": "ImTextureData" @@ -13127,7 +13714,8 @@ "cimguiname": "ImTextureData_SetStatus", "defaults": {}, "funcname": "SetStatus", - "location": "imgui:3546", + "location": "imgui:3554", + "namespace": "ImTextureData", "ov_cimguiname": "ImTextureData_SetStatus", "ret": "void", "signature": "(ImTextureStatus)", @@ -13153,7 +13741,8 @@ "cimguiname": "ImTextureData_SetTexID", "defaults": {}, "funcname": "SetTexID", - "location": "imgui:3545", + "location": "imgui:3553", + "namespace": "ImTextureData", "ov_cimguiname": "ImTextureData_SetTexID", "ret": "void", "signature": "(ImTextureID)", @@ -13173,7 +13762,7 @@ "cimguiname": "ImTextureData_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3532", + "location": "imgui:3540", "ov_cimguiname": "ImTextureData_destroy", "realdestructor": true, "ret": "void", @@ -13197,6 +13786,7 @@ "defaults": {}, "funcname": "GetTexID", "location": "imgui:375", + "namespace": "ImTextureRef", "ov_cimguiname": "ImTextureRef_GetTexID", "ret": "ImTextureID", "signature": "()const", @@ -13215,6 +13805,7 @@ "defaults": {}, "funcname": "ImTextureRef", "location": "imgui:369", + "namespace": "ImTextureRef", "ov_cimguiname": "ImTextureRef_ImTextureRef_Nil", "signature": "()", "stname": "ImTextureRef" @@ -13235,6 +13826,7 @@ "defaults": {}, "funcname": "ImTextureRef", "location": "imgui:370", + "namespace": "ImTextureRef", "ov_cimguiname": "ImTextureRef_ImTextureRef_TextureID", "signature": "(ImTextureID)", "stname": "ImTextureRef" @@ -13271,7 +13863,8 @@ "constructor": true, "defaults": {}, "funcname": "ImVec1", - "location": "imgui_internal:558", + "location": "imgui_internal:562", + "namespace": "ImVec1", "ov_cimguiname": "ImVec1_ImVec1_Nil", "signature": "()", "stname": "ImVec1" @@ -13291,7 +13884,8 @@ "constructor": true, "defaults": {}, "funcname": "ImVec1", - "location": "imgui_internal:559", + "location": "imgui_internal:563", + "namespace": "ImVec1", "ov_cimguiname": "ImVec1_ImVec1_Float", "signature": "(float)", "stname": "ImVec1" @@ -13310,7 +13904,7 @@ "cimguiname": "ImVec1_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:558", + "location": "imgui_internal:562", "ov_cimguiname": "ImVec1_destroy", "ret": "void", "signature": "(ImVec1*)", @@ -13329,6 +13923,7 @@ "defaults": {}, "funcname": "ImVec2", "location": "imgui:298", + "namespace": "ImVec2", "ov_cimguiname": "ImVec2_ImVec2_Nil", "signature": "()", "stname": "ImVec2" @@ -13353,6 +13948,7 @@ "defaults": {}, "funcname": "ImVec2", "location": "imgui:299", + "namespace": "ImVec2", "ov_cimguiname": "ImVec2_ImVec2_Float", "signature": "(float,float)", "stname": "ImVec2" @@ -13389,7 +13985,8 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2i", - "location": "imgui_internal:566", + "location": "imgui_internal:570", + "namespace": "ImVec2i", "ov_cimguiname": "ImVec2i_ImVec2i_Nil", "signature": "()", "stname": "ImVec2i" @@ -13413,7 +14010,8 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2i", - "location": "imgui_internal:567", + "location": "imgui_internal:571", + "namespace": "ImVec2i", "ov_cimguiname": "ImVec2i_ImVec2i_Int", "signature": "(int,int)", "stname": "ImVec2i" @@ -13432,7 +14030,7 @@ "cimguiname": "ImVec2i_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:566", + "location": "imgui_internal:570", "ov_cimguiname": "ImVec2i_destroy", "ret": "void", "signature": "(ImVec2i*)", @@ -13450,7 +14048,8 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", - "location": "imgui_internal:574", + "location": "imgui_internal:578", + "namespace": "ImVec2ih", "ov_cimguiname": "ImVec2ih_ImVec2ih_Nil", "signature": "()", "stname": "ImVec2ih" @@ -13474,7 +14073,8 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", - "location": "imgui_internal:575", + "location": "imgui_internal:579", + "namespace": "ImVec2ih", "ov_cimguiname": "ImVec2ih_ImVec2ih_short", "signature": "(short,short)", "stname": "ImVec2ih" @@ -13494,7 +14094,8 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", - "location": "imgui_internal:576", + "location": "imgui_internal:580", + "namespace": "ImVec2ih", "ov_cimguiname": "ImVec2ih_ImVec2ih_Vec2", "signature": "(const ImVec2)", "stname": "ImVec2ih" @@ -13513,7 +14114,7 @@ "cimguiname": "ImVec2ih_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:574", + "location": "imgui_internal:578", "ov_cimguiname": "ImVec2ih_destroy", "ret": "void", "signature": "(ImVec2ih*)", @@ -13532,6 +14133,7 @@ "defaults": {}, "funcname": "ImVec4", "location": "imgui:311", + "namespace": "ImVec4", "ov_cimguiname": "ImVec4_ImVec4_Nil", "signature": "()", "stname": "ImVec4" @@ -13564,6 +14166,7 @@ "defaults": {}, "funcname": "ImVec4", "location": "imgui:312", + "namespace": "ImVec4", "ov_cimguiname": "ImVec4_ImVec4_Float", "signature": "(float,float,float,float)", "stname": "ImVec4" @@ -13600,7 +14203,8 @@ "constructor": true, "defaults": {}, "funcname": "ImVector", - "location": "imgui:2220", + "location": "imgui:2223", + "namespace": "ImVector", "ov_cimguiname": "ImVector_ImVector_Nil", "signature": "()", "stname": "ImVector", @@ -13611,6 +14215,7 @@ "argsT": [ { "name": "src", + "template_orig": "const ImVector& src", "type": "const ImVector_T " } ], @@ -13621,7 +14226,8 @@ "constructor": true, "defaults": {}, "funcname": "ImVector", - "location": "imgui:2221", + "location": "imgui:2224", + "namespace": "ImVector", "ov_cimguiname": "ImVector_ImVector_Vector_T_", "signature": "(const ImVector_T )", "stname": "ImVector", @@ -13647,7 +14253,8 @@ "cimguiname": "ImVector__grow_capacity", "defaults": {}, "funcname": "_grow_capacity", - "location": "imgui:2247", + "location": "imgui:2250", + "namespace": "ImVector", "ov_cimguiname": "ImVector__grow_capacity", "ret": "int", "signature": "(int)const", @@ -13670,7 +14277,8 @@ "cimguiname": "ImVector_back", "defaults": {}, "funcname": "back", - "location": "imgui:2243", + "location": "imgui:2246", + "namespace": "ImVector", "ov_cimguiname": "ImVector_back_Nil", "ret": "T*", "retref": "&", @@ -13692,7 +14300,8 @@ "cimguiname": "ImVector_back", "defaults": {}, "funcname": "back", - "location": "imgui:2244", + "location": "imgui:2247", + "namespace": "ImVector", "ov_cimguiname": "ImVector_back__const", "ret": "const T*", "retref": "&", @@ -13716,7 +14325,8 @@ "cimguiname": "ImVector_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:2237", + "location": "imgui:2240", + "namespace": "ImVector", "ov_cimguiname": "ImVector_begin_Nil", "ret": "T*", "signature": "()", @@ -13737,7 +14347,8 @@ "cimguiname": "ImVector_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:2238", + "location": "imgui:2241", + "namespace": "ImVector", "ov_cimguiname": "ImVector_begin__const", "ret": "const T*", "signature": "()const", @@ -13760,7 +14371,8 @@ "cimguiname": "ImVector_capacity", "defaults": {}, "funcname": "capacity", - "location": "imgui:2233", + "location": "imgui:2236", + "namespace": "ImVector", "ov_cimguiname": "ImVector_capacity", "ret": "int", "signature": "()const", @@ -13783,7 +14395,8 @@ "cimguiname": "ImVector_clear", "defaults": {}, "funcname": "clear", - "location": "imgui:2225", + "location": "imgui:2228", + "namespace": "ImVector", "ov_cimguiname": "ImVector_clear", "ret": "void", "signature": "()", @@ -13806,7 +14419,8 @@ "cimguiname": "ImVector_clear_delete", "defaults": {}, "funcname": "clear_delete", - "location": "imgui:2226", + "location": "imgui:2229", + "namespace": "ImVector", "ov_cimguiname": "ImVector_clear_delete", "ret": "void", "signature": "()", @@ -13829,7 +14443,8 @@ "cimguiname": "ImVector_clear_destruct", "defaults": {}, "funcname": "clear_destruct", - "location": "imgui:2227", + "location": "imgui:2230", + "namespace": "ImVector", "ov_cimguiname": "ImVector_clear_destruct", "ret": "void", "signature": "()", @@ -13856,7 +14471,8 @@ "cimguiname": "ImVector_contains", "defaults": {}, "funcname": "contains", - "location": "imgui:2262", + "location": "imgui:2265", + "namespace": "ImVector", "ov_cimguiname": "ImVector_contains", "ret": "bool", "signature": "(const T)const", @@ -13877,7 +14493,7 @@ "cimguiname": "ImVector_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2223", + "location": "imgui:2226", "ov_cimguiname": "ImVector_destroy", "realdestructor": true, "ret": "void", @@ -13901,7 +14517,8 @@ "cimguiname": "ImVector_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:2229", + "location": "imgui:2232", + "namespace": "ImVector", "ov_cimguiname": "ImVector_empty", "ret": "bool", "signature": "()const", @@ -13924,7 +14541,8 @@ "cimguiname": "ImVector_end", "defaults": {}, "funcname": "end", - "location": "imgui:2239", + "location": "imgui:2242", + "namespace": "ImVector", "ov_cimguiname": "ImVector_end_Nil", "ret": "T*", "signature": "()", @@ -13945,7 +14563,8 @@ "cimguiname": "ImVector_end", "defaults": {}, "funcname": "end", - "location": "imgui:2240", + "location": "imgui:2243", + "namespace": "ImVector", "ov_cimguiname": "ImVector_end__const", "ret": "const T*", "signature": "()const", @@ -13972,7 +14591,8 @@ "cimguiname": "ImVector_erase", "defaults": {}, "funcname": "erase", - "location": "imgui:2258", + "location": "imgui:2261", + "namespace": "ImVector", "ov_cimguiname": "ImVector_erase_Nil", "ret": "T*", "signature": "(const T*)", @@ -14001,7 +14621,8 @@ "cimguiname": "ImVector_erase", "defaults": {}, "funcname": "erase", - "location": "imgui:2259", + "location": "imgui:2262", + "namespace": "ImVector", "ov_cimguiname": "ImVector_erase_TPtr", "ret": "T*", "signature": "(const T*,const T*)", @@ -14028,7 +14649,8 @@ "cimguiname": "ImVector_erase_unsorted", "defaults": {}, "funcname": "erase_unsorted", - "location": "imgui:2260", + "location": "imgui:2263", + "namespace": "ImVector", "ov_cimguiname": "ImVector_erase_unsorted", "ret": "T*", "signature": "(const T*)", @@ -14055,7 +14677,8 @@ "cimguiname": "ImVector_find", "defaults": {}, "funcname": "find", - "location": "imgui:2263", + "location": "imgui:2266", + "namespace": "ImVector", "ov_cimguiname": "ImVector_find_Nil", "ret": "T*", "signature": "(const T)", @@ -14080,7 +14703,8 @@ "cimguiname": "ImVector_find", "defaults": {}, "funcname": "find", - "location": "imgui:2264", + "location": "imgui:2267", + "namespace": "ImVector", "ov_cimguiname": "ImVector_find__const", "ret": "const T*", "signature": "(const T)const", @@ -14107,7 +14731,8 @@ "cimguiname": "ImVector_find_erase", "defaults": {}, "funcname": "find_erase", - "location": "imgui:2266", + "location": "imgui:2269", + "namespace": "ImVector", "ov_cimguiname": "ImVector_find_erase", "ret": "bool", "signature": "(const T)", @@ -14134,7 +14759,8 @@ "cimguiname": "ImVector_find_erase_unsorted", "defaults": {}, "funcname": "find_erase_unsorted", - "location": "imgui:2267", + "location": "imgui:2270", + "namespace": "ImVector", "ov_cimguiname": "ImVector_find_erase_unsorted", "ret": "bool", "signature": "(const T)", @@ -14161,7 +14787,8 @@ "cimguiname": "ImVector_find_index", "defaults": {}, "funcname": "find_index", - "location": "imgui:2265", + "location": "imgui:2268", + "namespace": "ImVector", "ov_cimguiname": "ImVector_find_index", "ret": "int", "signature": "(const T)const", @@ -14184,7 +14811,8 @@ "cimguiname": "ImVector_front", "defaults": {}, "funcname": "front", - "location": "imgui:2241", + "location": "imgui:2244", + "namespace": "ImVector", "ov_cimguiname": "ImVector_front_Nil", "ret": "T*", "retref": "&", @@ -14206,7 +14834,8 @@ "cimguiname": "ImVector_front", "defaults": {}, "funcname": "front", - "location": "imgui:2242", + "location": "imgui:2245", + "namespace": "ImVector", "ov_cimguiname": "ImVector_front__const", "ret": "const T*", "retref": "&", @@ -14234,7 +14863,8 @@ "cimguiname": "ImVector_index_from_ptr", "defaults": {}, "funcname": "index_from_ptr", - "location": "imgui:2268", + "location": "imgui:2271", + "namespace": "ImVector", "ov_cimguiname": "ImVector_index_from_ptr", "ret": "int", "signature": "(const T*)const", @@ -14265,7 +14895,8 @@ "cimguiname": "ImVector_insert", "defaults": {}, "funcname": "insert", - "location": "imgui:2261", + "location": "imgui:2264", + "namespace": "ImVector", "ov_cimguiname": "ImVector_insert", "ret": "T*", "signature": "(const T*,const T)", @@ -14288,7 +14919,8 @@ "cimguiname": "ImVector_max_size", "defaults": {}, "funcname": "max_size", - "location": "imgui:2232", + "location": "imgui:2235", + "namespace": "ImVector", "ov_cimguiname": "ImVector_max_size", "ret": "int", "signature": "()const", @@ -14311,7 +14943,8 @@ "cimguiname": "ImVector_pop_back", "defaults": {}, "funcname": "pop_back", - "location": "imgui:2256", + "location": "imgui:2259", + "namespace": "ImVector", "ov_cimguiname": "ImVector_pop_back", "ret": "void", "signature": "()", @@ -14338,7 +14971,8 @@ "cimguiname": "ImVector_push_back", "defaults": {}, "funcname": "push_back", - "location": "imgui:2255", + "location": "imgui:2258", + "namespace": "ImVector", "ov_cimguiname": "ImVector_push_back", "ret": "void", "signature": "(const T)", @@ -14365,7 +14999,8 @@ "cimguiname": "ImVector_push_front", "defaults": {}, "funcname": "push_front", - "location": "imgui:2257", + "location": "imgui:2260", + "namespace": "ImVector", "ov_cimguiname": "ImVector_push_front", "ret": "void", "signature": "(const T)", @@ -14392,7 +15027,8 @@ "cimguiname": "ImVector_reserve", "defaults": {}, "funcname": "reserve", - "location": "imgui:2251", + "location": "imgui:2254", + "namespace": "ImVector", "ov_cimguiname": "ImVector_reserve", "ret": "void", "signature": "(int)", @@ -14419,7 +15055,8 @@ "cimguiname": "ImVector_reserve_discard", "defaults": {}, "funcname": "reserve_discard", - "location": "imgui:2252", + "location": "imgui:2255", + "namespace": "ImVector", "ov_cimguiname": "ImVector_reserve_discard", "ret": "void", "signature": "(int)", @@ -14446,7 +15083,8 @@ "cimguiname": "ImVector_resize", "defaults": {}, "funcname": "resize", - "location": "imgui:2248", + "location": "imgui:2251", + "namespace": "ImVector", "ov_cimguiname": "ImVector_resize_Nil", "ret": "void", "signature": "(int)", @@ -14475,7 +15113,8 @@ "cimguiname": "ImVector_resize", "defaults": {}, "funcname": "resize", - "location": "imgui:2249", + "location": "imgui:2252", + "namespace": "ImVector", "ov_cimguiname": "ImVector_resize_T", "ret": "void", "signature": "(int,const T)", @@ -14502,7 +15141,8 @@ "cimguiname": "ImVector_shrink", "defaults": {}, "funcname": "shrink", - "location": "imgui:2250", + "location": "imgui:2253", + "namespace": "ImVector", "ov_cimguiname": "ImVector_shrink", "ret": "void", "signature": "(int)", @@ -14525,7 +15165,8 @@ "cimguiname": "ImVector_size", "defaults": {}, "funcname": "size", - "location": "imgui:2230", + "location": "imgui:2233", + "namespace": "ImVector", "ov_cimguiname": "ImVector_size", "ret": "int", "signature": "()const", @@ -14548,7 +15189,8 @@ "cimguiname": "ImVector_size_in_bytes", "defaults": {}, "funcname": "size_in_bytes", - "location": "imgui:2231", + "location": "imgui:2234", + "namespace": "ImVector", "ov_cimguiname": "ImVector_size_in_bytes", "ret": "int", "signature": "()const", @@ -14567,6 +15209,7 @@ { "name": "rhs", "reftoptr": true, + "template_orig": "ImVector& rhs", "type": "ImVector_T *" } ], @@ -14576,7 +15219,8 @@ "cimguiname": "ImVector_swap", "defaults": {}, "funcname": "swap", - "location": "imgui:2245", + "location": "imgui:2248", + "namespace": "ImVector", "ov_cimguiname": "ImVector_swap", "ret": "void", "signature": "(ImVector_T *)", @@ -14628,7 +15272,7 @@ "cimguiname": "igActivateItemByID", "defaults": {}, "funcname": "ActivateItemByID", - "location": "imgui_internal:3379", + "location": "imgui_internal:3392", "namespace": "ImGui", "ov_cimguiname": "igActivateItemByID", "ret": "void", @@ -14655,7 +15299,7 @@ "cimguiname": "igAddContextHook", "defaults": {}, "funcname": "AddContextHook", - "location": "imgui_internal:3231", + "location": "imgui_internal:3243", "namespace": "ImGui", "ov_cimguiname": "igAddContextHook", "ret": "ImGuiID", @@ -14673,6 +15317,7 @@ }, { "name": "out_list", + "template_orig": "ImVector* out_list", "type": "ImVector_ImDrawListPtr*" }, { @@ -14686,7 +15331,7 @@ "cimguiname": "igAddDrawListToDrawDataEx", "defaults": {}, "funcname": "AddDrawListToDrawDataEx", - "location": "imgui_internal:3223", + "location": "imgui_internal:3235", "namespace": "ImGui", "ov_cimguiname": "igAddDrawListToDrawDataEx", "ret": "void", @@ -14709,7 +15354,7 @@ "cimguiname": "igAddSettingsHandler", "defaults": {}, "funcname": "AddSettingsHandler", - "location": "imgui_internal:3253", + "location": "imgui_internal:3265", "namespace": "ImGui", "ov_cimguiname": "igAddSettingsHandler", "ret": "void", @@ -14791,7 +15436,7 @@ "flags": "0" }, "funcname": "ArrowButtonEx", - "location": "imgui_internal:3639", + "location": "imgui_internal:3654", "namespace": "ImGui", "ov_cimguiname": "igArrowButtonEx", "ret": "bool", @@ -14860,7 +15505,7 @@ "cimguiname": "igBeginBoxSelect", "defaults": {}, "funcname": "BeginBoxSelect", - "location": "imgui_internal:3496", + "location": "imgui_internal:3510", "namespace": "ImGui", "ov_cimguiname": "igBeginBoxSelect", "ret": "bool", @@ -14975,7 +15620,7 @@ "cimguiname": "igBeginChildEx", "defaults": {}, "funcname": "BeginChildEx", - "location": "imgui_internal:3322", + "location": "imgui_internal:3334", "namespace": "ImGui", "ov_cimguiname": "igBeginChildEx", "ret": "bool", @@ -15008,7 +15653,7 @@ "flags": "0" }, "funcname": "BeginColumns", - "location": "imgui_internal:3509", + "location": "imgui_internal:3523", "namespace": "ImGui", "ov_cimguiname": "igBeginColumns", "ret": "void", @@ -15072,7 +15717,7 @@ "cimguiname": "igBeginComboPopup", "defaults": {}, "funcname": "BeginComboPopup", - "location": "imgui_internal:3352", + "location": "imgui_internal:3365", "namespace": "ImGui", "ov_cimguiname": "igBeginComboPopup", "ret": "bool", @@ -15090,7 +15735,7 @@ "cimguiname": "igBeginComboPreview", "defaults": {}, "funcname": "BeginComboPreview", - "location": "imgui_internal:3353", + "location": "imgui_internal:3366", "namespace": "ImGui", "ov_cimguiname": "igBeginComboPreview", "ret": "bool", @@ -15133,7 +15778,7 @@ "cimguiname": "igBeginDisabledOverrideReenable", "defaults": {}, "funcname": "BeginDisabledOverrideReenable", - "location": "imgui_internal:3312", + "location": "imgui_internal:3324", "namespace": "ImGui", "ov_cimguiname": "igBeginDisabledOverrideReenable", "ret": "void", @@ -15203,7 +15848,7 @@ "cimguiname": "igBeginDragDropTargetCustom", "defaults": {}, "funcname": "BeginDragDropTargetCustom", - "location": "imgui_internal:3480", + "location": "imgui_internal:3494", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropTargetCustom", "ret": "bool", @@ -15232,7 +15877,7 @@ "p_bb": "NULL" }, "funcname": "BeginDragDropTargetViewport", - "location": "imgui_internal:3481", + "location": "imgui_internal:3495", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropTargetViewport", "ret": "bool", @@ -15250,7 +15895,7 @@ "cimguiname": "igBeginErrorTooltip", "defaults": {}, "funcname": "BeginErrorTooltip", - "location": "imgui_internal:3726", + "location": "imgui_internal:3741", "namespace": "ImGui", "ov_cimguiname": "igBeginErrorTooltip", "ret": "bool", @@ -15413,7 +16058,7 @@ "enabled": "true" }, "funcname": "BeginMenuEx", - "location": "imgui_internal:3348", + "location": "imgui_internal:3361", "namespace": "ImGui", "ov_cimguiname": "igBeginMenuEx", "ret": "bool", @@ -15593,7 +16238,7 @@ "cimguiname": "igBeginPopupEx", "defaults": {}, "funcname": "BeginPopupEx", - "location": "imgui_internal:3325", + "location": "imgui_internal:3338", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupEx", "ret": "bool", @@ -15624,7 +16269,7 @@ "cimguiname": "igBeginPopupMenuEx", "defaults": {}, "funcname": "BeginPopupMenuEx", - "location": "imgui_internal:3326", + "location": "imgui_internal:3339", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupMenuEx", "ret": "bool", @@ -15718,7 +16363,7 @@ "cimguiname": "igBeginTabBarEx", "defaults": {}, "funcname": "BeginTabBarEx", - "location": "imgui_internal:3584", + "location": "imgui_internal:3599", "namespace": "ImGui", "ov_cimguiname": "igBeginTabBarEx", "ret": "bool", @@ -15842,7 +16487,7 @@ "outer_size": "ImVec2(0,0)" }, "funcname": "BeginTableEx", - "location": "imgui_internal:3535", + "location": "imgui_internal:3549", "namespace": "ImGui", "ov_cimguiname": "igBeginTableEx", "ret": "bool", @@ -15887,7 +16532,7 @@ "cimguiname": "igBeginTooltipEx", "defaults": {}, "funcname": "BeginTooltipEx", - "location": "imgui_internal:3343", + "location": "imgui_internal:3356", "namespace": "ImGui", "ov_cimguiname": "igBeginTooltipEx", "ret": "bool", @@ -15905,7 +16550,7 @@ "cimguiname": "igBeginTooltipHidden", "defaults": {}, "funcname": "BeginTooltipHidden", - "location": "imgui_internal:3344", + "location": "imgui_internal:3357", "namespace": "ImGui", "ov_cimguiname": "igBeginTooltipHidden", "ret": "bool", @@ -15944,7 +16589,7 @@ "cimguiname": "igBeginViewportSideBar", "defaults": {}, "funcname": "BeginViewportSideBar", - "location": "imgui_internal:3347", + "location": "imgui_internal:3360", "namespace": "ImGui", "ov_cimguiname": "igBeginViewportSideBar", "ret": "bool", @@ -15967,7 +16612,7 @@ "cimguiname": "igBringWindowToDisplayBack", "defaults": {}, "funcname": "BringWindowToDisplayBack", - "location": "imgui_internal:3199", + "location": "imgui_internal:3211", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayBack", "ret": "void", @@ -15994,7 +16639,7 @@ "cimguiname": "igBringWindowToDisplayBehind", "defaults": {}, "funcname": "BringWindowToDisplayBehind", - "location": "imgui_internal:3200", + "location": "imgui_internal:3212", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayBehind", "ret": "void", @@ -16017,7 +16662,7 @@ "cimguiname": "igBringWindowToDisplayFront", "defaults": {}, "funcname": "BringWindowToDisplayFront", - "location": "imgui_internal:3198", + "location": "imgui_internal:3210", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayFront", "ret": "void", @@ -16040,7 +16685,7 @@ "cimguiname": "igBringWindowToFocusFront", "defaults": {}, "funcname": "BringWindowToFocusFront", - "location": "imgui_internal:3197", + "location": "imgui_internal:3209", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToFocusFront", "ret": "void", @@ -16183,7 +16828,7 @@ "flags": "0" }, "funcname": "ButtonBehavior", - "location": "imgui_internal:3658", + "location": "imgui_internal:3673", "namespace": "ImGui", "ov_cimguiname": "igButtonBehavior", "ret": "bool", @@ -16217,7 +16862,7 @@ "size_arg": "ImVec2(0,0)" }, "funcname": "ButtonEx", - "location": "imgui_internal:3638", + "location": "imgui_internal:3653", "namespace": "ImGui", "ov_cimguiname": "igButtonEx", "ret": "bool", @@ -16256,7 +16901,7 @@ "cimguiname": "igCalcClipRectVisibleItemsY", "defaults": {}, "funcname": "CalcClipRectVisibleItemsY", - "location": "imgui_internal:3308", + "location": "imgui_internal:3320", "namespace": "ImGui", "ov_cimguiname": "igCalcClipRectVisibleItemsY", "ret": "void", @@ -16288,7 +16933,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "CalcItemSize", - "location": "imgui_internal:3304", + "location": "imgui_internal:3316", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcItemSize", @@ -16338,7 +16983,7 @@ "cimguiname": "igCalcRoundingFlagsForRectInRect", "defaults": {}, "funcname": "CalcRoundingFlagsForRectInRect", - "location": "imgui_internal:3630", + "location": "imgui_internal:3645", "namespace": "ImGui", "ov_cimguiname": "igCalcRoundingFlagsForRectInRect", "ret": "ImDrawFlags", @@ -16414,7 +17059,7 @@ "cimguiname": "igCalcTypematicRepeatAmount", "defaults": {}, "funcname": "CalcTypematicRepeatAmount", - "location": "imgui_internal:3408", + "location": "imgui_internal:3421", "namespace": "ImGui", "ov_cimguiname": "igCalcTypematicRepeatAmount", "ret": "int", @@ -16438,7 +17083,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "CalcWindowNextAutoFitSize", - "location": "imgui_internal:3177", + "location": "imgui_internal:3189", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcWindowNextAutoFitSize", @@ -16466,7 +17111,7 @@ "cimguiname": "igCalcWrapWidthForPos", "defaults": {}, "funcname": "CalcWrapWidthForPos", - "location": "imgui_internal:3305", + "location": "imgui_internal:3317", "namespace": "ImGui", "ov_cimguiname": "igCalcWrapWidthForPos", "ret": "float", @@ -16493,7 +17138,7 @@ "cimguiname": "igCallContextHooks", "defaults": {}, "funcname": "CallContextHooks", - "location": "imgui_internal:3233", + "location": "imgui_internal:3245", "namespace": "ImGui", "ov_cimguiname": "igCallContextHooks", "ret": "void", @@ -16609,7 +17254,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui_internal:3643", + "location": "imgui_internal:3658", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_S64Ptr", "ret": "bool", @@ -16638,7 +17283,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui_internal:3644", + "location": "imgui_internal:3659", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_U64Ptr", "ret": "bool", @@ -16656,7 +17301,7 @@ "cimguiname": "igClearActiveID", "defaults": {}, "funcname": "ClearActiveID", - "location": "imgui_internal:3287", + "location": "imgui_internal:3299", "namespace": "ImGui", "ov_cimguiname": "igClearActiveID", "ret": "void", @@ -16674,7 +17319,7 @@ "cimguiname": "igClearDragDrop", "defaults": {}, "funcname": "ClearDragDrop", - "location": "imgui_internal:3482", + "location": "imgui_internal:3496", "namespace": "ImGui", "ov_cimguiname": "igClearDragDrop", "ret": "void", @@ -16692,7 +17337,7 @@ "cimguiname": "igClearIniSettings", "defaults": {}, "funcname": "ClearIniSettings", - "location": "imgui_internal:3252", + "location": "imgui_internal:3264", "namespace": "ImGui", "ov_cimguiname": "igClearIniSettings", "ret": "void", @@ -16715,7 +17360,7 @@ "cimguiname": "igClearWindowSettings", "defaults": {}, "funcname": "ClearWindowSettings", - "location": "imgui_internal:3261", + "location": "imgui_internal:3273", "namespace": "ImGui", "ov_cimguiname": "igClearWindowSettings", "ret": "void", @@ -16742,7 +17387,7 @@ "cimguiname": "igCloseButton", "defaults": {}, "funcname": "CloseButton", - "location": "imgui_internal:3647", + "location": "imgui_internal:3662", "namespace": "ImGui", "ov_cimguiname": "igCloseButton", "ret": "bool", @@ -16787,7 +17432,7 @@ "cimguiname": "igClosePopupToLevel", "defaults": {}, "funcname": "ClosePopupToLevel", - "location": "imgui_internal:3328", + "location": "imgui_internal:3341", "namespace": "ImGui", "ov_cimguiname": "igClosePopupToLevel", "ret": "void", @@ -16805,7 +17450,7 @@ "cimguiname": "igClosePopupsExceptModals", "defaults": {}, "funcname": "ClosePopupsExceptModals", - "location": "imgui_internal:3330", + "location": "imgui_internal:3343", "namespace": "ImGui", "ov_cimguiname": "igClosePopupsExceptModals", "ret": "void", @@ -16832,7 +17477,7 @@ "cimguiname": "igClosePopupsOverWindow", "defaults": {}, "funcname": "ClosePopupsOverWindow", - "location": "imgui_internal:3329", + "location": "imgui_internal:3342", "namespace": "ImGui", "ov_cimguiname": "igClosePopupsOverWindow", "ret": "void", @@ -16859,7 +17504,7 @@ "cimguiname": "igCollapseButton", "defaults": {}, "funcname": "CollapseButton", - "location": "imgui_internal:3648", + "location": "imgui_internal:3663", "namespace": "ImGui", "ov_cimguiname": "igCollapseButton", "ret": "bool", @@ -17190,7 +17835,7 @@ "cimguiname": "igColorEditOptionsPopup", "defaults": {}, "funcname": "ColorEditOptionsPopup", - "location": "imgui_internal:3702", + "location": "imgui_internal:3717", "namespace": "ImGui", "ov_cimguiname": "igColorEditOptionsPopup", "ret": "void", @@ -17288,7 +17933,7 @@ "cimguiname": "igColorPickerOptionsPopup", "defaults": {}, "funcname": "ColorPickerOptionsPopup", - "location": "imgui_internal:3703", + "location": "imgui_internal:3718", "namespace": "ImGui", "ov_cimguiname": "igColorPickerOptionsPopup", "ret": "void", @@ -17319,7 +17964,7 @@ "cimguiname": "igColorTooltip", "defaults": {}, "funcname": "ColorTooltip", - "location": "imgui_internal:3701", + "location": "imgui_internal:3716", "namespace": "ImGui", "ov_cimguiname": "igColorTooltip", "ret": "void", @@ -17498,7 +18143,7 @@ "cimguiname": "igConvertSingleModFlagToKey", "defaults": {}, "funcname": "ConvertSingleModFlagToKey", - "location": "imgui_internal:3392", + "location": "imgui_internal:3405", "namespace": "ImGui", "ov_cimguiname": "igConvertSingleModFlagToKey", "ret": "ImGuiKey", @@ -17546,7 +18191,7 @@ "cimguiname": "igCreateNewWindowSettings", "defaults": {}, "funcname": "CreateNewWindowSettings", - "location": "imgui_internal:3258", + "location": "imgui_internal:3270", "namespace": "ImGui", "ov_cimguiname": "igCreateNewWindowSettings", "ret": "ImGuiWindowSettings*", @@ -17587,7 +18232,7 @@ "p_data_when_empty": "NULL" }, "funcname": "DataTypeApplyFromText", - "location": "imgui_internal:3685", + "location": "imgui_internal:3700", "namespace": "ImGui", "ov_cimguiname": "igDataTypeApplyFromText", "ret": "bool", @@ -17626,7 +18271,7 @@ "cimguiname": "igDataTypeApplyOp", "defaults": {}, "funcname": "DataTypeApplyOp", - "location": "imgui_internal:3684", + "location": "imgui_internal:3699", "namespace": "ImGui", "ov_cimguiname": "igDataTypeApplyOp", "ret": "void", @@ -17661,7 +18306,7 @@ "cimguiname": "igDataTypeClamp", "defaults": {}, "funcname": "DataTypeClamp", - "location": "imgui_internal:3687", + "location": "imgui_internal:3702", "namespace": "ImGui", "ov_cimguiname": "igDataTypeClamp", "ret": "bool", @@ -17692,7 +18337,7 @@ "cimguiname": "igDataTypeCompare", "defaults": {}, "funcname": "DataTypeCompare", - "location": "imgui_internal:3686", + "location": "imgui_internal:3701", "namespace": "ImGui", "ov_cimguiname": "igDataTypeCompare", "ret": "int", @@ -17731,7 +18376,7 @@ "cimguiname": "igDataTypeFormatString", "defaults": {}, "funcname": "DataTypeFormatString", - "location": "imgui_internal:3683", + "location": "imgui_internal:3698", "namespace": "ImGui", "ov_cimguiname": "igDataTypeFormatString", "ret": "int", @@ -17754,7 +18399,7 @@ "cimguiname": "igDataTypeGetInfo", "defaults": {}, "funcname": "DataTypeGetInfo", - "location": "imgui_internal:3682", + "location": "imgui_internal:3697", "namespace": "ImGui", "ov_cimguiname": "igDataTypeGetInfo", "ret": "const ImGuiDataTypeInfo*", @@ -17781,7 +18426,7 @@ "cimguiname": "igDataTypeIsZero", "defaults": {}, "funcname": "DataTypeIsZero", - "location": "imgui_internal:3688", + "location": "imgui_internal:3703", "namespace": "ImGui", "ov_cimguiname": "igDataTypeIsZero", "ret": "bool", @@ -17816,7 +18461,7 @@ "cimguiname": "igDebugAllocHook", "defaults": {}, "funcname": "DebugAllocHook", - "location": "imgui_internal:3733", + "location": "imgui_internal:3748", "namespace": "ImGui", "ov_cimguiname": "igDebugAllocHook", "ret": "void", @@ -17843,7 +18488,7 @@ "cimguiname": "igDebugBreakButton", "defaults": {}, "funcname": "DebugBreakButton", - "location": "imgui_internal:3742", + "location": "imgui_internal:3757", "namespace": "ImGui", "ov_cimguiname": "igDebugBreakButton", "ret": "bool", @@ -17870,7 +18515,7 @@ "cimguiname": "igDebugBreakButtonTooltip", "defaults": {}, "funcname": "DebugBreakButtonTooltip", - "location": "imgui_internal:3743", + "location": "imgui_internal:3758", "namespace": "ImGui", "ov_cimguiname": "igDebugBreakButtonTooltip", "ret": "void", @@ -17888,7 +18533,7 @@ "cimguiname": "igDebugBreakClearData", "defaults": {}, "funcname": "DebugBreakClearData", - "location": "imgui_internal:3741", + "location": "imgui_internal:3756", "namespace": "ImGui", "ov_cimguiname": "igDebugBreakClearData", "ret": "void", @@ -17935,7 +18580,7 @@ "cimguiname": "igDebugCheckVersionAndDataLayout", "defaults": {}, "funcname": "DebugCheckVersionAndDataLayout", - "location": "imgui:1143", + "location": "imgui:1144", "namespace": "ImGui", "ov_cimguiname": "igDebugCheckVersionAndDataLayout", "ret": "bool", @@ -17960,7 +18605,7 @@ "col": "4278190335" }, "funcname": "DebugDrawCursorPos", - "location": "imgui_internal:3734", + "location": "imgui_internal:3749", "namespace": "ImGui", "ov_cimguiname": "igDebugDrawCursorPos", "ret": "void", @@ -17985,7 +18630,7 @@ "col": "4278190335" }, "funcname": "DebugDrawItemRect", - "location": "imgui_internal:3736", + "location": "imgui_internal:3751", "namespace": "ImGui", "ov_cimguiname": "igDebugDrawItemRect", "ret": "void", @@ -18010,7 +18655,7 @@ "col": "4278190335" }, "funcname": "DebugDrawLineExtents", - "location": "imgui_internal:3735", + "location": "imgui_internal:3750", "namespace": "ImGui", "ov_cimguiname": "igDebugDrawLineExtents", "ret": "void", @@ -18033,7 +18678,7 @@ "cimguiname": "igDebugFlashStyleColor", "defaults": {}, "funcname": "DebugFlashStyleColor", - "location": "imgui:1141", + "location": "imgui:1142", "namespace": "ImGui", "ov_cimguiname": "igDebugFlashStyleColor", "ret": "void", @@ -18068,7 +18713,7 @@ "cimguiname": "igDebugHookIdInfo", "defaults": {}, "funcname": "DebugHookIdInfo", - "location": "imgui_internal:3746", + "location": "imgui_internal:3761", "namespace": "ImGui", "ov_cimguiname": "igDebugHookIdInfo", "ret": "void", @@ -18091,7 +18736,7 @@ "cimguiname": "igDebugLocateItem", "defaults": {}, "funcname": "DebugLocateItem", - "location": "imgui_internal:3738", + "location": "imgui_internal:3753", "namespace": "ImGui", "ov_cimguiname": "igDebugLocateItem", "ret": "void", @@ -18114,7 +18759,7 @@ "cimguiname": "igDebugLocateItemOnHover", "defaults": {}, "funcname": "DebugLocateItemOnHover", - "location": "imgui_internal:3739", + "location": "imgui_internal:3754", "namespace": "ImGui", "ov_cimguiname": "igDebugLocateItemOnHover", "ret": "void", @@ -18132,7 +18777,7 @@ "cimguiname": "igDebugLocateItemResolveWithLastItem", "defaults": {}, "funcname": "DebugLocateItemResolveWithLastItem", - "location": "imgui_internal:3740", + "location": "imgui_internal:3755", "namespace": "ImGui", "ov_cimguiname": "igDebugLocateItemResolveWithLastItem", "ret": "void", @@ -18160,7 +18805,7 @@ "defaults": {}, "funcname": "DebugLog", "isvararg": "...)", - "location": "imgui:1145", + "location": "imgui:1146", "namespace": "ImGui", "ov_cimguiname": "igDebugLog", "ret": "void", @@ -18187,7 +18832,7 @@ "cimguiname": "igDebugLogV", "defaults": {}, "funcname": "DebugLogV", - "location": "imgui:1146", + "location": "imgui:1147", "namespace": "ImGui", "ov_cimguiname": "igDebugLogV", "ret": "void", @@ -18210,7 +18855,7 @@ "cimguiname": "igDebugNodeColumns", "defaults": {}, "funcname": "DebugNodeColumns", - "location": "imgui_internal:3747", + "location": "imgui_internal:3762", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeColumns", "ret": "void", @@ -18249,7 +18894,7 @@ "cimguiname": "igDebugNodeDrawCmdShowMeshAndBoundingBox", "defaults": {}, "funcname": "DebugNodeDrawCmdShowMeshAndBoundingBox", - "location": "imgui_internal:3749", + "location": "imgui_internal:3764", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeDrawCmdShowMeshAndBoundingBox", "ret": "void", @@ -18284,7 +18929,7 @@ "cimguiname": "igDebugNodeDrawList", "defaults": {}, "funcname": "DebugNodeDrawList", - "location": "imgui_internal:3748", + "location": "imgui_internal:3763", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeDrawList", "ret": "void", @@ -18307,7 +18952,7 @@ "cimguiname": "igDebugNodeFont", "defaults": {}, "funcname": "DebugNodeFont", - "location": "imgui_internal:3750", + "location": "imgui_internal:3765", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeFont", "ret": "void", @@ -18334,7 +18979,7 @@ "cimguiname": "igDebugNodeFontGlyph", "defaults": {}, "funcname": "DebugNodeFontGlyph", - "location": "imgui_internal:3752", + "location": "imgui_internal:3767", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeFontGlyph", "ret": "void", @@ -18365,7 +19010,7 @@ "cimguiname": "igDebugNodeFontGlyphsForSrcMask", "defaults": {}, "funcname": "DebugNodeFontGlyphsForSrcMask", - "location": "imgui_internal:3751", + "location": "imgui_internal:3766", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeFontGlyphsForSrcMask", "ret": "void", @@ -18388,7 +19033,7 @@ "cimguiname": "igDebugNodeInputTextState", "defaults": {}, "funcname": "DebugNodeInputTextState", - "location": "imgui_internal:3758", + "location": "imgui_internal:3773", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeInputTextState", "ret": "void", @@ -18411,7 +19056,7 @@ "cimguiname": "igDebugNodeMultiSelectState", "defaults": {}, "funcname": "DebugNodeMultiSelectState", - "location": "imgui_internal:3760", + "location": "imgui_internal:3775", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeMultiSelectState", "ret": "void", @@ -18438,7 +19083,7 @@ "cimguiname": "igDebugNodeStorage", "defaults": {}, "funcname": "DebugNodeStorage", - "location": "imgui_internal:3754", + "location": "imgui_internal:3769", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeStorage", "ret": "void", @@ -18465,7 +19110,7 @@ "cimguiname": "igDebugNodeTabBar", "defaults": {}, "funcname": "DebugNodeTabBar", - "location": "imgui_internal:3755", + "location": "imgui_internal:3770", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTabBar", "ret": "void", @@ -18488,7 +19133,7 @@ "cimguiname": "igDebugNodeTable", "defaults": {}, "funcname": "DebugNodeTable", - "location": "imgui_internal:3756", + "location": "imgui_internal:3771", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTable", "ret": "void", @@ -18511,7 +19156,7 @@ "cimguiname": "igDebugNodeTableSettings", "defaults": {}, "funcname": "DebugNodeTableSettings", - "location": "imgui_internal:3757", + "location": "imgui_internal:3772", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTableSettings", "ret": "void", @@ -18544,7 +19189,7 @@ "highlight_rect": "NULL" }, "funcname": "DebugNodeTexture", - "location": "imgui_internal:3753", + "location": "imgui_internal:3768", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTexture", "ret": "void", @@ -18567,7 +19212,7 @@ "cimguiname": "igDebugNodeTypingSelectState", "defaults": {}, "funcname": "DebugNodeTypingSelectState", - "location": "imgui_internal:3759", + "location": "imgui_internal:3774", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTypingSelectState", "ret": "void", @@ -18590,7 +19235,7 @@ "cimguiname": "igDebugNodeViewport", "defaults": {}, "funcname": "DebugNodeViewport", - "location": "imgui_internal:3765", + "location": "imgui_internal:3780", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeViewport", "ret": "void", @@ -18617,7 +19262,7 @@ "cimguiname": "igDebugNodeWindow", "defaults": {}, "funcname": "DebugNodeWindow", - "location": "imgui_internal:3761", + "location": "imgui_internal:3776", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindow", "ret": "void", @@ -18640,7 +19285,7 @@ "cimguiname": "igDebugNodeWindowSettings", "defaults": {}, "funcname": "DebugNodeWindowSettings", - "location": "imgui_internal:3762", + "location": "imgui_internal:3777", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowSettings", "ret": "void", @@ -18654,6 +19299,7 @@ "argsT": [ { "name": "windows", + "template_orig": "ImVector* windows", "type": "ImVector_ImGuiWindowPtr*" }, { @@ -18667,7 +19313,7 @@ "cimguiname": "igDebugNodeWindowsList", "defaults": {}, "funcname": "DebugNodeWindowsList", - "location": "imgui_internal:3763", + "location": "imgui_internal:3778", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowsList", "ret": "void", @@ -18698,7 +19344,7 @@ "cimguiname": "igDebugNodeWindowsListByBeginStackParent", "defaults": {}, "funcname": "DebugNodeWindowsListByBeginStackParent", - "location": "imgui_internal:3764", + "location": "imgui_internal:3779", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowsListByBeginStackParent", "ret": "void", @@ -18721,7 +19367,7 @@ "cimguiname": "igDebugRenderKeyboardPreview", "defaults": {}, "funcname": "DebugRenderKeyboardPreview", - "location": "imgui_internal:3766", + "location": "imgui_internal:3781", "namespace": "ImGui", "ov_cimguiname": "igDebugRenderKeyboardPreview", "ret": "void", @@ -18752,7 +19398,7 @@ "cimguiname": "igDebugRenderViewportThumbnail", "defaults": {}, "funcname": "DebugRenderViewportThumbnail", - "location": "imgui_internal:3767", + "location": "imgui_internal:3782", "namespace": "ImGui", "ov_cimguiname": "igDebugRenderViewportThumbnail", "ret": "void", @@ -18770,7 +19416,7 @@ "cimguiname": "igDebugStartItemPicker", "defaults": {}, "funcname": "DebugStartItemPicker", - "location": "imgui:1142", + "location": "imgui:1143", "namespace": "ImGui", "ov_cimguiname": "igDebugStartItemPicker", "ret": "void", @@ -18793,7 +19439,7 @@ "cimguiname": "igDebugTextEncoding", "defaults": {}, "funcname": "DebugTextEncoding", - "location": "imgui:1140", + "location": "imgui:1141", "namespace": "ImGui", "ov_cimguiname": "igDebugTextEncoding", "ret": "void", @@ -18820,7 +19466,7 @@ "cimguiname": "igDebugTextUnformattedWithLocateItem", "defaults": {}, "funcname": "DebugTextUnformattedWithLocateItem", - "location": "imgui_internal:3737", + "location": "imgui_internal:3752", "namespace": "ImGui", "ov_cimguiname": "igDebugTextUnformattedWithLocateItem", "ret": "void", @@ -18843,7 +19489,7 @@ "cimguiname": "igDebugTextureIDToU64", "defaults": {}, "funcname": "DebugTextureIDToU64", - "location": "imgui_internal:3745", + "location": "imgui_internal:3760", "namespace": "ImGui", "ov_cimguiname": "igDebugTextureIDToU64", "ret": "ImU64", @@ -18874,7 +19520,7 @@ "cimguiname": "igDemoMarker", "defaults": {}, "funcname": "DemoMarker", - "location": "imgui_internal:3730", + "location": "imgui_internal:3745", "namespace": "ImGui", "ov_cimguiname": "igDemoMarker", "ret": "void", @@ -18950,7 +19596,7 @@ "cimguiname": "igDragBehavior", "defaults": {}, "funcname": "DragBehavior", - "location": "imgui_internal:3659", + "location": "imgui_internal:3674", "namespace": "ImGui", "ov_cimguiname": "igDragBehavior", "ret": "bool", @@ -19684,7 +20330,7 @@ "cimguiname": "igEndBoxSelect", "defaults": {}, "funcname": "EndBoxSelect", - "location": "imgui_internal:3497", + "location": "imgui_internal:3511", "namespace": "ImGui", "ov_cimguiname": "igEndBoxSelect", "ret": "void", @@ -19720,7 +20366,7 @@ "cimguiname": "igEndColumns", "defaults": {}, "funcname": "EndColumns", - "location": "imgui_internal:3510", + "location": "imgui_internal:3524", "namespace": "ImGui", "ov_cimguiname": "igEndColumns", "ret": "void", @@ -19756,7 +20402,7 @@ "cimguiname": "igEndComboPreview", "defaults": {}, "funcname": "EndComboPreview", - "location": "imgui_internal:3354", + "location": "imgui_internal:3367", "namespace": "ImGui", "ov_cimguiname": "igEndComboPreview", "ret": "void", @@ -19792,7 +20438,7 @@ "cimguiname": "igEndDisabledOverrideReenable", "defaults": {}, "funcname": "EndDisabledOverrideReenable", - "location": "imgui_internal:3313", + "location": "imgui_internal:3325", "namespace": "ImGui", "ov_cimguiname": "igEndDisabledOverrideReenable", "ret": "void", @@ -19846,7 +20492,7 @@ "cimguiname": "igEndErrorTooltip", "defaults": {}, "funcname": "EndErrorTooltip", - "location": "imgui_internal:3727", + "location": "imgui_internal:3742", "namespace": "ImGui", "ov_cimguiname": "igEndErrorTooltip", "ret": "void", @@ -20080,7 +20726,7 @@ "cimguiname": "igErrorCheckEndFrameFinalizeErrorTooltip", "defaults": {}, "funcname": "ErrorCheckEndFrameFinalizeErrorTooltip", - "location": "imgui_internal:3725", + "location": "imgui_internal:3740", "namespace": "ImGui", "ov_cimguiname": "igErrorCheckEndFrameFinalizeErrorTooltip", "ret": "void", @@ -20098,7 +20744,7 @@ "cimguiname": "igErrorCheckUsingSetCursorPosToExtendParentBoundaries", "defaults": {}, "funcname": "ErrorCheckUsingSetCursorPosToExtendParentBoundaries", - "location": "imgui_internal:3724", + "location": "imgui_internal:3739", "namespace": "ImGui", "ov_cimguiname": "igErrorCheckUsingSetCursorPosToExtendParentBoundaries", "ret": "void", @@ -20121,7 +20767,7 @@ "cimguiname": "igErrorLog", "defaults": {}, "funcname": "ErrorLog", - "location": "imgui_internal:3720", + "location": "imgui_internal:3735", "namespace": "ImGui", "ov_cimguiname": "igErrorLog", "ret": "bool", @@ -20144,7 +20790,7 @@ "cimguiname": "igErrorRecoveryStoreState", "defaults": {}, "funcname": "ErrorRecoveryStoreState", - "location": "imgui_internal:3721", + "location": "imgui_internal:3736", "namespace": "ImGui", "ov_cimguiname": "igErrorRecoveryStoreState", "ret": "void", @@ -20167,7 +20813,7 @@ "cimguiname": "igErrorRecoveryTryToRecoverState", "defaults": {}, "funcname": "ErrorRecoveryTryToRecoverState", - "location": "imgui_internal:3722", + "location": "imgui_internal:3737", "namespace": "ImGui", "ov_cimguiname": "igErrorRecoveryTryToRecoverState", "ret": "void", @@ -20190,7 +20836,7 @@ "cimguiname": "igErrorRecoveryTryToRecoverWindowState", "defaults": {}, "funcname": "ErrorRecoveryTryToRecoverWindowState", - "location": "imgui_internal:3723", + "location": "imgui_internal:3738", "namespace": "ImGui", "ov_cimguiname": "igErrorRecoveryTryToRecoverWindowState", "ret": "void", @@ -20225,7 +20871,7 @@ "cimguiname": "igExtendHitBoxWhenNearViewportEdge", "defaults": {}, "funcname": "ExtendHitBoxWhenNearViewportEdge", - "location": "imgui_internal:3655", + "location": "imgui_internal:3670", "namespace": "ImGui", "ov_cimguiname": "igExtendHitBoxWhenNearViewportEdge", "ret": "void", @@ -20249,7 +20895,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "FindBestWindowPosForPopup", - "location": "imgui_internal:3336", + "location": "imgui_internal:3349", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igFindBestWindowPosForPopup", @@ -20294,7 +20940,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "FindBestWindowPosForPopupEx", - "location": "imgui_internal:3337", + "location": "imgui_internal:3350", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igFindBestWindowPosForPopupEx", @@ -20318,7 +20964,7 @@ "cimguiname": "igFindBlockingModal", "defaults": {}, "funcname": "FindBlockingModal", - "location": "imgui_internal:3335", + "location": "imgui_internal:3348", "namespace": "ImGui", "ov_cimguiname": "igFindBlockingModal", "ret": "ImGuiWindow*", @@ -20341,7 +20987,7 @@ "cimguiname": "igFindBottomMostVisibleWindowWithinBeginStack", "defaults": {}, "funcname": "FindBottomMostVisibleWindowWithinBeginStack", - "location": "imgui_internal:3202", + "location": "imgui_internal:3214", "namespace": "ImGui", "ov_cimguiname": "igFindBottomMostVisibleWindowWithinBeginStack", "ret": "ImGuiWindow*", @@ -20349,6 +20995,29 @@ "stname": "" } ], + "igFindFrontMostVisibleChildWindow": [ + { + "args": "(ImGuiWindow* window)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + } + ], + "argsoriginal": "(ImGuiWindow* window)", + "call_args": "(window)", + "call_args_old": "(window)", + "cimguiname": "igFindFrontMostVisibleChildWindow", + "defaults": {}, + "funcname": "FindFrontMostVisibleChildWindow", + "location": "imgui_internal:3335", + "namespace": "ImGui", + "ov_cimguiname": "igFindFrontMostVisibleChildWindow", + "ret": "ImGuiWindow*", + "signature": "(ImGuiWindow*)", + "stname": "" + } + ], "igFindHoveredWindowEx": [ { "args": "(const ImVec2_c pos,bool find_first_and_in_any_viewport,ImGuiWindow** out_hovered_window,ImGuiWindow** out_hovered_window_under_moving_window)", @@ -20376,7 +21045,7 @@ "cimguiname": "igFindHoveredWindowEx", "defaults": {}, "funcname": "FindHoveredWindowEx", - "location": "imgui_internal:3238", + "location": "imgui_internal:3250", "namespace": "ImGui", "ov_cimguiname": "igFindHoveredWindowEx", "ret": "void", @@ -20403,7 +21072,7 @@ "cimguiname": "igFindOrCreateColumns", "defaults": {}, "funcname": "FindOrCreateColumns", - "location": "imgui_internal:3515", + "location": "imgui_internal:3529", "namespace": "ImGui", "ov_cimguiname": "igFindOrCreateColumns", "ret": "ImGuiOldColumns*", @@ -20432,7 +21101,7 @@ "text_end": "NULL" }, "funcname": "FindRenderedTextEnd", - "location": "imgui_internal:3620", + "location": "imgui_internal:3635", "namespace": "ImGui", "ov_cimguiname": "igFindRenderedTextEnd", "ret": "const char*", @@ -20455,7 +21124,7 @@ "cimguiname": "igFindSettingsHandler", "defaults": {}, "funcname": "FindSettingsHandler", - "location": "imgui_internal:3255", + "location": "imgui_internal:3267", "namespace": "ImGui", "ov_cimguiname": "igFindSettingsHandler", "ret": "ImGuiSettingsHandler*", @@ -20478,7 +21147,7 @@ "cimguiname": "igFindWindowByID", "defaults": {}, "funcname": "FindWindowByID", - "location": "imgui_internal:3173", + "location": "imgui_internal:3185", "namespace": "ImGui", "ov_cimguiname": "igFindWindowByID", "ret": "ImGuiWindow*", @@ -20501,7 +21170,7 @@ "cimguiname": "igFindWindowByName", "defaults": {}, "funcname": "FindWindowByName", - "location": "imgui_internal:3174", + "location": "imgui_internal:3186", "namespace": "ImGui", "ov_cimguiname": "igFindWindowByName", "ret": "ImGuiWindow*", @@ -20524,7 +21193,7 @@ "cimguiname": "igFindWindowDisplayIndex", "defaults": {}, "funcname": "FindWindowDisplayIndex", - "location": "imgui_internal:3201", + "location": "imgui_internal:3213", "namespace": "ImGui", "ov_cimguiname": "igFindWindowDisplayIndex", "ret": "int", @@ -20547,7 +21216,7 @@ "cimguiname": "igFindWindowSettingsByID", "defaults": {}, "funcname": "FindWindowSettingsByID", - "location": "imgui_internal:3259", + "location": "imgui_internal:3271", "namespace": "ImGui", "ov_cimguiname": "igFindWindowSettingsByID", "ret": "ImGuiWindowSettings*", @@ -20570,7 +21239,7 @@ "cimguiname": "igFindWindowSettingsByWindow", "defaults": {}, "funcname": "FindWindowSettingsByWindow", - "location": "imgui_internal:3260", + "location": "imgui_internal:3272", "namespace": "ImGui", "ov_cimguiname": "igFindWindowSettingsByWindow", "ret": "ImGuiWindowSettings*", @@ -20593,7 +21262,7 @@ "cimguiname": "igFixupKeyChord", "defaults": {}, "funcname": "FixupKeyChord", - "location": "imgui_internal:3391", + "location": "imgui_internal:3404", "namespace": "ImGui", "ov_cimguiname": "igFixupKeyChord", "ret": "ImGuiKeyChord", @@ -20611,7 +21280,7 @@ "cimguiname": "igFocusItem", "defaults": {}, "funcname": "FocusItem", - "location": "imgui_internal:3378", + "location": "imgui_internal:3391", "namespace": "ImGui", "ov_cimguiname": "igFocusItem", "ret": "void", @@ -20646,7 +21315,7 @@ "cimguiname": "igFocusTopMostWindowUnderOne", "defaults": {}, "funcname": "FocusTopMostWindowUnderOne", - "location": "imgui_internal:3196", + "location": "imgui_internal:3208", "namespace": "ImGui", "ov_cimguiname": "igFocusTopMostWindowUnderOne", "ret": "void", @@ -20675,7 +21344,7 @@ "flags": "0" }, "funcname": "FocusWindow", - "location": "imgui_internal:3195", + "location": "imgui_internal:3207", "namespace": "ImGui", "ov_cimguiname": "igFocusWindow", "ret": "void", @@ -20698,7 +21367,7 @@ "cimguiname": "igGcAwakeTransientWindowBuffers", "defaults": {}, "funcname": "GcAwakeTransientWindowBuffers", - "location": "imgui_internal:3717", + "location": "imgui_internal:3732", "namespace": "ImGui", "ov_cimguiname": "igGcAwakeTransientWindowBuffers", "ret": "void", @@ -20716,7 +21385,7 @@ "cimguiname": "igGcCompactTransientMiscBuffers", "defaults": {}, "funcname": "GcCompactTransientMiscBuffers", - "location": "imgui_internal:3715", + "location": "imgui_internal:3730", "namespace": "ImGui", "ov_cimguiname": "igGcCompactTransientMiscBuffers", "ret": "void", @@ -20739,7 +21408,7 @@ "cimguiname": "igGcCompactTransientWindowBuffers", "defaults": {}, "funcname": "GcCompactTransientWindowBuffers", - "location": "imgui_internal:3716", + "location": "imgui_internal:3731", "namespace": "ImGui", "ov_cimguiname": "igGcCompactTransientWindowBuffers", "ret": "void", @@ -20757,7 +21426,7 @@ "cimguiname": "igGetActiveID", "defaults": {}, "funcname": "GetActiveID", - "location": "imgui_internal:3283", + "location": "imgui_internal:3295", "namespace": "ImGui", "ov_cimguiname": "igGetActiveID", "ret": "ImGuiID", @@ -20788,7 +21457,7 @@ "cimguiname": "igGetAllocatorFunctions", "defaults": {}, "funcname": "GetAllocatorFunctions", - "location": "imgui:1154", + "location": "imgui:1155", "namespace": "ImGui", "ov_cimguiname": "igGetAllocatorFunctions", "ret": "void", @@ -20827,7 +21496,7 @@ "cimguiname": "igGetBackgroundDrawList", "defaults": {}, "funcname": "GetBackgroundDrawList", - "location": "imgui_internal:3221", + "location": "imgui_internal:3233", "namespace": "ImGui", "ov_cimguiname": "igGetBackgroundDrawList_ViewportPtr", "ret": "ImDrawList*", @@ -20850,7 +21519,7 @@ "cimguiname": "igGetBoxSelectState", "defaults": {}, "funcname": "GetBoxSelectState", - "location": "imgui_internal:3504", + "location": "imgui_internal:3518", "namespace": "ImGui", "ov_cimguiname": "igGetBoxSelectState", "ret": "ImGuiBoxSelectState*", @@ -20868,7 +21537,7 @@ "cimguiname": "igGetClipboardText", "defaults": {}, "funcname": "GetClipboardText", - "location": "imgui:1124", + "location": "imgui:1125", "namespace": "ImGui", "ov_cimguiname": "igGetClipboardText", "ret": "const char*", @@ -20990,7 +21659,7 @@ "cimguiname": "igGetColumnNormFromOffset", "defaults": {}, "funcname": "GetColumnNormFromOffset", - "location": "imgui_internal:3517", + "location": "imgui_internal:3531", "namespace": "ImGui", "ov_cimguiname": "igGetColumnNormFromOffset", "ret": "float", @@ -21042,7 +21711,7 @@ "cimguiname": "igGetColumnOffsetFromNorm", "defaults": {}, "funcname": "GetColumnOffsetFromNorm", - "location": "imgui_internal:3516", + "location": "imgui_internal:3530", "namespace": "ImGui", "ov_cimguiname": "igGetColumnOffsetFromNorm", "ret": "float", @@ -21112,7 +21781,7 @@ "cimguiname": "igGetColumnsID", "defaults": {}, "funcname": "GetColumnsID", - "location": "imgui_internal:3514", + "location": "imgui_internal:3528", "namespace": "ImGui", "ov_cimguiname": "igGetColumnsID", "ret": "ImGuiID", @@ -21168,7 +21837,7 @@ "cimguiname": "igGetCurrentFocusScope", "defaults": {}, "funcname": "GetCurrentFocusScope", - "location": "imgui_internal:3476", + "location": "imgui_internal:3490", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentFocusScope", "ret": "ImGuiID", @@ -21186,7 +21855,7 @@ "cimguiname": "igGetCurrentTabBar", "defaults": {}, "funcname": "GetCurrentTabBar", - "location": "imgui_internal:3581", + "location": "imgui_internal:3596", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentTabBar", "ret": "ImGuiTabBar*", @@ -21204,7 +21873,7 @@ "cimguiname": "igGetCurrentTable", "defaults": {}, "funcname": "GetCurrentTable", - "location": "imgui_internal:3533", + "location": "imgui_internal:3547", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentTable", "ret": "ImGuiTable*", @@ -21222,7 +21891,7 @@ "cimguiname": "igGetCurrentWindow", "defaults": {}, "funcname": "GetCurrentWindow", - "location": "imgui_internal:3172", + "location": "imgui_internal:3184", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentWindow", "ret": "ImGuiWindow*", @@ -21240,7 +21909,7 @@ "cimguiname": "igGetCurrentWindowRead", "defaults": {}, "funcname": "GetCurrentWindowRead", - "location": "imgui_internal:3171", + "location": "imgui_internal:3183", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentWindowRead", "ret": "ImGuiWindow*", @@ -21354,7 +22023,7 @@ "cimguiname": "igGetDefaultFont", "defaults": {}, "funcname": "GetDefaultFont", - "location": "imgui_internal:3217", + "location": "imgui_internal:3229", "namespace": "ImGui", "ov_cimguiname": "igGetDefaultFont", "ret": "ImFont*", @@ -21426,7 +22095,7 @@ "cimguiname": "igGetFocusID", "defaults": {}, "funcname": "GetFocusID", - "location": "imgui_internal:3284", + "location": "imgui_internal:3296", "namespace": "ImGui", "ov_cimguiname": "igGetFocusID", "ret": "ImGuiID", @@ -21480,7 +22149,7 @@ "cimguiname": "igGetFontRasterizerDensity", "defaults": {}, "funcname": "GetFontRasterizerDensity", - "location": "imgui_internal:3215", + "location": "imgui_internal:3227", "namespace": "ImGui", "ov_cimguiname": "igGetFontRasterizerDensity", "ret": "float", @@ -21557,7 +22226,7 @@ "cimguiname": "igGetForegroundDrawList", "defaults": {}, "funcname": "GetForegroundDrawList", - "location": "imgui_internal:3220", + "location": "imgui_internal:3232", "namespace": "ImGui", "ov_cimguiname": "igGetForegroundDrawList_WindowPtr", "ret": "ImDrawList*", @@ -21578,7 +22247,7 @@ "cimguiname": "igGetForegroundDrawList", "defaults": {}, "funcname": "GetForegroundDrawList", - "location": "imgui_internal:3222", + "location": "imgui_internal:3234", "namespace": "ImGui", "ov_cimguiname": "igGetForegroundDrawList_ViewportPtr", "ret": "ImDrawList*", @@ -21650,7 +22319,7 @@ "cimguiname": "igGetHoveredID", "defaults": {}, "funcname": "GetHoveredID", - "location": "imgui_internal:3288", + "location": "imgui_internal:3300", "namespace": "ImGui", "ov_cimguiname": "igGetHoveredID", "ret": "ImGuiID", @@ -21771,7 +22440,7 @@ "cimguiname": "igGetIDWithSeed", "defaults": {}, "funcname": "GetIDWithSeed", - "location": "imgui_internal:3293", + "location": "imgui_internal:3305", "namespace": "ImGui", "ov_cimguiname": "igGetIDWithSeed_Str", "ret": "ImGuiID", @@ -21796,7 +22465,7 @@ "cimguiname": "igGetIDWithSeed", "defaults": {}, "funcname": "GetIDWithSeed", - "location": "imgui_internal:3294", + "location": "imgui_internal:3306", "namespace": "ImGui", "ov_cimguiname": "igGetIDWithSeed_Int", "ret": "ImGuiID", @@ -21836,7 +22505,7 @@ "cimguiname": "igGetIO", "defaults": {}, "funcname": "GetIO", - "location": "imgui_internal:3168", + "location": "imgui_internal:3180", "namespace": "ImGui", "ov_cimguiname": "igGetIO_ContextPtr", "ret": "ImGuiIO*", @@ -21860,7 +22529,7 @@ "cimguiname": "igGetInputTextState", "defaults": {}, "funcname": "GetInputTextState", - "location": "imgui_internal:3696", + "location": "imgui_internal:3711", "namespace": "ImGui", "ov_cimguiname": "igGetInputTextState", "ret": "ImGuiInputTextState*", @@ -21974,7 +22643,7 @@ "cimguiname": "igGetItemStatusFlags", "defaults": {}, "funcname": "GetItemStatusFlags", - "location": "imgui_internal:3282", + "location": "imgui_internal:3294", "namespace": "ImGui", "ov_cimguiname": "igGetItemStatusFlags", "ret": "ImGuiItemStatusFlags", @@ -21997,7 +22666,7 @@ "cimguiname": "igGetKeyChordName", "defaults": {}, "funcname": "GetKeyChordName", - "location": "imgui_internal:3403", + "location": "imgui_internal:3416", "namespace": "ImGui", "ov_cimguiname": "igGetKeyChordName", "ret": "const char*", @@ -22024,7 +22693,7 @@ "cimguiname": "igGetKeyData", "defaults": {}, "funcname": "GetKeyData", - "location": "imgui_internal:3401", + "location": "imgui_internal:3414", "namespace": "ImGui", "ov_cimguiname": "igGetKeyData_ContextPtr", "ret": "ImGuiKeyData*", @@ -22045,7 +22714,7 @@ "cimguiname": "igGetKeyData", "defaults": {}, "funcname": "GetKeyData", - "location": "imgui_internal:3402", + "location": "imgui_internal:3415", "namespace": "ImGui", "ov_cimguiname": "igGetKeyData_Key", "ret": "ImGuiKeyData*", @@ -22081,7 +22750,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetKeyMagnitude2d", - "location": "imgui_internal:3406", + "location": "imgui_internal:3419", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetKeyMagnitude2d", @@ -22128,7 +22797,7 @@ "cimguiname": "igGetKeyOwner", "defaults": {}, "funcname": "GetKeyOwner", - "location": "imgui_internal:3425", + "location": "imgui_internal:3438", "namespace": "ImGui", "ov_cimguiname": "igGetKeyOwner", "ret": "ImGuiID", @@ -22155,7 +22824,7 @@ "cimguiname": "igGetKeyOwnerData", "defaults": {}, "funcname": "GetKeyOwnerData", - "location": "imgui_internal:3430", + "location": "imgui_internal:3443", "namespace": "ImGui", "ov_cimguiname": "igGetKeyOwnerData", "ret": "ImGuiKeyOwnerData*", @@ -22227,7 +22896,7 @@ "cimguiname": "igGetMouseButtonFromPopupFlags", "defaults": {}, "funcname": "GetMouseButtonFromPopupFlags", - "location": "imgui_internal:3338", + "location": "imgui_internal:3351", "namespace": "ImGui", "ov_cimguiname": "igGetMouseButtonFromPopupFlags", "ret": "ImGuiMouseButton", @@ -22250,7 +22919,7 @@ "cimguiname": "igGetMouseClickedCount", "defaults": {}, "funcname": "GetMouseClickedCount", - "location": "imgui:1109", + "location": "imgui:1110", "namespace": "ImGui", "ov_cimguiname": "igGetMouseClickedCount", "ret": "int", @@ -22268,7 +22937,7 @@ "cimguiname": "igGetMouseCursor", "defaults": {}, "funcname": "GetMouseCursor", - "location": "imgui:1118", + "location": "imgui:1119", "namespace": "ImGui", "ov_cimguiname": "igGetMouseCursor", "ret": "ImGuiMouseCursor", @@ -22299,7 +22968,7 @@ "lock_threshold": "-1.0f" }, "funcname": "GetMouseDragDelta", - "location": "imgui:1116", + "location": "imgui:1117", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMouseDragDelta", @@ -22319,7 +22988,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetMousePos", - "location": "imgui:1113", + "location": "imgui:1114", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePos", @@ -22339,7 +23008,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "GetMousePosOnOpeningCurrentPopup", - "location": "imgui:1114", + "location": "imgui:1115", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePosOnOpeningCurrentPopup", @@ -22363,7 +23032,7 @@ "cimguiname": "igGetMultiSelectState", "defaults": {}, "funcname": "GetMultiSelectState", - "location": "imgui_internal:3505", + "location": "imgui_internal:3519", "namespace": "ImGui", "ov_cimguiname": "igGetMultiSelectState", "ret": "ImGuiMultiSelectState*", @@ -22386,7 +23055,7 @@ "cimguiname": "igGetNavTweakPressedAmount", "defaults": {}, "funcname": "GetNavTweakPressedAmount", - "location": "imgui_internal:3407", + "location": "imgui_internal:3420", "namespace": "ImGui", "ov_cimguiname": "igGetNavTweakPressedAmount", "ret": "float", @@ -22426,7 +23095,7 @@ "cimguiname": "igGetPlatformIO", "defaults": {}, "funcname": "GetPlatformIO", - "location": "imgui_internal:3169", + "location": "imgui_internal:3181", "namespace": "ImGui", "ov_cimguiname": "igGetPlatformIO_ContextPtr", "ret": "ImGuiPlatformIO*", @@ -22451,7 +23120,7 @@ "conv": "ImRect", "defaults": {}, "funcname": "GetPopupAllowedExtentRect", - "location": "imgui_internal:3332", + "location": "imgui_internal:3345", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetPopupAllowedExtentRect", @@ -22475,7 +23144,7 @@ "cimguiname": "igGetRoundedFontSize", "defaults": {}, "funcname": "GetRoundedFontSize", - "location": "imgui_internal:3216", + "location": "imgui_internal:3228", "namespace": "ImGui", "ov_cimguiname": "igGetRoundedFontSize", "ret": "float", @@ -22493,7 +23162,7 @@ "cimguiname": "igGetScale", "defaults": {}, "funcname": "GetScale", - "location": "imgui_internal:3170", + "location": "imgui_internal:3182", "namespace": "ImGui", "ov_cimguiname": "igGetScale", "ret": "float", @@ -22588,7 +23257,7 @@ "cimguiname": "igGetShortcutRoutingData", "defaults": {}, "funcname": "GetShortcutRoutingData", - "location": "imgui_internal:3464", + "location": "imgui_internal:3477", "namespace": "ImGui", "ov_cimguiname": "igGetShortcutRoutingData", "ret": "ImGuiKeyRoutingData*", @@ -22696,7 +23365,7 @@ "cimguiname": "igGetStyleVarInfo", "defaults": {}, "funcname": "GetStyleVarInfo", - "location": "imgui_internal:3311", + "location": "imgui_internal:3323", "namespace": "ImGui", "ov_cimguiname": "igGetStyleVarInfo", "ret": "const ImGuiStyleVarInfo*", @@ -22768,7 +23437,7 @@ "cimguiname": "igGetTopMostAndVisiblePopupModal", "defaults": {}, "funcname": "GetTopMostAndVisiblePopupModal", - "location": "imgui_internal:3334", + "location": "imgui_internal:3347", "namespace": "ImGui", "ov_cimguiname": "igGetTopMostAndVisiblePopupModal", "ret": "ImGuiWindow*", @@ -22786,7 +23455,7 @@ "cimguiname": "igGetTopMostPopupModal", "defaults": {}, "funcname": "GetTopMostPopupModal", - "location": "imgui_internal:3333", + "location": "imgui_internal:3346", "namespace": "ImGui", "ov_cimguiname": "igGetTopMostPopupModal", "ret": "ImGuiWindow*", @@ -22835,7 +23504,7 @@ "cimguiname": "igGetTypematicRepeatRate", "defaults": {}, "funcname": "GetTypematicRepeatRate", - "location": "imgui_internal:3409", + "location": "imgui_internal:3422", "namespace": "ImGui", "ov_cimguiname": "igGetTypematicRepeatRate", "ret": "void", @@ -22860,7 +23529,7 @@ "flags": "ImGuiTypingSelectFlags_None" }, "funcname": "GetTypingSelectRequest", - "location": "imgui_internal:3490", + "location": "imgui_internal:3504", "namespace": "ImGui", "ov_cimguiname": "igGetTypingSelectRequest", "ret": "ImGuiTypingSelectRequest*", @@ -22961,7 +23630,7 @@ "cimguiname": "igGetWindowResizeBorderID", "defaults": {}, "funcname": "GetWindowResizeBorderID", - "location": "imgui_internal:3654", + "location": "imgui_internal:3669", "namespace": "ImGui", "ov_cimguiname": "igGetWindowResizeBorderID", "ret": "ImGuiID", @@ -22988,7 +23657,7 @@ "cimguiname": "igGetWindowResizeCornerID", "defaults": {}, "funcname": "GetWindowResizeCornerID", - "location": "imgui_internal:3653", + "location": "imgui_internal:3668", "namespace": "ImGui", "ov_cimguiname": "igGetWindowResizeCornerID", "ret": "ImGuiID", @@ -23015,7 +23684,7 @@ "cimguiname": "igGetWindowScrollbarID", "defaults": {}, "funcname": "GetWindowScrollbarID", - "location": "imgui_internal:3652", + "location": "imgui_internal:3667", "namespace": "ImGui", "ov_cimguiname": "igGetWindowScrollbarID", "ret": "ImGuiID", @@ -23043,7 +23712,7 @@ "conv": "ImRect", "defaults": {}, "funcname": "GetWindowScrollbarRect", - "location": "imgui_internal:3651", + "location": "imgui_internal:3666", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowScrollbarRect", @@ -23082,7 +23751,7 @@ "cimguiname": "igGetWindowViewport", "defaults": {}, "funcname": "GetWindowViewport", - "location": "imgui_internal:3245", + "location": "imgui_internal:3257", "namespace": "ImGui", "ov_cimguiname": "igGetWindowViewport", "ret": "ImGuiViewport*", @@ -23123,7 +23792,7 @@ "cimguiname": "igImAbs", "defaults": {}, "funcname": "ImAbs", - "location": "imgui_internal:492", + "location": "imgui_internal:495", "ov_cimguiname": "igImAbs_Int", "ret": "int", "signature": "(int)", @@ -23143,7 +23812,7 @@ "cimguiname": "igImAbs", "defaults": {}, "funcname": "ImAbs", - "location": "imgui_internal:493", + "location": "imgui_internal:496", "ov_cimguiname": "igImAbs_Float", "ret": "float", "signature": "(float)", @@ -23163,7 +23832,7 @@ "cimguiname": "igImAbs", "defaults": {}, "funcname": "ImAbs", - "location": "imgui_internal:494", + "location": "imgui_internal:497", "ov_cimguiname": "igImAbs_double", "ret": "double", "signature": "(double)", @@ -23189,7 +23858,7 @@ "cimguiname": "igImAlphaBlendColors", "defaults": {}, "funcname": "ImAlphaBlendColors", - "location": "imgui_internal:376", + "location": "imgui_internal:379", "ov_cimguiname": "igImAlphaBlendColors", "ret": "ImU32", "signature": "(ImU32,ImU32)", @@ -23228,7 +23897,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "ImBezierCubicCalc", - "location": "imgui_internal:541", + "location": "imgui_internal:545", "nonUDT": 1, "ov_cimguiname": "igImBezierCubicCalc", "ret": "ImVec2_c", @@ -23272,7 +23941,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "ImBezierCubicClosestPoint", - "location": "imgui_internal:542", + "location": "imgui_internal:546", "nonUDT": 1, "ov_cimguiname": "igImBezierCubicClosestPoint", "ret": "ImVec2_c", @@ -23316,7 +23985,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "ImBezierCubicClosestPointCasteljau", - "location": "imgui_internal:543", + "location": "imgui_internal:547", "nonUDT": 1, "ov_cimguiname": "igImBezierCubicClosestPointCasteljau", "ret": "ImVec2_c", @@ -23352,7 +24021,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "ImBezierQuadraticCalc", - "location": "imgui_internal:544", + "location": "imgui_internal:548", "nonUDT": 1, "ov_cimguiname": "igImBezierQuadraticCalc", "ret": "ImVec2_c", @@ -23379,7 +24048,7 @@ "cimguiname": "igImBitArrayClearAllBits", "defaults": {}, "funcname": "ImBitArrayClearAllBits", - "location": "imgui_internal:622", + "location": "imgui_internal:628", "ov_cimguiname": "igImBitArrayClearAllBits", "ret": "void", "signature": "(ImU32*,int)", @@ -23405,7 +24074,7 @@ "cimguiname": "igImBitArrayClearBit", "defaults": {}, "funcname": "ImBitArrayClearBit", - "location": "imgui_internal:624", + "location": "imgui_internal:630", "ov_cimguiname": "igImBitArrayClearBit", "ret": "void", "signature": "(ImU32*,int)", @@ -23427,7 +24096,7 @@ "cimguiname": "igImBitArrayGetStorageSizeInBytes", "defaults": {}, "funcname": "ImBitArrayGetStorageSizeInBytes", - "location": "imgui_internal:621", + "location": "imgui_internal:627", "ov_cimguiname": "igImBitArrayGetStorageSizeInBytes", "ret": "size_t", "signature": "(int)", @@ -23453,7 +24122,7 @@ "cimguiname": "igImBitArraySetBit", "defaults": {}, "funcname": "ImBitArraySetBit", - "location": "imgui_internal:625", + "location": "imgui_internal:631", "ov_cimguiname": "igImBitArraySetBit", "ret": "void", "signature": "(ImU32*,int)", @@ -23483,7 +24152,7 @@ "cimguiname": "igImBitArraySetBitRange", "defaults": {}, "funcname": "ImBitArraySetBitRange", - "location": "imgui_internal:626", + "location": "imgui_internal:632", "ov_cimguiname": "igImBitArraySetBitRange", "ret": "void", "signature": "(ImU32*,int,int)", @@ -23509,7 +24178,7 @@ "cimguiname": "igImBitArrayTestBit", "defaults": {}, "funcname": "ImBitArrayTestBit", - "location": "imgui_internal:623", + "location": "imgui_internal:629", "ov_cimguiname": "igImBitArrayTestBit", "ret": "bool", "signature": "(const ImU32*,int)", @@ -23531,7 +24200,7 @@ "cimguiname": "igImCharIsBlankA", "defaults": {}, "funcname": "ImCharIsBlankA", - "location": "imgui_internal:402", + "location": "imgui_internal:405", "ov_cimguiname": "igImCharIsBlankA", "ret": "bool", "signature": "(char)", @@ -23553,7 +24222,7 @@ "cimguiname": "igImCharIsBlankW", "defaults": {}, "funcname": "ImCharIsBlankW", - "location": "imgui_internal:403", + "location": "imgui_internal:406", "ov_cimguiname": "igImCharIsBlankW", "ret": "bool", "signature": "(unsigned int)", @@ -23575,7 +24244,7 @@ "cimguiname": "igImCharIsXdigitA", "defaults": {}, "funcname": "ImCharIsXdigitA", - "location": "imgui_internal:404", + "location": "imgui_internal:407", "ov_cimguiname": "igImCharIsXdigitA", "ret": "bool", "signature": "(char)", @@ -23606,7 +24275,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "ImClamp", - "location": "imgui_internal:516", + "location": "imgui_internal:520", "nonUDT": 1, "ov_cimguiname": "igImClamp", "ret": "ImVec2_c", @@ -23629,7 +24298,7 @@ "cimguiname": "igImCountSetBits", "defaults": {}, "funcname": "ImCountSetBits", - "location": "imgui_internal:382", + "location": "imgui_internal:385", "ov_cimguiname": "igImCountSetBits", "ret": "unsigned int", "signature": "(unsigned int)", @@ -23655,7 +24324,7 @@ "cimguiname": "igImDot", "defaults": {}, "funcname": "ImDot", - "location": "imgui_internal:531", + "location": "imgui_internal:535", "ov_cimguiname": "igImDot", "ret": "float", "signature": "(const ImVec2,const ImVec2)", @@ -23685,7 +24354,7 @@ "cimguiname": "igImExponentialMovingAverage", "defaults": {}, "funcname": "ImExponentialMovingAverage", - "location": "imgui_internal:537", + "location": "imgui_internal:541", "ov_cimguiname": "igImExponentialMovingAverage", "ret": "float", "signature": "(float,float,int)", @@ -23707,7 +24376,7 @@ "cimguiname": "igImFileClose", "defaults": {}, "funcname": "ImFileClose", - "location": "imgui_internal:466", + "location": "imgui_internal:469", "ov_cimguiname": "igImFileClose", "ret": "bool", "signature": "(ImFileHandle)", @@ -23729,7 +24398,7 @@ "cimguiname": "igImFileGetSize", "defaults": {}, "funcname": "ImFileGetSize", - "location": "imgui_internal:467", + "location": "imgui_internal:470", "ov_cimguiname": "igImFileGetSize", "ret": "ImU64", "signature": "(ImFileHandle)", @@ -23766,7 +24435,7 @@ "padding_bytes": "0" }, "funcname": "ImFileLoadToMemory", - "location": "imgui_internal:473", + "location": "imgui_internal:476", "ov_cimguiname": "igImFileLoadToMemory", "ret": "void*", "signature": "(const char*,const char*,size_t*,int)", @@ -23792,7 +24461,7 @@ "cimguiname": "igImFileOpen", "defaults": {}, "funcname": "ImFileOpen", - "location": "imgui_internal:465", + "location": "imgui_internal:468", "ov_cimguiname": "igImFileOpen", "ret": "ImFileHandle", "signature": "(const char*,const char*)", @@ -23826,7 +24495,7 @@ "cimguiname": "igImFileRead", "defaults": {}, "funcname": "ImFileRead", - "location": "imgui_internal:468", + "location": "imgui_internal:471", "ov_cimguiname": "igImFileRead", "ret": "ImU64", "signature": "(void*,ImU64,ImU64,ImFileHandle)", @@ -23860,7 +24529,7 @@ "cimguiname": "igImFileWrite", "defaults": {}, "funcname": "ImFileWrite", - "location": "imgui_internal:469", + "location": "imgui_internal:472", "ov_cimguiname": "igImFileWrite", "ret": "ImU64", "signature": "(const void*,ImU64,ImU64,ImFileHandle)", @@ -23882,7 +24551,7 @@ "cimguiname": "igImFloor", "defaults": {}, "funcname": "ImFloor", - "location": "imgui_internal:526", + "location": "imgui_internal:530", "ov_cimguiname": "igImFloor_Float", "ret": "float", "signature": "(float)", @@ -23903,7 +24572,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "ImFloor", - "location": "imgui_internal:527", + "location": "imgui_internal:531", "nonUDT": 1, "ov_cimguiname": "igImFloor_Vec2", "ret": "ImVec2_c", @@ -23930,7 +24599,7 @@ "cimguiname": "igImFontAtlasAddDrawListSharedData", "defaults": {}, "funcname": "ImFontAtlasAddDrawListSharedData", - "location": "imgui_internal:3955", + "location": "imgui_internal:3970", "ov_cimguiname": "igImFontAtlasAddDrawListSharedData", "ret": "void", "signature": "(ImFontAtlas*,ImDrawListSharedData*)", @@ -23968,7 +24637,7 @@ "cimguiname": "igImFontAtlasBakedAdd", "defaults": {}, "funcname": "ImFontAtlasBakedAdd", - "location": "imgui_internal:3941", + "location": "imgui_internal:3956", "ov_cimguiname": "igImFontAtlasBakedAdd", "ret": "ImFontBaked*", "signature": "(ImFontAtlas*,ImFont*,float,float,ImGuiID)", @@ -24002,7 +24671,7 @@ "cimguiname": "igImFontAtlasBakedAddFontGlyph", "defaults": {}, "funcname": "ImFontAtlasBakedAddFontGlyph", - "location": "imgui_internal:3943", + "location": "imgui_internal:3958", "ov_cimguiname": "igImFontAtlasBakedAddFontGlyph", "ret": "ImFontGlyph*", "signature": "(ImFontAtlas*,ImFontBaked*,ImFontConfig*,const ImFontGlyph*)", @@ -24040,7 +24709,7 @@ "cimguiname": "igImFontAtlasBakedAddFontGlyphAdvancedX", "defaults": {}, "funcname": "ImFontAtlasBakedAddFontGlyphAdvancedX", - "location": "imgui_internal:3944", + "location": "imgui_internal:3959", "ov_cimguiname": "igImFontAtlasBakedAddFontGlyphAdvancedX", "ret": "void", "signature": "(ImFontAtlas*,ImFontBaked*,ImFontConfig*,ImWchar,float)", @@ -24070,7 +24739,7 @@ "cimguiname": "igImFontAtlasBakedDiscard", "defaults": {}, "funcname": "ImFontAtlasBakedDiscard", - "location": "imgui_internal:3942", + "location": "imgui_internal:3957", "ov_cimguiname": "igImFontAtlasBakedDiscard", "ret": "void", "signature": "(ImFontAtlas*,ImFont*,ImFontBaked*)", @@ -24104,7 +24773,7 @@ "cimguiname": "igImFontAtlasBakedDiscardFontGlyph", "defaults": {}, "funcname": "ImFontAtlasBakedDiscardFontGlyph", - "location": "imgui_internal:3945", + "location": "imgui_internal:3960", "ov_cimguiname": "igImFontAtlasBakedDiscardFontGlyph", "ret": "void", "signature": "(ImFontAtlas*,ImFont*,ImFontBaked*,ImFontGlyph*)", @@ -24138,7 +24807,7 @@ "cimguiname": "igImFontAtlasBakedGetClosestMatch", "defaults": {}, "funcname": "ImFontAtlasBakedGetClosestMatch", - "location": "imgui_internal:3940", + "location": "imgui_internal:3955", "ov_cimguiname": "igImFontAtlasBakedGetClosestMatch", "ret": "ImFontBaked*", "signature": "(ImFontAtlas*,ImFont*,float,float)", @@ -24168,7 +24837,7 @@ "cimguiname": "igImFontAtlasBakedGetId", "defaults": {}, "funcname": "ImFontAtlasBakedGetId", - "location": "imgui_internal:3938", + "location": "imgui_internal:3953", "ov_cimguiname": "igImFontAtlasBakedGetId", "ret": "ImGuiID", "signature": "(ImGuiID,float,float)", @@ -24202,7 +24871,7 @@ "cimguiname": "igImFontAtlasBakedGetOrAdd", "defaults": {}, "funcname": "ImFontAtlasBakedGetOrAdd", - "location": "imgui_internal:3939", + "location": "imgui_internal:3954", "ov_cimguiname": "igImFontAtlasBakedGetOrAdd", "ret": "ImFontBaked*", "signature": "(ImFontAtlas*,ImFont*,float,float)", @@ -24252,7 +24921,7 @@ "cimguiname": "igImFontAtlasBakedSetFontGlyphBitmap", "defaults": {}, "funcname": "ImFontAtlasBakedSetFontGlyphBitmap", - "location": "imgui_internal:3946", + "location": "imgui_internal:3961", "ov_cimguiname": "igImFontAtlasBakedSetFontGlyphBitmap", "ret": "void", "signature": "(ImFontAtlas*,ImFontBaked*,ImFontConfig*,ImFontGlyph*,ImTextureRect*,const unsigned char*,ImTextureFormat,int)", @@ -24274,7 +24943,7 @@ "cimguiname": "igImFontAtlasBuildClear", "defaults": {}, "funcname": "ImFontAtlasBuildClear", - "location": "imgui_internal:3916", + "location": "imgui_internal:3931", "ov_cimguiname": "igImFontAtlasBuildClear", "ret": "void", "signature": "(ImFontAtlas*)", @@ -24296,7 +24965,7 @@ "cimguiname": "igImFontAtlasBuildDestroy", "defaults": {}, "funcname": "ImFontAtlasBuildDestroy", - "location": "imgui_internal:3910", + "location": "imgui_internal:3925", "ov_cimguiname": "igImFontAtlasBuildDestroy", "ret": "void", "signature": "(ImFontAtlas*)", @@ -24322,7 +24991,7 @@ "cimguiname": "igImFontAtlasBuildDiscardBakes", "defaults": {}, "funcname": "ImFontAtlasBuildDiscardBakes", - "location": "imgui_internal:3928", + "location": "imgui_internal:3943", "ov_cimguiname": "igImFontAtlasBuildDiscardBakes", "ret": "void", "signature": "(ImFontAtlas*,int)", @@ -24356,7 +25025,7 @@ "cimguiname": "igImFontAtlasBuildGetOversampleFactors", "defaults": {}, "funcname": "ImFontAtlasBuildGetOversampleFactors", - "location": "imgui_internal:3927", + "location": "imgui_internal:3942", "ov_cimguiname": "igImFontAtlasBuildGetOversampleFactors", "ret": "void", "signature": "(ImFontConfig*,ImFontBaked*,int*,int*)", @@ -24378,7 +25047,7 @@ "cimguiname": "igImFontAtlasBuildInit", "defaults": {}, "funcname": "ImFontAtlasBuildInit", - "location": "imgui_internal:3909", + "location": "imgui_internal:3924", "ov_cimguiname": "igImFontAtlasBuildInit", "ret": "void", "signature": "(ImFontAtlas*)", @@ -24400,7 +25069,7 @@ "cimguiname": "igImFontAtlasBuildLegacyPreloadAllGlyphRanges", "defaults": {}, "funcname": "ImFontAtlasBuildLegacyPreloadAllGlyphRanges", - "location": "imgui_internal:3926", + "location": "imgui_internal:3941", "ov_cimguiname": "igImFontAtlasBuildLegacyPreloadAllGlyphRanges", "ret": "void", "signature": "(ImFontAtlas*)", @@ -24422,7 +25091,7 @@ "cimguiname": "igImFontAtlasBuildMain", "defaults": {}, "funcname": "ImFontAtlasBuildMain", - "location": "imgui_internal:3911", + "location": "imgui_internal:3926", "ov_cimguiname": "igImFontAtlasBuildMain", "ret": "void", "signature": "(ImFontAtlas*)", @@ -24452,7 +25121,7 @@ "cimguiname": "igImFontAtlasBuildNotifySetFont", "defaults": {}, "funcname": "ImFontAtlasBuildNotifySetFont", - "location": "imgui_internal:3913", + "location": "imgui_internal:3928", "ov_cimguiname": "igImFontAtlasBuildNotifySetFont", "ret": "void", "signature": "(ImFontAtlas*,ImFont*,ImFont*)", @@ -24498,7 +25167,7 @@ "cimguiname": "igImFontAtlasBuildRenderBitmapFromString", "defaults": {}, "funcname": "ImFontAtlasBuildRenderBitmapFromString", - "location": "imgui_internal:3915", + "location": "imgui_internal:3930", "ov_cimguiname": "igImFontAtlasBuildRenderBitmapFromString", "ret": "void", "signature": "(ImFontAtlas*,int,int,int,int,const char*,char)", @@ -24524,7 +25193,7 @@ "cimguiname": "igImFontAtlasBuildSetupFontLoader", "defaults": {}, "funcname": "ImFontAtlasBuildSetupFontLoader", - "location": "imgui_internal:3912", + "location": "imgui_internal:3927", "ov_cimguiname": "igImFontAtlasBuildSetupFontLoader", "ret": "void", "signature": "(ImFontAtlas*,const ImFontLoader*)", @@ -24554,7 +25223,7 @@ "cimguiname": "igImFontAtlasBuildSetupFontSpecialGlyphs", "defaults": {}, "funcname": "ImFontAtlasBuildSetupFontSpecialGlyphs", - "location": "imgui_internal:3925", + "location": "imgui_internal:3940", "ov_cimguiname": "igImFontAtlasBuildSetupFontSpecialGlyphs", "ret": "void", "signature": "(ImFontAtlas*,ImFont*,ImFontConfig*)", @@ -24576,7 +25245,7 @@ "cimguiname": "igImFontAtlasBuildUpdatePointers", "defaults": {}, "funcname": "ImFontAtlasBuildUpdatePointers", - "location": "imgui_internal:3914", + "location": "imgui_internal:3929", "ov_cimguiname": "igImFontAtlasBuildUpdatePointers", "ret": "void", "signature": "(ImFontAtlas*)", @@ -24598,7 +25267,7 @@ "cimguiname": "igImFontAtlasDebugLogTextureRequests", "defaults": {}, "funcname": "ImFontAtlasDebugLogTextureRequests", - "location": "imgui_internal:3972", + "location": "imgui_internal:3988", "ov_cimguiname": "igImFontAtlasDebugLogTextureRequests", "ret": "void", "signature": "(ImFontAtlas*)", @@ -24624,7 +25293,7 @@ "cimguiname": "igImFontAtlasFontDestroyOutput", "defaults": {}, "funcname": "ImFontAtlasFontDestroyOutput", - "location": "imgui_internal:3934", + "location": "imgui_internal:3949", "ov_cimguiname": "igImFontAtlasFontDestroyOutput", "ret": "void", "signature": "(ImFontAtlas*,ImFont*)", @@ -24650,7 +25319,7 @@ "cimguiname": "igImFontAtlasFontDestroySourceData", "defaults": {}, "funcname": "ImFontAtlasFontDestroySourceData", - "location": "imgui_internal:3932", + "location": "imgui_internal:3947", "ov_cimguiname": "igImFontAtlasFontDestroySourceData", "ret": "void", "signature": "(ImFontAtlas*,ImFontConfig*)", @@ -24680,7 +25349,7 @@ "cimguiname": "igImFontAtlasFontDiscardBakes", "defaults": {}, "funcname": "ImFontAtlasFontDiscardBakes", - "location": "imgui_internal:3936", + "location": "imgui_internal:3951", "ov_cimguiname": "igImFontAtlasFontDiscardBakes", "ret": "void", "signature": "(ImFontAtlas*,ImFont*,int)", @@ -24706,7 +25375,7 @@ "cimguiname": "igImFontAtlasFontInitOutput", "defaults": {}, "funcname": "ImFontAtlasFontInitOutput", - "location": "imgui_internal:3933", + "location": "imgui_internal:3948", "ov_cimguiname": "igImFontAtlasFontInitOutput", "ret": "bool", "signature": "(ImFontAtlas*,ImFont*)", @@ -24732,7 +25401,7 @@ "cimguiname": "igImFontAtlasFontRebuildOutput", "defaults": {}, "funcname": "ImFontAtlasFontRebuildOutput", - "location": "imgui_internal:3935", + "location": "imgui_internal:3950", "ov_cimguiname": "igImFontAtlasFontRebuildOutput", "ret": "void", "signature": "(ImFontAtlas*,ImFont*)", @@ -24762,7 +25431,7 @@ "cimguiname": "igImFontAtlasFontSourceAddToFont", "defaults": {}, "funcname": "ImFontAtlasFontSourceAddToFont", - "location": "imgui_internal:3931", + "location": "imgui_internal:3946", "ov_cimguiname": "igImFontAtlasFontSourceAddToFont", "ret": "void", "signature": "(ImFontAtlas*,ImFont*,ImFontConfig*)", @@ -24788,7 +25457,7 @@ "cimguiname": "igImFontAtlasFontSourceInit", "defaults": {}, "funcname": "ImFontAtlasFontSourceInit", - "location": "imgui_internal:3930", + "location": "imgui_internal:3945", "ov_cimguiname": "igImFontAtlasFontSourceInit", "ret": "bool", "signature": "(ImFontAtlas*,ImFontConfig*)", @@ -24805,7 +25474,7 @@ "cimguiname": "igImFontAtlasGetFontLoaderForStbTruetype", "defaults": {}, "funcname": "ImFontAtlasGetFontLoaderForStbTruetype", - "location": "imgui_internal:3813", + "location": "imgui_internal:3828", "ov_cimguiname": "igImFontAtlasGetFontLoaderForStbTruetype", "ret": "const ImFontLoader*", "signature": "()", @@ -24847,7 +25516,7 @@ "cimguiname": "igImFontAtlasGetMouseCursorTexData", "defaults": {}, "funcname": "ImFontAtlasGetMouseCursorTexData", - "location": "imgui_internal:3975", + "location": "imgui_internal:3991", "ov_cimguiname": "igImFontAtlasGetMouseCursorTexData", "ret": "bool", "signature": "(ImFontAtlas*,ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])", @@ -24883,7 +25552,7 @@ "overwrite_entry": "NULL" }, "funcname": "ImFontAtlasPackAddRect", - "location": "imgui_internal:3949", + "location": "imgui_internal:3964", "ov_cimguiname": "igImFontAtlasPackAddRect", "ret": "ImFontAtlasRectId", "signature": "(ImFontAtlas*,int,int,ImFontAtlasRectEntry*)", @@ -24909,7 +25578,7 @@ "cimguiname": "igImFontAtlasPackDiscardRect", "defaults": {}, "funcname": "ImFontAtlasPackDiscardRect", - "location": "imgui_internal:3952", + "location": "imgui_internal:3967", "ov_cimguiname": "igImFontAtlasPackDiscardRect", "ret": "void", "signature": "(ImFontAtlas*,ImFontAtlasRectId)", @@ -24935,7 +25604,7 @@ "cimguiname": "igImFontAtlasPackGetRect", "defaults": {}, "funcname": "ImFontAtlasPackGetRect", - "location": "imgui_internal:3950", + "location": "imgui_internal:3965", "ov_cimguiname": "igImFontAtlasPackGetRect", "ret": "ImTextureRect*", "signature": "(ImFontAtlas*,ImFontAtlasRectId)", @@ -24961,7 +25630,7 @@ "cimguiname": "igImFontAtlasPackGetRectSafe", "defaults": {}, "funcname": "ImFontAtlasPackGetRectSafe", - "location": "imgui_internal:3951", + "location": "imgui_internal:3966", "ov_cimguiname": "igImFontAtlasPackGetRectSafe", "ret": "ImTextureRect*", "signature": "(ImFontAtlas*,ImFontAtlasRectId)", @@ -24983,7 +25652,7 @@ "cimguiname": "igImFontAtlasPackInit", "defaults": {}, "funcname": "ImFontAtlasPackInit", - "location": "imgui_internal:3948", + "location": "imgui_internal:3963", "ov_cimguiname": "igImFontAtlasPackInit", "ret": "void", "signature": "(ImFontAtlas*)", @@ -25005,7 +25674,7 @@ "cimguiname": "igImFontAtlasRectId_GetGeneration", "defaults": {}, "funcname": "ImFontAtlasRectId_GetGeneration", - "location": "imgui_internal:3836", + "location": "imgui_internal:3851", "ov_cimguiname": "igImFontAtlasRectId_GetGeneration", "ret": "unsigned int", "signature": "(ImFontAtlasRectId)", @@ -25027,7 +25696,7 @@ "cimguiname": "igImFontAtlasRectId_GetIndex", "defaults": {}, "funcname": "ImFontAtlasRectId_GetIndex", - "location": "imgui_internal:3835", + "location": "imgui_internal:3850", "ov_cimguiname": "igImFontAtlasRectId_GetIndex", "ret": "int", "signature": "(ImFontAtlasRectId)", @@ -25053,7 +25722,7 @@ "cimguiname": "igImFontAtlasRectId_Make", "defaults": {}, "funcname": "ImFontAtlasRectId_Make", - "location": "imgui_internal:3837", + "location": "imgui_internal:3852", "ov_cimguiname": "igImFontAtlasRectId_Make", "ret": "ImFontAtlasRectId", "signature": "(int,int)", @@ -25079,7 +25748,7 @@ "cimguiname": "igImFontAtlasRemoveDrawListSharedData", "defaults": {}, "funcname": "ImFontAtlasRemoveDrawListSharedData", - "location": "imgui_internal:3956", + "location": "imgui_internal:3971", "ov_cimguiname": "igImFontAtlasRemoveDrawListSharedData", "ret": "void", "signature": "(ImFontAtlas*,ImDrawListSharedData*)", @@ -25109,7 +25778,7 @@ "cimguiname": "igImFontAtlasTextureAdd", "defaults": {}, "funcname": "ImFontAtlasTextureAdd", - "location": "imgui_internal:3918", + "location": "imgui_internal:3933", "ov_cimguiname": "igImFontAtlasTextureAdd", "ret": "ImTextureData*", "signature": "(ImFontAtlas*,int,int)", @@ -25159,7 +25828,7 @@ "cimguiname": "igImFontAtlasTextureBlockConvert", "defaults": {}, "funcname": "ImFontAtlasTextureBlockConvert", - "location": "imgui_internal:3960", + "location": "imgui_internal:3975", "ov_cimguiname": "igImFontAtlasTextureBlockConvert", "ret": "void", "signature": "(const unsigned char*,ImTextureFormat,int,unsigned char*,ImTextureFormat,int,int,int)", @@ -25209,7 +25878,7 @@ "cimguiname": "igImFontAtlasTextureBlockCopy", "defaults": {}, "funcname": "ImFontAtlasTextureBlockCopy", - "location": "imgui_internal:3964", + "location": "imgui_internal:3979", "ov_cimguiname": "igImFontAtlasTextureBlockCopy", "ret": "void", "signature": "(ImTextureData*,int,int,ImTextureData*,int,int,int,int)", @@ -25251,7 +25920,7 @@ "cimguiname": "igImFontAtlasTextureBlockFill", "defaults": {}, "funcname": "ImFontAtlasTextureBlockFill", - "location": "imgui_internal:3963", + "location": "imgui_internal:3978", "ov_cimguiname": "igImFontAtlasTextureBlockFill", "ret": "void", "signature": "(ImTextureData*,int,int,int,int,ImU32)", @@ -25273,7 +25942,7 @@ "cimguiname": "igImFontAtlasTextureBlockPostProcess", "defaults": {}, "funcname": "ImFontAtlasTextureBlockPostProcess", - "location": "imgui_internal:3961", + "location": "imgui_internal:3976", "ov_cimguiname": "igImFontAtlasTextureBlockPostProcess", "ret": "void", "signature": "(ImFontAtlasPostProcessData*)", @@ -25299,7 +25968,7 @@ "cimguiname": "igImFontAtlasTextureBlockPostProcessMultiply", "defaults": {}, "funcname": "ImFontAtlasTextureBlockPostProcessMultiply", - "location": "imgui_internal:3962", + "location": "imgui_internal:3977", "ov_cimguiname": "igImFontAtlasTextureBlockPostProcessMultiply", "ret": "void", "signature": "(ImFontAtlasPostProcessData*,float)", @@ -25341,7 +26010,7 @@ "cimguiname": "igImFontAtlasTextureBlockQueueUpload", "defaults": {}, "funcname": "ImFontAtlasTextureBlockQueueUpload", - "location": "imgui_internal:3965", + "location": "imgui_internal:3980", "ov_cimguiname": "igImFontAtlasTextureBlockQueueUpload", "ret": "void", "signature": "(ImFontAtlas*,ImTextureData*,int,int,int,int)", @@ -25363,7 +26032,7 @@ "cimguiname": "igImFontAtlasTextureCompact", "defaults": {}, "funcname": "ImFontAtlasTextureCompact", - "location": "imgui_internal:3922", + "location": "imgui_internal:3937", "ov_cimguiname": "igImFontAtlasTextureCompact", "ret": "void", "signature": "(ImFontAtlas*)", @@ -25386,7 +26055,7 @@ "conv": "ImVec2i", "defaults": {}, "funcname": "ImFontAtlasTextureGetSizeEstimate", - "location": "imgui_internal:3923", + "location": "imgui_internal:3938", "nonUDT": 1, "ov_cimguiname": "igImFontAtlasTextureGetSizeEstimate", "ret": "ImVec2i_c", @@ -25420,7 +26089,7 @@ "old_w": "-1" }, "funcname": "ImFontAtlasTextureGrow", - "location": "imgui_internal:3921", + "location": "imgui_internal:3936", "ov_cimguiname": "igImFontAtlasTextureGrow", "ret": "void", "signature": "(ImFontAtlas*,int,int)", @@ -25442,7 +26111,7 @@ "cimguiname": "igImFontAtlasTextureMakeSpace", "defaults": {}, "funcname": "ImFontAtlasTextureMakeSpace", - "location": "imgui_internal:3919", + "location": "imgui_internal:3934", "ov_cimguiname": "igImFontAtlasTextureMakeSpace", "ret": "void", "signature": "(ImFontAtlas*)", @@ -25472,7 +26141,7 @@ "cimguiname": "igImFontAtlasTextureRepack", "defaults": {}, "funcname": "ImFontAtlasTextureRepack", - "location": "imgui_internal:3920", + "location": "imgui_internal:3935", "ov_cimguiname": "igImFontAtlasTextureRepack", "ret": "void", "signature": "(ImFontAtlas*,int,int)", @@ -25494,7 +26163,7 @@ "cimguiname": "igImFontAtlasUpdateDrawListsSharedData", "defaults": {}, "funcname": "ImFontAtlasUpdateDrawListsSharedData", - "location": "imgui_internal:3958", + "location": "imgui_internal:3973", "ov_cimguiname": "igImFontAtlasUpdateDrawListsSharedData", "ret": "void", "signature": "(ImFontAtlas*)", @@ -25524,7 +26193,7 @@ "cimguiname": "igImFontAtlasUpdateDrawListsTextures", "defaults": {}, "funcname": "ImFontAtlasUpdateDrawListsTextures", - "location": "imgui_internal:3957", + "location": "imgui_internal:3972", "ov_cimguiname": "igImFontAtlasUpdateDrawListsTextures", "ret": "void", "signature": "(ImFontAtlas*,ImTextureRef,ImTextureRef)", @@ -25554,7 +26223,7 @@ "cimguiname": "igImFontAtlasUpdateNewFrame", "defaults": {}, "funcname": "ImFontAtlasUpdateNewFrame", - "location": "imgui_internal:3954", + "location": "imgui_internal:3969", "ov_cimguiname": "igImFontAtlasUpdateNewFrame", "ret": "void", "signature": "(ImFontAtlas*,int,bool)", @@ -25613,7 +26282,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "ImFontCalcTextSizeEx", - "location": "imgui_internal:439", + "location": "imgui_internal:442", "nonUDT": 1, "ov_cimguiname": "igImFontCalcTextSizeEx", "ret": "ImVec2_c", @@ -25658,7 +26327,7 @@ "flags": "0" }, "funcname": "ImFontCalcWordWrapPositionEx", - "location": "imgui_internal:440", + "location": "imgui_internal:443", "ov_cimguiname": "igImFontCalcWordWrapPositionEx", "ret": "const char*", "signature": "(ImFont*,float,const char*,const char*,float,ImDrawTextFlags)", @@ -25693,7 +26362,7 @@ "defaults": {}, "funcname": "ImFormatString", "isvararg": "...)", - "location": "imgui_internal:408", + "location": "imgui_internal:411", "ov_cimguiname": "igImFormatString", "ret": "int", "signature": "(char*,size_t,const char*,...)", @@ -25728,7 +26397,7 @@ "defaults": {}, "funcname": "ImFormatStringToTempBuffer", "isvararg": "...)", - "location": "imgui_internal:410", + "location": "imgui_internal:413", "ov_cimguiname": "igImFormatStringToTempBuffer", "ret": "void", "signature": "(const char**,const char**,const char*,...)", @@ -25762,7 +26431,7 @@ "cimguiname": "igImFormatStringToTempBufferV", "defaults": {}, "funcname": "ImFormatStringToTempBufferV", - "location": "imgui_internal:411", + "location": "imgui_internal:414", "ov_cimguiname": "igImFormatStringToTempBufferV", "ret": "void", "signature": "(const char**,const char**,const char*,va_list)", @@ -25796,7 +26465,7 @@ "cimguiname": "igImFormatStringV", "defaults": {}, "funcname": "ImFormatStringV", - "location": "imgui_internal:409", + "location": "imgui_internal:412", "ov_cimguiname": "igImFormatStringV", "ret": "int", "signature": "(char*,size_t,const char*,va_list)", @@ -25828,7 +26497,7 @@ "seed": "0" }, "funcname": "ImHashData", - "location": "imgui_internal:366", + "location": "imgui_internal:369", "ov_cimguiname": "igImHashData", "ret": "ImGuiID", "signature": "(const void*,size_t,ImGuiID)", @@ -25850,7 +26519,7 @@ "cimguiname": "igImHashSkipUncontributingPrefix", "defaults": {}, "funcname": "ImHashSkipUncontributingPrefix", - "location": "imgui_internal:368", + "location": "imgui_internal:371", "ov_cimguiname": "igImHashSkipUncontributingPrefix", "ret": "const char*", "signature": "(const char*)", @@ -25883,7 +26552,7 @@ "seed": "0" }, "funcname": "ImHashStr", - "location": "imgui_internal:367", + "location": "imgui_internal:370", "ov_cimguiname": "igImHashStr", "ret": "ImGuiID", "signature": "(const char*,size_t,ImGuiID)", @@ -25909,7 +26578,7 @@ "cimguiname": "igImInvLength", "defaults": {}, "funcname": "ImInvLength", - "location": "imgui_internal:523", + "location": "imgui_internal:527", "ov_cimguiname": "igImInvLength", "ret": "float", "signature": "(const ImVec2,float)", @@ -25931,7 +26600,7 @@ "cimguiname": "igImIsFloatAboveGuaranteedIntegerPrecision", "defaults": {}, "funcname": "ImIsFloatAboveGuaranteedIntegerPrecision", - "location": "imgui_internal:536", + "location": "imgui_internal:540", "ov_cimguiname": "igImIsFloatAboveGuaranteedIntegerPrecision", "ret": "bool", "signature": "(float)", @@ -25953,7 +26622,7 @@ "cimguiname": "igImIsPowerOfTwo", "defaults": {}, "funcname": "ImIsPowerOfTwo", - "location": "imgui_internal:379", + "location": "imgui_internal:382", "ov_cimguiname": "igImIsPowerOfTwo_Int", "ret": "bool", "signature": "(int)", @@ -25973,7 +26642,7 @@ "cimguiname": "igImIsPowerOfTwo", "defaults": {}, "funcname": "ImIsPowerOfTwo", - "location": "imgui_internal:380", + "location": "imgui_internal:383", "ov_cimguiname": "igImIsPowerOfTwo_U64", "ret": "bool", "signature": "(ImU64)", @@ -25995,7 +26664,7 @@ "cimguiname": "igImLengthSqr", "defaults": {}, "funcname": "ImLengthSqr", - "location": "imgui_internal:521", + "location": "imgui_internal:525", "ov_cimguiname": "igImLengthSqr_Vec2", "ret": "float", "signature": "(const ImVec2)", @@ -26015,7 +26684,7 @@ "cimguiname": "igImLengthSqr", "defaults": {}, "funcname": "ImLengthSqr", - "location": "imgui_internal:522", + "location": "imgui_internal:526", "ov_cimguiname": "igImLengthSqr_Vec4", "ret": "float", "signature": "(const ImVec4)", @@ -26046,7 +26715,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "ImLerp", - "location": "imgui_internal:517", + "location": "imgui_internal:521", "nonUDT": 1, "ov_cimguiname": "igImLerp_Vec2Float", "ret": "ImVec2_c", @@ -26076,7 +26745,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "ImLerp", - "location": "imgui_internal:518", + "location": "imgui_internal:522", "nonUDT": 1, "ov_cimguiname": "igImLerp_Vec2Vec2", "ret": "ImVec2_c", @@ -26106,7 +26775,7 @@ "conv": "ImVec4", "defaults": {}, "funcname": "ImLerp", - "location": "imgui_internal:519", + "location": "imgui_internal:523", "nonUDT": 1, "ov_cimguiname": "igImLerp_Vec4", "ret": "ImVec4_c", @@ -26138,7 +26807,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "ImLineClosestPoint", - "location": "imgui_internal:545", + "location": "imgui_internal:549", "nonUDT": 1, "ov_cimguiname": "igImLineClosestPoint", "ret": "ImVec2_c", @@ -26177,7 +26846,7 @@ "cimguiname": "igImLinearRemapClamp", "defaults": {}, "funcname": "ImLinearRemapClamp", - "location": "imgui_internal:534", + "location": "imgui_internal:538", "ov_cimguiname": "igImLinearRemapClamp", "ret": "float", "signature": "(float,float,float,float,float)", @@ -26207,7 +26876,7 @@ "cimguiname": "igImLinearSweep", "defaults": {}, "funcname": "ImLinearSweep", - "location": "imgui_internal:533", + "location": "imgui_internal:537", "ov_cimguiname": "igImLinearSweep", "ret": "float", "signature": "(float,float,float)", @@ -26229,7 +26898,7 @@ "cimguiname": "igImLog", "defaults": {}, "funcname": "ImLog", - "location": "imgui_internal:490", + "location": "imgui_internal:493", "ov_cimguiname": "igImLog_Float", "ret": "float", "signature": "(float)", @@ -26249,7 +26918,7 @@ "cimguiname": "igImLog", "defaults": {}, "funcname": "ImLog", - "location": "imgui_internal:491", + "location": "imgui_internal:494", "ov_cimguiname": "igImLog_double", "ret": "double", "signature": "(double)", @@ -26279,7 +26948,7 @@ "cimguiname": "igImLowerBound", "defaults": {}, "funcname": "ImLowerBound", - "location": "imgui_internal:825", + "location": "imgui_internal:831", "ov_cimguiname": "igImLowerBound", "ret": "ImGuiStoragePair*", "signature": "(ImGuiStoragePair*,ImGuiStoragePair*,ImGuiID)", @@ -26306,7 +26975,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "ImMax", - "location": "imgui_internal:515", + "location": "imgui_internal:519", "nonUDT": 1, "ov_cimguiname": "igImMax", "ret": "ImVec2_c", @@ -26333,7 +27002,7 @@ "cimguiname": "igImMemdup", "defaults": {}, "funcname": "ImMemdup", - "location": "imgui_internal:391", + "location": "imgui_internal:394", "ov_cimguiname": "igImMemdup", "ret": "void*", "signature": "(const void*,size_t)", @@ -26360,7 +27029,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "ImMin", - "location": "imgui_internal:514", + "location": "imgui_internal:518", "nonUDT": 1, "ov_cimguiname": "igImMin", "ret": "ImVec2_c", @@ -26387,7 +27056,7 @@ "cimguiname": "igImModPositive", "defaults": {}, "funcname": "ImModPositive", - "location": "imgui_internal:530", + "location": "imgui_internal:534", "ov_cimguiname": "igImModPositive", "ret": "int", "signature": "(int,int)", @@ -26414,7 +27083,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "ImMul", - "location": "imgui_internal:535", + "location": "imgui_internal:539", "nonUDT": 1, "ov_cimguiname": "igImMul", "ret": "ImVec2_c", @@ -26437,7 +27106,7 @@ "cimguiname": "igImParseFormatFindEnd", "defaults": {}, "funcname": "ImParseFormatFindEnd", - "location": "imgui_internal:413", + "location": "imgui_internal:416", "ov_cimguiname": "igImParseFormatFindEnd", "ret": "const char*", "signature": "(const char*)", @@ -26459,7 +27128,7 @@ "cimguiname": "igImParseFormatFindStart", "defaults": {}, "funcname": "ImParseFormatFindStart", - "location": "imgui_internal:412", + "location": "imgui_internal:415", "ov_cimguiname": "igImParseFormatFindStart", "ret": "const char*", "signature": "(const char*)", @@ -26485,7 +27154,7 @@ "cimguiname": "igImParseFormatPrecision", "defaults": {}, "funcname": "ImParseFormatPrecision", - "location": "imgui_internal:417", + "location": "imgui_internal:420", "ov_cimguiname": "igImParseFormatPrecision", "ret": "int", "signature": "(const char*,int)", @@ -26515,7 +27184,7 @@ "cimguiname": "igImParseFormatSanitizeForPrinting", "defaults": {}, "funcname": "ImParseFormatSanitizeForPrinting", - "location": "imgui_internal:415", + "location": "imgui_internal:418", "ov_cimguiname": "igImParseFormatSanitizeForPrinting", "ret": "void", "signature": "(const char*,char*,size_t)", @@ -26545,7 +27214,7 @@ "cimguiname": "igImParseFormatSanitizeForScanning", "defaults": {}, "funcname": "ImParseFormatSanitizeForScanning", - "location": "imgui_internal:416", + "location": "imgui_internal:419", "ov_cimguiname": "igImParseFormatSanitizeForScanning", "ret": "const char*", "signature": "(const char*,char*,size_t)", @@ -26575,7 +27244,7 @@ "cimguiname": "igImParseFormatTrimDecorations", "defaults": {}, "funcname": "ImParseFormatTrimDecorations", - "location": "imgui_internal:414", + "location": "imgui_internal:417", "ov_cimguiname": "igImParseFormatTrimDecorations", "ret": "const char*", "signature": "(const char*,char*,size_t)", @@ -26601,7 +27270,7 @@ "cimguiname": "igImPow", "defaults": {}, "funcname": "ImPow", - "location": "imgui_internal:488", + "location": "imgui_internal:491", "ov_cimguiname": "igImPow_Float", "ret": "float", "signature": "(float,float)", @@ -26625,7 +27294,7 @@ "cimguiname": "igImPow", "defaults": {}, "funcname": "ImPow", - "location": "imgui_internal:489", + "location": "imgui_internal:492", "ov_cimguiname": "igImPow_double", "ret": "double", "signature": "(double,double)", @@ -26661,7 +27330,7 @@ "cimguiname": "igImQsort", "defaults": {}, "funcname": "ImQsort", - "location": "imgui_internal:372", + "location": "imgui_internal:375", "ov_cimguiname": "igImQsort", "ret": "void", "signature": "(void*,size_t,size_t,int(*)(void const*,void const*))", @@ -26692,7 +27361,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "ImRotate", - "location": "imgui_internal:532", + "location": "imgui_internal:536", "nonUDT": 1, "ov_cimguiname": "igImRotate", "ret": "ImVec2_c", @@ -26715,7 +27384,7 @@ "cimguiname": "igImRound64", "defaults": {}, "funcname": "ImRound64", - "location": "imgui_internal:529", + "location": "imgui_internal:533", "ov_cimguiname": "igImRound64", "ret": "float", "signature": "(float)", @@ -26737,7 +27406,7 @@ "cimguiname": "igImRsqrt", "defaults": {}, "funcname": "ImRsqrt", - "location": "imgui_internal:500", + "location": "imgui_internal:503", "ov_cimguiname": "igImRsqrt_Float", "ret": "float", "signature": "(float)", @@ -26757,7 +27426,7 @@ "cimguiname": "igImRsqrt", "defaults": {}, "funcname": "ImRsqrt", - "location": "imgui_internal:502", + "location": "imgui_internal:505", "ov_cimguiname": "igImRsqrt_double", "ret": "double", "signature": "(double)", @@ -26779,7 +27448,7 @@ "cimguiname": "igImSaturate", "defaults": {}, "funcname": "ImSaturate", - "location": "imgui_internal:520", + "location": "imgui_internal:524", "ov_cimguiname": "igImSaturate", "ret": "float", "signature": "(float)", @@ -26801,7 +27470,7 @@ "cimguiname": "igImSign", "defaults": {}, "funcname": "ImSign", - "location": "imgui_internal:495", + "location": "imgui_internal:498", "ov_cimguiname": "igImSign_Float", "ret": "float", "signature": "(float)", @@ -26821,7 +27490,7 @@ "cimguiname": "igImSign", "defaults": {}, "funcname": "ImSign", - "location": "imgui_internal:496", + "location": "imgui_internal:499", "ov_cimguiname": "igImSign_double", "ret": "double", "signature": "(double)", @@ -26843,7 +27512,7 @@ "cimguiname": "igImStrSkipBlank", "defaults": {}, "funcname": "ImStrSkipBlank", - "location": "imgui_internal:397", + "location": "imgui_internal:400", "ov_cimguiname": "igImStrSkipBlank", "ret": "const char*", "signature": "(const char*)", @@ -26865,7 +27534,7 @@ "cimguiname": "igImStrTrimBlanks", "defaults": {}, "funcname": "ImStrTrimBlanks", - "location": "imgui_internal:396", + "location": "imgui_internal:399", "ov_cimguiname": "igImStrTrimBlanks", "ret": "void", "signature": "(char*)", @@ -26891,7 +27560,7 @@ "cimguiname": "igImStrbol", "defaults": {}, "funcname": "ImStrbol", - "location": "imgui_internal:399", + "location": "imgui_internal:402", "ov_cimguiname": "igImStrbol", "ret": "const char*", "signature": "(const char*,const char*)", @@ -26921,7 +27590,7 @@ "cimguiname": "igImStrchrRange", "defaults": {}, "funcname": "ImStrchrRange", - "location": "imgui_internal:393", + "location": "imgui_internal:396", "ov_cimguiname": "igImStrchrRange", "ret": "const char*", "signature": "(const char*,const char*,char)", @@ -26943,7 +27612,7 @@ "cimguiname": "igImStrdup", "defaults": {}, "funcname": "ImStrdup", - "location": "imgui_internal:390", + "location": "imgui_internal:393", "ov_cimguiname": "igImStrdup", "ret": "char*", "signature": "(const char*)", @@ -26973,7 +27642,7 @@ "cimguiname": "igImStrdupcpy", "defaults": {}, "funcname": "ImStrdupcpy", - "location": "imgui_internal:392", + "location": "imgui_internal:395", "ov_cimguiname": "igImStrdupcpy", "ret": "char*", "signature": "(char*,size_t*,const char*)", @@ -26999,7 +27668,7 @@ "cimguiname": "igImStreolRange", "defaults": {}, "funcname": "ImStreolRange", - "location": "imgui_internal:394", + "location": "imgui_internal:397", "ov_cimguiname": "igImStreolRange", "ret": "const char*", "signature": "(const char*,const char*)", @@ -27025,7 +27694,7 @@ "cimguiname": "igImStricmp", "defaults": {}, "funcname": "ImStricmp", - "location": "imgui_internal:387", + "location": "imgui_internal:390", "ov_cimguiname": "igImStricmp", "ret": "int", "signature": "(const char*,const char*)", @@ -27059,7 +27728,7 @@ "cimguiname": "igImStristr", "defaults": {}, "funcname": "ImStristr", - "location": "imgui_internal:395", + "location": "imgui_internal:398", "ov_cimguiname": "igImStristr", "ret": "const char*", "signature": "(const char*,const char*,const char*,const char*)", @@ -27081,7 +27750,7 @@ "cimguiname": "igImStrlenW", "defaults": {}, "funcname": "ImStrlenW", - "location": "imgui_internal:398", + "location": "imgui_internal:401", "ov_cimguiname": "igImStrlenW", "ret": "int", "signature": "(const ImWchar*)", @@ -27111,7 +27780,7 @@ "cimguiname": "igImStrncpy", "defaults": {}, "funcname": "ImStrncpy", - "location": "imgui_internal:389", + "location": "imgui_internal:392", "ov_cimguiname": "igImStrncpy", "ret": "void", "signature": "(char*,const char*,size_t)", @@ -27141,7 +27810,7 @@ "cimguiname": "igImStrnicmp", "defaults": {}, "funcname": "ImStrnicmp", - "location": "imgui_internal:388", + "location": "imgui_internal:391", "ov_cimguiname": "igImStrnicmp", "ret": "int", "signature": "(const char*,const char*,size_t)", @@ -27173,7 +27842,7 @@ "flags": "0" }, "funcname": "ImTextCalcWordWrapNextLineStart", - "location": "imgui_internal:441", + "location": "imgui_internal:444", "ov_cimguiname": "igImTextCalcWordWrapNextLineStart", "ret": "const char*", "signature": "(const char*,const char*,ImDrawTextFlags)", @@ -27203,7 +27872,7 @@ "cimguiname": "igImTextCharFromUtf8", "defaults": {}, "funcname": "ImTextCharFromUtf8", - "location": "imgui_internal:422", + "location": "imgui_internal:425", "ov_cimguiname": "igImTextCharFromUtf8", "ret": "int", "signature": "(unsigned int*,const char*,const char*)", @@ -27229,7 +27898,7 @@ "cimguiname": "igImTextCharToUtf8", "defaults": {}, "funcname": "ImTextCharToUtf8", - "location": "imgui_internal:420", + "location": "imgui_internal:423", "ov_cimguiname": "igImTextCharToUtf8", "ret": "int", "signature": "(char[5],unsigned int)", @@ -27263,7 +27932,7 @@ "cimguiname": "igImTextClassifierClear", "defaults": {}, "funcname": "ImTextClassifierClear", - "location": "imgui_internal:449", + "location": "imgui_internal:452", "ov_cimguiname": "igImTextClassifierClear", "ret": "void", "signature": "(ImU32*,unsigned int,unsigned int,ImWcharClass)", @@ -27301,7 +27970,7 @@ "cimguiname": "igImTextClassifierSetCharClass", "defaults": {}, "funcname": "ImTextClassifierSetCharClass", - "location": "imgui_internal:450", + "location": "imgui_internal:453", "ov_cimguiname": "igImTextClassifierSetCharClass", "ret": "void", "signature": "(ImU32*,unsigned int,unsigned int,ImWcharClass,unsigned int)", @@ -27339,7 +28008,7 @@ "cimguiname": "igImTextClassifierSetCharClassFromStr", "defaults": {}, "funcname": "ImTextClassifierSetCharClassFromStr", - "location": "imgui_internal:451", + "location": "imgui_internal:454", "ov_cimguiname": "igImTextClassifierSetCharClassFromStr", "ret": "void", "signature": "(ImU32*,unsigned int,unsigned int,ImWcharClass,const char*)", @@ -27365,7 +28034,7 @@ "cimguiname": "igImTextCountCharsFromUtf8", "defaults": {}, "funcname": "ImTextCountCharsFromUtf8", - "location": "imgui_internal:424", + "location": "imgui_internal:427", "ov_cimguiname": "igImTextCountCharsFromUtf8", "ret": "int", "signature": "(const char*,const char*)", @@ -27391,7 +28060,7 @@ "cimguiname": "igImTextCountLines", "defaults": {}, "funcname": "ImTextCountLines", - "location": "imgui_internal:429", + "location": "imgui_internal:432", "ov_cimguiname": "igImTextCountLines", "ret": "int", "signature": "(const char*,const char*)", @@ -27417,7 +28086,7 @@ "cimguiname": "igImTextCountUtf8BytesFromChar", "defaults": {}, "funcname": "ImTextCountUtf8BytesFromChar", - "location": "imgui_internal:425", + "location": "imgui_internal:428", "ov_cimguiname": "igImTextCountUtf8BytesFromChar", "ret": "int", "signature": "(const char*,const char*)", @@ -27443,7 +28112,7 @@ "cimguiname": "igImTextCountUtf8BytesFromStr", "defaults": {}, "funcname": "ImTextCountUtf8BytesFromStr", - "location": "imgui_internal:426", + "location": "imgui_internal:429", "ov_cimguiname": "igImTextCountUtf8BytesFromStr", "ret": "int", "signature": "(const ImWchar*,const ImWchar*)", @@ -27469,7 +28138,7 @@ "cimguiname": "igImTextFindPreviousUtf8Codepoint", "defaults": {}, "funcname": "ImTextFindPreviousUtf8Codepoint", - "location": "imgui_internal:427", + "location": "imgui_internal:430", "ov_cimguiname": "igImTextFindPreviousUtf8Codepoint", "ret": "const char*", "signature": "(const char*,const char*)", @@ -27499,7 +28168,7 @@ "cimguiname": "igImTextFindValidUtf8CodepointEnd", "defaults": {}, "funcname": "ImTextFindValidUtf8CodepointEnd", - "location": "imgui_internal:428", + "location": "imgui_internal:431", "ov_cimguiname": "igImTextFindValidUtf8CodepointEnd", "ret": "const char*", "signature": "(const char*,const char*,const char*)", @@ -27516,7 +28185,7 @@ "cimguiname": "igImTextInitClassifiers", "defaults": {}, "funcname": "ImTextInitClassifiers", - "location": "imgui_internal:448", + "location": "imgui_internal:451", "ov_cimguiname": "igImTextInitClassifiers", "ret": "void", "signature": "()", @@ -27556,7 +28225,7 @@ "in_remaining": "NULL" }, "funcname": "ImTextStrFromUtf8", - "location": "imgui_internal:423", + "location": "imgui_internal:426", "ov_cimguiname": "igImTextStrFromUtf8", "ret": "int", "signature": "(ImWchar*,int,const char*,const char*,const char**)", @@ -27590,7 +28259,7 @@ "cimguiname": "igImTextStrToUtf8", "defaults": {}, "funcname": "ImTextStrToUtf8", - "location": "imgui_internal:421", + "location": "imgui_internal:424", "ov_cimguiname": "igImTextStrToUtf8", "ret": "int", "signature": "(char*,int,const ImWchar*,const ImWchar*)", @@ -27612,7 +28281,7 @@ "cimguiname": "igImTextureDataGetFormatBytesPerPixel", "defaults": {}, "funcname": "ImTextureDataGetFormatBytesPerPixel", - "location": "imgui_internal:3967", + "location": "imgui_internal:3983", "ov_cimguiname": "igImTextureDataGetFormatBytesPerPixel", "ret": "int", "signature": "(ImTextureFormat)", @@ -27634,7 +28303,7 @@ "cimguiname": "igImTextureDataGetFormatName", "defaults": {}, "funcname": "ImTextureDataGetFormatName", - "location": "imgui_internal:3969", + "location": "imgui_internal:3985", "ov_cimguiname": "igImTextureDataGetFormatName", "ret": "const char*", "signature": "(ImTextureFormat)", @@ -27656,13 +28325,51 @@ "cimguiname": "igImTextureDataGetStatusName", "defaults": {}, "funcname": "ImTextureDataGetStatusName", - "location": "imgui_internal:3968", + "location": "imgui_internal:3984", "ov_cimguiname": "igImTextureDataGetStatusName", "ret": "const char*", "signature": "(ImTextureStatus)", "stname": "" } ], + "igImTextureDataQueueUpload": [ + { + "args": "(ImTextureData* tex,int x,int y,int w,int h)", + "argsT": [ + { + "name": "tex", + "type": "ImTextureData*" + }, + { + "name": "x", + "type": "int" + }, + { + "name": "y", + "type": "int" + }, + { + "name": "w", + "type": "int" + }, + { + "name": "h", + "type": "int" + } + ], + "argsoriginal": "(ImTextureData* tex,int x,int y,int w,int h)", + "call_args": "(tex,x,y,w,h)", + "call_args_old": "(tex,x,y,w,h)", + "cimguiname": "igImTextureDataQueueUpload", + "defaults": {}, + "funcname": "ImTextureDataQueueUpload", + "location": "imgui_internal:3982", + "ov_cimguiname": "igImTextureDataQueueUpload", + "ret": "void", + "signature": "(ImTextureData*,int,int,int,int)", + "stname": "" + } + ], "igImToUpper": [ { "args": "(char c)", @@ -27678,7 +28385,7 @@ "cimguiname": "igImToUpper", "defaults": {}, "funcname": "ImToUpper", - "location": "imgui_internal:401", + "location": "imgui_internal:404", "ov_cimguiname": "igImToUpper", "ret": "char", "signature": "(char)", @@ -27708,7 +28415,7 @@ "cimguiname": "igImTriangleArea", "defaults": {}, "funcname": "ImTriangleArea", - "location": "imgui_internal:549", + "location": "imgui_internal:553", "ov_cimguiname": "igImTriangleArea", "ret": "float", "signature": "(const ImVec2,const ImVec2,const ImVec2)", @@ -27757,7 +28464,7 @@ "cimguiname": "igImTriangleBarycentricCoords", "defaults": {}, "funcname": "ImTriangleBarycentricCoords", - "location": "imgui_internal:548", + "location": "imgui_internal:552", "ov_cimguiname": "igImTriangleBarycentricCoords", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,float*,float*,float*)", @@ -27792,7 +28499,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "ImTriangleClosestPoint", - "location": "imgui_internal:547", + "location": "imgui_internal:551", "nonUDT": 1, "ov_cimguiname": "igImTriangleClosestPoint", "ret": "ImVec2_c", @@ -27827,7 +28534,7 @@ "cimguiname": "igImTriangleContainsPoint", "defaults": {}, "funcname": "ImTriangleContainsPoint", - "location": "imgui_internal:546", + "location": "imgui_internal:550", "ov_cimguiname": "igImTriangleContainsPoint", "ret": "bool", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2)", @@ -27857,7 +28564,7 @@ "cimguiname": "igImTriangleIsClockwise", "defaults": {}, "funcname": "ImTriangleIsClockwise", - "location": "imgui_internal:550", + "location": "imgui_internal:554", "ov_cimguiname": "igImTriangleIsClockwise", "ret": "bool", "signature": "(const ImVec2,const ImVec2,const ImVec2)", @@ -27879,7 +28586,7 @@ "cimguiname": "igImTrunc", "defaults": {}, "funcname": "ImTrunc", - "location": "imgui_internal:524", + "location": "imgui_internal:528", "ov_cimguiname": "igImTrunc_Float", "ret": "float", "signature": "(float)", @@ -27900,7 +28607,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "ImTrunc", - "location": "imgui_internal:525", + "location": "imgui_internal:529", "nonUDT": 1, "ov_cimguiname": "igImTrunc_Vec2", "ret": "ImVec2_c", @@ -27923,7 +28630,7 @@ "cimguiname": "igImTrunc64", "defaults": {}, "funcname": "ImTrunc64", - "location": "imgui_internal:528", + "location": "imgui_internal:532", "ov_cimguiname": "igImTrunc64", "ret": "float", "signature": "(float)", @@ -27945,7 +28652,7 @@ "cimguiname": "igImUpperPowerOfTwo", "defaults": {}, "funcname": "ImUpperPowerOfTwo", - "location": "imgui_internal:381", + "location": "imgui_internal:384", "ov_cimguiname": "igImUpperPowerOfTwo", "ret": "int", "signature": "(int)", @@ -28087,7 +28794,7 @@ "flags": "0" }, "funcname": "ImageButtonEx", - "location": "imgui_internal:3640", + "location": "imgui_internal:3655", "namespace": "ImGui", "ov_cimguiname": "igImageButtonEx", "ret": "bool", @@ -28178,7 +28885,7 @@ "cimguiname": "igInitialize", "defaults": {}, "funcname": "Initialize", - "location": "imgui_internal:3226", + "location": "imgui_internal:3238", "namespace": "ImGui", "ov_cimguiname": "igInitialize", "ret": "void", @@ -28708,7 +29415,7 @@ "cimguiname": "igInputTextDeactivateHook", "defaults": {}, "funcname": "InputTextDeactivateHook", - "location": "imgui_internal:3692", + "location": "imgui_internal:3707", "namespace": "ImGui", "ov_cimguiname": "igInputTextDeactivateHook", "ret": "void", @@ -28762,7 +29469,7 @@ "user_data": "NULL" }, "funcname": "InputTextEx", - "location": "imgui_internal:3691", + "location": "imgui_internal:3706", "namespace": "ImGui", "ov_cimguiname": "igInputTextEx", "ret": "bool", @@ -28921,7 +29628,7 @@ "cimguiname": "igIsActiveIdUsingNavDir", "defaults": {}, "funcname": "IsActiveIdUsingNavDir", - "location": "imgui_internal:3412", + "location": "imgui_internal:3425", "namespace": "ImGui", "ov_cimguiname": "igIsActiveIdUsingNavDir", "ret": "bool", @@ -28944,7 +29651,7 @@ "cimguiname": "igIsAliasKey", "defaults": {}, "funcname": "IsAliasKey", - "location": "imgui_internal:3389", + "location": "imgui_internal:3402", "namespace": "ImGui", "ov_cimguiname": "igIsAliasKey", "ret": "bool", @@ -29016,7 +29723,7 @@ "cimguiname": "igIsAnyMouseDown", "defaults": {}, "funcname": "IsAnyMouseDown", - "location": "imgui:1112", + "location": "imgui:1113", "namespace": "ImGui", "ov_cimguiname": "igIsAnyMouseDown", "ret": "bool", @@ -29043,7 +29750,7 @@ "cimguiname": "igIsClippedEx", "defaults": {}, "funcname": "IsClippedEx", - "location": "imgui_internal:3302", + "location": "imgui_internal:3314", "namespace": "ImGui", "ov_cimguiname": "igIsClippedEx", "ret": "bool", @@ -29061,7 +29768,7 @@ "cimguiname": "igIsDragDropActive", "defaults": {}, "funcname": "IsDragDropActive", - "location": "imgui_internal:3479", + "location": "imgui_internal:3493", "namespace": "ImGui", "ov_cimguiname": "igIsDragDropActive", "ret": "bool", @@ -29079,7 +29786,7 @@ "cimguiname": "igIsDragDropPayloadBeingAccepted", "defaults": {}, "funcname": "IsDragDropPayloadBeingAccepted", - "location": "imgui_internal:3483", + "location": "imgui_internal:3497", "namespace": "ImGui", "ov_cimguiname": "igIsDragDropPayloadBeingAccepted", "ret": "bool", @@ -29102,7 +29809,7 @@ "cimguiname": "igIsGamepadKey", "defaults": {}, "funcname": "IsGamepadKey", - "location": "imgui_internal:3387", + "location": "imgui_internal:3400", "namespace": "ImGui", "ov_cimguiname": "igIsGamepadKey", "ret": "bool", @@ -29110,6 +29817,29 @@ "stname": "" } ], + "igIsInNavFocusRoute": [ + { + "args": "(ImGuiID focus_scope_id)", + "argsT": [ + { + "name": "focus_scope_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID focus_scope_id)", + "call_args": "(focus_scope_id)", + "call_args_old": "(focus_scope_id)", + "cimguiname": "igIsInNavFocusRoute", + "defaults": {}, + "funcname": "IsInNavFocusRoute", + "location": "imgui_internal:3489", + "namespace": "ImGui", + "ov_cimguiname": "igIsInNavFocusRoute", + "ret": "bool", + "signature": "(ImGuiID)", + "stname": "" + } + ], "igIsItemActivated": [ { "args": "()", @@ -29156,7 +29886,7 @@ "cimguiname": "igIsItemActiveAsInputText", "defaults": {}, "funcname": "IsItemActiveAsInputText", - "location": "imgui_internal:3698", + "location": "imgui_internal:3713", "namespace": "ImGui", "ov_cimguiname": "igIsItemActiveAsInputText", "ret": "bool", @@ -29386,7 +30116,7 @@ "owner_id": "0" }, "funcname": "IsKeyChordPressed", - "location": "imgui_internal:3441", + "location": "imgui_internal:3454", "namespace": "ImGui", "ov_cimguiname": "igIsKeyChordPressed_InputFlags", "ret": "bool", @@ -29434,7 +30164,7 @@ "cimguiname": "igIsKeyDown", "defaults": {}, "funcname": "IsKeyDown", - "location": "imgui_internal:3438", + "location": "imgui_internal:3451", "namespace": "ImGui", "ov_cimguiname": "igIsKeyDown_ID", "ret": "bool", @@ -29494,7 +30224,7 @@ "owner_id": "0" }, "funcname": "IsKeyPressed", - "location": "imgui_internal:3439", + "location": "imgui_internal:3452", "namespace": "ImGui", "ov_cimguiname": "igIsKeyPressed_InputFlags", "ret": "bool", @@ -29542,7 +30272,7 @@ "cimguiname": "igIsKeyReleased", "defaults": {}, "funcname": "IsKeyReleased", - "location": "imgui_internal:3440", + "location": "imgui_internal:3453", "namespace": "ImGui", "ov_cimguiname": "igIsKeyReleased_ID", "ret": "bool", @@ -29565,7 +30295,7 @@ "cimguiname": "igIsKeyboardKey", "defaults": {}, "funcname": "IsKeyboardKey", - "location": "imgui_internal:3386", + "location": "imgui_internal:3399", "namespace": "ImGui", "ov_cimguiname": "igIsKeyboardKey", "ret": "bool", @@ -29588,7 +30318,7 @@ "cimguiname": "igIsLRModKey", "defaults": {}, "funcname": "IsLRModKey", - "location": "imgui_internal:3390", + "location": "imgui_internal:3403", "namespace": "ImGui", "ov_cimguiname": "igIsLRModKey", "ret": "bool", @@ -29611,7 +30341,7 @@ "cimguiname": "igIsLegacyKey", "defaults": {}, "funcname": "IsLegacyKey", - "location": "imgui_internal:3385", + "location": "imgui_internal:3398", "namespace": "ImGui", "ov_cimguiname": "igIsLegacyKey", "ret": "bool", @@ -29640,7 +30370,7 @@ "repeat": "false" }, "funcname": "IsMouseClicked", - "location": "imgui:1105", + "location": "imgui:1106", "namespace": "ImGui", "ov_cimguiname": "igIsMouseClicked_Bool", "ret": "bool", @@ -29671,7 +30401,7 @@ "owner_id": "0" }, "funcname": "IsMouseClicked", - "location": "imgui_internal:3443", + "location": "imgui_internal:3456", "namespace": "ImGui", "ov_cimguiname": "igIsMouseClicked_InputFlags", "ret": "bool", @@ -29694,7 +30424,7 @@ "cimguiname": "igIsMouseDoubleClicked", "defaults": {}, "funcname": "IsMouseDoubleClicked", - "location": "imgui:1107", + "location": "imgui:1108", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDoubleClicked_Nil", "ret": "bool", @@ -29719,7 +30449,7 @@ "cimguiname": "igIsMouseDoubleClicked", "defaults": {}, "funcname": "IsMouseDoubleClicked", - "location": "imgui_internal:3445", + "location": "imgui_internal:3458", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDoubleClicked_ID", "ret": "bool", @@ -29742,7 +30472,7 @@ "cimguiname": "igIsMouseDown", "defaults": {}, "funcname": "IsMouseDown", - "location": "imgui:1104", + "location": "imgui:1105", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDown_Nil", "ret": "bool", @@ -29767,7 +30497,7 @@ "cimguiname": "igIsMouseDown", "defaults": {}, "funcname": "IsMouseDown", - "location": "imgui_internal:3442", + "location": "imgui_internal:3455", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDown_ID", "ret": "bool", @@ -29796,7 +30526,7 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragPastThreshold", - "location": "imgui_internal:3405", + "location": "imgui_internal:3418", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDragPastThreshold", "ret": "bool", @@ -29825,7 +30555,7 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragging", - "location": "imgui:1115", + "location": "imgui:1116", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDragging", "ret": "bool", @@ -29858,7 +30588,7 @@ "clip": "true" }, "funcname": "IsMouseHoveringRect", - "location": "imgui:1110", + "location": "imgui:1111", "namespace": "ImGui", "ov_cimguiname": "igIsMouseHoveringRect", "ret": "bool", @@ -29881,7 +30611,7 @@ "cimguiname": "igIsMouseKey", "defaults": {}, "funcname": "IsMouseKey", - "location": "imgui_internal:3388", + "location": "imgui_internal:3401", "namespace": "ImGui", "ov_cimguiname": "igIsMouseKey", "ret": "bool", @@ -29906,7 +30636,7 @@ "mouse_pos": "NULL" }, "funcname": "IsMousePosValid", - "location": "imgui:1111", + "location": "imgui:1112", "namespace": "ImGui", "ov_cimguiname": "igIsMousePosValid", "ret": "bool", @@ -29929,7 +30659,7 @@ "cimguiname": "igIsMouseReleased", "defaults": {}, "funcname": "IsMouseReleased", - "location": "imgui:1106", + "location": "imgui:1107", "namespace": "ImGui", "ov_cimguiname": "igIsMouseReleased_Nil", "ret": "bool", @@ -29954,7 +30684,7 @@ "cimguiname": "igIsMouseReleased", "defaults": {}, "funcname": "IsMouseReleased", - "location": "imgui_internal:3444", + "location": "imgui_internal:3457", "namespace": "ImGui", "ov_cimguiname": "igIsMouseReleased_ID", "ret": "bool", @@ -29981,7 +30711,7 @@ "cimguiname": "igIsMouseReleasedWithDelay", "defaults": {}, "funcname": "IsMouseReleasedWithDelay", - "location": "imgui:1108", + "location": "imgui:1109", "namespace": "ImGui", "ov_cimguiname": "igIsMouseReleasedWithDelay", "ret": "bool", @@ -30004,7 +30734,7 @@ "cimguiname": "igIsNamedKey", "defaults": {}, "funcname": "IsNamedKey", - "location": "imgui_internal:3383", + "location": "imgui_internal:3396", "namespace": "ImGui", "ov_cimguiname": "igIsNamedKey", "ret": "bool", @@ -30027,7 +30757,7 @@ "cimguiname": "igIsNamedKeyOrMod", "defaults": {}, "funcname": "IsNamedKeyOrMod", - "location": "imgui_internal:3384", + "location": "imgui_internal:3397", "namespace": "ImGui", "ov_cimguiname": "igIsNamedKeyOrMod", "ret": "bool", @@ -30081,7 +30811,7 @@ "cimguiname": "igIsPopupOpen", "defaults": {}, "funcname": "IsPopupOpen", - "location": "imgui_internal:3331", + "location": "imgui_internal:3344", "namespace": "ImGui", "ov_cimguiname": "igIsPopupOpen_ID", "ret": "bool", @@ -30108,7 +30838,7 @@ "cimguiname": "igIsPopupOpenRequestForItem", "defaults": {}, "funcname": "IsPopupOpenRequestForItem", - "location": "imgui_internal:3339", + "location": "imgui_internal:3352", "namespace": "ImGui", "ov_cimguiname": "igIsPopupOpenRequestForItem", "ret": "bool", @@ -30131,7 +30861,7 @@ "cimguiname": "igIsPopupOpenRequestForWindow", "defaults": {}, "funcname": "IsPopupOpenRequestForWindow", - "location": "imgui_internal:3340", + "location": "imgui_internal:3353", "namespace": "ImGui", "ov_cimguiname": "igIsPopupOpenRequestForWindow", "ret": "bool", @@ -30206,7 +30936,7 @@ "cimguiname": "igIsWindowAbove", "defaults": {}, "funcname": "IsWindowAbove", - "location": "imgui_internal:3181", + "location": "imgui_internal:3193", "namespace": "ImGui", "ov_cimguiname": "igIsWindowAbove", "ret": "bool", @@ -30255,7 +30985,7 @@ "cimguiname": "igIsWindowChildOf", "defaults": {}, "funcname": "IsWindowChildOf", - "location": "imgui_internal:3178", + "location": "imgui_internal:3190", "namespace": "ImGui", "ov_cimguiname": "igIsWindowChildOf", "ret": "bool", @@ -30302,7 +31032,7 @@ "flags": "0" }, "funcname": "IsWindowContentHoverable", - "location": "imgui_internal:3301", + "location": "imgui_internal:3313", "namespace": "ImGui", "ov_cimguiname": "igIsWindowContentHoverable", "ret": "bool", @@ -30375,7 +31105,7 @@ "cimguiname": "igIsWindowInBeginStack", "defaults": {}, "funcname": "IsWindowInBeginStack", - "location": "imgui_internal:3179", + "location": "imgui_internal:3191", "namespace": "ImGui", "ov_cimguiname": "igIsWindowInBeginStack", "ret": "bool", @@ -30398,7 +31128,7 @@ "cimguiname": "igIsWindowNavFocusable", "defaults": {}, "funcname": "IsWindowNavFocusable", - "location": "imgui_internal:3182", + "location": "imgui_internal:3194", "namespace": "ImGui", "ov_cimguiname": "igIsWindowNavFocusable", "ret": "bool", @@ -30425,7 +31155,7 @@ "cimguiname": "igIsWindowWithinBeginStackOf", "defaults": {}, "funcname": "IsWindowWithinBeginStackOf", - "location": "imgui_internal:3180", + "location": "imgui_internal:3192", "namespace": "ImGui", "ov_cimguiname": "igIsWindowWithinBeginStackOf", "ret": "bool", @@ -30463,7 +31193,7 @@ "nav_bb": "NULL" }, "funcname": "ItemAdd", - "location": "imgui_internal:3299", + "location": "imgui_internal:3311", "namespace": "ImGui", "ov_cimguiname": "igItemAdd", "ret": "bool", @@ -30494,7 +31224,7 @@ "cimguiname": "igItemHoverable", "defaults": {}, "funcname": "ItemHoverable", - "location": "imgui_internal:3300", + "location": "imgui_internal:3312", "namespace": "ImGui", "ov_cimguiname": "igItemHoverable", "ret": "bool", @@ -30523,7 +31253,7 @@ "text_baseline_y": "-1.0f" }, "funcname": "ItemSize", - "location": "imgui_internal:3297", + "location": "imgui_internal:3309", "namespace": "ImGui", "ov_cimguiname": "igItemSize_Vec2", "ret": "void", @@ -30550,7 +31280,7 @@ "text_baseline_y": "-1.0f" }, "funcname": "ItemSize", - "location": "imgui_internal:3298", + "location": "imgui_internal:3310", "namespace": "ImGui", "ov_cimguiname": "igItemSize_Rect", "ret": "void", @@ -30573,7 +31303,7 @@ "cimguiname": "igKeepAliveID", "defaults": {}, "funcname": "KeepAliveID", - "location": "imgui_internal:3290", + "location": "imgui_internal:3302", "namespace": "ImGui", "ov_cimguiname": "igKeepAliveID", "ret": "void", @@ -30745,7 +31475,7 @@ "cimguiname": "igLoadIniSettingsFromDisk", "defaults": {}, "funcname": "LoadIniSettingsFromDisk", - "location": "imgui:1131", + "location": "imgui:1132", "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromDisk", "ret": "void", @@ -30774,7 +31504,7 @@ "ini_size": "0" }, "funcname": "LoadIniSettingsFromMemory", - "location": "imgui:1132", + "location": "imgui:1133", "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromMemory", "ret": "void", @@ -30797,7 +31527,7 @@ "cimguiname": "igLocalizeGetMsg", "defaults": {}, "funcname": "LocalizeGetMsg", - "location": "imgui_internal:3265", + "location": "imgui_internal:3277", "namespace": "ImGui", "ov_cimguiname": "igLocalizeGetMsg", "ret": "const char*", @@ -30824,7 +31554,7 @@ "cimguiname": "igLocalizeRegisterEntries", "defaults": {}, "funcname": "LocalizeRegisterEntries", - "location": "imgui_internal:3264", + "location": "imgui_internal:3276", "namespace": "ImGui", "ov_cimguiname": "igLocalizeRegisterEntries", "ret": "void", @@ -30851,7 +31581,7 @@ "cimguiname": "igLogBegin", "defaults": {}, "funcname": "LogBegin", - "location": "imgui_internal:3316", + "location": "imgui_internal:3328", "namespace": "ImGui", "ov_cimguiname": "igLogBegin", "ret": "void", @@ -30920,7 +31650,7 @@ "text_end": "NULL" }, "funcname": "LogRenderedText", - "location": "imgui_internal:3318", + "location": "imgui_internal:3330", "namespace": "ImGui", "ov_cimguiname": "igLogRenderedText", "ret": "void", @@ -30947,7 +31677,7 @@ "cimguiname": "igLogSetNextTextDecoration", "defaults": {}, "funcname": "LogSetNextTextDecoration", - "location": "imgui_internal:3319", + "location": "imgui_internal:3331", "namespace": "ImGui", "ov_cimguiname": "igLogSetNextTextDecoration", "ret": "void", @@ -31027,7 +31757,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToBuffer", - "location": "imgui_internal:3317", + "location": "imgui_internal:3329", "namespace": "ImGui", "ov_cimguiname": "igLogToBuffer", "ret": "void", @@ -31125,7 +31855,7 @@ "cimguiname": "igMarkIniSettingsDirty", "defaults": {}, "funcname": "MarkIniSettingsDirty", - "location": "imgui_internal:3250", + "location": "imgui_internal:3262", "namespace": "ImGui", "ov_cimguiname": "igMarkIniSettingsDirty_Nil", "ret": "void", @@ -31146,7 +31876,7 @@ "cimguiname": "igMarkIniSettingsDirty", "defaults": {}, "funcname": "MarkIniSettingsDirty", - "location": "imgui_internal:3251", + "location": "imgui_internal:3263", "namespace": "ImGui", "ov_cimguiname": "igMarkIniSettingsDirty_WindowPtr", "ret": "void", @@ -31169,7 +31899,7 @@ "cimguiname": "igMarkItemEdited", "defaults": {}, "funcname": "MarkItemEdited", - "location": "imgui_internal:3291", + "location": "imgui_internal:3303", "namespace": "ImGui", "ov_cimguiname": "igMarkItemEdited", "ret": "void", @@ -31192,7 +31922,7 @@ "cimguiname": "igMemAlloc", "defaults": {}, "funcname": "MemAlloc", - "location": "imgui:1155", + "location": "imgui:1156", "namespace": "ImGui", "ov_cimguiname": "igMemAlloc", "ret": "void*", @@ -31215,7 +31945,7 @@ "cimguiname": "igMemFree", "defaults": {}, "funcname": "MemFree", - "location": "imgui:1156", + "location": "imgui:1157", "namespace": "ImGui", "ov_cimguiname": "igMemFree", "ret": "void", @@ -31332,7 +32062,7 @@ "shortcut": "NULL" }, "funcname": "MenuItemEx", - "location": "imgui_internal:3349", + "location": "imgui_internal:3362", "namespace": "ImGui", "ov_cimguiname": "igMenuItemEx", "ret": "bool", @@ -31355,7 +32085,7 @@ "cimguiname": "igMouseButtonToKey", "defaults": {}, "funcname": "MouseButtonToKey", - "location": "imgui_internal:3404", + "location": "imgui_internal:3417", "namespace": "ImGui", "ov_cimguiname": "igMouseButtonToKey", "ret": "ImGuiKey", @@ -31382,7 +32112,7 @@ "cimguiname": "igMultiSelectAddSetAll", "defaults": {}, "funcname": "MultiSelectAddSetAll", - "location": "imgui_internal:3502", + "location": "imgui_internal:3516", "namespace": "ImGui", "ov_cimguiname": "igMultiSelectAddSetAll", "ret": "void", @@ -31421,7 +32151,7 @@ "cimguiname": "igMultiSelectAddSetRange", "defaults": {}, "funcname": "MultiSelectAddSetRange", - "location": "imgui_internal:3503", + "location": "imgui_internal:3517", "namespace": "ImGui", "ov_cimguiname": "igMultiSelectAddSetRange", "ret": "void", @@ -31452,7 +32182,7 @@ "cimguiname": "igMultiSelectItemFooter", "defaults": {}, "funcname": "MultiSelectItemFooter", - "location": "imgui_internal:3501", + "location": "imgui_internal:3515", "namespace": "ImGui", "ov_cimguiname": "igMultiSelectItemFooter", "ret": "void", @@ -31483,7 +32213,7 @@ "cimguiname": "igMultiSelectItemHeader", "defaults": {}, "funcname": "MultiSelectItemHeader", - "location": "imgui_internal:3500", + "location": "imgui_internal:3514", "namespace": "ImGui", "ov_cimguiname": "igMultiSelectItemHeader", "ret": "void", @@ -31506,7 +32236,7 @@ "cimguiname": "igNavClearPreferredPosForAxis", "defaults": {}, "funcname": "NavClearPreferredPosForAxis", - "location": "imgui_internal:3368", + "location": "imgui_internal:3381", "namespace": "ImGui", "ov_cimguiname": "igNavClearPreferredPosForAxis", "ret": "void", @@ -31529,7 +32259,7 @@ "cimguiname": "igNavHighlightActivated", "defaults": {}, "funcname": "NavHighlightActivated", - "location": "imgui_internal:3367", + "location": "imgui_internal:3380", "namespace": "ImGui", "ov_cimguiname": "igNavHighlightActivated", "ret": "void", @@ -31547,7 +32277,7 @@ "cimguiname": "igNavInitRequestApplyResult", "defaults": {}, "funcname": "NavInitRequestApplyResult", - "location": "imgui_internal:3358", + "location": "imgui_internal:3371", "namespace": "ImGui", "ov_cimguiname": "igNavInitRequestApplyResult", "ret": "void", @@ -31574,7 +32304,7 @@ "cimguiname": "igNavInitWindow", "defaults": {}, "funcname": "NavInitWindow", - "location": "imgui_internal:3357", + "location": "imgui_internal:3370", "namespace": "ImGui", "ov_cimguiname": "igNavInitWindow", "ret": "void", @@ -31592,7 +32322,7 @@ "cimguiname": "igNavMoveRequestApplyResult", "defaults": {}, "funcname": "NavMoveRequestApplyResult", - "location": "imgui_internal:3365", + "location": "imgui_internal:3378", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestApplyResult", "ret": "void", @@ -31610,7 +32340,7 @@ "cimguiname": "igNavMoveRequestButNoResultYet", "defaults": {}, "funcname": "NavMoveRequestButNoResultYet", - "location": "imgui_internal:3359", + "location": "imgui_internal:3372", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestButNoResultYet", "ret": "bool", @@ -31628,7 +32358,7 @@ "cimguiname": "igNavMoveRequestCancel", "defaults": {}, "funcname": "NavMoveRequestCancel", - "location": "imgui_internal:3364", + "location": "imgui_internal:3377", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestCancel", "ret": "void", @@ -31663,7 +32393,7 @@ "cimguiname": "igNavMoveRequestForward", "defaults": {}, "funcname": "NavMoveRequestForward", - "location": "imgui_internal:3361", + "location": "imgui_internal:3374", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestForward", "ret": "void", @@ -31686,7 +32416,7 @@ "cimguiname": "igNavMoveRequestResolveWithLastItem", "defaults": {}, "funcname": "NavMoveRequestResolveWithLastItem", - "location": "imgui_internal:3362", + "location": "imgui_internal:3375", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestResolveWithLastItem", "ret": "void", @@ -31713,7 +32443,7 @@ "cimguiname": "igNavMoveRequestResolveWithPastTreeNode", "defaults": {}, "funcname": "NavMoveRequestResolveWithPastTreeNode", - "location": "imgui_internal:3363", + "location": "imgui_internal:3376", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestResolveWithPastTreeNode", "ret": "void", @@ -31748,7 +32478,7 @@ "cimguiname": "igNavMoveRequestSubmit", "defaults": {}, "funcname": "NavMoveRequestSubmit", - "location": "imgui_internal:3360", + "location": "imgui_internal:3373", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestSubmit", "ret": "void", @@ -31775,7 +32505,7 @@ "cimguiname": "igNavMoveRequestTryWrapping", "defaults": {}, "funcname": "NavMoveRequestTryWrapping", - "location": "imgui_internal:3366", + "location": "imgui_internal:3379", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestTryWrapping", "ret": "void", @@ -31793,7 +32523,7 @@ "cimguiname": "igNavUpdateCurrentWindowIsScrollPushableX", "defaults": {}, "funcname": "NavUpdateCurrentWindowIsScrollPushableX", - "location": "imgui_internal:3370", + "location": "imgui_internal:3383", "namespace": "ImGui", "ov_cimguiname": "igNavUpdateCurrentWindowIsScrollPushableX", "ret": "void", @@ -31932,7 +32662,7 @@ "popup_flags": "ImGuiPopupFlags_None" }, "funcname": "OpenPopupEx", - "location": "imgui_internal:3327", + "location": "imgui_internal:3340", "namespace": "ImGui", "ov_cimguiname": "igOpenPopupEx", "ret": "void", @@ -32023,7 +32753,7 @@ "cimguiname": "igPlotEx", "defaults": {}, "funcname": "PlotEx", - "location": "imgui_internal:3707", + "location": "imgui_internal:3722", "namespace": "ImGui", "ov_cimguiname": "igPlotEx", "ret": "int", @@ -32305,7 +33035,7 @@ "cimguiname": "igPopColumnsBackground", "defaults": {}, "funcname": "PopColumnsBackground", - "location": "imgui_internal:3513", + "location": "imgui_internal:3527", "namespace": "ImGui", "ov_cimguiname": "igPopColumnsBackground", "ret": "void", @@ -32323,7 +33053,7 @@ "cimguiname": "igPopFocusScope", "defaults": {}, "funcname": "PopFocusScope", - "location": "imgui_internal:3475", + "location": "imgui_internal:3488", "namespace": "ImGui", "ov_cimguiname": "igPopFocusScope", "ret": "void", @@ -32413,7 +33143,7 @@ "cimguiname": "igPopPasswordFont", "defaults": {}, "funcname": "PopPasswordFont", - "location": "imgui_internal:3219", + "location": "imgui_internal:3231", "namespace": "ImGui", "ov_cimguiname": "igPopPasswordFont", "ret": "void", @@ -32569,7 +33299,7 @@ "cimguiname": "igPushColumnClipRect", "defaults": {}, "funcname": "PushColumnClipRect", - "location": "imgui_internal:3511", + "location": "imgui_internal:3525", "namespace": "ImGui", "ov_cimguiname": "igPushColumnClipRect", "ret": "void", @@ -32587,7 +33317,7 @@ "cimguiname": "igPushColumnsBackground", "defaults": {}, "funcname": "PushColumnsBackground", - "location": "imgui_internal:3512", + "location": "imgui_internal:3526", "namespace": "ImGui", "ov_cimguiname": "igPushColumnsBackground", "ret": "void", @@ -32610,7 +33340,7 @@ "cimguiname": "igPushFocusScope", "defaults": {}, "funcname": "PushFocusScope", - "location": "imgui_internal:3474", + "location": "imgui_internal:3487", "namespace": "ImGui", "ov_cimguiname": "igPushFocusScope", "ret": "void", @@ -32804,7 +33534,7 @@ "cimguiname": "igPushMultiItemsWidths", "defaults": {}, "funcname": "PushMultiItemsWidths", - "location": "imgui_internal:3306", + "location": "imgui_internal:3318", "namespace": "ImGui", "ov_cimguiname": "igPushMultiItemsWidths", "ret": "void", @@ -32827,7 +33557,7 @@ "cimguiname": "igPushOverrideID", "defaults": {}, "funcname": "PushOverrideID", - "location": "imgui_internal:3292", + "location": "imgui_internal:3304", "namespace": "ImGui", "ov_cimguiname": "igPushOverrideID", "ret": "void", @@ -32845,7 +33575,7 @@ "cimguiname": "igPushPasswordFont", "defaults": {}, "funcname": "PushPasswordFont", - "location": "imgui_internal:3218", + "location": "imgui_internal:3230", "namespace": "ImGui", "ov_cimguiname": "igPushPasswordFont", "ret": "void", @@ -33107,7 +33837,7 @@ "cimguiname": "igRegisterFontAtlas", "defaults": {}, "funcname": "RegisterFontAtlas", - "location": "imgui_internal:3210", + "location": "imgui_internal:3222", "namespace": "ImGui", "ov_cimguiname": "igRegisterFontAtlas", "ret": "void", @@ -33130,7 +33860,7 @@ "cimguiname": "igRegisterUserTexture", "defaults": {}, "funcname": "RegisterUserTexture", - "location": "imgui_internal:3208", + "location": "imgui_internal:3220", "namespace": "ImGui", "ov_cimguiname": "igRegisterUserTexture", "ret": "void", @@ -33157,7 +33887,7 @@ "cimguiname": "igRemoveContextHook", "defaults": {}, "funcname": "RemoveContextHook", - "location": "imgui_internal:3232", + "location": "imgui_internal:3244", "namespace": "ImGui", "ov_cimguiname": "igRemoveContextHook", "ret": "void", @@ -33180,7 +33910,7 @@ "cimguiname": "igRemoveSettingsHandler", "defaults": {}, "funcname": "RemoveSettingsHandler", - "location": "imgui_internal:3254", + "location": "imgui_internal:3266", "namespace": "ImGui", "ov_cimguiname": "igRemoveSettingsHandler", "ret": "void", @@ -33239,7 +33969,7 @@ "scale": "1.0f" }, "funcname": "RenderArrow", - "location": "imgui_internal:3624", + "location": "imgui_internal:3639", "namespace": "ImGui", "ov_cimguiname": "igRenderArrow", "ret": "void", @@ -33278,7 +34008,7 @@ "cimguiname": "igRenderArrowPointingAt", "defaults": {}, "funcname": "RenderArrowPointingAt", - "location": "imgui_internal:3627", + "location": "imgui_internal:3642", "namespace": "ImGui", "ov_cimguiname": "igRenderArrowPointingAt", "ret": "void", @@ -33309,7 +34039,7 @@ "cimguiname": "igRenderBullet", "defaults": {}, "funcname": "RenderBullet", - "location": "imgui_internal:3625", + "location": "imgui_internal:3640", "namespace": "ImGui", "ov_cimguiname": "igRenderBullet", "ret": "void", @@ -33344,7 +34074,7 @@ "cimguiname": "igRenderCheckMark", "defaults": {}, "funcname": "RenderCheckMark", - "location": "imgui_internal:3626", + "location": "imgui_internal:3641", "namespace": "ImGui", "ov_cimguiname": "igRenderCheckMark", "ret": "void", @@ -33375,7 +34105,7 @@ "cimguiname": "igRenderColorComponentMarker", "defaults": {}, "funcname": "RenderColorComponentMarker", - "location": "imgui_internal:3614", + "location": "imgui_internal:3629", "namespace": "ImGui", "ov_cimguiname": "igRenderColorComponentMarker", "ret": "void", @@ -33429,7 +34159,7 @@ "rounding": "0.0f" }, "funcname": "RenderColorRectWithAlphaCheckerboard", - "location": "imgui_internal:3615", + "location": "imgui_internal:3630", "namespace": "ImGui", "ov_cimguiname": "igRenderColorRectWithAlphaCheckerboard", "ret": "void", @@ -33439,7 +34169,7 @@ ], "igRenderDragDropTargetRectEx": [ { - "args": "(ImDrawList* draw_list,const ImRect_c bb)", + "args": "(ImDrawList* draw_list,const ImRect_c bb,float rounding)", "argsT": [ { "name": "draw_list", @@ -33448,19 +34178,23 @@ { "name": "bb", "type": "const ImRect" + }, + { + "name": "rounding", + "type": "float" } ], - "argsoriginal": "(ImDrawList* draw_list,const ImRect& bb)", - "call_args": "(draw_list,ConvertToCPP_ImRect(bb))", - "call_args_old": "(draw_list,bb)", + "argsoriginal": "(ImDrawList* draw_list,const ImRect& bb,float rounding)", + "call_args": "(draw_list,ConvertToCPP_ImRect(bb),rounding)", + "call_args_old": "(draw_list,bb,rounding)", "cimguiname": "igRenderDragDropTargetRectEx", "defaults": {}, "funcname": "RenderDragDropTargetRectEx", - "location": "imgui_internal:3485", + "location": "imgui_internal:3499", "namespace": "ImGui", "ov_cimguiname": "igRenderDragDropTargetRectEx", "ret": "void", - "signature": "(ImDrawList*,const ImRect)", + "signature": "(ImDrawList*,const ImRect,float)", "stname": "" } ], @@ -33479,7 +34213,7 @@ "cimguiname": "igRenderDragDropTargetRectForItem", "defaults": {}, "funcname": "RenderDragDropTargetRectForItem", - "location": "imgui_internal:3484", + "location": "imgui_internal:3498", "namespace": "ImGui", "ov_cimguiname": "igRenderDragDropTargetRectForItem", "ret": "void", @@ -33521,7 +34255,7 @@ "rounding": "0.0f" }, "funcname": "RenderFrame", - "location": "imgui_internal:3612", + "location": "imgui_internal:3627", "namespace": "ImGui", "ov_cimguiname": "igRenderFrame", "ret": "void", @@ -33554,7 +34288,7 @@ "rounding": "0.0f" }, "funcname": "RenderFrameBorder", - "location": "imgui_internal:3613", + "location": "imgui_internal:3628", "namespace": "ImGui", "ov_cimguiname": "igRenderFrameBorder", "ret": "void", @@ -33597,7 +34331,7 @@ "cimguiname": "igRenderMouseCursor", "defaults": {}, "funcname": "RenderMouseCursor", - "location": "imgui_internal:3621", + "location": "imgui_internal:3636", "namespace": "ImGui", "ov_cimguiname": "igRenderMouseCursor", "ret": "void", @@ -33630,7 +34364,7 @@ "flags": "ImGuiNavRenderCursorFlags_None" }, "funcname": "RenderNavCursor", - "location": "imgui_internal:3616", + "location": "imgui_internal:3631", "namespace": "ImGui", "ov_cimguiname": "igRenderNavCursor", "ret": "void", @@ -33673,7 +34407,7 @@ "cimguiname": "igRenderRectFilledInRangeH", "defaults": {}, "funcname": "RenderRectFilledInRangeH", - "location": "imgui_internal:3628", + "location": "imgui_internal:3643", "namespace": "ImGui", "ov_cimguiname": "igRenderRectFilledInRangeH", "ret": "void", @@ -33712,7 +34446,7 @@ "cimguiname": "igRenderRectFilledWithHole", "defaults": {}, "funcname": "RenderRectFilledWithHole", - "location": "imgui_internal:3629", + "location": "imgui_internal:3644", "namespace": "ImGui", "ov_cimguiname": "igRenderRectFilledWithHole", "ret": "void", @@ -33750,7 +34484,7 @@ "text_end": "NULL" }, "funcname": "RenderText", - "location": "imgui_internal:3607", + "location": "imgui_internal:3622", "namespace": "ImGui", "ov_cimguiname": "igRenderText", "ret": "void", @@ -33800,7 +34534,7 @@ "clip_rect": "NULL" }, "funcname": "RenderTextClipped", - "location": "imgui_internal:3609", + "location": "imgui_internal:3624", "namespace": "ImGui", "ov_cimguiname": "igRenderTextClipped", "ret": "void", @@ -33854,7 +34588,7 @@ "clip_rect": "NULL" }, "funcname": "RenderTextClippedEx", - "location": "imgui_internal:3610", + "location": "imgui_internal:3625", "namespace": "ImGui", "ov_cimguiname": "igRenderTextClippedEx", "ret": "void", @@ -33901,7 +34635,7 @@ "cimguiname": "igRenderTextEllipsis", "defaults": {}, "funcname": "RenderTextEllipsis", - "location": "imgui_internal:3611", + "location": "imgui_internal:3626", "namespace": "ImGui", "ov_cimguiname": "igRenderTextEllipsis", "ret": "void", @@ -33936,7 +34670,7 @@ "cimguiname": "igRenderTextWrapped", "defaults": {}, "funcname": "RenderTextWrapped", - "location": "imgui_internal:3608", + "location": "imgui_internal:3623", "namespace": "ImGui", "ov_cimguiname": "igRenderTextWrapped", "ret": "void", @@ -33961,7 +34695,7 @@ "button": "0" }, "funcname": "ResetMouseDragDelta", - "location": "imgui:1117", + "location": "imgui:1118", "namespace": "ImGui", "ov_cimguiname": "igResetMouseDragDelta", "ret": "void", @@ -34014,7 +34748,7 @@ "cimguiname": "igSaveIniSettingsToDisk", "defaults": {}, "funcname": "SaveIniSettingsToDisk", - "location": "imgui:1133", + "location": "imgui:1134", "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToDisk", "ret": "void", @@ -34039,7 +34773,7 @@ "out_ini_size": "NULL" }, "funcname": "SaveIniSettingsToMemory", - "location": "imgui:1134", + "location": "imgui:1135", "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToMemory", "ret": "const char*", @@ -34066,7 +34800,7 @@ "cimguiname": "igScaleWindowsInViewport", "defaults": {}, "funcname": "ScaleWindowsInViewport", - "location": "imgui_internal:3246", + "location": "imgui_internal:3258", "namespace": "ImGui", "ov_cimguiname": "igScaleWindowsInViewport", "ret": "void", @@ -34093,7 +34827,7 @@ "cimguiname": "igScrollToBringRectIntoView", "defaults": {}, "funcname": "ScrollToBringRectIntoView", - "location": "imgui_internal:3278", + "location": "imgui_internal:3290", "namespace": "ImGui", "ov_cimguiname": "igScrollToBringRectIntoView", "ret": "void", @@ -34118,7 +34852,7 @@ "flags": "0" }, "funcname": "ScrollToItem", - "location": "imgui_internal:3274", + "location": "imgui_internal:3286", "namespace": "ImGui", "ov_cimguiname": "igScrollToItem", "ret": "void", @@ -34151,7 +34885,7 @@ "flags": "0" }, "funcname": "ScrollToRect", - "location": "imgui_internal:3275", + "location": "imgui_internal:3287", "namespace": "ImGui", "ov_cimguiname": "igScrollToRect", "ret": "void", @@ -34185,7 +34919,7 @@ "flags": "0" }, "funcname": "ScrollToRectEx", - "location": "imgui_internal:3276", + "location": "imgui_internal:3288", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igScrollToRectEx", @@ -34209,7 +34943,7 @@ "cimguiname": "igScrollbar", "defaults": {}, "funcname": "Scrollbar", - "location": "imgui_internal:3649", + "location": "imgui_internal:3664", "namespace": "ImGui", "ov_cimguiname": "igScrollbar", "ret": "void", @@ -34258,7 +34992,7 @@ "draw_rounding_flags": "0" }, "funcname": "ScrollbarEx", - "location": "imgui_internal:3650", + "location": "imgui_internal:3665", "namespace": "ImGui", "ov_cimguiname": "igScrollbarEx", "ret": "bool", @@ -34380,7 +35114,7 @@ "thickness": "1.0f" }, "funcname": "SeparatorEx", - "location": "imgui_internal:3641", + "location": "imgui_internal:3656", "namespace": "ImGui", "ov_cimguiname": "igSeparatorEx", "ret": "void", @@ -34438,7 +35172,7 @@ "cimguiname": "igSeparatorTextEx", "defaults": {}, "funcname": "SeparatorTextEx", - "location": "imgui_internal:3642", + "location": "imgui_internal:3657", "namespace": "ImGui", "ov_cimguiname": "igSeparatorTextEx", "ret": "void", @@ -34465,7 +35199,7 @@ "cimguiname": "igSetActiveID", "defaults": {}, "funcname": "SetActiveID", - "location": "imgui_internal:3285", + "location": "imgui_internal:3297", "namespace": "ImGui", "ov_cimguiname": "igSetActiveID", "ret": "void", @@ -34483,7 +35217,7 @@ "cimguiname": "igSetActiveIdUsingAllKeyboardKeys", "defaults": {}, "funcname": "SetActiveIdUsingAllKeyboardKeys", - "location": "imgui_internal:3411", + "location": "imgui_internal:3424", "namespace": "ImGui", "ov_cimguiname": "igSetActiveIdUsingAllKeyboardKeys", "ret": "void", @@ -34516,7 +35250,7 @@ "user_data": "NULL" }, "funcname": "SetAllocatorFunctions", - "location": "imgui:1153", + "location": "imgui:1154", "namespace": "ImGui", "ov_cimguiname": "igSetAllocatorFunctions", "ret": "void", @@ -34539,7 +35273,7 @@ "cimguiname": "igSetClipboardText", "defaults": {}, "funcname": "SetClipboardText", - "location": "imgui:1125", + "location": "imgui:1126", "namespace": "ImGui", "ov_cimguiname": "igSetClipboardText", "ret": "void", @@ -34643,7 +35377,7 @@ "cimguiname": "igSetContextName", "defaults": {}, "funcname": "SetContextName", - "location": "imgui_internal:3230", + "location": "imgui_internal:3242", "namespace": "ImGui", "ov_cimguiname": "igSetContextName", "ret": "void", @@ -34697,7 +35431,7 @@ "cimguiname": "igSetCurrentFont", "defaults": {}, "funcname": "SetCurrentFont", - "location": "imgui_internal:3212", + "location": "imgui_internal:3224", "namespace": "ImGui", "ov_cimguiname": "igSetCurrentFont", "ret": "void", @@ -34853,7 +35587,7 @@ "cimguiname": "igSetFocusID", "defaults": {}, "funcname": "SetFocusID", - "location": "imgui_internal:3286", + "location": "imgui_internal:3298", "namespace": "ImGui", "ov_cimguiname": "igSetFocusID", "ret": "void", @@ -34876,7 +35610,7 @@ "cimguiname": "igSetFontRasterizerDensity", "defaults": {}, "funcname": "SetFontRasterizerDensity", - "location": "imgui_internal:3214", + "location": "imgui_internal:3226", "namespace": "ImGui", "ov_cimguiname": "igSetFontRasterizerDensity", "ret": "void", @@ -34899,7 +35633,7 @@ "cimguiname": "igSetHoveredID", "defaults": {}, "funcname": "SetHoveredID", - "location": "imgui_internal:3289", + "location": "imgui_internal:3301", "namespace": "ImGui", "ov_cimguiname": "igSetHoveredID", "ret": "void", @@ -34940,10 +35674,10 @@ "cimguiname": "igSetItemKeyOwner", "defaults": {}, "funcname": "SetItemKeyOwner", - "location": "imgui:1098", + "location": "imgui:1099", "namespace": "ImGui", "ov_cimguiname": "igSetItemKeyOwner_Nil", - "ret": "void", + "ret": "bool", "signature": "(ImGuiKey)", "stname": "" }, @@ -34965,10 +35699,10 @@ "cimguiname": "igSetItemKeyOwner", "defaults": {}, "funcname": "SetItemKeyOwner", - "location": "imgui_internal:3428", + "location": "imgui_internal:3441", "namespace": "ImGui", "ov_cimguiname": "igSetItemKeyOwner_InputFlags", - "ret": "void", + "ret": "bool", "signature": "(ImGuiKey,ImGuiInputFlags)", "stname": "" } @@ -35053,7 +35787,7 @@ "flags": "0" }, "funcname": "SetKeyOwner", - "location": "imgui_internal:3426", + "location": "imgui_internal:3439", "namespace": "ImGui", "ov_cimguiname": "igSetKeyOwner", "ret": "void", @@ -35086,7 +35820,7 @@ "flags": "0" }, "funcname": "SetKeyOwnersForKeyChord", - "location": "imgui_internal:3427", + "location": "imgui_internal:3440", "namespace": "ImGui", "ov_cimguiname": "igSetKeyOwnersForKeyChord", "ret": "void", @@ -35146,7 +35880,7 @@ "cimguiname": "igSetLastItemData", "defaults": {}, "funcname": "SetLastItemData", - "location": "imgui_internal:3303", + "location": "imgui_internal:3315", "namespace": "ImGui", "ov_cimguiname": "igSetLastItemData", "ret": "void", @@ -35169,7 +35903,7 @@ "cimguiname": "igSetMouseCursor", "defaults": {}, "funcname": "SetMouseCursor", - "location": "imgui:1119", + "location": "imgui:1120", "namespace": "ImGui", "ov_cimguiname": "igSetMouseCursor", "ret": "void", @@ -35210,7 +35944,7 @@ "cimguiname": "igSetNavCursorVisibleAfterMove", "defaults": {}, "funcname": "SetNavCursorVisibleAfterMove", - "location": "imgui_internal:3369", + "location": "imgui_internal:3382", "namespace": "ImGui", "ov_cimguiname": "igSetNavCursorVisibleAfterMove", "ret": "void", @@ -35233,7 +35967,7 @@ "cimguiname": "igSetNavFocusScope", "defaults": {}, "funcname": "SetNavFocusScope", - "location": "imgui_internal:3373", + "location": "imgui_internal:3386", "namespace": "ImGui", "ov_cimguiname": "igSetNavFocusScope", "ret": "void", @@ -35268,7 +36002,7 @@ "cimguiname": "igSetNavID", "defaults": {}, "funcname": "SetNavID", - "location": "imgui_internal:3372", + "location": "imgui_internal:3385", "namespace": "ImGui", "ov_cimguiname": "igSetNavID", "ret": "void", @@ -35291,7 +36025,7 @@ "cimguiname": "igSetNavWindow", "defaults": {}, "funcname": "SetNavWindow", - "location": "imgui_internal:3371", + "location": "imgui_internal:3384", "namespace": "ImGui", "ov_cimguiname": "igSetNavWindow", "ret": "void", @@ -35337,7 +36071,7 @@ "cimguiname": "igSetNextFrameWantCaptureMouse", "defaults": {}, "funcname": "SetNextFrameWantCaptureMouse", - "location": "imgui:1120", + "location": "imgui:1121", "namespace": "ImGui", "ov_cimguiname": "igSetNextFrameWantCaptureMouse", "ret": "void", @@ -35378,7 +36112,7 @@ "cimguiname": "igSetNextItemColorMarker", "defaults": {}, "funcname": "SetNextItemColorMarker", - "location": "imgui_internal:3704", + "location": "imgui_internal:3719", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemColorMarker", "ret": "void", @@ -35434,7 +36168,7 @@ "cimguiname": "igSetNextItemRefVal", "defaults": {}, "funcname": "SetNextItemRefVal", - "location": "imgui_internal:3697", + "location": "imgui_internal:3712", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemRefVal", "ret": "void", @@ -35682,7 +36416,7 @@ "cimguiname": "igSetNextWindowRefreshPolicy", "defaults": {}, "funcname": "SetNextWindowRefreshPolicy", - "location": "imgui_internal:3205", + "location": "imgui_internal:3217", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowRefreshPolicy", "ret": "void", @@ -35830,7 +36564,7 @@ "cimguiname": "igSetScrollFromPosX", "defaults": {}, "funcname": "SetScrollFromPosX", - "location": "imgui_internal:3270", + "location": "imgui_internal:3282", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosX_WindowPtr", "ret": "void", @@ -35888,7 +36622,7 @@ "cimguiname": "igSetScrollFromPosY", "defaults": {}, "funcname": "SetScrollFromPosY", - "location": "imgui_internal:3271", + "location": "imgui_internal:3283", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosY_WindowPtr", "ret": "void", @@ -35986,7 +36720,7 @@ "cimguiname": "igSetScrollX", "defaults": {}, "funcname": "SetScrollX", - "location": "imgui_internal:3268", + "location": "imgui_internal:3280", "namespace": "ImGui", "ov_cimguiname": "igSetScrollX_WindowPtr", "ret": "void", @@ -36034,7 +36768,7 @@ "cimguiname": "igSetScrollY", "defaults": {}, "funcname": "SetScrollY", - "location": "imgui_internal:3269", + "location": "imgui_internal:3281", "namespace": "ImGui", "ov_cimguiname": "igSetScrollY_WindowPtr", "ret": "void", @@ -36065,7 +36799,7 @@ "cimguiname": "igSetShortcutRouting", "defaults": {}, "funcname": "SetShortcutRouting", - "location": "imgui_internal:3462", + "location": "imgui_internal:3475", "namespace": "ImGui", "ov_cimguiname": "igSetShortcutRouting", "ret": "bool", @@ -36193,7 +36927,7 @@ "cimguiname": "igSetWindowClipRectBeforeSetChannel", "defaults": {}, "funcname": "SetWindowClipRectBeforeSetChannel", - "location": "imgui_internal:3508", + "location": "imgui_internal:3522", "namespace": "ImGui", "ov_cimguiname": "igSetWindowClipRectBeforeSetChannel", "ret": "void", @@ -36284,7 +37018,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui_internal:3185", + "location": "imgui_internal:3197", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsed_WindowPtr", "ret": "void", @@ -36346,7 +37080,7 @@ "cimguiname": "igSetWindowHiddenAndSkipItemsForCurrentFrame", "defaults": {}, "funcname": "SetWindowHiddenAndSkipItemsForCurrentFrame", - "location": "imgui_internal:3187", + "location": "imgui_internal:3199", "namespace": "ImGui", "ov_cimguiname": "igSetWindowHiddenAndSkipItemsForCurrentFrame", "ret": "void", @@ -36377,7 +37111,7 @@ "cimguiname": "igSetWindowHitTestHole", "defaults": {}, "funcname": "SetWindowHitTestHole", - "location": "imgui_internal:3186", + "location": "imgui_internal:3198", "namespace": "ImGui", "ov_cimguiname": "igSetWindowHitTestHole", "ret": "void", @@ -36404,7 +37138,7 @@ "cimguiname": "igSetWindowParentWindowForFocusRoute", "defaults": {}, "funcname": "SetWindowParentWindowForFocusRoute", - "location": "imgui_internal:3188", + "location": "imgui_internal:3200", "namespace": "ImGui", "ov_cimguiname": "igSetWindowParentWindowForFocusRoute", "ret": "void", @@ -36495,7 +37229,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui_internal:3183", + "location": "imgui_internal:3195", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPos_WindowPtr", "ret": "void", @@ -36586,7 +37320,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui_internal:3184", + "location": "imgui_internal:3196", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSize_WindowPtr", "ret": "void", @@ -36613,7 +37347,7 @@ "cimguiname": "igSetWindowViewport", "defaults": {}, "funcname": "SetWindowViewport", - "location": "imgui_internal:3247", + "location": "imgui_internal:3259", "namespace": "ImGui", "ov_cimguiname": "igSetWindowViewport", "ret": "void", @@ -36660,7 +37394,7 @@ "cimguiname": "igShadeVertsLinearColorGradientKeepAlpha", "defaults": {}, "funcname": "ShadeVertsLinearColorGradientKeepAlpha", - "location": "imgui_internal:3710", + "location": "imgui_internal:3725", "namespace": "ImGui", "ov_cimguiname": "igShadeVertsLinearColorGradientKeepAlpha", "ret": "void", @@ -36711,7 +37445,7 @@ "cimguiname": "igShadeVertsLinearUV", "defaults": {}, "funcname": "ShadeVertsLinearUV", - "location": "imgui_internal:3711", + "location": "imgui_internal:3726", "namespace": "ImGui", "ov_cimguiname": "igShadeVertsLinearUV", "ret": "void", @@ -36758,7 +37492,7 @@ "cimguiname": "igShadeVertsTransformPos", "defaults": {}, "funcname": "ShadeVertsTransformPos", - "location": "imgui_internal:3712", + "location": "imgui_internal:3727", "namespace": "ImGui", "ov_cimguiname": "igShadeVertsTransformPos", "ret": "void", @@ -36816,7 +37550,7 @@ "cimguiname": "igShortcut", "defaults": {}, "funcname": "Shortcut", - "location": "imgui_internal:3461", + "location": "imgui_internal:3474", "namespace": "ImGui", "ov_cimguiname": "igShortcut_ID", "ret": "bool", @@ -36914,7 +37648,7 @@ "cimguiname": "igShowFontAtlas", "defaults": {}, "funcname": "ShowFontAtlas", - "location": "imgui_internal:3744", + "location": "imgui_internal:3759", "namespace": "ImGui", "ov_cimguiname": "igShowFontAtlas", "ret": "void", @@ -37088,7 +37822,7 @@ "cimguiname": "igShrinkWidths", "defaults": {}, "funcname": "ShrinkWidths", - "location": "imgui_internal:3307", + "location": "imgui_internal:3319", "namespace": "ImGui", "ov_cimguiname": "igShrinkWidths", "ret": "void", @@ -37106,7 +37840,7 @@ "cimguiname": "igShutdown", "defaults": {}, "funcname": "Shutdown", - "location": "imgui_internal:3227", + "location": "imgui_internal:3239", "namespace": "ImGui", "ov_cimguiname": "igShutdown", "ret": "void", @@ -37209,7 +37943,7 @@ "cimguiname": "igSliderBehavior", "defaults": {}, "funcname": "SliderBehavior", - "location": "imgui_internal:3660", + "location": "imgui_internal:3675", "namespace": "ImGui", "ov_cimguiname": "igSliderBehavior", "ret": "bool", @@ -37785,7 +38519,7 @@ "hover_visibility_delay": "0.0f" }, "funcname": "SplitterBehavior", - "location": "imgui_internal:3661", + "location": "imgui_internal:3676", "namespace": "ImGui", "ov_cimguiname": "igSplitterBehavior", "ret": "bool", @@ -37808,7 +38542,7 @@ "cimguiname": "igStartMouseMovingWindow", "defaults": {}, "funcname": "StartMouseMovingWindow", - "location": "imgui_internal:3239", + "location": "imgui_internal:3251", "namespace": "ImGui", "ov_cimguiname": "igStartMouseMovingWindow", "ret": "void", @@ -37826,7 +38560,7 @@ "cimguiname": "igStopMouseMovingWindow", "defaults": {}, "funcname": "StopMouseMovingWindow", - "location": "imgui_internal:3240", + "location": "imgui_internal:3252", "namespace": "ImGui", "ov_cimguiname": "igStopMouseMovingWindow", "ret": "void", @@ -37928,7 +38662,7 @@ "cimguiname": "igTabBarCloseTab", "defaults": {}, "funcname": "TabBarCloseTab", - "location": "imgui_internal:3591", + "location": "imgui_internal:3606", "namespace": "ImGui", "ov_cimguiname": "igTabBarCloseTab", "ret": "void", @@ -37951,7 +38685,7 @@ "cimguiname": "igTabBarFindByID", "defaults": {}, "funcname": "TabBarFindByID", - "location": "imgui_internal:3582", + "location": "imgui_internal:3597", "namespace": "ImGui", "ov_cimguiname": "igTabBarFindByID", "ret": "ImGuiTabBar*", @@ -37978,7 +38712,7 @@ "cimguiname": "igTabBarFindTabByID", "defaults": {}, "funcname": "TabBarFindTabByID", - "location": "imgui_internal:3585", + "location": "imgui_internal:3600", "namespace": "ImGui", "ov_cimguiname": "igTabBarFindTabByID", "ret": "ImGuiTabItem*", @@ -38005,7 +38739,7 @@ "cimguiname": "igTabBarFindTabByOrder", "defaults": {}, "funcname": "TabBarFindTabByOrder", - "location": "imgui_internal:3586", + "location": "imgui_internal:3601", "namespace": "ImGui", "ov_cimguiname": "igTabBarFindTabByOrder", "ret": "ImGuiTabItem*", @@ -38028,7 +38762,7 @@ "cimguiname": "igTabBarGetCurrentTab", "defaults": {}, "funcname": "TabBarGetCurrentTab", - "location": "imgui_internal:3587", + "location": "imgui_internal:3602", "namespace": "ImGui", "ov_cimguiname": "igTabBarGetCurrentTab", "ret": "ImGuiTabItem*", @@ -38055,7 +38789,7 @@ "cimguiname": "igTabBarGetTabName", "defaults": {}, "funcname": "TabBarGetTabName", - "location": "imgui_internal:3589", + "location": "imgui_internal:3604", "namespace": "ImGui", "ov_cimguiname": "igTabBarGetTabName", "ret": "const char*", @@ -38082,7 +38816,7 @@ "cimguiname": "igTabBarGetTabOrder", "defaults": {}, "funcname": "TabBarGetTabOrder", - "location": "imgui_internal:3588", + "location": "imgui_internal:3603", "namespace": "ImGui", "ov_cimguiname": "igTabBarGetTabOrder", "ret": "int", @@ -38105,7 +38839,7 @@ "cimguiname": "igTabBarProcessReorder", "defaults": {}, "funcname": "TabBarProcessReorder", - "location": "imgui_internal:3596", + "location": "imgui_internal:3611", "namespace": "ImGui", "ov_cimguiname": "igTabBarProcessReorder", "ret": "bool", @@ -38132,7 +38866,7 @@ "cimguiname": "igTabBarQueueFocus", "defaults": {}, "funcname": "TabBarQueueFocus", - "location": "imgui_internal:3592", + "location": "imgui_internal:3607", "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueFocus_TabItemPtr", "ret": "void", @@ -38157,7 +38891,7 @@ "cimguiname": "igTabBarQueueFocus", "defaults": {}, "funcname": "TabBarQueueFocus", - "location": "imgui_internal:3593", + "location": "imgui_internal:3608", "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueFocus_Str", "ret": "void", @@ -38188,7 +38922,7 @@ "cimguiname": "igTabBarQueueReorder", "defaults": {}, "funcname": "TabBarQueueReorder", - "location": "imgui_internal:3594", + "location": "imgui_internal:3609", "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueReorder", "ret": "void", @@ -38219,7 +38953,7 @@ "cimguiname": "igTabBarQueueReorderFromMousePos", "defaults": {}, "funcname": "TabBarQueueReorderFromMousePos", - "location": "imgui_internal:3595", + "location": "imgui_internal:3610", "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueReorderFromMousePos", "ret": "void", @@ -38242,7 +38976,7 @@ "cimguiname": "igTabBarRemove", "defaults": {}, "funcname": "TabBarRemove", - "location": "imgui_internal:3583", + "location": "imgui_internal:3598", "namespace": "ImGui", "ov_cimguiname": "igTabBarRemove", "ret": "void", @@ -38269,7 +39003,7 @@ "cimguiname": "igTabBarRemoveTab", "defaults": {}, "funcname": "TabBarRemoveTab", - "location": "imgui_internal:3590", + "location": "imgui_internal:3605", "namespace": "ImGui", "ov_cimguiname": "igTabBarRemoveTab", "ret": "void", @@ -38304,7 +39038,7 @@ "cimguiname": "igTabItemBackground", "defaults": {}, "funcname": "TabItemBackground", - "location": "imgui_internal:3601", + "location": "imgui_internal:3616", "namespace": "ImGui", "ov_cimguiname": "igTabItemBackground", "ret": "void", @@ -38361,7 +39095,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "TabItemCalcSize", - "location": "imgui_internal:3599", + "location": "imgui_internal:3614", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTabItemCalcSize_Str", @@ -38384,7 +39118,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "TabItemCalcSize", - "location": "imgui_internal:3600", + "location": "imgui_internal:3615", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTabItemCalcSize_WindowPtr", @@ -38424,7 +39158,7 @@ "cimguiname": "igTabItemEx", "defaults": {}, "funcname": "TabItemEx", - "location": "imgui_internal:3597", + "location": "imgui_internal:3612", "namespace": "ImGui", "ov_cimguiname": "igTabItemEx", "ret": "bool", @@ -38483,7 +39217,7 @@ "cimguiname": "igTabItemLabelAndCloseButton", "defaults": {}, "funcname": "TabItemLabelAndCloseButton", - "location": "imgui_internal:3602", + "location": "imgui_internal:3617", "namespace": "ImGui", "ov_cimguiname": "igTabItemLabelAndCloseButton", "ret": "void", @@ -38514,7 +39248,7 @@ "cimguiname": "igTabItemSpacing", "defaults": {}, "funcname": "TabItemSpacing", - "location": "imgui_internal:3598", + "location": "imgui_internal:3613", "namespace": "ImGui", "ov_cimguiname": "igTabItemSpacing", "ret": "void", @@ -38571,7 +39305,7 @@ "cimguiname": "igTableAngledHeadersRowEx", "defaults": {}, "funcname": "TableAngledHeadersRowEx", - "location": "imgui_internal:3530", + "location": "imgui_internal:3544", "namespace": "ImGui", "ov_cimguiname": "igTableAngledHeadersRowEx", "ret": "void", @@ -38579,6 +39313,34 @@ "stname": "" } ], + "igTableApplyExternalUnclipRect": [ + { + "args": "(ImGuiTable* table,ImRect* rect)", + "argsT": [ + { + "name": "table", + "type": "ImGuiTable*" + }, + { + "name": "rect", + "reftoptr": true, + "type": "ImRect*" + } + ], + "argsoriginal": "(ImGuiTable* table,ImRect& rect)", + "call_args": "(table,*rect)", + "call_args_old": "(table,*rect)", + "cimguiname": "igTableApplyExternalUnclipRect", + "defaults": {}, + "funcname": "TableApplyExternalUnclipRect", + "location": "imgui_internal:3556", + "namespace": "ImGui", + "ov_cimguiname": "igTableApplyExternalUnclipRect", + "ret": "void", + "signature": "(ImGuiTable*,ImRect*)", + "stname": "" + } + ], "igTableBeginApplyRequests": [ { "args": "(ImGuiTable* table)", @@ -38594,7 +39356,7 @@ "cimguiname": "igTableBeginApplyRequests", "defaults": {}, "funcname": "TableBeginApplyRequests", - "location": "imgui_internal:3537", + "location": "imgui_internal:3551", "namespace": "ImGui", "ov_cimguiname": "igTableBeginApplyRequests", "ret": "void", @@ -38621,7 +39383,7 @@ "cimguiname": "igTableBeginCell", "defaults": {}, "funcname": "TableBeginCell", - "location": "imgui_internal:3556", + "location": "imgui_internal:3571", "namespace": "ImGui", "ov_cimguiname": "igTableBeginCell", "ret": "void", @@ -38644,7 +39406,7 @@ "cimguiname": "igTableBeginContextMenuPopup", "defaults": {}, "funcname": "TableBeginContextMenuPopup", - "location": "imgui_internal:3544", + "location": "imgui_internal:3559", "namespace": "ImGui", "ov_cimguiname": "igTableBeginContextMenuPopup", "ret": "bool", @@ -38671,7 +39433,7 @@ "cimguiname": "igTableBeginInitMemory", "defaults": {}, "funcname": "TableBeginInitMemory", - "location": "imgui_internal:3536", + "location": "imgui_internal:3550", "namespace": "ImGui", "ov_cimguiname": "igTableBeginInitMemory", "ret": "void", @@ -38694,7 +39456,7 @@ "cimguiname": "igTableBeginRow", "defaults": {}, "funcname": "TableBeginRow", - "location": "imgui_internal:3554", + "location": "imgui_internal:3569", "namespace": "ImGui", "ov_cimguiname": "igTableBeginRow", "ret": "void", @@ -38721,7 +39483,7 @@ "cimguiname": "igTableCalcMaxColumnWidth", "defaults": {}, "funcname": "TableCalcMaxColumnWidth", - "location": "imgui_internal:3561", + "location": "imgui_internal:3576", "namespace": "ImGui", "ov_cimguiname": "igTableCalcMaxColumnWidth", "ret": "float", @@ -38744,7 +39506,7 @@ "cimguiname": "igTableDrawBorders", "defaults": {}, "funcname": "TableDrawBorders", - "location": "imgui_internal:3542", + "location": "imgui_internal:3557", "namespace": "ImGui", "ov_cimguiname": "igTableDrawBorders", "ret": "void", @@ -38771,7 +39533,7 @@ "cimguiname": "igTableDrawDefaultContextMenu", "defaults": {}, "funcname": "TableDrawDefaultContextMenu", - "location": "imgui_internal:3543", + "location": "imgui_internal:3558", "namespace": "ImGui", "ov_cimguiname": "igTableDrawDefaultContextMenu", "ret": "void", @@ -38794,7 +39556,7 @@ "cimguiname": "igTableEndCell", "defaults": {}, "funcname": "TableEndCell", - "location": "imgui_internal:3557", + "location": "imgui_internal:3572", "namespace": "ImGui", "ov_cimguiname": "igTableEndCell", "ret": "void", @@ -38817,7 +39579,7 @@ "cimguiname": "igTableEndRow", "defaults": {}, "funcname": "TableEndRow", - "location": "imgui_internal:3555", + "location": "imgui_internal:3570", "namespace": "ImGui", "ov_cimguiname": "igTableEndRow", "ret": "void", @@ -38840,7 +39602,7 @@ "cimguiname": "igTableFindByID", "defaults": {}, "funcname": "TableFindByID", - "location": "imgui_internal:3534", + "location": "imgui_internal:3548", "namespace": "ImGui", "ov_cimguiname": "igTableFindByID", "ret": "ImGuiTable*", @@ -38867,7 +39629,7 @@ "cimguiname": "igTableFixColumnSortDirection", "defaults": {}, "funcname": "TableFixColumnSortDirection", - "location": "imgui_internal:3552", + "location": "imgui_internal:3567", "namespace": "ImGui", "ov_cimguiname": "igTableFixColumnSortDirection", "ret": "void", @@ -38890,7 +39652,7 @@ "cimguiname": "igTableFixDisplayOrder", "defaults": {}, "funcname": "TableFixDisplayOrder", - "location": "imgui_internal:3548", + "location": "imgui_internal:3563", "namespace": "ImGui", "ov_cimguiname": "igTableFixDisplayOrder", "ret": "void", @@ -38908,7 +39670,7 @@ "cimguiname": "igTableGcCompactSettings", "defaults": {}, "funcname": "TableGcCompactSettings", - "location": "imgui_internal:3569", + "location": "imgui_internal:3584", "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactSettings", "ret": "void", @@ -38931,7 +39693,7 @@ "cimguiname": "igTableGcCompactTransientBuffers", "defaults": {}, "funcname": "TableGcCompactTransientBuffers", - "location": "imgui_internal:3567", + "location": "imgui_internal:3582", "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactTransientBuffers_TablePtr", "ret": "void", @@ -38952,7 +39714,7 @@ "cimguiname": "igTableGcCompactTransientBuffers", "defaults": {}, "funcname": "TableGcCompactTransientBuffers", - "location": "imgui_internal:3568", + "location": "imgui_internal:3583", "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactTransientBuffers_TableTempDataPtr", "ret": "void", @@ -38975,7 +39737,7 @@ "cimguiname": "igTableGetBoundSettings", "defaults": {}, "funcname": "TableGetBoundSettings", - "location": "imgui_internal:3575", + "location": "imgui_internal:3590", "namespace": "ImGui", "ov_cimguiname": "igTableGetBoundSettings", "ret": "ImGuiTableSettings*", @@ -39003,7 +39765,7 @@ "conv": "ImRect", "defaults": {}, "funcname": "TableGetCellBgRect", - "location": "imgui_internal:3558", + "location": "imgui_internal:3573", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTableGetCellBgRect", @@ -39115,7 +39877,7 @@ "cimguiname": "igTableGetColumnName", "defaults": {}, "funcname": "TableGetColumnName", - "location": "imgui_internal:3559", + "location": "imgui_internal:3574", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnName_TablePtr", "ret": "const char*", @@ -39138,7 +39900,7 @@ "cimguiname": "igTableGetColumnNextSortDirection", "defaults": {}, "funcname": "TableGetColumnNextSortDirection", - "location": "imgui_internal:3551", + "location": "imgui_internal:3566", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnNextSortDirection", "ret": "ImGuiSortDirection", @@ -39171,7 +39933,7 @@ "instance_no": "0" }, "funcname": "TableGetColumnResizeID", - "location": "imgui_internal:3560", + "location": "imgui_internal:3575", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnResizeID", "ret": "ImGuiID", @@ -39198,7 +39960,7 @@ "cimguiname": "igTableGetColumnWidthAuto", "defaults": {}, "funcname": "TableGetColumnWidthAuto", - "location": "imgui_internal:3553", + "location": "imgui_internal:3568", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnWidthAuto", "ret": "float", @@ -39216,7 +39978,7 @@ "cimguiname": "igTableGetHeaderAngledMaxLabelWidth", "defaults": {}, "funcname": "TableGetHeaderAngledMaxLabelWidth", - "location": "imgui_internal:3525", + "location": "imgui_internal:3539", "namespace": "ImGui", "ov_cimguiname": "igTableGetHeaderAngledMaxLabelWidth", "ret": "float", @@ -39234,7 +39996,7 @@ "cimguiname": "igTableGetHeaderRowHeight", "defaults": {}, "funcname": "TableGetHeaderRowHeight", - "location": "imgui_internal:3524", + "location": "imgui_internal:3538", "namespace": "ImGui", "ov_cimguiname": "igTableGetHeaderRowHeight", "ret": "float", @@ -39270,7 +40032,7 @@ "cimguiname": "igTableGetHoveredRow", "defaults": {}, "funcname": "TableGetHoveredRow", - "location": "imgui_internal:3523", + "location": "imgui_internal:3537", "namespace": "ImGui", "ov_cimguiname": "igTableGetHoveredRow", "ret": "int", @@ -39297,7 +40059,7 @@ "cimguiname": "igTableGetInstanceData", "defaults": {}, "funcname": "TableGetInstanceData", - "location": "imgui_internal:3546", + "location": "imgui_internal:3561", "namespace": "ImGui", "ov_cimguiname": "igTableGetInstanceData", "ret": "ImGuiTableInstanceData*", @@ -39324,7 +40086,7 @@ "cimguiname": "igTableGetInstanceID", "defaults": {}, "funcname": "TableGetInstanceID", - "location": "imgui_internal:3547", + "location": "imgui_internal:3562", "namespace": "ImGui", "ov_cimguiname": "igTableGetInstanceID", "ret": "ImGuiID", @@ -39424,7 +40186,7 @@ "cimguiname": "igTableLoadSettings", "defaults": {}, "funcname": "TableLoadSettings", - "location": "imgui_internal:3572", + "location": "imgui_internal:3587", "namespace": "ImGui", "ov_cimguiname": "igTableLoadSettings", "ret": "void", @@ -39447,7 +40209,7 @@ "cimguiname": "igTableMergeDrawChannels", "defaults": {}, "funcname": "TableMergeDrawChannels", - "location": "imgui_internal:3545", + "location": "imgui_internal:3560", "namespace": "ImGui", "ov_cimguiname": "igTableMergeDrawChannels", "ret": "void", @@ -39520,7 +40282,7 @@ "column_n": "-1" }, "funcname": "TableOpenContextMenu", - "location": "imgui_internal:3520", + "location": "imgui_internal:3534", "namespace": "ImGui", "ov_cimguiname": "igTableOpenContextMenu", "ret": "void", @@ -39538,7 +40300,7 @@ "cimguiname": "igTablePopBackgroundChannel", "defaults": {}, "funcname": "TablePopBackgroundChannel", - "location": "imgui_internal:3527", + "location": "imgui_internal:3541", "namespace": "ImGui", "ov_cimguiname": "igTablePopBackgroundChannel", "ret": "void", @@ -39556,7 +40318,7 @@ "cimguiname": "igTablePopColumnChannel", "defaults": {}, "funcname": "TablePopColumnChannel", - "location": "imgui_internal:3529", + "location": "imgui_internal:3543", "namespace": "ImGui", "ov_cimguiname": "igTablePopColumnChannel", "ret": "void", @@ -39574,7 +40336,7 @@ "cimguiname": "igTablePushBackgroundChannel", "defaults": {}, "funcname": "TablePushBackgroundChannel", - "location": "imgui_internal:3526", + "location": "imgui_internal:3540", "namespace": "ImGui", "ov_cimguiname": "igTablePushBackgroundChannel", "ret": "void", @@ -39597,7 +40359,7 @@ "cimguiname": "igTablePushColumnChannel", "defaults": {}, "funcname": "TablePushColumnChannel", - "location": "imgui_internal:3528", + "location": "imgui_internal:3542", "namespace": "ImGui", "ov_cimguiname": "igTablePushColumnChannel", "ret": "void", @@ -39628,7 +40390,7 @@ "cimguiname": "igTableQueueSetColumnDisplayOrder", "defaults": {}, "funcname": "TableQueueSetColumnDisplayOrder", - "location": "imgui_internal:3565", + "location": "imgui_internal:3580", "namespace": "ImGui", "ov_cimguiname": "igTableQueueSetColumnDisplayOrder", "ret": "void", @@ -39651,7 +40413,7 @@ "cimguiname": "igTableRemove", "defaults": {}, "funcname": "TableRemove", - "location": "imgui_internal:3566", + "location": "imgui_internal:3581", "namespace": "ImGui", "ov_cimguiname": "igTableRemove", "ret": "void", @@ -39674,7 +40436,7 @@ "cimguiname": "igTableResetSettings", "defaults": {}, "funcname": "TableResetSettings", - "location": "imgui_internal:3574", + "location": "imgui_internal:3589", "namespace": "ImGui", "ov_cimguiname": "igTableResetSettings", "ret": "void", @@ -39697,7 +40459,7 @@ "cimguiname": "igTableSaveSettings", "defaults": {}, "funcname": "TableSaveSettings", - "location": "imgui_internal:3573", + "location": "imgui_internal:3588", "namespace": "ImGui", "ov_cimguiname": "igTableSaveSettings", "ret": "void", @@ -39761,7 +40523,7 @@ "cimguiname": "igTableSetColumnDisplayOrder", "defaults": {}, "funcname": "TableSetColumnDisplayOrder", - "location": "imgui_internal:3564", + "location": "imgui_internal:3579", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnDisplayOrder", "ret": "void", @@ -39842,7 +40604,7 @@ "cimguiname": "igTableSetColumnSortDirection", "defaults": {}, "funcname": "TableSetColumnSortDirection", - "location": "imgui_internal:3522", + "location": "imgui_internal:3536", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnSortDirection", "ret": "void", @@ -39869,7 +40631,7 @@ "cimguiname": "igTableSetColumnWidth", "defaults": {}, "funcname": "TableSetColumnWidth", - "location": "imgui_internal:3521", + "location": "imgui_internal:3535", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidth", "ret": "void", @@ -39892,7 +40654,7 @@ "cimguiname": "igTableSetColumnWidthAutoAll", "defaults": {}, "funcname": "TableSetColumnWidthAutoAll", - "location": "imgui_internal:3563", + "location": "imgui_internal:3578", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidthAutoAll", "ret": "void", @@ -39919,7 +40681,7 @@ "cimguiname": "igTableSetColumnWidthAutoSingle", "defaults": {}, "funcname": "TableSetColumnWidthAutoSingle", - "location": "imgui_internal:3562", + "location": "imgui_internal:3577", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidthAutoSingle", "ret": "void", @@ -39937,7 +40699,7 @@ "cimguiname": "igTableSettingsAddSettingsHandler", "defaults": {}, "funcname": "TableSettingsAddSettingsHandler", - "location": "imgui_internal:3576", + "location": "imgui_internal:3591", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsAddSettingsHandler", "ret": "void", @@ -39964,7 +40726,7 @@ "cimguiname": "igTableSettingsCreate", "defaults": {}, "funcname": "TableSettingsCreate", - "location": "imgui_internal:3577", + "location": "imgui_internal:3592", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsCreate", "ret": "ImGuiTableSettings*", @@ -39987,7 +40749,7 @@ "cimguiname": "igTableSettingsFindByID", "defaults": {}, "funcname": "TableSettingsFindByID", - "location": "imgui_internal:3578", + "location": "imgui_internal:3593", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsFindByID", "ret": "ImGuiTableSettings*", @@ -40049,7 +40811,7 @@ "cimguiname": "igTableSetupDrawChannels", "defaults": {}, "funcname": "TableSetupDrawChannels", - "location": "imgui_internal:3538", + "location": "imgui_internal:3552", "namespace": "ImGui", "ov_cimguiname": "igTableSetupDrawChannels", "ret": "void", @@ -40099,7 +40861,7 @@ "cimguiname": "igTableSortSpecsBuild", "defaults": {}, "funcname": "TableSortSpecsBuild", - "location": "imgui_internal:3550", + "location": "imgui_internal:3565", "namespace": "ImGui", "ov_cimguiname": "igTableSortSpecsBuild", "ret": "void", @@ -40122,7 +40884,7 @@ "cimguiname": "igTableSortSpecsSanitize", "defaults": {}, "funcname": "TableSortSpecsSanitize", - "location": "imgui_internal:3549", + "location": "imgui_internal:3564", "namespace": "ImGui", "ov_cimguiname": "igTableSortSpecsSanitize", "ret": "void", @@ -40145,7 +40907,7 @@ "cimguiname": "igTableUpdateBorders", "defaults": {}, "funcname": "TableUpdateBorders", - "location": "imgui_internal:3540", + "location": "imgui_internal:3554", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateBorders", "ret": "void", @@ -40168,7 +40930,7 @@ "cimguiname": "igTableUpdateColumnsWeightFromWidth", "defaults": {}, "funcname": "TableUpdateColumnsWeightFromWidth", - "location": "imgui_internal:3541", + "location": "imgui_internal:3555", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateColumnsWeightFromWidth", "ret": "void", @@ -40191,7 +40953,7 @@ "cimguiname": "igTableUpdateLayout", "defaults": {}, "funcname": "TableUpdateLayout", - "location": "imgui_internal:3539", + "location": "imgui_internal:3553", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateLayout", "ret": "void", @@ -40214,7 +40976,7 @@ "cimguiname": "igTeleportMousePos", "defaults": {}, "funcname": "TeleportMousePos", - "location": "imgui_internal:3410", + "location": "imgui_internal:3423", "namespace": "ImGui", "ov_cimguiname": "igTeleportMousePos", "ret": "void", @@ -40237,7 +40999,7 @@ "cimguiname": "igTempInputIsActive", "defaults": {}, "funcname": "TempInputIsActive", - "location": "imgui_internal:3695", + "location": "imgui_internal:3710", "namespace": "ImGui", "ov_cimguiname": "igTempInputIsActive", "ret": "bool", @@ -40291,7 +41053,7 @@ "p_clamp_min": "NULL" }, "funcname": "TempInputScalar", - "location": "imgui_internal:3694", + "location": "imgui_internal:3709", "namespace": "ImGui", "ov_cimguiname": "igTempInputScalar", "ret": "bool", @@ -40346,7 +41108,7 @@ "user_data": "NULL" }, "funcname": "TempInputText", - "location": "imgui_internal:3693", + "location": "imgui_internal:3708", "namespace": "ImGui", "ov_cimguiname": "igTempInputText", "ret": "bool", @@ -40373,7 +41135,7 @@ "cimguiname": "igTestKeyOwner", "defaults": {}, "funcname": "TestKeyOwner", - "location": "imgui_internal:3429", + "location": "imgui_internal:3442", "namespace": "ImGui", "ov_cimguiname": "igTestKeyOwner", "ret": "bool", @@ -40400,7 +41162,7 @@ "cimguiname": "igTestShortcutRouting", "defaults": {}, "funcname": "TestShortcutRouting", - "location": "imgui_internal:3463", + "location": "imgui_internal:3476", "namespace": "ImGui", "ov_cimguiname": "igTestShortcutRouting", "ret": "bool", @@ -40464,7 +41226,7 @@ "defaults": {}, "funcname": "TextAligned", "isvararg": "...)", - "location": "imgui_internal:3634", + "location": "imgui_internal:3649", "namespace": "ImGui", "ov_cimguiname": "igTextAligned", "ret": "void", @@ -40499,7 +41261,7 @@ "cimguiname": "igTextAlignedV", "defaults": {}, "funcname": "TextAlignedV", - "location": "imgui_internal:3635", + "location": "imgui_internal:3650", "namespace": "ImGui", "ov_cimguiname": "igTextAlignedV", "ret": "void", @@ -40651,7 +41413,7 @@ "text_end": "NULL" }, "funcname": "TextEx", - "location": "imgui_internal:3633", + "location": "imgui_internal:3648", "namespace": "ImGui", "ov_cimguiname": "igTextEx", "ret": "void", @@ -40934,7 +41696,7 @@ "label_end": "NULL" }, "funcname": "TreeNodeBehavior", - "location": "imgui_internal:3664", + "location": "imgui_internal:3679", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeBehavior", "ret": "bool", @@ -40957,7 +41719,7 @@ "cimguiname": "igTreeNodeDrawLineToChildNode", "defaults": {}, "funcname": "TreeNodeDrawLineToChildNode", - "location": "imgui_internal:3665", + "location": "imgui_internal:3680", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeDrawLineToChildNode", "ret": "void", @@ -40980,7 +41742,7 @@ "cimguiname": "igTreeNodeDrawLineToTreePop", "defaults": {}, "funcname": "TreeNodeDrawLineToTreePop", - "location": "imgui_internal:3666", + "location": "imgui_internal:3681", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeDrawLineToTreePop", "ret": "void", @@ -41195,7 +41957,7 @@ "cimguiname": "igTreeNodeSetOpen", "defaults": {}, "funcname": "TreeNodeSetOpen", - "location": "imgui_internal:3668", + "location": "imgui_internal:3683", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeSetOpen", "ret": "void", @@ -41222,7 +41984,7 @@ "cimguiname": "igTreeNodeUpdateNextOpen", "defaults": {}, "funcname": "TreeNodeUpdateNextOpen", - "location": "imgui_internal:3669", + "location": "imgui_internal:3684", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeUpdateNextOpen", "ret": "bool", @@ -41367,7 +42129,7 @@ "cimguiname": "igTreePushOverrideID", "defaults": {}, "funcname": "TreePushOverrideID", - "location": "imgui_internal:3667", + "location": "imgui_internal:3682", "namespace": "ImGui", "ov_cimguiname": "igTreePushOverrideID", "ret": "void", @@ -41404,7 +42166,7 @@ "cimguiname": "igTypingSelectFindBestLeadingMatch", "defaults": {}, "funcname": "TypingSelectFindBestLeadingMatch", - "location": "imgui_internal:3493", + "location": "imgui_internal:3507", "namespace": "ImGui", "ov_cimguiname": "igTypingSelectFindBestLeadingMatch", "ret": "int", @@ -41445,7 +42207,7 @@ "cimguiname": "igTypingSelectFindMatch", "defaults": {}, "funcname": "TypingSelectFindMatch", - "location": "imgui_internal:3491", + "location": "imgui_internal:3505", "namespace": "ImGui", "ov_cimguiname": "igTypingSelectFindMatch", "ret": "int", @@ -41486,7 +42248,7 @@ "cimguiname": "igTypingSelectFindNextSingleCharMatch", "defaults": {}, "funcname": "TypingSelectFindNextSingleCharMatch", - "location": "imgui_internal:3492", + "location": "imgui_internal:3506", "namespace": "ImGui", "ov_cimguiname": "igTypingSelectFindNextSingleCharMatch", "ret": "int", @@ -41534,7 +42296,7 @@ "cimguiname": "igUnregisterFontAtlas", "defaults": {}, "funcname": "UnregisterFontAtlas", - "location": "imgui_internal:3211", + "location": "imgui_internal:3223", "namespace": "ImGui", "ov_cimguiname": "igUnregisterFontAtlas", "ret": "void", @@ -41557,7 +42319,7 @@ "cimguiname": "igUnregisterUserTexture", "defaults": {}, "funcname": "UnregisterUserTexture", - "location": "imgui_internal:3209", + "location": "imgui_internal:3221", "namespace": "ImGui", "ov_cimguiname": "igUnregisterUserTexture", "ret": "void", @@ -41580,7 +42342,7 @@ "cimguiname": "igUpdateCurrentFontSize", "defaults": {}, "funcname": "UpdateCurrentFontSize", - "location": "imgui_internal:3213", + "location": "imgui_internal:3225", "namespace": "ImGui", "ov_cimguiname": "igUpdateCurrentFontSize", "ret": "void", @@ -41603,7 +42365,7 @@ "cimguiname": "igUpdateHoveredWindowAndCaptureFlags", "defaults": {}, "funcname": "UpdateHoveredWindowAndCaptureFlags", - "location": "imgui_internal:3237", + "location": "imgui_internal:3249", "namespace": "ImGui", "ov_cimguiname": "igUpdateHoveredWindowAndCaptureFlags", "ret": "void", @@ -41626,7 +42388,7 @@ "cimguiname": "igUpdateInputEvents", "defaults": {}, "funcname": "UpdateInputEvents", - "location": "imgui_internal:3236", + "location": "imgui_internal:3248", "namespace": "ImGui", "ov_cimguiname": "igUpdateInputEvents", "ret": "void", @@ -41644,7 +42406,7 @@ "cimguiname": "igUpdateMouseMovingWindowEndFrame", "defaults": {}, "funcname": "UpdateMouseMovingWindowEndFrame", - "location": "imgui_internal:3242", + "location": "imgui_internal:3254", "namespace": "ImGui", "ov_cimguiname": "igUpdateMouseMovingWindowEndFrame", "ret": "void", @@ -41662,7 +42424,7 @@ "cimguiname": "igUpdateMouseMovingWindowNewFrame", "defaults": {}, "funcname": "UpdateMouseMovingWindowNewFrame", - "location": "imgui_internal:3241", + "location": "imgui_internal:3253", "namespace": "ImGui", "ov_cimguiname": "igUpdateMouseMovingWindowNewFrame", "ret": "void", @@ -41693,7 +42455,7 @@ "cimguiname": "igUpdateWindowParentAndRootLinks", "defaults": {}, "funcname": "UpdateWindowParentAndRootLinks", - "location": "imgui_internal:3175", + "location": "imgui_internal:3187", "namespace": "ImGui", "ov_cimguiname": "igUpdateWindowParentAndRootLinks", "ret": "void", @@ -41716,7 +42478,7 @@ "cimguiname": "igUpdateWindowSkipRefresh", "defaults": {}, "funcname": "UpdateWindowSkipRefresh", - "location": "imgui_internal:3176", + "location": "imgui_internal:3188", "namespace": "ImGui", "ov_cimguiname": "igUpdateWindowSkipRefresh", "ret": "void", @@ -42006,7 +42768,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "WindowPosAbsToRel", - "location": "imgui_internal:3191", + "location": "imgui_internal:3203", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igWindowPosAbsToRel", @@ -42035,7 +42797,7 @@ "conv": "ImVec2", "defaults": {}, "funcname": "WindowPosRelToAbs", - "location": "imgui_internal:3192", + "location": "imgui_internal:3204", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igWindowPosRelToAbs", @@ -42064,7 +42826,7 @@ "conv": "ImRect", "defaults": {}, "funcname": "WindowRectAbsToRel", - "location": "imgui_internal:3189", + "location": "imgui_internal:3201", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igWindowRectAbsToRel", @@ -42093,7 +42855,7 @@ "conv": "ImRect", "defaults": {}, "funcname": "WindowRectRelToAbs", - "location": "imgui_internal:3190", + "location": "imgui_internal:3202", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igWindowRectRelToAbs", diff --git a/generator/output/definitions.lua b/generator/output/definitions.lua index f778df4..969eaf8 100644 --- a/generator/output/definitions.lua +++ b/generator/output/definitions.lua @@ -12,7 +12,8 @@ local t={ cimguiname="ImBitArray_ClearAllBits", defaults={}, funcname="ClearAllBits", - location="imgui_internal:648", + location="imgui_internal:654", + namespace="ImBitArray", ov_cimguiname="ImBitArray_ClearAllBits", ret="void", signature="()", @@ -35,7 +36,8 @@ local t={ cimguiname="ImBitArray_ClearBit", defaults={}, funcname="ClearBit", - location="imgui_internal:652", + location="imgui_internal:658", + namespace="ImBitArray", ov_cimguiname="ImBitArray_ClearBit", ret="void", signature="(int)", @@ -53,7 +55,8 @@ local t={ constructor=true, defaults={}, funcname="ImBitArray", - location="imgui_internal:647", + location="imgui_internal:653", + namespace="ImBitArray", ov_cimguiname="ImBitArray_ImBitArray", signature="()", stname="ImBitArray", @@ -72,7 +75,8 @@ local t={ cimguiname="ImBitArray_SetAllBits", defaults={}, funcname="SetAllBits", - location="imgui_internal:649", + location="imgui_internal:655", + namespace="ImBitArray", ov_cimguiname="ImBitArray_SetAllBits", ret="void", signature="()", @@ -95,7 +99,8 @@ local t={ cimguiname="ImBitArray_SetBit", defaults={}, funcname="SetBit", - location="imgui_internal:651", + location="imgui_internal:657", + namespace="ImBitArray", ov_cimguiname="ImBitArray_SetBit", ret="void", signature="(int)", @@ -121,7 +126,8 @@ local t={ cimguiname="ImBitArray_SetBitRange", defaults={}, funcname="SetBitRange", - location="imgui_internal:653", + location="imgui_internal:659", + namespace="ImBitArray", ov_cimguiname="ImBitArray_SetBitRange", ret="void", signature="(int,int)", @@ -144,7 +150,8 @@ local t={ cimguiname="ImBitArray_TestBit", defaults={}, funcname="TestBit", - location="imgui_internal:650", + location="imgui_internal:656", + namespace="ImBitArray", ov_cimguiname="ImBitArray_TestBit", ret="bool", signature="(int)const", @@ -162,7 +169,7 @@ local t={ cimguiname="ImBitArray_destroy", defaults={}, destructor=true, - location="imgui_internal:647", + location="imgui_internal:653", ov_cimguiname="ImBitArray_destroy", ret="void", signature="(ImBitArray*)", @@ -182,7 +189,8 @@ local t={ cimguiname="ImBitVector_Clear", defaults={}, funcname="Clear", - location="imgui_internal:663", + location="imgui_internal:669", + namespace="ImBitVector", ov_cimguiname="ImBitVector_Clear", ret="void", signature="()", @@ -204,7 +212,8 @@ local t={ cimguiname="ImBitVector_ClearBit", defaults={}, funcname="ClearBit", - location="imgui_internal:666", + location="imgui_internal:672", + namespace="ImBitVector", ov_cimguiname="ImBitVector_ClearBit", ret="void", signature="(int)", @@ -226,7 +235,8 @@ local t={ cimguiname="ImBitVector_Create", defaults={}, funcname="Create", - location="imgui_internal:662", + location="imgui_internal:668", + namespace="ImBitVector", ov_cimguiname="ImBitVector_Create", ret="void", signature="(int)", @@ -248,7 +258,8 @@ local t={ cimguiname="ImBitVector_SetBit", defaults={}, funcname="SetBit", - location="imgui_internal:665", + location="imgui_internal:671", + namespace="ImBitVector", ov_cimguiname="ImBitVector_SetBit", ret="void", signature="(int)", @@ -270,7 +281,8 @@ local t={ cimguiname="ImBitVector_TestBit", defaults={}, funcname="TestBit", - location="imgui_internal:664", + location="imgui_internal:670", + namespace="ImBitVector", ov_cimguiname="ImBitVector_TestBit", ret="bool", signature="(int)const", @@ -292,7 +304,8 @@ local t={ cimguiname="ImChunkStream_alloc_chunk", defaults={}, funcname="alloc_chunk", - location="imgui_internal:800", + location="imgui_internal:806", + namespace="ImChunkStream", ov_cimguiname="ImChunkStream_alloc_chunk", ret="T*", signature="(size_t)", @@ -312,7 +325,8 @@ local t={ cimguiname="ImChunkStream_begin", defaults={}, funcname="begin", - location="imgui_internal:801", + location="imgui_internal:807", + namespace="ImChunkStream", ov_cimguiname="ImChunkStream_begin", ret="T*", signature="()", @@ -335,7 +349,8 @@ local t={ cimguiname="ImChunkStream_chunk_size", defaults={}, funcname="chunk_size", - location="imgui_internal:803", + location="imgui_internal:809", + namespace="ImChunkStream", ov_cimguiname="ImChunkStream_chunk_size", ret="int", signature="(const T*)", @@ -355,7 +370,8 @@ local t={ cimguiname="ImChunkStream_clear", defaults={}, funcname="clear", - location="imgui_internal:797", + location="imgui_internal:803", + namespace="ImChunkStream", ov_cimguiname="ImChunkStream_clear", ret="void", signature="()", @@ -375,7 +391,8 @@ local t={ cimguiname="ImChunkStream_empty", defaults={}, funcname="empty", - location="imgui_internal:798", + location="imgui_internal:804", + namespace="ImChunkStream", ov_cimguiname="ImChunkStream_empty", ret="bool", signature="()const", @@ -395,7 +412,8 @@ local t={ cimguiname="ImChunkStream_end", defaults={}, funcname="end", - location="imgui_internal:804", + location="imgui_internal:810", + namespace="ImChunkStream", ov_cimguiname="ImChunkStream_end", ret="T*", signature="()", @@ -418,7 +436,8 @@ local t={ cimguiname="ImChunkStream_next_chunk", defaults={}, funcname="next_chunk", - location="imgui_internal:802", + location="imgui_internal:808", + namespace="ImChunkStream", ov_cimguiname="ImChunkStream_next_chunk", ret="T*", signature="(T*)", @@ -441,7 +460,8 @@ local t={ cimguiname="ImChunkStream_offset_from_ptr", defaults={}, funcname="offset_from_ptr", - location="imgui_internal:805", + location="imgui_internal:811", + namespace="ImChunkStream", ov_cimguiname="ImChunkStream_offset_from_ptr", ret="int", signature="(const T*)", @@ -464,7 +484,8 @@ local t={ cimguiname="ImChunkStream_ptr_from_offset", defaults={}, funcname="ptr_from_offset", - location="imgui_internal:806", + location="imgui_internal:812", + namespace="ImChunkStream", ov_cimguiname="ImChunkStream_ptr_from_offset", ret="T*", signature="(int)", @@ -484,7 +505,8 @@ local t={ cimguiname="ImChunkStream_size", defaults={}, funcname="size", - location="imgui_internal:799", + location="imgui_internal:805", + namespace="ImChunkStream", ov_cimguiname="ImChunkStream_size", ret="int", signature="()const", @@ -501,6 +523,7 @@ local t={ [2]={ name="rhs", reftoptr=true, + template_orig="ImChunkStream& rhs", type="ImChunkStream_T *"}}, argsoriginal="(ImChunkStream& rhs)", call_args="(*rhs)", @@ -508,7 +531,8 @@ local t={ cimguiname="ImChunkStream_swap", defaults={}, funcname="swap", - location="imgui_internal:807", + location="imgui_internal:813", + namespace="ImChunkStream", ov_cimguiname="ImChunkStream_swap", ret="void", signature="(ImChunkStream_T *)", @@ -540,7 +564,8 @@ local t={ a="1.0f"}, funcname="HSV", is_static_function=true, - location="imgui:2982", + location="imgui:2985", + namespace="ImColor", nonUDT=1, ov_cimguiname="ImColor_HSV", ret="ImColor_c", @@ -558,7 +583,8 @@ local t={ constructor=true, defaults={}, funcname="ImColor", - location="imgui:2972", + location="imgui:2975", + namespace="ImColor", ov_cimguiname="ImColor_ImColor_Nil", signature="()", stname="ImColor"}, @@ -585,7 +611,8 @@ local t={ defaults={ a="1.0f"}, funcname="ImColor", - location="imgui:2973", + location="imgui:2976", + namespace="ImColor", ov_cimguiname="ImColor_ImColor_Float", signature="(float,float,float,float)", stname="ImColor"}, @@ -602,7 +629,8 @@ local t={ constructor=true, defaults={}, funcname="ImColor", - location="imgui:2974", + location="imgui:2977", + namespace="ImColor", ov_cimguiname="ImColor_ImColor_Vec4", signature="(const ImVec4)", stname="ImColor"}, @@ -629,7 +657,8 @@ local t={ defaults={ a="255"}, funcname="ImColor", - location="imgui:2975", + location="imgui:2978", + namespace="ImColor", ov_cimguiname="ImColor_ImColor_Int", signature="(int,int,int,int)", stname="ImColor"}, @@ -646,7 +675,8 @@ local t={ constructor=true, defaults={}, funcname="ImColor", - location="imgui:2976", + location="imgui:2979", + namespace="ImColor", ov_cimguiname="ImColor_ImColor_U32", signature="(ImU32)", stname="ImColor"}, @@ -681,7 +711,8 @@ local t={ defaults={ a="1.0f"}, funcname="SetHSV", - location="imgui:2981", + location="imgui:2984", + namespace="ImColor", ov_cimguiname="ImColor_SetHSV", ret="void", signature="(float,float,float,float)", @@ -698,7 +729,7 @@ local t={ cimguiname="ImColor_destroy", defaults={}, destructor=true, - location="imgui:2972", + location="imgui:2975", ov_cimguiname="ImColor_destroy", ret="void", signature="(ImColor*)", @@ -717,7 +748,8 @@ local t={ cimguiname="ImDrawCmd_GetTexID", defaults={}, funcname="GetTexID", - location="imgui:3196", + location="imgui:3193", + namespace="ImDrawCmd", ov_cimguiname="ImDrawCmd_GetTexID", ret="ImTextureID", signature="()const", @@ -734,7 +766,8 @@ local t={ constructor=true, defaults={}, funcname="ImDrawCmd", - location="imgui:3192", + location="imgui:3189", + namespace="ImDrawCmd", ov_cimguiname="ImDrawCmd_ImDrawCmd", signature="()", stname="ImDrawCmd"}, @@ -750,7 +783,7 @@ local t={ cimguiname="ImDrawCmd_destroy", defaults={}, destructor=true, - location="imgui:3192", + location="imgui:3189", ov_cimguiname="ImDrawCmd_destroy", ret="void", signature="(ImDrawCmd*)", @@ -767,7 +800,8 @@ local t={ constructor=true, defaults={}, funcname="ImDrawDataBuilder", - location="imgui_internal:892", + location="imgui_internal:898", + namespace="ImDrawDataBuilder", ov_cimguiname="ImDrawDataBuilder_ImDrawDataBuilder", signature="()", stname="ImDrawDataBuilder"}, @@ -783,7 +817,7 @@ local t={ cimguiname="ImDrawDataBuilder_destroy", defaults={}, destructor=true, - location="imgui_internal:892", + location="imgui_internal:898", ov_cimguiname="ImDrawDataBuilder_destroy", ret="void", signature="(ImDrawDataBuilder*)", @@ -805,7 +839,8 @@ local t={ cimguiname="ImDrawData_AddDrawList", defaults={}, funcname="AddDrawList", - location="imgui:3461", + location="imgui:3468", + namespace="ImDrawData", ov_cimguiname="ImDrawData_AddDrawList", ret="void", signature="(ImDrawList*)", @@ -824,7 +859,8 @@ local t={ cimguiname="ImDrawData_Clear", defaults={}, funcname="Clear", - location="imgui:3460", + location="imgui:3467", + namespace="ImDrawData", ov_cimguiname="ImDrawData_Clear", ret="void", signature="()", @@ -843,7 +879,8 @@ local t={ cimguiname="ImDrawData_DeIndexAllBuffers", defaults={}, funcname="DeIndexAllBuffers", - location="imgui:3462", + location="imgui:3469", + namespace="ImDrawData", ov_cimguiname="ImDrawData_DeIndexAllBuffers", ret="void", signature="()", @@ -860,7 +897,8 @@ local t={ constructor=true, defaults={}, funcname="ImDrawData", - location="imgui:3459", + location="imgui:3466", + namespace="ImDrawData", ov_cimguiname="ImDrawData_ImDrawData", signature="()", stname="ImDrawData"}, @@ -881,7 +919,8 @@ local t={ cimguiname="ImDrawData_ScaleClipRects", defaults={}, funcname="ScaleClipRects", - location="imgui:3463", + location="imgui:3470", + namespace="ImDrawData", ov_cimguiname="ImDrawData_ScaleClipRects", ret="void", signature="(const ImVec2)", @@ -898,7 +937,7 @@ local t={ cimguiname="ImDrawData_destroy", defaults={}, destructor=true, - location="imgui:3459", + location="imgui:3466", ov_cimguiname="ImDrawData_destroy", ret="void", signature="(ImDrawData*)", @@ -915,7 +954,8 @@ local t={ constructor=true, defaults={}, funcname="ImDrawListSharedData", - location="imgui_internal:882", + location="imgui_internal:888", + namespace="ImDrawListSharedData", ov_cimguiname="ImDrawListSharedData_ImDrawListSharedData", signature="()", stname="ImDrawListSharedData"}, @@ -936,7 +976,8 @@ local t={ cimguiname="ImDrawListSharedData_SetCircleTessellationMaxError", defaults={}, funcname="SetCircleTessellationMaxError", - location="imgui_internal:884", + location="imgui_internal:890", + namespace="ImDrawListSharedData", ov_cimguiname="ImDrawListSharedData_SetCircleTessellationMaxError", ret="void", signature="(float)", @@ -953,7 +994,7 @@ local t={ cimguiname="ImDrawListSharedData_destroy", defaults={}, destructor=true, - location="imgui_internal:883", + location="imgui_internal:889", ov_cimguiname="ImDrawListSharedData_destroy", realdestructor=true, ret="void", @@ -973,7 +1014,8 @@ local t={ cimguiname="ImDrawListSplitter_Clear", defaults={}, funcname="Clear", - location="imgui:3240", + location="imgui:3237", + namespace="ImDrawListSplitter", ov_cimguiname="ImDrawListSplitter_Clear", ret="void", signature="()", @@ -992,7 +1034,8 @@ local t={ cimguiname="ImDrawListSplitter_ClearFreeMemory", defaults={}, funcname="ClearFreeMemory", - location="imgui:3241", + location="imgui:3238", + namespace="ImDrawListSplitter", ov_cimguiname="ImDrawListSplitter_ClearFreeMemory", ret="void", signature="()", @@ -1009,7 +1052,8 @@ local t={ constructor=true, defaults={}, funcname="ImDrawListSplitter", - location="imgui:3238", + location="imgui:3235", + namespace="ImDrawListSplitter", ov_cimguiname="ImDrawListSplitter_ImDrawListSplitter", signature="()", stname="ImDrawListSplitter"}, @@ -1030,7 +1074,8 @@ local t={ cimguiname="ImDrawListSplitter_Merge", defaults={}, funcname="Merge", - location="imgui:3243", + location="imgui:3240", + namespace="ImDrawListSplitter", ov_cimguiname="ImDrawListSplitter_Merge", ret="void", signature="(ImDrawList*)", @@ -1055,7 +1100,8 @@ local t={ cimguiname="ImDrawListSplitter_SetCurrentChannel", defaults={}, funcname="SetCurrentChannel", - location="imgui:3244", + location="imgui:3241", + namespace="ImDrawListSplitter", ov_cimguiname="ImDrawListSplitter_SetCurrentChannel", ret="void", signature="(ImDrawList*,int)", @@ -1080,7 +1126,8 @@ local t={ cimguiname="ImDrawListSplitter_Split", defaults={}, funcname="Split", - location="imgui:3242", + location="imgui:3239", + namespace="ImDrawListSplitter", ov_cimguiname="ImDrawListSplitter_Split", ret="void", signature="(ImDrawList*,int)", @@ -1097,7 +1144,7 @@ local t={ cimguiname="ImDrawListSplitter_destroy", defaults={}, destructor=true, - location="imgui:3239", + location="imgui:3236", ov_cimguiname="ImDrawListSplitter_destroy", realdestructor=true, ret="void", @@ -1139,7 +1186,8 @@ local t={ defaults={ num_segments="0"}, funcname="AddBezierCubic", - location="imgui:3345", + location="imgui:3344", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddBezierCubic", ret="void", signature="(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1177,7 +1225,8 @@ local t={ defaults={ num_segments="0"}, funcname="AddBezierQuadratic", - location="imgui:3346", + location="imgui:3345", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddBezierQuadratic", ret="void", signature="(const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1199,14 +1248,16 @@ local t={ [4]={ name="userdata_size", type="size_t"}}, - argsoriginal="(ImDrawCallback callback,void* userdata,size_t userdata_size=0)", + argsoriginal="(ImDrawCallback callback,void* userdata=((void*)0),size_t userdata_size=0)", call_args="(callback,userdata,userdata_size)", call_args_old="(callback,userdata,userdata_size)", cimguiname="ImDrawList_AddCallback", defaults={ + userdata="NULL", userdata_size="0"}, funcname="AddCallback", location="imgui:3388", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddCallback", ret="void", signature="(ImDrawCallback,void*,size_t)", @@ -1242,7 +1293,8 @@ local t={ num_segments="0", thickness="1.0f"}, funcname="AddCircle", - location="imgui:3337", + location="imgui:3336", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddCircle", ret="void", signature="(const ImVec2,float,ImU32,int,float)", @@ -1274,7 +1326,8 @@ local t={ defaults={ num_segments="0"}, funcname="AddCircleFilled", - location="imgui:3338", + location="imgui:3337", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddCircleFilled", ret="void", signature="(const ImVec2,float,ImU32,int)", @@ -1302,7 +1355,8 @@ local t={ cimguiname="ImDrawList_AddConcavePolyFilled", defaults={}, funcname="AddConcavePolyFilled", - location="imgui:3353", + location="imgui:3352", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddConcavePolyFilled", ret="void", signature="(const ImVec2*,int,ImU32)", @@ -1330,7 +1384,8 @@ local t={ cimguiname="ImDrawList_AddConvexPolyFilled", defaults={}, funcname="AddConvexPolyFilled", - location="imgui:3352", + location="imgui:3351", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddConvexPolyFilled", ret="void", signature="(const ImVec2*,int,ImU32)", @@ -1350,6 +1405,7 @@ local t={ defaults={}, funcname="AddDrawCmd", location="imgui:3391", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddDrawCmd", ret="void", signature="()", @@ -1389,7 +1445,8 @@ local t={ rot="0.0f", thickness="1.0f"}, funcname="AddEllipse", - location="imgui:3341", + location="imgui:3340", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddEllipse", ret="void", signature="(const ImVec2,const ImVec2,ImU32,float,int,float)", @@ -1425,7 +1482,8 @@ local t={ num_segments="0", rot="0.0f"}, funcname="AddEllipseFilled", - location="imgui:3342", + location="imgui:3341", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddEllipseFilled", ret="void", signature="(const ImVec2,const ImVec2,ImU32,float,int)", @@ -1465,7 +1523,8 @@ local t={ uv_max="ImVec2(1,1)", uv_min="ImVec2(0,0)"}, funcname="AddImage", - location="imgui:3359", + location="imgui:3358", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddImage", ret="void", signature="(ImTextureRef,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1519,7 +1578,8 @@ local t={ uv3="ImVec2(1,1)", uv4="ImVec2(0,1)"}, funcname="AddImageQuad", - location="imgui:3360", + location="imgui:3359", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddImageQuad", ret="void", signature="(ImTextureRef,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1563,7 +1623,8 @@ local t={ defaults={ flags="0"}, funcname="AddImageRounded", - location="imgui:3361", + location="imgui:3360", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddImageRounded", ret="void", signature="(ImTextureRef,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -1595,12 +1656,85 @@ local t={ defaults={ thickness="1.0f"}, funcname="AddLine", - location="imgui:3329", + location="imgui:3326", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddLine", ret="void", signature="(const ImVec2,const ImVec2,ImU32,float)", stname="ImDrawList"}, ["(const ImVec2,const ImVec2,ImU32,float)"]=nil}, + ImDrawList_AddLineH={ + [1]={ + args="(ImDrawList* self,float min_x,float max_x,float y,ImU32 col,float thickness)", + argsT={ + [1]={ + name="self", + type="ImDrawList*"}, + [2]={ + name="min_x", + type="float"}, + [3]={ + name="max_x", + type="float"}, + [4]={ + name="y", + type="float"}, + [5]={ + name="col", + type="ImU32"}, + [6]={ + name="thickness", + type="float"}}, + argsoriginal="(float min_x,float max_x,float y,ImU32 col,float thickness=1.0f)", + call_args="(min_x,max_x,y,col,thickness)", + call_args_old="(min_x,max_x,y,col,thickness)", + cimguiname="ImDrawList_AddLineH", + defaults={ + thickness="1.0f"}, + funcname="AddLineH", + location="imgui:3327", + namespace="ImDrawList", + ov_cimguiname="ImDrawList_AddLineH", + ret="void", + signature="(float,float,float,ImU32,float)", + stname="ImDrawList"}, + ["(float,float,float,ImU32,float)"]=nil}, + ImDrawList_AddLineV={ + [1]={ + args="(ImDrawList* self,float x,float min_y,float max_y,ImU32 col,float thickness)", + argsT={ + [1]={ + name="self", + type="ImDrawList*"}, + [2]={ + name="x", + type="float"}, + [3]={ + name="min_y", + type="float"}, + [4]={ + name="max_y", + type="float"}, + [5]={ + name="col", + type="ImU32"}, + [6]={ + name="thickness", + type="float"}}, + argsoriginal="(float x,float min_y,float max_y,ImU32 col,float thickness=1.0f)", + call_args="(x,min_y,max_y,col,thickness)", + call_args_old="(x,min_y,max_y,col,thickness)", + cimguiname="ImDrawList_AddLineV", + defaults={ + thickness="1.0f"}, + funcname="AddLineV", + location="imgui:3328", + namespace="ImDrawList", + ov_cimguiname="ImDrawList_AddLineV", + ret="void", + signature="(float,float,float,ImU32,float)", + stname="ImDrawList"}, + ["(float,float,float,ImU32,float)"]=nil}, ImDrawList_AddNgon={ [1]={ args="(ImDrawList* self,const ImVec2_c center,float radius,ImU32 col,int num_segments,float thickness)", @@ -1630,7 +1764,8 @@ local t={ defaults={ thickness="1.0f"}, funcname="AddNgon", - location="imgui:3339", + location="imgui:3338", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddNgon", ret="void", signature="(const ImVec2,float,ImU32,int,float)", @@ -1661,7 +1796,8 @@ local t={ cimguiname="ImDrawList_AddNgonFilled", defaults={}, funcname="AddNgonFilled", - location="imgui:3340", + location="imgui:3339", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddNgonFilled", ret="void", signature="(const ImVec2,float,ImU32,int)", @@ -1669,7 +1805,7 @@ local t={ ["(const ImVec2,float,ImU32,int)"]=nil}, ImDrawList_AddPolyline={ [1]={ - args="(ImDrawList* self,const ImVec2_c* points,int num_points,ImU32 col,ImDrawFlags flags,float thickness)", + args="(ImDrawList* self,const ImVec2_c* points,int num_points,ImU32 col,float thickness,ImDrawFlags flags)", argsT={ [1]={ name="self", @@ -1684,23 +1820,25 @@ local t={ name="col", type="ImU32"}, [5]={ - name="flags", - type="ImDrawFlags"}, - [6]={ name="thickness", - type="float"}}, - argsoriginal="(const ImVec2* points,int num_points,ImU32 col,ImDrawFlags flags,float thickness)", - call_args="(reinterpret_cast(points),num_points,col,flags,thickness)", - call_args_old="(points,num_points,col,flags,thickness)", + type="float"}, + [6]={ + name="flags", + type="ImDrawFlags"}}, + argsoriginal="(const ImVec2* points,int num_points,ImU32 col,float thickness,ImDrawFlags flags=0)", + call_args="(reinterpret_cast(points),num_points,col,thickness,flags)", + call_args_old="(points,num_points,col,thickness,flags)", cimguiname="ImDrawList_AddPolyline", - defaults={}, + defaults={ + flags="0"}, funcname="AddPolyline", - location="imgui:3351", + location="imgui:3350", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddPolyline", ret="void", - signature="(const ImVec2*,int,ImU32,ImDrawFlags,float)", + signature="(const ImVec2*,int,ImU32,float,ImDrawFlags)", stname="ImDrawList"}, - ["(const ImVec2*,int,ImU32,ImDrawFlags,float)"]=nil}, + ["(const ImVec2*,int,ImU32,float,ImDrawFlags)"]=nil}, ImDrawList_AddQuad={ [1]={ args="(ImDrawList* self,const ImVec2_c p1,const ImVec2_c p2,const ImVec2_c p3,const ImVec2_c p4,ImU32 col,float thickness)", @@ -1733,7 +1871,8 @@ local t={ defaults={ thickness="1.0f"}, funcname="AddQuad", - location="imgui:3333", + location="imgui:3332", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddQuad", ret="void", signature="(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -1767,7 +1906,8 @@ local t={ cimguiname="ImDrawList_AddQuadFilled", defaults={}, funcname="AddQuadFilled", - location="imgui:3334", + location="imgui:3333", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddQuadFilled", ret="void", signature="(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1775,7 +1915,7 @@ local t={ ["(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)"]=nil}, ImDrawList_AddRect={ [1]={ - args="(ImDrawList* self,const ImVec2_c p_min,const ImVec2_c p_max,ImU32 col,float rounding,ImDrawFlags flags,float thickness)", + args="(ImDrawList* self,const ImVec2_c p_min,const ImVec2_c p_max,ImU32 col,float rounding,float thickness,ImDrawFlags flags)", argsT={ [1]={ name="self", @@ -1793,26 +1933,27 @@ local t={ name="rounding", type="float"}, [6]={ - name="flags", - type="ImDrawFlags"}, - [7]={ name="thickness", - type="float"}}, - argsoriginal="(const ImVec2& p_min,const ImVec2& p_max,ImU32 col,float rounding=0.0f,ImDrawFlags flags=0,float thickness=1.0f)", - call_args="(ConvertToCPP_ImVec2(p_min),ConvertToCPP_ImVec2(p_max),col,rounding,flags,thickness)", - call_args_old="(p_min,p_max,col,rounding,flags,thickness)", + type="float"}, + [7]={ + name="flags", + type="ImDrawFlags"}}, + argsoriginal="(const ImVec2& p_min,const ImVec2& p_max,ImU32 col,float rounding=0.0f,float thickness=1.0f,ImDrawFlags flags=0)", + call_args="(ConvertToCPP_ImVec2(p_min),ConvertToCPP_ImVec2(p_max),col,rounding,thickness,flags)", + call_args_old="(p_min,p_max,col,rounding,thickness,flags)", cimguiname="ImDrawList_AddRect", defaults={ flags="0", rounding="0.0f", thickness="1.0f"}, funcname="AddRect", - location="imgui:3330", + location="imgui:3329", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddRect", ret="void", - signature="(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags,float)", + signature="(const ImVec2,const ImVec2,ImU32,float,float,ImDrawFlags)", stname="ImDrawList"}, - ["(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags,float)"]=nil}, + ["(const ImVec2,const ImVec2,ImU32,float,float,ImDrawFlags)"]=nil}, ImDrawList_AddRectFilled={ [1]={ args="(ImDrawList* self,const ImVec2_c p_min,const ImVec2_c p_max,ImU32 col,float rounding,ImDrawFlags flags)", @@ -1843,7 +1984,8 @@ local t={ flags="0", rounding="0.0f"}, funcname="AddRectFilled", - location="imgui:3331", + location="imgui:3330", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddRectFilled", ret="void", signature="(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -1880,7 +2022,8 @@ local t={ cimguiname="ImDrawList_AddRectFilledMultiColor", defaults={}, funcname="AddRectFilledMultiColor", - location="imgui:3332", + location="imgui:3331", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddRectFilledMultiColor", ret="void", signature="(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)", @@ -1912,7 +2055,8 @@ local t={ defaults={ text_end="NULL"}, funcname="AddText", - location="imgui:3343", + location="imgui:3342", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddText_Vec2", ret="void", signature="(const ImVec2,ImU32,const char*,const char*)", @@ -1956,7 +2100,8 @@ local t={ text_end="NULL", wrap_width="0.0f"}, funcname="AddText", - location="imgui:3344", + location="imgui:3343", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddText_FontPtr", ret="void", signature="(ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)", @@ -1992,7 +2137,8 @@ local t={ defaults={ thickness="1.0f"}, funcname="AddTriangle", - location="imgui:3335", + location="imgui:3334", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddTriangle", ret="void", signature="(const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -2023,7 +2169,8 @@ local t={ cimguiname="ImDrawList_AddTriangleFilled", defaults={}, funcname="AddTriangleFilled", - location="imgui:3336", + location="imgui:3335", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddTriangleFilled", ret="void", signature="(const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2043,6 +2190,7 @@ local t={ defaults={}, funcname="ChannelsMerge", location="imgui:3401", + namespace="ImDrawList", ov_cimguiname="ImDrawList_ChannelsMerge", ret="void", signature="()", @@ -2065,6 +2213,7 @@ local t={ defaults={}, funcname="ChannelsSetCurrent", location="imgui:3402", + namespace="ImDrawList", ov_cimguiname="ImDrawList_ChannelsSetCurrent", ret="void", signature="(int)", @@ -2087,6 +2236,7 @@ local t={ defaults={}, funcname="ChannelsSplit", location="imgui:3400", + namespace="ImDrawList", ov_cimguiname="ImDrawList_ChannelsSplit", ret="void", signature="(int)", @@ -2106,6 +2256,7 @@ local t={ defaults={}, funcname="CloneOutput", location="imgui:3392", + namespace="ImDrawList", ov_cimguiname="ImDrawList_CloneOutput", ret="ImDrawList*", signature="()const", @@ -2125,7 +2276,8 @@ local t={ conv="ImVec2", defaults={}, funcname="GetClipRectMax", - location="imgui:3320", + location="imgui:3317", + namespace="ImDrawList", nonUDT=1, ov_cimguiname="ImDrawList_GetClipRectMax", ret="ImVec2_c", @@ -2146,7 +2298,8 @@ local t={ conv="ImVec2", defaults={}, funcname="GetClipRectMin", - location="imgui:3319", + location="imgui:3316", + namespace="ImDrawList", nonUDT=1, ov_cimguiname="ImDrawList_GetClipRectMin", ret="ImVec2_c", @@ -2167,7 +2320,8 @@ local t={ constructor=true, defaults={}, funcname="ImDrawList", - location="imgui:3311", + location="imgui:3308", + namespace="ImDrawList", ov_cimguiname="ImDrawList_ImDrawList", signature="(ImDrawListSharedData*)", stname="ImDrawList"}, @@ -2201,7 +2355,8 @@ local t={ defaults={ num_segments="0"}, funcname="PathArcTo", - location="imgui:3372", + location="imgui:3371", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PathArcTo", ret="void", signature="(const ImVec2,float,float,float,int)", @@ -2232,7 +2387,8 @@ local t={ cimguiname="ImDrawList_PathArcToFast", defaults={}, funcname="PathArcToFast", - location="imgui:3373", + location="imgui:3372", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PathArcToFast", ret="void", signature="(const ImVec2,float,int,int)", @@ -2264,7 +2420,8 @@ local t={ defaults={ num_segments="0"}, funcname="PathBezierCubicCurveTo", - location="imgui:3375", + location="imgui:3374", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PathBezierCubicCurveTo", ret="void", signature="(const ImVec2,const ImVec2,const ImVec2,int)", @@ -2293,7 +2450,8 @@ local t={ defaults={ num_segments="0"}, funcname="PathBezierQuadraticCurveTo", - location="imgui:3376", + location="imgui:3375", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PathBezierQuadraticCurveTo", ret="void", signature="(const ImVec2,const ImVec2,int)", @@ -2312,7 +2470,8 @@ local t={ cimguiname="ImDrawList_PathClear", defaults={}, funcname="PathClear", - location="imgui:3366", + location="imgui:3365", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PathClear", ret="void", signature="()", @@ -2350,7 +2509,8 @@ local t={ defaults={ num_segments="0"}, funcname="PathEllipticalArcTo", - location="imgui:3374", + location="imgui:3373", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PathEllipticalArcTo", ret="void", signature="(const ImVec2,const ImVec2,float,float,float,int)", @@ -2372,7 +2532,8 @@ local t={ cimguiname="ImDrawList_PathFillConcave", defaults={}, funcname="PathFillConcave", - location="imgui:3370", + location="imgui:3369", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PathFillConcave", ret="void", signature="(ImU32)", @@ -2394,7 +2555,8 @@ local t={ cimguiname="ImDrawList_PathFillConvex", defaults={}, funcname="PathFillConvex", - location="imgui:3369", + location="imgui:3368", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PathFillConvex", ret="void", signature="(ImU32)", @@ -2416,7 +2578,8 @@ local t={ cimguiname="ImDrawList_PathLineTo", defaults={}, funcname="PathLineTo", - location="imgui:3367", + location="imgui:3366", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PathLineTo", ret="void", signature="(const ImVec2)", @@ -2438,7 +2601,8 @@ local t={ cimguiname="ImDrawList_PathLineToMergeDuplicate", defaults={}, funcname="PathLineToMergeDuplicate", - location="imgui:3368", + location="imgui:3367", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PathLineToMergeDuplicate", ret="void", signature="(const ImVec2)", @@ -2471,7 +2635,8 @@ local t={ flags="0", rounding="0.0f"}, funcname="PathRect", - location="imgui:3377", + location="imgui:3376", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PathRect", ret="void", signature="(const ImVec2,const ImVec2,float,ImDrawFlags)", @@ -2479,7 +2644,7 @@ local t={ ["(const ImVec2,const ImVec2,float,ImDrawFlags)"]=nil}, ImDrawList_PathStroke={ [1]={ - args="(ImDrawList* self,ImU32 col,ImDrawFlags flags,float thickness)", + args="(ImDrawList* self,ImU32 col,float thickness,ImDrawFlags flags)", argsT={ [1]={ name="self", @@ -2488,25 +2653,26 @@ local t={ name="col", type="ImU32"}, [3]={ - name="flags", - type="ImDrawFlags"}, - [4]={ name="thickness", - type="float"}}, - argsoriginal="(ImU32 col,ImDrawFlags flags=0,float thickness=1.0f)", - call_args="(col,flags,thickness)", - call_args_old="(col,flags,thickness)", + type="float"}, + [4]={ + name="flags", + type="ImDrawFlags"}}, + argsoriginal="(ImU32 col,float thickness=1.0f,ImDrawFlags flags=0)", + call_args="(col,thickness,flags)", + call_args_old="(col,thickness,flags)", cimguiname="ImDrawList_PathStroke", defaults={ flags="0", thickness="1.0f"}, funcname="PathStroke", - location="imgui:3371", + location="imgui:3370", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PathStroke", ret="void", - signature="(ImU32,ImDrawFlags,float)", + signature="(ImU32,float,ImDrawFlags)", stname="ImDrawList"}, - ["(ImU32,ImDrawFlags,float)"]=nil}, + ["(ImU32,float,ImDrawFlags)"]=nil}, ImDrawList_PopClipRect={ [1]={ args="(ImDrawList* self)", @@ -2520,7 +2686,8 @@ local t={ cimguiname="ImDrawList_PopClipRect", defaults={}, funcname="PopClipRect", - location="imgui:3316", + location="imgui:3313", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PopClipRect", ret="void", signature="()", @@ -2539,7 +2706,8 @@ local t={ cimguiname="ImDrawList_PopTexture", defaults={}, funcname="PopTexture", - location="imgui:3318", + location="imgui:3315", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PopTexture", ret="void", signature="()", @@ -2586,6 +2754,7 @@ local t={ defaults={}, funcname="PrimQuadUV", location="imgui:3411", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PrimQuadUV", ret="void", signature="(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2614,6 +2783,7 @@ local t={ defaults={}, funcname="PrimRect", location="imgui:3409", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PrimRect", ret="void", signature="(const ImVec2,const ImVec2,ImU32)", @@ -2648,6 +2818,7 @@ local t={ defaults={}, funcname="PrimRectUV", location="imgui:3410", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PrimRectUV", ret="void", signature="(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2673,6 +2844,7 @@ local t={ defaults={}, funcname="PrimReserve", location="imgui:3407", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PrimReserve", ret="void", signature="(int,int)", @@ -2698,6 +2870,7 @@ local t={ defaults={}, funcname="PrimUnreserve", location="imgui:3408", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PrimUnreserve", ret="void", signature="(int,int)", @@ -2726,6 +2899,7 @@ local t={ defaults={}, funcname="PrimVtx", location="imgui:3414", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PrimVtx", ret="void", signature="(const ImVec2,const ImVec2,ImU32)", @@ -2748,6 +2922,7 @@ local t={ defaults={}, funcname="PrimWriteIdx", location="imgui:3413", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PrimWriteIdx", ret="void", signature="(ImDrawIdx)", @@ -2776,6 +2951,7 @@ local t={ defaults={}, funcname="PrimWriteVtx", location="imgui:3412", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PrimWriteVtx", ret="void", signature="(const ImVec2,const ImVec2,ImU32)", @@ -2804,7 +2980,8 @@ local t={ defaults={ intersect_with_current_clip_rect="false"}, funcname="PushClipRect", - location="imgui:3314", + location="imgui:3311", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PushClipRect", ret="void", signature="(const ImVec2,const ImVec2,bool)", @@ -2823,7 +3000,8 @@ local t={ cimguiname="ImDrawList_PushClipRectFullScreen", defaults={}, funcname="PushClipRectFullScreen", - location="imgui:3315", + location="imgui:3312", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PushClipRectFullScreen", ret="void", signature="()", @@ -2845,7 +3023,8 @@ local t={ cimguiname="ImDrawList_PushTexture", defaults={}, funcname="PushTexture", - location="imgui:3317", + location="imgui:3314", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PushTexture", ret="void", signature="(ImTextureRef)", @@ -2867,7 +3046,8 @@ local t={ cimguiname="ImDrawList__CalcCircleAutoSegmentCount", defaults={}, funcname="_CalcCircleAutoSegmentCount", - location="imgui:3437", + location="imgui:3444", + namespace="ImDrawList", ov_cimguiname="ImDrawList__CalcCircleAutoSegmentCount", ret="int", signature="(float)const", @@ -2886,7 +3066,8 @@ local t={ cimguiname="ImDrawList__ClearFreeMemory", defaults={}, funcname="_ClearFreeMemory", - location="imgui:3430", + location="imgui:3437", + namespace="ImDrawList", ov_cimguiname="ImDrawList__ClearFreeMemory", ret="void", signature="()", @@ -2905,7 +3086,8 @@ local t={ cimguiname="ImDrawList__OnChangedClipRect", defaults={}, funcname="_OnChangedClipRect", - location="imgui:3433", + location="imgui:3440", + namespace="ImDrawList", ov_cimguiname="ImDrawList__OnChangedClipRect", ret="void", signature="()", @@ -2924,7 +3106,8 @@ local t={ cimguiname="ImDrawList__OnChangedTexture", defaults={}, funcname="_OnChangedTexture", - location="imgui:3434", + location="imgui:3441", + namespace="ImDrawList", ov_cimguiname="ImDrawList__OnChangedTexture", ret="void", signature="()", @@ -2943,7 +3126,8 @@ local t={ cimguiname="ImDrawList__OnChangedVtxOffset", defaults={}, funcname="_OnChangedVtxOffset", - location="imgui:3435", + location="imgui:3442", + namespace="ImDrawList", ov_cimguiname="ImDrawList__OnChangedVtxOffset", ret="void", signature="()", @@ -2977,7 +3161,8 @@ local t={ cimguiname="ImDrawList__PathArcToFastEx", defaults={}, funcname="_PathArcToFastEx", - location="imgui:3438", + location="imgui:3445", + namespace="ImDrawList", ov_cimguiname="ImDrawList__PathArcToFastEx", ret="void", signature="(const ImVec2,float,int,int,int)", @@ -3011,7 +3196,8 @@ local t={ cimguiname="ImDrawList__PathArcToN", defaults={}, funcname="_PathArcToN", - location="imgui:3439", + location="imgui:3446", + namespace="ImDrawList", ov_cimguiname="ImDrawList__PathArcToN", ret="void", signature="(const ImVec2,float,float,float,int)", @@ -3030,7 +3216,8 @@ local t={ cimguiname="ImDrawList__PopUnusedDrawCmd", defaults={}, funcname="_PopUnusedDrawCmd", - location="imgui:3431", + location="imgui:3438", + namespace="ImDrawList", ov_cimguiname="ImDrawList__PopUnusedDrawCmd", ret="void", signature="()", @@ -3049,7 +3236,8 @@ local t={ cimguiname="ImDrawList__ResetForNewFrame", defaults={}, funcname="_ResetForNewFrame", - location="imgui:3429", + location="imgui:3436", + namespace="ImDrawList", ov_cimguiname="ImDrawList__ResetForNewFrame", ret="void", signature="()", @@ -3071,7 +3259,8 @@ local t={ cimguiname="ImDrawList__SetDrawListSharedData", defaults={}, funcname="_SetDrawListSharedData", - location="imgui:3428", + location="imgui:3435", + namespace="ImDrawList", ov_cimguiname="ImDrawList__SetDrawListSharedData", ret="void", signature="(ImDrawListSharedData*)", @@ -3093,7 +3282,8 @@ local t={ cimguiname="ImDrawList__SetTexture", defaults={}, funcname="_SetTexture", - location="imgui:3436", + location="imgui:3443", + namespace="ImDrawList", ov_cimguiname="ImDrawList__SetTexture", ret="void", signature="(ImTextureRef)", @@ -3112,7 +3302,8 @@ local t={ cimguiname="ImDrawList__TryMergeDrawCmds", defaults={}, funcname="_TryMergeDrawCmds", - location="imgui:3432", + location="imgui:3439", + namespace="ImDrawList", ov_cimguiname="ImDrawList__TryMergeDrawCmds", ret="void", signature="()", @@ -3129,7 +3320,7 @@ local t={ cimguiname="ImDrawList_destroy", defaults={}, destructor=true, - location="imgui:3312", + location="imgui:3309", ov_cimguiname="ImDrawList_destroy", realdestructor=true, ret="void", @@ -3147,7 +3338,8 @@ local t={ constructor=true, defaults={}, funcname="ImFontAtlasBuilder", - location="imgui_internal:3906", + location="imgui_internal:3921", + namespace="ImFontAtlasBuilder", ov_cimguiname="ImFontAtlasBuilder_ImFontAtlasBuilder", signature="()", stname="ImFontAtlasBuilder"}, @@ -3163,7 +3355,7 @@ local t={ cimguiname="ImFontAtlasBuilder_destroy", defaults={}, destructor=true, - location="imgui_internal:3906", + location="imgui_internal:3921", ov_cimguiname="ImFontAtlasBuilder_destroy", ret="void", signature="(ImFontAtlasBuilder*)", @@ -3180,7 +3372,8 @@ local t={ constructor=true, defaults={}, funcname="ImFontAtlasRect", - location="imgui:3641", + location="imgui:3649", + namespace="ImFontAtlasRect", ov_cimguiname="ImFontAtlasRect_ImFontAtlasRect", signature="()", stname="ImFontAtlasRect"}, @@ -3196,7 +3389,7 @@ local t={ cimguiname="ImFontAtlasRect_destroy", defaults={}, destructor=true, - location="imgui:3641", + location="imgui:3649", ov_cimguiname="ImFontAtlasRect_destroy", ret="void", signature="(ImFontAtlasRect*)", @@ -3225,7 +3418,8 @@ local t={ defaults={ out_r="NULL"}, funcname="AddCustomRect", - location="imgui:3754", + location="imgui:3762", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_AddCustomRect", ret="ImFontAtlasRectId", signature="(int,int,ImFontAtlasRect*)", @@ -3247,7 +3441,8 @@ local t={ cimguiname="ImFontAtlas_AddFont", defaults={}, funcname="AddFont", - location="imgui:3676", + location="imgui:3684", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_AddFont", ret="ImFont*", signature="(const ImFontConfig*)", @@ -3270,7 +3465,8 @@ local t={ defaults={ font_cfg="NULL"}, funcname="AddFontDefault", - location="imgui:3677", + location="imgui:3685", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_AddFontDefault", ret="ImFont*", signature="(const ImFontConfig*)", @@ -3293,7 +3489,8 @@ local t={ defaults={ font_cfg="NULL"}, funcname="AddFontDefaultBitmap", - location="imgui:3679", + location="imgui:3687", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_AddFontDefaultBitmap", ret="ImFont*", signature="(const ImFontConfig*)", @@ -3316,7 +3513,8 @@ local t={ defaults={ font_cfg="NULL"}, funcname="AddFontDefaultVector", - location="imgui:3678", + location="imgui:3686", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_AddFontDefaultVector", ret="ImFont*", signature="(const ImFontConfig*)", @@ -3350,7 +3548,8 @@ local t={ glyph_ranges="NULL", size_pixels="0.0f"}, funcname="AddFontFromFileTTF", - location="imgui:3680", + location="imgui:3688", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_AddFontFromFileTTF", ret="ImFont*", signature="(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -3384,7 +3583,8 @@ local t={ glyph_ranges="NULL", size_pixels="0.0f"}, funcname="AddFontFromMemoryCompressedBase85TTF", - location="imgui:3683", + location="imgui:3691", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_AddFontFromMemoryCompressedBase85TTF", ret="ImFont*", signature="(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -3421,7 +3621,8 @@ local t={ glyph_ranges="NULL", size_pixels="0.0f"}, funcname="AddFontFromMemoryCompressedTTF", - location="imgui:3682", + location="imgui:3690", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_AddFontFromMemoryCompressedTTF", ret="ImFont*", signature="(const void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -3458,7 +3659,8 @@ local t={ glyph_ranges="NULL", size_pixels="0.0f"}, funcname="AddFontFromMemoryTTF", - location="imgui:3681", + location="imgui:3689", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_AddFontFromMemoryTTF", ret="ImFont*", signature="(void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -3477,7 +3679,8 @@ local t={ cimguiname="ImFontAtlas_Clear", defaults={}, funcname="Clear", - location="imgui:3686", + location="imgui:3694", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_Clear", ret="void", signature="()", @@ -3496,7 +3699,8 @@ local t={ cimguiname="ImFontAtlas_ClearFonts", defaults={}, funcname="ClearFonts", - location="imgui:3692", + location="imgui:3695", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_ClearFonts", ret="void", signature="()", @@ -3515,7 +3719,8 @@ local t={ cimguiname="ImFontAtlas_ClearInputData", defaults={}, funcname="ClearInputData", - location="imgui:3691", + location="imgui:3700", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_ClearInputData", ret="void", signature="()", @@ -3534,7 +3739,8 @@ local t={ cimguiname="ImFontAtlas_ClearTexData", defaults={}, funcname="ClearTexData", - location="imgui:3693", + location="imgui:3701", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_ClearTexData", ret="void", signature="()", @@ -3553,7 +3759,8 @@ local t={ cimguiname="ImFontAtlas_CompactCache", defaults={}, funcname="CompactCache", - location="imgui:3687", + location="imgui:3696", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_CompactCache", ret="void", signature="()", @@ -3578,7 +3785,8 @@ local t={ cimguiname="ImFontAtlas_GetCustomRect", defaults={}, funcname="GetCustomRect", - location="imgui:3756", + location="imgui:3764", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_GetCustomRect", ret="bool", signature="(ImFontAtlasRectId,ImFontAtlasRect*)const", @@ -3597,7 +3805,8 @@ local t={ cimguiname="ImFontAtlas_GetGlyphRangesDefault", defaults={}, funcname="GetGlyphRangesDefault", - location="imgui:3717", + location="imgui:3725", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_GetGlyphRangesDefault", ret="const ImWchar*", signature="()", @@ -3614,7 +3823,8 @@ local t={ constructor=true, defaults={}, funcname="ImFontAtlas", - location="imgui:3674", + location="imgui:3682", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_ImFontAtlas", signature="()", stname="ImFontAtlas"}, @@ -3635,7 +3845,8 @@ local t={ cimguiname="ImFontAtlas_RemoveCustomRect", defaults={}, funcname="RemoveCustomRect", - location="imgui:3755", + location="imgui:3763", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_RemoveCustomRect", ret="void", signature="(ImFontAtlasRectId)", @@ -3657,7 +3868,8 @@ local t={ cimguiname="ImFontAtlas_RemoveFont", defaults={}, funcname="RemoveFont", - location="imgui:3684", + location="imgui:3692", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_RemoveFont", ret="void", signature="(ImFont*)", @@ -3679,7 +3891,8 @@ local t={ cimguiname="ImFontAtlas_SetFontLoader", defaults={}, funcname="SetFontLoader", - location="imgui:3688", + location="imgui:3697", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_SetFontLoader", ret="void", signature="(const ImFontLoader*)", @@ -3696,7 +3909,7 @@ local t={ cimguiname="ImFontAtlas_destroy", defaults={}, destructor=true, - location="imgui:3675", + location="imgui:3683", ov_cimguiname="ImFontAtlas_destroy", realdestructor=true, ret="void", @@ -3716,7 +3929,8 @@ local t={ cimguiname="ImFontBaked_ClearOutputData", defaults={}, funcname="ClearOutputData", - location="imgui:3849", + location="imgui:3857", + namespace="ImFontBaked", ov_cimguiname="ImFontBaked_ClearOutputData", ret="void", signature="()", @@ -3738,7 +3952,8 @@ local t={ cimguiname="ImFontBaked_FindGlyph", defaults={}, funcname="FindGlyph", - location="imgui:3850", + location="imgui:3858", + namespace="ImFontBaked", ov_cimguiname="ImFontBaked_FindGlyph", ret="ImFontGlyph*", signature="(ImWchar)", @@ -3760,7 +3975,8 @@ local t={ cimguiname="ImFontBaked_FindGlyphNoFallback", defaults={}, funcname="FindGlyphNoFallback", - location="imgui:3851", + location="imgui:3859", + namespace="ImFontBaked", ov_cimguiname="ImFontBaked_FindGlyphNoFallback", ret="ImFontGlyph*", signature="(ImWchar)", @@ -3782,7 +3998,8 @@ local t={ cimguiname="ImFontBaked_GetCharAdvance", defaults={}, funcname="GetCharAdvance", - location="imgui:3852", + location="imgui:3860", + namespace="ImFontBaked", ov_cimguiname="ImFontBaked_GetCharAdvance", ret="float", signature="(ImWchar)", @@ -3799,7 +4016,8 @@ local t={ constructor=true, defaults={}, funcname="ImFontBaked", - location="imgui:3848", + location="imgui:3856", + namespace="ImFontBaked", ov_cimguiname="ImFontBaked_ImFontBaked", signature="()", stname="ImFontBaked"}, @@ -3820,7 +4038,8 @@ local t={ cimguiname="ImFontBaked_IsGlyphLoaded", defaults={}, funcname="IsGlyphLoaded", - location="imgui:3853", + location="imgui:3861", + namespace="ImFontBaked", ov_cimguiname="ImFontBaked_IsGlyphLoaded", ret="bool", signature="(ImWchar)", @@ -3837,7 +4056,7 @@ local t={ cimguiname="ImFontBaked_destroy", defaults={}, destructor=true, - location="imgui:3848", + location="imgui:3856", ov_cimguiname="ImFontBaked_destroy", ret="void", signature="(ImFontBaked*)", @@ -3854,7 +4073,8 @@ local t={ constructor=true, defaults={}, funcname="ImFontConfig", - location="imgui:3592", + location="imgui:3600", + namespace="ImFontConfig", ov_cimguiname="ImFontConfig_ImFontConfig", signature="()", stname="ImFontConfig"}, @@ -3870,7 +4090,7 @@ local t={ cimguiname="ImFontConfig_destroy", defaults={}, destructor=true, - location="imgui:3592", + location="imgui:3600", ov_cimguiname="ImFontConfig_destroy", ret="void", signature="(ImFontConfig*)", @@ -3892,7 +4112,8 @@ local t={ cimguiname="ImFontGlyphRangesBuilder_AddChar", defaults={}, funcname="AddChar", - location="imgui:3621", + location="imgui:3629", + namespace="ImFontGlyphRangesBuilder", ov_cimguiname="ImFontGlyphRangesBuilder_AddChar", ret="void", signature="(ImWchar)", @@ -3914,7 +4135,8 @@ local t={ cimguiname="ImFontGlyphRangesBuilder_AddRanges", defaults={}, funcname="AddRanges", - location="imgui:3623", + location="imgui:3631", + namespace="ImFontGlyphRangesBuilder", ov_cimguiname="ImFontGlyphRangesBuilder_AddRanges", ret="void", signature="(const ImWchar*)", @@ -3940,7 +4162,8 @@ local t={ defaults={ text_end="NULL"}, funcname="AddText", - location="imgui:3622", + location="imgui:3630", + namespace="ImFontGlyphRangesBuilder", ov_cimguiname="ImFontGlyphRangesBuilder_AddText", ret="void", signature="(const char*,const char*)", @@ -3955,6 +4178,7 @@ local t={ type="ImFontGlyphRangesBuilder*"}, [2]={ name="out_ranges", + template_orig="ImVector* out_ranges", type="ImVector_ImWchar*"}}, argsoriginal="(ImVector* out_ranges)", call_args="(out_ranges)", @@ -3962,7 +4186,8 @@ local t={ cimguiname="ImFontGlyphRangesBuilder_BuildRanges", defaults={}, funcname="BuildRanges", - location="imgui:3624", + location="imgui:3632", + namespace="ImFontGlyphRangesBuilder", ov_cimguiname="ImFontGlyphRangesBuilder_BuildRanges", ret="void", signature="(ImVector_ImWchar*)", @@ -3981,7 +4206,8 @@ local t={ cimguiname="ImFontGlyphRangesBuilder_Clear", defaults={}, funcname="Clear", - location="imgui:3618", + location="imgui:3626", + namespace="ImFontGlyphRangesBuilder", ov_cimguiname="ImFontGlyphRangesBuilder_Clear", ret="void", signature="()", @@ -4003,7 +4229,8 @@ local t={ cimguiname="ImFontGlyphRangesBuilder_GetBit", defaults={}, funcname="GetBit", - location="imgui:3619", + location="imgui:3627", + namespace="ImFontGlyphRangesBuilder", ov_cimguiname="ImFontGlyphRangesBuilder_GetBit", ret="bool", signature="(size_t)const", @@ -4020,7 +4247,8 @@ local t={ constructor=true, defaults={}, funcname="ImFontGlyphRangesBuilder", - location="imgui:3617", + location="imgui:3625", + namespace="ImFontGlyphRangesBuilder", ov_cimguiname="ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder", signature="()", stname="ImFontGlyphRangesBuilder"}, @@ -4041,7 +4269,8 @@ local t={ cimguiname="ImFontGlyphRangesBuilder_SetBit", defaults={}, funcname="SetBit", - location="imgui:3620", + location="imgui:3628", + namespace="ImFontGlyphRangesBuilder", ov_cimguiname="ImFontGlyphRangesBuilder_SetBit", ret="void", signature="(size_t)", @@ -4058,7 +4287,7 @@ local t={ cimguiname="ImFontGlyphRangesBuilder_destroy", defaults={}, destructor=true, - location="imgui:3617", + location="imgui:3625", ov_cimguiname="ImFontGlyphRangesBuilder_destroy", ret="void", signature="(ImFontGlyphRangesBuilder*)", @@ -4075,7 +4304,8 @@ local t={ constructor=true, defaults={}, funcname="ImFontGlyph", - location="imgui:3608", + location="imgui:3616", + namespace="ImFontGlyph", ov_cimguiname="ImFontGlyph_ImFontGlyph", signature="()", stname="ImFontGlyph"}, @@ -4091,7 +4321,7 @@ local t={ cimguiname="ImFontGlyph_destroy", defaults={}, destructor=true, - location="imgui:3608", + location="imgui:3616", ov_cimguiname="ImFontGlyph_destroy", ret="void", signature="(ImFontGlyph*)", @@ -4108,7 +4338,8 @@ local t={ constructor=true, defaults={}, funcname="ImFontLoader", - location="imgui_internal:3809", + location="imgui_internal:3824", + namespace="ImFontLoader", ov_cimguiname="ImFontLoader_ImFontLoader", signature="()", stname="ImFontLoader"}, @@ -4124,7 +4355,7 @@ local t={ cimguiname="ImFontLoader_destroy", defaults={}, destructor=true, - location="imgui_internal:3809", + location="imgui_internal:3824", ov_cimguiname="ImFontLoader_destroy", ret="void", signature="(ImFontLoader*)", @@ -4149,7 +4380,8 @@ local t={ cimguiname="ImFont_AddRemapChar", defaults={}, funcname="AddRemapChar", - location="imgui:3914", + location="imgui:3923", + namespace="ImFont", ov_cimguiname="ImFont_AddRemapChar", ret="void", signature="(ImWchar,ImWchar)", @@ -4189,7 +4421,8 @@ local t={ out_remaining="NULL", text_end="NULL"}, funcname="CalcTextSizeA", - location="imgui:3904", + location="imgui:3913", + namespace="ImFont", nonUDT=1, ov_cimguiname="ImFont_CalcTextSizeA", ret="ImVec2_c", @@ -4221,7 +4454,8 @@ local t={ cimguiname="ImFont_CalcWordWrapPosition", defaults={}, funcname="CalcWordWrapPosition", - location="imgui:3905", + location="imgui:3914", + namespace="ImFont", ov_cimguiname="ImFont_CalcWordWrapPosition", ret="const char*", signature="(float,const char*,const char*,float)", @@ -4240,7 +4474,8 @@ local t={ cimguiname="ImFont_ClearOutputData", defaults={}, funcname="ClearOutputData", - location="imgui:3913", + location="imgui:3922", + namespace="ImFont", ov_cimguiname="ImFont_ClearOutputData", ret="void", signature="()", @@ -4259,7 +4494,8 @@ local t={ cimguiname="ImFont_GetDebugName", defaults={}, funcname="GetDebugName", - location="imgui:3898", + location="imgui:3907", + namespace="ImFont", ov_cimguiname="ImFont_GetDebugName", ret="const char*", signature="()const", @@ -4285,7 +4521,8 @@ local t={ defaults={ density="-1.0f"}, funcname="GetFontBaked", - location="imgui:3903", + location="imgui:3912", + namespace="ImFont", ov_cimguiname="ImFont_GetFontBaked", ret="ImFontBaked*", signature="(float,float)", @@ -4302,7 +4539,8 @@ local t={ constructor=true, defaults={}, funcname="ImFont", - location="imgui:3894", + location="imgui:3903", + namespace="ImFont", ov_cimguiname="ImFont_ImFont", signature="()", stname="ImFont"}, @@ -4323,7 +4561,8 @@ local t={ cimguiname="ImFont_IsGlyphInFont", defaults={}, funcname="IsGlyphInFont", - location="imgui:3896", + location="imgui:3905", + namespace="ImFont", ov_cimguiname="ImFont_IsGlyphInFont", ret="bool", signature="(ImWchar)", @@ -4348,7 +4587,8 @@ local t={ cimguiname="ImFont_IsGlyphRangeUnused", defaults={}, funcname="IsGlyphRangeUnused", - location="imgui:3915", + location="imgui:3924", + namespace="ImFont", ov_cimguiname="ImFont_IsGlyphRangeUnused", ret="bool", signature="(unsigned int,unsigned int)", @@ -4367,7 +4607,8 @@ local t={ cimguiname="ImFont_IsLoaded", defaults={}, funcname="IsLoaded", - location="imgui:3897", + location="imgui:3906", + namespace="ImFont", ov_cimguiname="ImFont_IsLoaded", ret="bool", signature="()const", @@ -4405,7 +4646,8 @@ local t={ defaults={ cpu_fine_clip="NULL"}, funcname="RenderChar", - location="imgui:3906", + location="imgui:3915", + namespace="ImFont", ov_cimguiname="ImFont_RenderChar", ret="void", signature="(ImDrawList*,float,const ImVec2,ImU32,ImWchar,const ImVec4*)", @@ -4453,7 +4695,8 @@ local t={ flags="0", wrap_width="0.0f"}, funcname="RenderText", - location="imgui:3907", + location="imgui:3916", + namespace="ImFont", ov_cimguiname="ImFont_RenderText", ret="void", signature="(ImDrawList*,float,const ImVec2,ImU32,const ImVec4,const char*,const char*,float,ImDrawTextFlags)", @@ -4470,7 +4713,7 @@ local t={ cimguiname="ImFont_destroy", defaults={}, destructor=true, - location="imgui:3895", + location="imgui:3904", ov_cimguiname="ImFont_destroy", realdestructor=true, ret="void", @@ -4488,7 +4731,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiBoxSelectState", - location="imgui_internal:1896", + location="imgui_internal:1906", + namespace="ImGuiBoxSelectState", ov_cimguiname="ImGuiBoxSelectState_ImGuiBoxSelectState", signature="()", stname="ImGuiBoxSelectState"}, @@ -4504,7 +4748,7 @@ local t={ cimguiname="ImGuiBoxSelectState_destroy", defaults={}, destructor=true, - location="imgui_internal:1896", + location="imgui_internal:1906", ov_cimguiname="ImGuiBoxSelectState_destroy", ret="void", signature="(ImGuiBoxSelectState*)", @@ -4521,7 +4765,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiComboPreviewData", - location="imgui_internal:1166", + location="imgui_internal:1173", + namespace="ImGuiComboPreviewData", ov_cimguiname="ImGuiComboPreviewData_ImGuiComboPreviewData", signature="()", stname="ImGuiComboPreviewData"}, @@ -4537,7 +4782,7 @@ local t={ cimguiname="ImGuiComboPreviewData_destroy", defaults={}, destructor=true, - location="imgui_internal:1166", + location="imgui_internal:1173", ov_cimguiname="ImGuiComboPreviewData_destroy", ret="void", signature="(ImGuiComboPreviewData*)", @@ -4554,7 +4799,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiContextHook", - location="imgui_internal:2183", + location="imgui_internal:2194", + namespace="ImGuiContextHook", ov_cimguiname="ImGuiContextHook_ImGuiContextHook", signature="()", stname="ImGuiContextHook"}, @@ -4570,7 +4816,7 @@ local t={ cimguiname="ImGuiContextHook_destroy", defaults={}, destructor=true, - location="imgui_internal:2183", + location="imgui_internal:2194", ov_cimguiname="ImGuiContextHook_destroy", ret="void", signature="(ImGuiContextHook*)", @@ -4590,7 +4836,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiContext", - location="imgui_internal:2584", + location="imgui_internal:2596", + namespace="ImGuiContext", ov_cimguiname="ImGuiContext_ImGuiContext", signature="(ImFontAtlas*)", stname="ImGuiContext"}, @@ -4606,7 +4853,7 @@ local t={ cimguiname="ImGuiContext_destroy", defaults={}, destructor=true, - location="imgui_internal:2585", + location="imgui_internal:2597", ov_cimguiname="ImGuiContext_destroy", realdestructor=true, ret="void", @@ -4624,7 +4871,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiDebugAllocInfo", - location="imgui_internal:2112", + location="imgui_internal:2123", + namespace="ImGuiDebugAllocInfo", ov_cimguiname="ImGuiDebugAllocInfo_ImGuiDebugAllocInfo", signature="()", stname="ImGuiDebugAllocInfo"}, @@ -4640,7 +4888,7 @@ local t={ cimguiname="ImGuiDebugAllocInfo_destroy", defaults={}, destructor=true, - location="imgui_internal:2112", + location="imgui_internal:2123", ov_cimguiname="ImGuiDebugAllocInfo_destroy", ret="void", signature="(ImGuiDebugAllocInfo*)", @@ -4657,7 +4905,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiDebugItemPathQuery", - location="imgui_internal:2154", + location="imgui_internal:2165", + namespace="ImGuiDebugItemPathQuery", ov_cimguiname="ImGuiDebugItemPathQuery_ImGuiDebugItemPathQuery", signature="()", stname="ImGuiDebugItemPathQuery"}, @@ -4673,7 +4922,7 @@ local t={ cimguiname="ImGuiDebugItemPathQuery_destroy", defaults={}, destructor=true, - location="imgui_internal:2154", + location="imgui_internal:2165", ov_cimguiname="ImGuiDebugItemPathQuery_destroy", ret="void", signature="(ImGuiDebugItemPathQuery*)", @@ -4690,7 +4939,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiErrorRecoveryState", - location="imgui_internal:1422", + location="imgui_internal:1430", + namespace="ImGuiErrorRecoveryState", ov_cimguiname="ImGuiErrorRecoveryState_ImGuiErrorRecoveryState", signature="()", stname="ImGuiErrorRecoveryState"}, @@ -4706,7 +4956,7 @@ local t={ cimguiname="ImGuiErrorRecoveryState_destroy", defaults={}, destructor=true, - location="imgui_internal:1422", + location="imgui_internal:1430", ov_cimguiname="ImGuiErrorRecoveryState_destroy", ret="void", signature="(ImGuiErrorRecoveryState*)", @@ -4791,7 +5041,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiIDStackTool", - location="imgui_internal:2165", + location="imgui_internal:2176", + namespace="ImGuiIDStackTool", ov_cimguiname="ImGuiIDStackTool_ImGuiIDStackTool", signature="()", stname="ImGuiIDStackTool"}, @@ -4807,7 +5058,7 @@ local t={ cimguiname="ImGuiIDStackTool_destroy", defaults={}, destructor=true, - location="imgui_internal:2165", + location="imgui_internal:2176", ov_cimguiname="ImGuiIDStackTool_destroy", ret="void", signature="(ImGuiIDStackTool*)", @@ -4829,7 +5080,8 @@ local t={ cimguiname="ImGuiIO_AddFocusEvent", defaults={}, funcname="AddFocusEvent", - location="imgui:2525", + location="imgui:2528", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_AddFocusEvent", ret="void", signature="(bool)", @@ -4851,7 +5103,8 @@ local t={ cimguiname="ImGuiIO_AddInputCharacter", defaults={}, funcname="AddInputCharacter", - location="imgui:2526", + location="imgui:2529", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_AddInputCharacter", ret="void", signature="(unsigned int)", @@ -4873,7 +5126,8 @@ local t={ cimguiname="ImGuiIO_AddInputCharacterUTF16", defaults={}, funcname="AddInputCharacterUTF16", - location="imgui:2527", + location="imgui:2530", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_AddInputCharacterUTF16", ret="void", signature="(ImWchar16)", @@ -4895,7 +5149,8 @@ local t={ cimguiname="ImGuiIO_AddInputCharactersUTF8", defaults={}, funcname="AddInputCharactersUTF8", - location="imgui:2528", + location="imgui:2531", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_AddInputCharactersUTF8", ret="void", signature="(const char*)", @@ -4923,7 +5178,8 @@ local t={ cimguiname="ImGuiIO_AddKeyAnalogEvent", defaults={}, funcname="AddKeyAnalogEvent", - location="imgui:2520", + location="imgui:2523", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_AddKeyAnalogEvent", ret="void", signature="(ImGuiKey,bool,float)", @@ -4948,7 +5204,8 @@ local t={ cimguiname="ImGuiIO_AddKeyEvent", defaults={}, funcname="AddKeyEvent", - location="imgui:2519", + location="imgui:2522", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_AddKeyEvent", ret="void", signature="(ImGuiKey,bool)", @@ -4973,7 +5230,8 @@ local t={ cimguiname="ImGuiIO_AddMouseButtonEvent", defaults={}, funcname="AddMouseButtonEvent", - location="imgui:2522", + location="imgui:2525", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_AddMouseButtonEvent", ret="void", signature="(int,bool)", @@ -4998,7 +5256,8 @@ local t={ cimguiname="ImGuiIO_AddMousePosEvent", defaults={}, funcname="AddMousePosEvent", - location="imgui:2521", + location="imgui:2524", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_AddMousePosEvent", ret="void", signature="(float,float)", @@ -5020,7 +5279,8 @@ local t={ cimguiname="ImGuiIO_AddMouseSourceEvent", defaults={}, funcname="AddMouseSourceEvent", - location="imgui:2524", + location="imgui:2527", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_AddMouseSourceEvent", ret="void", signature="(ImGuiMouseSource)", @@ -5045,7 +5305,8 @@ local t={ cimguiname="ImGuiIO_AddMouseWheelEvent", defaults={}, funcname="AddMouseWheelEvent", - location="imgui:2523", + location="imgui:2526", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_AddMouseWheelEvent", ret="void", signature="(float,float)", @@ -5064,7 +5325,8 @@ local t={ cimguiname="ImGuiIO_ClearEventsQueue", defaults={}, funcname="ClearEventsQueue", - location="imgui:2532", + location="imgui:2535", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_ClearEventsQueue", ret="void", signature="()", @@ -5083,7 +5345,8 @@ local t={ cimguiname="ImGuiIO_ClearInputKeys", defaults={}, funcname="ClearInputKeys", - location="imgui:2533", + location="imgui:2536", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_ClearInputKeys", ret="void", signature="()", @@ -5102,7 +5365,8 @@ local t={ cimguiname="ImGuiIO_ClearInputMouse", defaults={}, funcname="ClearInputMouse", - location="imgui:2534", + location="imgui:2537", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_ClearInputMouse", ret="void", signature="()", @@ -5119,7 +5383,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiIO", - location="imgui:2623", + location="imgui:2626", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_ImGuiIO", signature="()", stname="ImGuiIO"}, @@ -5140,7 +5405,8 @@ local t={ cimguiname="ImGuiIO_SetAppAcceptingEvents", defaults={}, funcname="SetAppAcceptingEvents", - location="imgui:2531", + location="imgui:2534", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_SetAppAcceptingEvents", ret="void", signature="(bool)", @@ -5172,7 +5438,8 @@ local t={ defaults={ native_legacy_index="-1"}, funcname="SetKeyEventNativeData", - location="imgui:2530", + location="imgui:2533", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_SetKeyEventNativeData", ret="void", signature="(ImGuiKey,int,int,int)", @@ -5189,7 +5456,7 @@ local t={ cimguiname="ImGuiIO_destroy", defaults={}, destructor=true, - location="imgui:2623", + location="imgui:2626", ov_cimguiname="ImGuiIO_destroy", ret="void", signature="(ImGuiIO*)", @@ -5206,7 +5473,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiInputEvent", - location="imgui_internal:1561", + location="imgui_internal:1570", + namespace="ImGuiInputEvent", ov_cimguiname="ImGuiInputEvent_ImGuiInputEvent", signature="()", stname="ImGuiInputEvent"}, @@ -5222,7 +5490,7 @@ local t={ cimguiname="ImGuiInputEvent_destroy", defaults={}, destructor=true, - location="imgui_internal:1561", + location="imgui_internal:1570", ov_cimguiname="ImGuiInputEvent_destroy", ret="void", signature="(ImGuiInputEvent*)", @@ -5241,7 +5509,8 @@ local t={ cimguiname="ImGuiInputTextCallbackData_ClearSelection", defaults={}, funcname="ClearSelection", - location="imgui:2670", + location="imgui:2673", + namespace="ImGuiInputTextCallbackData", ov_cimguiname="ImGuiInputTextCallbackData_ClearSelection", ret="void", signature="()", @@ -5266,7 +5535,8 @@ local t={ cimguiname="ImGuiInputTextCallbackData_DeleteChars", defaults={}, funcname="DeleteChars", - location="imgui:2666", + location="imgui:2669", + namespace="ImGuiInputTextCallbackData", ov_cimguiname="ImGuiInputTextCallbackData_DeleteChars", ret="void", signature="(int,int)", @@ -5285,7 +5555,8 @@ local t={ cimguiname="ImGuiInputTextCallbackData_HasSelection", defaults={}, funcname="HasSelection", - location="imgui:2671", + location="imgui:2674", + namespace="ImGuiInputTextCallbackData", ov_cimguiname="ImGuiInputTextCallbackData_HasSelection", ret="bool", signature="()const", @@ -5302,7 +5573,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiInputTextCallbackData", - location="imgui:2665", + location="imgui:2668", + namespace="ImGuiInputTextCallbackData", ov_cimguiname="ImGuiInputTextCallbackData_ImGuiInputTextCallbackData", signature="()", stname="ImGuiInputTextCallbackData"}, @@ -5330,7 +5602,8 @@ local t={ defaults={ text_end="NULL"}, funcname="InsertChars", - location="imgui:2667", + location="imgui:2670", + namespace="ImGuiInputTextCallbackData", ov_cimguiname="ImGuiInputTextCallbackData_InsertChars", ret="void", signature="(int,const char*,const char*)", @@ -5349,7 +5622,8 @@ local t={ cimguiname="ImGuiInputTextCallbackData_SelectAll", defaults={}, funcname="SelectAll", - location="imgui:2668", + location="imgui:2671", + namespace="ImGuiInputTextCallbackData", ov_cimguiname="ImGuiInputTextCallbackData_SelectAll", ret="void", signature="()", @@ -5374,7 +5648,8 @@ local t={ cimguiname="ImGuiInputTextCallbackData_SetSelection", defaults={}, funcname="SetSelection", - location="imgui:2669", + location="imgui:2672", + namespace="ImGuiInputTextCallbackData", ov_cimguiname="ImGuiInputTextCallbackData_SetSelection", ret="void", signature="(int,int)", @@ -5391,7 +5666,7 @@ local t={ cimguiname="ImGuiInputTextCallbackData_destroy", defaults={}, destructor=true, - location="imgui:2665", + location="imgui:2668", ov_cimguiname="ImGuiInputTextCallbackData_destroy", ret="void", signature="(ImGuiInputTextCallbackData*)", @@ -5410,7 +5685,8 @@ local t={ cimguiname="ImGuiInputTextDeactivatedState_ClearFreeMemory", defaults={}, funcname="ClearFreeMemory", - location="imgui_internal:1213", + location="imgui_internal:1221", + namespace="ImGuiInputTextDeactivatedState", ov_cimguiname="ImGuiInputTextDeactivatedState_ClearFreeMemory", ret="void", signature="()", @@ -5427,7 +5703,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiInputTextDeactivatedState", - location="imgui_internal:1212", + location="imgui_internal:1220", + namespace="ImGuiInputTextDeactivatedState", ov_cimguiname="ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState", signature="()", stname="ImGuiInputTextDeactivatedState"}, @@ -5443,7 +5720,7 @@ local t={ cimguiname="ImGuiInputTextDeactivatedState_destroy", defaults={}, destructor=true, - location="imgui_internal:1212", + location="imgui_internal:1220", ov_cimguiname="ImGuiInputTextDeactivatedState_destroy", ret="void", signature="(ImGuiInputTextDeactivatedState*)", @@ -5462,7 +5739,8 @@ local t={ cimguiname="ImGuiInputTextState_ClearFreeMemory", defaults={}, funcname="ClearFreeMemory", - location="imgui_internal:1258", + location="imgui_internal:1266", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_ClearFreeMemory", ret="void", signature="()", @@ -5481,7 +5759,8 @@ local t={ cimguiname="ImGuiInputTextState_ClearSelection", defaults={}, funcname="ClearSelection", - location="imgui_internal:1268", + location="imgui_internal:1276", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_ClearSelection", ret="void", signature="()", @@ -5500,7 +5779,8 @@ local t={ cimguiname="ImGuiInputTextState_ClearText", defaults={}, funcname="ClearText", - location="imgui_internal:1257", + location="imgui_internal:1265", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_ClearText", ret="void", signature="()", @@ -5519,7 +5799,8 @@ local t={ cimguiname="ImGuiInputTextState_CursorAnimReset", defaults={}, funcname="CursorAnimReset", - location="imgui_internal:1265", + location="imgui_internal:1273", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_CursorAnimReset", ret="void", signature="()", @@ -5538,7 +5819,8 @@ local t={ cimguiname="ImGuiInputTextState_CursorClamp", defaults={}, funcname="CursorClamp", - location="imgui_internal:1266", + location="imgui_internal:1274", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_CursorClamp", ret="void", signature="()", @@ -5557,7 +5839,8 @@ local t={ cimguiname="ImGuiInputTextState_GetCursorPos", defaults={}, funcname="GetCursorPos", - location="imgui_internal:1269", + location="imgui_internal:1277", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_GetCursorPos", ret="int", signature="()const", @@ -5576,7 +5859,8 @@ local t={ cimguiname="ImGuiInputTextState_GetPreferredOffsetX", defaults={}, funcname="GetPreferredOffsetX", - location="imgui_internal:1261", + location="imgui_internal:1269", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_GetPreferredOffsetX", ret="float", signature="()const", @@ -5595,7 +5879,8 @@ local t={ cimguiname="ImGuiInputTextState_GetSelectionEnd", defaults={}, funcname="GetSelectionEnd", - location="imgui_internal:1271", + location="imgui_internal:1279", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_GetSelectionEnd", ret="int", signature="()const", @@ -5614,7 +5899,8 @@ local t={ cimguiname="ImGuiInputTextState_GetSelectionStart", defaults={}, funcname="GetSelectionStart", - location="imgui_internal:1270", + location="imgui_internal:1278", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_GetSelectionStart", ret="int", signature="()const", @@ -5633,7 +5919,8 @@ local t={ cimguiname="ImGuiInputTextState_GetText", defaults={}, funcname="GetText", - location="imgui_internal:1262", + location="imgui_internal:1270", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_GetText", ret="const char*", signature="()", @@ -5652,7 +5939,8 @@ local t={ cimguiname="ImGuiInputTextState_HasSelection", defaults={}, funcname="HasSelection", - location="imgui_internal:1267", + location="imgui_internal:1275", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_HasSelection", ret="bool", signature="()const", @@ -5669,7 +5957,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiInputTextState", - location="imgui_internal:1255", + location="imgui_internal:1263", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_ImGuiInputTextState", signature="()", stname="ImGuiInputTextState"}, @@ -5690,7 +5979,8 @@ local t={ cimguiname="ImGuiInputTextState_OnCharPressed", defaults={}, funcname="OnCharPressed", - location="imgui_internal:1260", + location="imgui_internal:1268", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_OnCharPressed", ret="void", signature="(unsigned int)", @@ -5712,7 +6002,8 @@ local t={ cimguiname="ImGuiInputTextState_OnKeyPressed", defaults={}, funcname="OnKeyPressed", - location="imgui_internal:1259", + location="imgui_internal:1267", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_OnKeyPressed", ret="void", signature="(int)", @@ -5731,7 +6022,8 @@ local t={ cimguiname="ImGuiInputTextState_ReloadUserBufAndKeepSelection", defaults={}, funcname="ReloadUserBufAndKeepSelection", - location="imgui_internal:1281", + location="imgui_internal:1289", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_ReloadUserBufAndKeepSelection", ret="void", signature="()", @@ -5750,7 +6042,8 @@ local t={ cimguiname="ImGuiInputTextState_ReloadUserBufAndMoveToEnd", defaults={}, funcname="ReloadUserBufAndMoveToEnd", - location="imgui_internal:1282", + location="imgui_internal:1290", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_ReloadUserBufAndMoveToEnd", ret="void", signature="()", @@ -5769,7 +6062,8 @@ local t={ cimguiname="ImGuiInputTextState_ReloadUserBufAndSelectAll", defaults={}, funcname="ReloadUserBufAndSelectAll", - location="imgui_internal:1280", + location="imgui_internal:1288", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_ReloadUserBufAndSelectAll", ret="void", signature="()", @@ -5788,7 +6082,8 @@ local t={ cimguiname="ImGuiInputTextState_SelectAll", defaults={}, funcname="SelectAll", - location="imgui_internal:1273", + location="imgui_internal:1281", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_SelectAll", ret="void", signature="()", @@ -5813,7 +6108,8 @@ local t={ cimguiname="ImGuiInputTextState_SetSelection", defaults={}, funcname="SetSelection", - location="imgui_internal:1272", + location="imgui_internal:1280", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_SetSelection", ret="void", signature="(int,int)", @@ -5830,7 +6126,7 @@ local t={ cimguiname="ImGuiInputTextState_destroy", defaults={}, destructor=true, - location="imgui_internal:1256", + location="imgui_internal:1264", ov_cimguiname="ImGuiInputTextState_destroy", realdestructor=true, ret="void", @@ -5848,7 +6144,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiKeyOwnerData", - location="imgui_internal:1605", + location="imgui_internal:1614", + namespace="ImGuiKeyOwnerData", ov_cimguiname="ImGuiKeyOwnerData_ImGuiKeyOwnerData", signature="()", stname="ImGuiKeyOwnerData"}, @@ -5864,7 +6161,7 @@ local t={ cimguiname="ImGuiKeyOwnerData_destroy", defaults={}, destructor=true, - location="imgui_internal:1605", + location="imgui_internal:1614", ov_cimguiname="ImGuiKeyOwnerData_destroy", ret="void", signature="(ImGuiKeyOwnerData*)", @@ -5881,7 +6178,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiKeyRoutingData", - location="imgui_internal:1581", + location="imgui_internal:1590", + namespace="ImGuiKeyRoutingData", ov_cimguiname="ImGuiKeyRoutingData_ImGuiKeyRoutingData", signature="()", stname="ImGuiKeyRoutingData"}, @@ -5897,7 +6195,7 @@ local t={ cimguiname="ImGuiKeyRoutingData_destroy", defaults={}, destructor=true, - location="imgui_internal:1581", + location="imgui_internal:1590", ov_cimguiname="ImGuiKeyRoutingData_destroy", ret="void", signature="(ImGuiKeyRoutingData*)", @@ -5916,7 +6214,8 @@ local t={ cimguiname="ImGuiKeyRoutingTable_Clear", defaults={}, funcname="Clear", - location="imgui_internal:1593", + location="imgui_internal:1602", + namespace="ImGuiKeyRoutingTable", ov_cimguiname="ImGuiKeyRoutingTable_Clear", ret="void", signature="()", @@ -5933,7 +6232,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiKeyRoutingTable", - location="imgui_internal:1592", + location="imgui_internal:1601", + namespace="ImGuiKeyRoutingTable", ov_cimguiname="ImGuiKeyRoutingTable_ImGuiKeyRoutingTable", signature="()", stname="ImGuiKeyRoutingTable"}, @@ -5949,7 +6249,7 @@ local t={ cimguiname="ImGuiKeyRoutingTable_destroy", defaults={}, destructor=true, - location="imgui_internal:1592", + location="imgui_internal:1601", ov_cimguiname="ImGuiKeyRoutingTable_destroy", ret="void", signature="(ImGuiKeyRoutingTable*)", @@ -5966,7 +6266,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiLastItemData", - location="imgui_internal:1389", + location="imgui_internal:1397", + namespace="ImGuiLastItemData", ov_cimguiname="ImGuiLastItemData_ImGuiLastItemData", signature="()", stname="ImGuiLastItemData"}, @@ -5982,7 +6283,7 @@ local t={ cimguiname="ImGuiLastItemData_destroy", defaults={}, destructor=true, - location="imgui_internal:1389", + location="imgui_internal:1397", ov_cimguiname="ImGuiLastItemData_destroy", ret="void", signature="(ImGuiLastItemData*)", @@ -5999,7 +6300,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiListClipperData", - location="imgui_internal:1676", + location="imgui_internal:1685", + namespace="ImGuiListClipperData", ov_cimguiname="ImGuiListClipperData_ImGuiListClipperData", signature="()", stname="ImGuiListClipperData"}, @@ -6020,7 +6322,8 @@ local t={ cimguiname="ImGuiListClipperData_Reset", defaults={}, funcname="Reset", - location="imgui_internal:1677", + location="imgui_internal:1686", + namespace="ImGuiListClipperData", ov_cimguiname="ImGuiListClipperData_Reset", ret="void", signature="(ImGuiListClipper*)", @@ -6037,7 +6340,7 @@ local t={ cimguiname="ImGuiListClipperData_destroy", defaults={}, destructor=true, - location="imgui_internal:1676", + location="imgui_internal:1685", ov_cimguiname="ImGuiListClipperData_destroy", ret="void", signature="(ImGuiListClipperData*)", @@ -6060,7 +6363,8 @@ local t={ defaults={}, funcname="FromIndices", is_static_function=true, - location="imgui_internal:1663", + location="imgui_internal:1672", + namespace="ImGuiListClipperRange", ov_cimguiname="ImGuiListClipperRange_FromIndices", ret="ImGuiListClipperRange", signature="(int,int)", @@ -6089,7 +6393,8 @@ local t={ defaults={}, funcname="FromPositions", is_static_function=true, - location="imgui_internal:1664", + location="imgui_internal:1673", + namespace="ImGuiListClipperRange", ov_cimguiname="ImGuiListClipperRange_FromPositions", ret="ImGuiListClipperRange", signature="(float,float,int,int)", @@ -6115,7 +6420,8 @@ local t={ defaults={ items_height="-1.0f"}, funcname="Begin", - location="imgui:2874", + location="imgui:2877", + namespace="ImGuiListClipper", ov_cimguiname="ImGuiListClipper_Begin", ret="void", signature="(int,float)", @@ -6134,7 +6440,8 @@ local t={ cimguiname="ImGuiListClipper_End", defaults={}, funcname="End", - location="imgui:2875", + location="imgui:2878", + namespace="ImGuiListClipper", ov_cimguiname="ImGuiListClipper_End", ret="void", signature="()", @@ -6151,7 +6458,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiListClipper", - location="imgui:2872", + location="imgui:2875", + namespace="ImGuiListClipper", ov_cimguiname="ImGuiListClipper_ImGuiListClipper", signature="()", stname="ImGuiListClipper"}, @@ -6172,7 +6480,8 @@ local t={ cimguiname="ImGuiListClipper_IncludeItemByIndex", defaults={}, funcname="IncludeItemByIndex", - location="imgui:2880", + location="imgui:2883", + namespace="ImGuiListClipper", ov_cimguiname="ImGuiListClipper_IncludeItemByIndex", ret="void", signature="(int)", @@ -6197,7 +6506,8 @@ local t={ cimguiname="ImGuiListClipper_IncludeItemsByIndex", defaults={}, funcname="IncludeItemsByIndex", - location="imgui:2881", + location="imgui:2884", + namespace="ImGuiListClipper", ov_cimguiname="ImGuiListClipper_IncludeItemsByIndex", ret="void", signature="(int,int)", @@ -6219,7 +6529,8 @@ local t={ cimguiname="ImGuiListClipper_SeekCursorForItem", defaults={}, funcname="SeekCursorForItem", - location="imgui:2886", + location="imgui:2889", + namespace="ImGuiListClipper", ov_cimguiname="ImGuiListClipper_SeekCursorForItem", ret="void", signature="(int)", @@ -6238,7 +6549,8 @@ local t={ cimguiname="ImGuiListClipper_Step", defaults={}, funcname="Step", - location="imgui:2876", + location="imgui:2879", + namespace="ImGuiListClipper", ov_cimguiname="ImGuiListClipper_Step", ret="bool", signature="()", @@ -6255,7 +6567,7 @@ local t={ cimguiname="ImGuiListClipper_destroy", defaults={}, destructor=true, - location="imgui:2873", + location="imgui:2876", ov_cimguiname="ImGuiListClipper_destroy", realdestructor=true, ret="void", @@ -6278,7 +6590,8 @@ local t={ cimguiname="ImGuiMenuColumns_CalcNextTotalWidth", defaults={}, funcname="CalcNextTotalWidth", - location="imgui_internal:1203", + location="imgui_internal:1210", + namespace="ImGuiMenuColumns", ov_cimguiname="ImGuiMenuColumns_CalcNextTotalWidth", ret="void", signature="(bool)", @@ -6309,7 +6622,8 @@ local t={ cimguiname="ImGuiMenuColumns_DeclColumns", defaults={}, funcname="DeclColumns", - location="imgui_internal:1202", + location="imgui_internal:1209", + namespace="ImGuiMenuColumns", ov_cimguiname="ImGuiMenuColumns_DeclColumns", ret="float", signature="(float,float,float,float)", @@ -6326,7 +6640,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiMenuColumns", - location="imgui_internal:1200", + location="imgui_internal:1207", + namespace="ImGuiMenuColumns", ov_cimguiname="ImGuiMenuColumns_ImGuiMenuColumns", signature="()", stname="ImGuiMenuColumns"}, @@ -6350,7 +6665,8 @@ local t={ cimguiname="ImGuiMenuColumns_Update", defaults={}, funcname="Update", - location="imgui_internal:1201", + location="imgui_internal:1208", + namespace="ImGuiMenuColumns", ov_cimguiname="ImGuiMenuColumns_Update", ret="void", signature="(float,bool)", @@ -6367,7 +6683,7 @@ local t={ cimguiname="ImGuiMenuColumns_destroy", defaults={}, destructor=true, - location="imgui_internal:1200", + location="imgui_internal:1207", ov_cimguiname="ImGuiMenuColumns_destroy", ret="void", signature="(ImGuiMenuColumns*)", @@ -6384,7 +6700,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiMultiSelectState", - location="imgui_internal:1943", + location="imgui_internal:1954", + namespace="ImGuiMultiSelectState", ov_cimguiname="ImGuiMultiSelectState_ImGuiMultiSelectState", signature="()", stname="ImGuiMultiSelectState"}, @@ -6400,7 +6717,7 @@ local t={ cimguiname="ImGuiMultiSelectState_destroy", defaults={}, destructor=true, - location="imgui_internal:1943", + location="imgui_internal:1954", ov_cimguiname="ImGuiMultiSelectState_destroy", ret="void", signature="(ImGuiMultiSelectState*)", @@ -6419,7 +6736,8 @@ local t={ cimguiname="ImGuiMultiSelectTempData_Clear", defaults={}, funcname="Clear", - location="imgui_internal:1927", + location="imgui_internal:1938", + namespace="ImGuiMultiSelectTempData", ov_cimguiname="ImGuiMultiSelectTempData_Clear", ret="void", signature="()", @@ -6438,7 +6756,8 @@ local t={ cimguiname="ImGuiMultiSelectTempData_ClearIO", defaults={}, funcname="ClearIO", - location="imgui_internal:1928", + location="imgui_internal:1939", + namespace="ImGuiMultiSelectTempData", ov_cimguiname="ImGuiMultiSelectTempData_ClearIO", ret="void", signature="()", @@ -6455,7 +6774,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiMultiSelectTempData", - location="imgui_internal:1926", + location="imgui_internal:1937", + namespace="ImGuiMultiSelectTempData", ov_cimguiname="ImGuiMultiSelectTempData_ImGuiMultiSelectTempData", signature="()", stname="ImGuiMultiSelectTempData"}, @@ -6471,7 +6791,7 @@ local t={ cimguiname="ImGuiMultiSelectTempData_destroy", defaults={}, destructor=true, - location="imgui_internal:1926", + location="imgui_internal:1937", ov_cimguiname="ImGuiMultiSelectTempData_destroy", ret="void", signature="(ImGuiMultiSelectTempData*)", @@ -6490,7 +6810,8 @@ local t={ cimguiname="ImGuiNavItemData_Clear", defaults={}, funcname="Clear", - location="imgui_internal:1768", + location="imgui_internal:1777", + namespace="ImGuiNavItemData", ov_cimguiname="ImGuiNavItemData_Clear", ret="void", signature="()", @@ -6507,7 +6828,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiNavItemData", - location="imgui_internal:1767", + location="imgui_internal:1776", + namespace="ImGuiNavItemData", ov_cimguiname="ImGuiNavItemData_ImGuiNavItemData", signature="()", stname="ImGuiNavItemData"}, @@ -6523,7 +6845,7 @@ local t={ cimguiname="ImGuiNavItemData_destroy", defaults={}, destructor=true, - location="imgui_internal:1767", + location="imgui_internal:1776", ov_cimguiname="ImGuiNavItemData_destroy", ret="void", signature="(ImGuiNavItemData*)", @@ -6542,7 +6864,8 @@ local t={ cimguiname="ImGuiNextItemData_ClearFlags", defaults={}, funcname="ClearFlags", - location="imgui_internal:1373", + location="imgui_internal:1381", + namespace="ImGuiNextItemData", ov_cimguiname="ImGuiNextItemData_ClearFlags", ret="void", signature="()", @@ -6559,7 +6882,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiNextItemData", - location="imgui_internal:1372", + location="imgui_internal:1380", + namespace="ImGuiNextItemData", ov_cimguiname="ImGuiNextItemData_ImGuiNextItemData", signature="()", stname="ImGuiNextItemData"}, @@ -6575,7 +6899,7 @@ local t={ cimguiname="ImGuiNextItemData_destroy", defaults={}, destructor=true, - location="imgui_internal:1372", + location="imgui_internal:1380", ov_cimguiname="ImGuiNextItemData_destroy", ret="void", signature="(ImGuiNextItemData*)", @@ -6594,7 +6918,8 @@ local t={ cimguiname="ImGuiNextWindowData_ClearFlags", defaults={}, funcname="ClearFlags", - location="imgui_internal:1341", + location="imgui_internal:1349", + namespace="ImGuiNextWindowData", ov_cimguiname="ImGuiNextWindowData_ClearFlags", ret="void", signature="()", @@ -6611,7 +6936,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiNextWindowData", - location="imgui_internal:1340", + location="imgui_internal:1348", + namespace="ImGuiNextWindowData", ov_cimguiname="ImGuiNextWindowData_ImGuiNextWindowData", signature="()", stname="ImGuiNextWindowData"}, @@ -6627,7 +6953,7 @@ local t={ cimguiname="ImGuiNextWindowData_destroy", defaults={}, destructor=true, - location="imgui_internal:1340", + location="imgui_internal:1348", ov_cimguiname="ImGuiNextWindowData_destroy", ret="void", signature="(ImGuiNextWindowData*)", @@ -6644,7 +6970,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiOldColumnData", - location="imgui_internal:1847", + location="imgui_internal:1856", + namespace="ImGuiOldColumnData", ov_cimguiname="ImGuiOldColumnData_ImGuiOldColumnData", signature="()", stname="ImGuiOldColumnData"}, @@ -6660,7 +6987,7 @@ local t={ cimguiname="ImGuiOldColumnData_destroy", defaults={}, destructor=true, - location="imgui_internal:1847", + location="imgui_internal:1856", ov_cimguiname="ImGuiOldColumnData_destroy", ret="void", signature="(ImGuiOldColumnData*)", @@ -6677,7 +7004,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiOldColumns", - location="imgui_internal:1868", + location="imgui_internal:1877", + namespace="ImGuiOldColumns", ov_cimguiname="ImGuiOldColumns_ImGuiOldColumns", signature="()", stname="ImGuiOldColumns"}, @@ -6693,7 +7021,7 @@ local t={ cimguiname="ImGuiOldColumns_destroy", defaults={}, destructor=true, - location="imgui_internal:1868", + location="imgui_internal:1877", ov_cimguiname="ImGuiOldColumns_destroy", ret="void", signature="(ImGuiOldColumns*)", @@ -6710,7 +7038,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiOnceUponAFrame", - location="imgui:2722", + location="imgui:2725", + namespace="ImGuiOnceUponAFrame", ov_cimguiname="ImGuiOnceUponAFrame_ImGuiOnceUponAFrame", signature="()", stname="ImGuiOnceUponAFrame"}, @@ -6726,7 +7055,7 @@ local t={ cimguiname="ImGuiOnceUponAFrame_destroy", defaults={}, destructor=true, - location="imgui:2722", + location="imgui:2725", ov_cimguiname="ImGuiOnceUponAFrame_destroy", ret="void", signature="(ImGuiOnceUponAFrame*)", @@ -6745,7 +7074,8 @@ local t={ cimguiname="ImGuiPayload_Clear", defaults={}, funcname="Clear", - location="imgui:2700", + location="imgui:2703", + namespace="ImGuiPayload", ov_cimguiname="ImGuiPayload_Clear", ret="void", signature="()", @@ -6762,7 +7092,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiPayload", - location="imgui:2699", + location="imgui:2702", + namespace="ImGuiPayload", ov_cimguiname="ImGuiPayload_ImGuiPayload", signature="()", stname="ImGuiPayload"}, @@ -6783,7 +7114,8 @@ local t={ cimguiname="ImGuiPayload_IsDataType", defaults={}, funcname="IsDataType", - location="imgui:2701", + location="imgui:2704", + namespace="ImGuiPayload", ov_cimguiname="ImGuiPayload_IsDataType", ret="bool", signature="(const char*)const", @@ -6802,7 +7134,8 @@ local t={ cimguiname="ImGuiPayload_IsDelivery", defaults={}, funcname="IsDelivery", - location="imgui:2703", + location="imgui:2706", + namespace="ImGuiPayload", ov_cimguiname="ImGuiPayload_IsDelivery", ret="bool", signature="()const", @@ -6821,7 +7154,8 @@ local t={ cimguiname="ImGuiPayload_IsPreview", defaults={}, funcname="IsPreview", - location="imgui:2702", + location="imgui:2705", + namespace="ImGuiPayload", ov_cimguiname="ImGuiPayload_IsPreview", ret="bool", signature="()const", @@ -6838,7 +7172,7 @@ local t={ cimguiname="ImGuiPayload_destroy", defaults={}, destructor=true, - location="imgui:2699", + location="imgui:2702", ov_cimguiname="ImGuiPayload_destroy", ret="void", signature="(ImGuiPayload*)", @@ -6857,7 +7191,8 @@ local t={ cimguiname="ImGuiPlatformIO_ClearPlatformHandlers", defaults={}, funcname="ClearPlatformHandlers", - location="imgui:4036", + location="imgui:4051", + namespace="ImGuiPlatformIO", ov_cimguiname="ImGuiPlatformIO_ClearPlatformHandlers", ret="void", signature="()", @@ -6876,7 +7211,8 @@ local t={ cimguiname="ImGuiPlatformIO_ClearRendererHandlers", defaults={}, funcname="ClearRendererHandlers", - location="imgui:4037", + location="imgui:4052", + namespace="ImGuiPlatformIO", ov_cimguiname="ImGuiPlatformIO_ClearRendererHandlers", ret="void", signature="()", @@ -6893,7 +7229,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiPlatformIO", - location="imgui:3986", + location="imgui:3995", + namespace="ImGuiPlatformIO", ov_cimguiname="ImGuiPlatformIO_ImGuiPlatformIO", signature="()", stname="ImGuiPlatformIO"}, @@ -6909,7 +7246,7 @@ local t={ cimguiname="ImGuiPlatformIO_destroy", defaults={}, destructor=true, - location="imgui:3986", + location="imgui:3995", ov_cimguiname="ImGuiPlatformIO_destroy", ret="void", signature="(ImGuiPlatformIO*)", @@ -6926,7 +7263,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiPlatformImeData", - location="imgui:4049", + location="imgui:4064", + namespace="ImGuiPlatformImeData", ov_cimguiname="ImGuiPlatformImeData_ImGuiPlatformImeData", signature="()", stname="ImGuiPlatformImeData"}, @@ -6942,7 +7280,7 @@ local t={ cimguiname="ImGuiPlatformImeData_destroy", defaults={}, destructor=true, - location="imgui:4049", + location="imgui:4064", ov_cimguiname="ImGuiPlatformImeData_destroy", ret="void", signature="(ImGuiPlatformImeData*)", @@ -6959,7 +7297,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiPopupData", - location="imgui_internal:1483", + location="imgui_internal:1492", + namespace="ImGuiPopupData", ov_cimguiname="ImGuiPopupData_ImGuiPopupData", signature="()", stname="ImGuiPopupData"}, @@ -6975,7 +7314,7 @@ local t={ cimguiname="ImGuiPopupData_destroy", defaults={}, destructor=true, - location="imgui_internal:1483", + location="imgui_internal:1492", ov_cimguiname="ImGuiPopupData_destroy", ret="void", signature="(ImGuiPopupData*)", @@ -6995,7 +7334,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiPtrOrIndex", - location="imgui_internal:1447", + location="imgui_internal:1455", + namespace="ImGuiPtrOrIndex", ov_cimguiname="ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr", signature="(void*)", stname="ImGuiPtrOrIndex"}, @@ -7012,7 +7352,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiPtrOrIndex", - location="imgui_internal:1448", + location="imgui_internal:1456", + namespace="ImGuiPtrOrIndex", ov_cimguiname="ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int", signature="(int)", stname="ImGuiPtrOrIndex"}, @@ -7029,7 +7370,7 @@ local t={ cimguiname="ImGuiPtrOrIndex_destroy", defaults={}, destructor=true, - location="imgui_internal:1447", + location="imgui_internal:1455", ov_cimguiname="ImGuiPtrOrIndex_destroy", ret="void", signature="(ImGuiPtrOrIndex*)", @@ -7051,7 +7392,8 @@ local t={ cimguiname="ImGuiSelectionBasicStorage_ApplyRequests", defaults={}, funcname="ApplyRequests", - location="imgui:3119", + location="imgui:3122", + namespace="ImGuiSelectionBasicStorage", ov_cimguiname="ImGuiSelectionBasicStorage_ApplyRequests", ret="void", signature="(ImGuiMultiSelectIO*)", @@ -7070,7 +7412,8 @@ local t={ cimguiname="ImGuiSelectionBasicStorage_Clear", defaults={}, funcname="Clear", - location="imgui:3121", + location="imgui:3124", + namespace="ImGuiSelectionBasicStorage", ov_cimguiname="ImGuiSelectionBasicStorage_Clear", ret="void", signature="()", @@ -7092,7 +7435,8 @@ local t={ cimguiname="ImGuiSelectionBasicStorage_Contains", defaults={}, funcname="Contains", - location="imgui:3120", + location="imgui:3123", + namespace="ImGuiSelectionBasicStorage", ov_cimguiname="ImGuiSelectionBasicStorage_Contains", ret="bool", signature="(ImGuiID)const", @@ -7117,7 +7461,8 @@ local t={ cimguiname="ImGuiSelectionBasicStorage_GetNextSelectedItem", defaults={}, funcname="GetNextSelectedItem", - location="imgui:3124", + location="imgui:3127", + namespace="ImGuiSelectionBasicStorage", ov_cimguiname="ImGuiSelectionBasicStorage_GetNextSelectedItem", ret="bool", signature="(void**,ImGuiID*)", @@ -7139,7 +7484,8 @@ local t={ cimguiname="ImGuiSelectionBasicStorage_GetStorageIdFromIndex", defaults={}, funcname="GetStorageIdFromIndex", - location="imgui:3125", + location="imgui:3128", + namespace="ImGuiSelectionBasicStorage", ov_cimguiname="ImGuiSelectionBasicStorage_GetStorageIdFromIndex", ret="ImGuiID", signature="(int)", @@ -7156,7 +7502,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiSelectionBasicStorage", - location="imgui:3118", + location="imgui:3121", + namespace="ImGuiSelectionBasicStorage", ov_cimguiname="ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage", signature="()", stname="ImGuiSelectionBasicStorage"}, @@ -7180,7 +7527,8 @@ local t={ cimguiname="ImGuiSelectionBasicStorage_SetItemSelected", defaults={}, funcname="SetItemSelected", - location="imgui:3123", + location="imgui:3126", + namespace="ImGuiSelectionBasicStorage", ov_cimguiname="ImGuiSelectionBasicStorage_SetItemSelected", ret="void", signature="(ImGuiID,bool)", @@ -7203,7 +7551,8 @@ local t={ cimguiname="ImGuiSelectionBasicStorage_Swap", defaults={}, funcname="Swap", - location="imgui:3122", + location="imgui:3125", + namespace="ImGuiSelectionBasicStorage", ov_cimguiname="ImGuiSelectionBasicStorage_Swap", ret="void", signature="(ImGuiSelectionBasicStorage*)", @@ -7220,7 +7569,7 @@ local t={ cimguiname="ImGuiSelectionBasicStorage_destroy", defaults={}, destructor=true, - location="imgui:3118", + location="imgui:3121", ov_cimguiname="ImGuiSelectionBasicStorage_destroy", ret="void", signature="(ImGuiSelectionBasicStorage*)", @@ -7242,7 +7591,8 @@ local t={ cimguiname="ImGuiSelectionExternalStorage_ApplyRequests", defaults={}, funcname="ApplyRequests", - location="imgui:3138", + location="imgui:3141", + namespace="ImGuiSelectionExternalStorage", ov_cimguiname="ImGuiSelectionExternalStorage_ApplyRequests", ret="void", signature="(ImGuiMultiSelectIO*)", @@ -7259,7 +7609,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiSelectionExternalStorage", - location="imgui:3137", + location="imgui:3140", + namespace="ImGuiSelectionExternalStorage", ov_cimguiname="ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage", signature="()", stname="ImGuiSelectionExternalStorage"}, @@ -7275,7 +7626,7 @@ local t={ cimguiname="ImGuiSelectionExternalStorage_destroy", defaults={}, destructor=true, - location="imgui:3137", + location="imgui:3140", ov_cimguiname="ImGuiSelectionExternalStorage_destroy", ret="void", signature="(ImGuiSelectionExternalStorage*)", @@ -7292,7 +7643,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiSettingsHandler", - location="imgui_internal:2023", + location="imgui_internal:2034", + namespace="ImGuiSettingsHandler", ov_cimguiname="ImGuiSettingsHandler_ImGuiSettingsHandler", signature="()", stname="ImGuiSettingsHandler"}, @@ -7308,7 +7660,7 @@ local t={ cimguiname="ImGuiSettingsHandler_destroy", defaults={}, destructor=true, - location="imgui_internal:2023", + location="imgui_internal:2034", ov_cimguiname="ImGuiSettingsHandler_destroy", ret="void", signature="(ImGuiSettingsHandler*)", @@ -7325,7 +7677,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiStackLevelInfo", - location="imgui_internal:2141", + location="imgui_internal:2152", + namespace="ImGuiStackLevelInfo", ov_cimguiname="ImGuiStackLevelInfo_ImGuiStackLevelInfo", signature="()", stname="ImGuiStackLevelInfo"}, @@ -7341,7 +7694,7 @@ local t={ cimguiname="ImGuiStackLevelInfo_destroy", defaults={}, destructor=true, - location="imgui_internal:2141", + location="imgui_internal:2152", ov_cimguiname="ImGuiStackLevelInfo_destroy", ret="void", signature="(ImGuiStackLevelInfo*)", @@ -7364,7 +7717,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiStoragePair", - location="imgui:2780", + location="imgui:2783", + namespace="ImGuiStoragePair", ov_cimguiname="ImGuiStoragePair_ImGuiStoragePair_Int", signature="(ImGuiID,int)", stname="ImGuiStoragePair"}, @@ -7384,7 +7738,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiStoragePair", - location="imgui:2781", + location="imgui:2784", + namespace="ImGuiStoragePair", ov_cimguiname="ImGuiStoragePair_ImGuiStoragePair_Float", signature="(ImGuiID,float)", stname="ImGuiStoragePair"}, @@ -7404,7 +7759,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiStoragePair", - location="imgui:2782", + location="imgui:2785", + namespace="ImGuiStoragePair", ov_cimguiname="ImGuiStoragePair_ImGuiStoragePair_Ptr", signature="(ImGuiID,void*)", stname="ImGuiStoragePair"}, @@ -7422,7 +7778,7 @@ local t={ cimguiname="ImGuiStoragePair_destroy", defaults={}, destructor=true, - location="imgui:2780", + location="imgui:2783", ov_cimguiname="ImGuiStoragePair_destroy", ret="void", signature="(ImGuiStoragePair*)", @@ -7441,7 +7797,8 @@ local t={ cimguiname="ImGuiStorage_BuildSortByKey", defaults={}, funcname="BuildSortByKey", - location="imgui:2821", + location="imgui:2824", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_BuildSortByKey", ret="void", signature="()", @@ -7460,7 +7817,8 @@ local t={ cimguiname="ImGuiStorage_Clear", defaults={}, funcname="Clear", - location="imgui:2801", + location="imgui:2804", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_Clear", ret="void", signature="()", @@ -7486,7 +7844,8 @@ local t={ defaults={ default_val="false"}, funcname="GetBool", - location="imgui:2804", + location="imgui:2807", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_GetBool", ret="bool", signature="(ImGuiID,bool)const", @@ -7512,7 +7871,8 @@ local t={ defaults={ default_val="false"}, funcname="GetBoolRef", - location="imgui:2816", + location="imgui:2819", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_GetBoolRef", ret="bool*", signature="(ImGuiID,bool)", @@ -7538,7 +7898,8 @@ local t={ defaults={ default_val="0.0f"}, funcname="GetFloat", - location="imgui:2806", + location="imgui:2809", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_GetFloat", ret="float", signature="(ImGuiID,float)const", @@ -7564,7 +7925,8 @@ local t={ defaults={ default_val="0.0f"}, funcname="GetFloatRef", - location="imgui:2817", + location="imgui:2820", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_GetFloatRef", ret="float*", signature="(ImGuiID,float)", @@ -7590,7 +7952,8 @@ local t={ defaults={ default_val="0"}, funcname="GetInt", - location="imgui:2802", + location="imgui:2805", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_GetInt", ret="int", signature="(ImGuiID,int)const", @@ -7616,7 +7979,8 @@ local t={ defaults={ default_val="0"}, funcname="GetIntRef", - location="imgui:2815", + location="imgui:2818", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_GetIntRef", ret="int*", signature="(ImGuiID,int)", @@ -7638,7 +8002,8 @@ local t={ cimguiname="ImGuiStorage_GetVoidPtr", defaults={}, funcname="GetVoidPtr", - location="imgui:2808", + location="imgui:2811", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_GetVoidPtr", ret="void*", signature="(ImGuiID)const", @@ -7664,7 +8029,8 @@ local t={ defaults={ default_val="NULL"}, funcname="GetVoidPtrRef", - location="imgui:2818", + location="imgui:2821", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_GetVoidPtrRef", ret="void**", signature="(ImGuiID,void*)", @@ -7686,7 +8052,8 @@ local t={ cimguiname="ImGuiStorage_SetAllInt", defaults={}, funcname="SetAllInt", - location="imgui:2823", + location="imgui:2826", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_SetAllInt", ret="void", signature="(int)", @@ -7711,7 +8078,8 @@ local t={ cimguiname="ImGuiStorage_SetBool", defaults={}, funcname="SetBool", - location="imgui:2805", + location="imgui:2808", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_SetBool", ret="void", signature="(ImGuiID,bool)", @@ -7736,7 +8104,8 @@ local t={ cimguiname="ImGuiStorage_SetFloat", defaults={}, funcname="SetFloat", - location="imgui:2807", + location="imgui:2810", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_SetFloat", ret="void", signature="(ImGuiID,float)", @@ -7761,7 +8130,8 @@ local t={ cimguiname="ImGuiStorage_SetInt", defaults={}, funcname="SetInt", - location="imgui:2803", + location="imgui:2806", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_SetInt", ret="void", signature="(ImGuiID,int)", @@ -7786,7 +8156,8 @@ local t={ cimguiname="ImGuiStorage_SetVoidPtr", defaults={}, funcname="SetVoidPtr", - location="imgui:2809", + location="imgui:2812", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_SetVoidPtr", ret="void", signature="(ImGuiID,void*)", @@ -7809,7 +8180,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiStyleMod", - location="imgui_internal:926", + location="imgui_internal:932", + namespace="ImGuiStyleMod", ov_cimguiname="ImGuiStyleMod_ImGuiStyleMod_Int", signature="(ImGuiStyleVar,int)", stname="ImGuiStyleMod"}, @@ -7829,7 +8201,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiStyleMod", - location="imgui_internal:927", + location="imgui_internal:933", + namespace="ImGuiStyleMod", ov_cimguiname="ImGuiStyleMod_ImGuiStyleMod_Float", signature="(ImGuiStyleVar,float)", stname="ImGuiStyleMod"}, @@ -7849,7 +8222,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiStyleMod", - location="imgui_internal:928", + location="imgui_internal:934", + namespace="ImGuiStyleMod", ov_cimguiname="ImGuiStyleMod_ImGuiStyleMod_Vec2", signature="(ImGuiStyleVar,ImVec2)", stname="ImGuiStyleMod"}, @@ -7867,7 +8241,7 @@ local t={ cimguiname="ImGuiStyleMod_destroy", defaults={}, destructor=true, - location="imgui_internal:926", + location="imgui_internal:932", ov_cimguiname="ImGuiStyleMod_destroy", ret="void", signature="(ImGuiStyleMod*)", @@ -7889,7 +8263,8 @@ local t={ cimguiname="ImGuiStyleVarInfo_GetVarPtr", defaults={}, funcname="GetVarPtr", - location="imgui_internal:911", + location="imgui_internal:917", + namespace="ImGuiStyleVarInfo", ov_cimguiname="ImGuiStyleVarInfo_GetVarPtr", ret="void*", signature="(void*)const", @@ -7906,7 +8281,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiStyle", - location="imgui:2367", + location="imgui:2370", + namespace="ImGuiStyle", ov_cimguiname="ImGuiStyle_ImGuiStyle", signature="()", stname="ImGuiStyle"}, @@ -7927,7 +8303,8 @@ local t={ cimguiname="ImGuiStyle_ScaleAllSizes", defaults={}, funcname="ScaleAllSizes", - location="imgui:2368", + location="imgui:2371", + namespace="ImGuiStyle", ov_cimguiname="ImGuiStyle_ScaleAllSizes", ret="void", signature="(float)", @@ -7944,7 +8321,7 @@ local t={ cimguiname="ImGuiStyle_destroy", defaults={}, destructor=true, - location="imgui:2367", + location="imgui:2370", ov_cimguiname="ImGuiStyle_destroy", ret="void", signature="(ImGuiStyle*)", @@ -7961,7 +8338,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiTabBar", - location="imgui_internal:2863", + location="imgui_internal:2875", + namespace="ImGuiTabBar", ov_cimguiname="ImGuiTabBar_ImGuiTabBar", signature="()", stname="ImGuiTabBar"}, @@ -7977,7 +8355,7 @@ local t={ cimguiname="ImGuiTabBar_destroy", defaults={}, destructor=true, - location="imgui_internal:2863", + location="imgui_internal:2875", ov_cimguiname="ImGuiTabBar_destroy", ret="void", signature="(ImGuiTabBar*)", @@ -7994,7 +8372,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiTabItem", - location="imgui_internal:2819", + location="imgui_internal:2831", + namespace="ImGuiTabItem", ov_cimguiname="ImGuiTabItem_ImGuiTabItem", signature="()", stname="ImGuiTabItem"}, @@ -8010,7 +8389,7 @@ local t={ cimguiname="ImGuiTabItem_destroy", defaults={}, destructor=true, - location="imgui_internal:2819", + location="imgui_internal:2831", ov_cimguiname="ImGuiTabItem_destroy", ret="void", signature="(ImGuiTabItem*)", @@ -8027,7 +8406,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiTableColumnSettings", - location="imgui_internal:3130", + location="imgui_internal:3142", + namespace="ImGuiTableColumnSettings", ov_cimguiname="ImGuiTableColumnSettings_ImGuiTableColumnSettings", signature="()", stname="ImGuiTableColumnSettings"}, @@ -8043,7 +8423,7 @@ local t={ cimguiname="ImGuiTableColumnSettings_destroy", defaults={}, destructor=true, - location="imgui_internal:3130", + location="imgui_internal:3142", ov_cimguiname="ImGuiTableColumnSettings_destroy", ret="void", signature="(ImGuiTableColumnSettings*)", @@ -8060,7 +8440,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiTableColumnSortSpecs", - location="imgui:2163", + location="imgui:2166", + namespace="ImGuiTableColumnSortSpecs", ov_cimguiname="ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs", signature="()", stname="ImGuiTableColumnSortSpecs"}, @@ -8076,7 +8457,7 @@ local t={ cimguiname="ImGuiTableColumnSortSpecs_destroy", defaults={}, destructor=true, - location="imgui:2163", + location="imgui:2166", ov_cimguiname="ImGuiTableColumnSortSpecs_destroy", ret="void", signature="(ImGuiTableColumnSortSpecs*)", @@ -8093,7 +8474,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiTableColumn", - location="imgui_internal:2922", + location="imgui_internal:2934", + namespace="ImGuiTableColumn", ov_cimguiname="ImGuiTableColumn_ImGuiTableColumn", signature="()", stname="ImGuiTableColumn"}, @@ -8109,7 +8491,7 @@ local t={ cimguiname="ImGuiTableColumn_destroy", defaults={}, destructor=true, - location="imgui_internal:2922", + location="imgui_internal:2934", ov_cimguiname="ImGuiTableColumn_destroy", ret="void", signature="(ImGuiTableColumn*)", @@ -8126,7 +8508,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiTableInstanceData", - location="imgui_internal:2965", + location="imgui_internal:2977", + namespace="ImGuiTableInstanceData", ov_cimguiname="ImGuiTableInstanceData_ImGuiTableInstanceData", signature="()", stname="ImGuiTableInstanceData"}, @@ -8142,7 +8525,7 @@ local t={ cimguiname="ImGuiTableInstanceData_destroy", defaults={}, destructor=true, - location="imgui_internal:2965", + location="imgui_internal:2977", ov_cimguiname="ImGuiTableInstanceData_destroy", ret="void", signature="(ImGuiTableInstanceData*)", @@ -8161,7 +8544,8 @@ local t={ cimguiname="ImGuiTableSettings_GetColumnSettings", defaults={}, funcname="GetColumnSettings", - location="imgui_internal:3153", + location="imgui_internal:3165", + namespace="ImGuiTableSettings", ov_cimguiname="ImGuiTableSettings_GetColumnSettings", ret="ImGuiTableColumnSettings*", signature="()", @@ -8178,7 +8562,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiTableSettings", - location="imgui_internal:3152", + location="imgui_internal:3164", + namespace="ImGuiTableSettings", ov_cimguiname="ImGuiTableSettings_ImGuiTableSettings", signature="()", stname="ImGuiTableSettings"}, @@ -8194,7 +8579,7 @@ local t={ cimguiname="ImGuiTableSettings_destroy", defaults={}, destructor=true, - location="imgui_internal:3152", + location="imgui_internal:3164", ov_cimguiname="ImGuiTableSettings_destroy", ret="void", signature="(ImGuiTableSettings*)", @@ -8211,7 +8596,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiTableSortSpecs", - location="imgui:2152", + location="imgui:2155", + namespace="ImGuiTableSortSpecs", ov_cimguiname="ImGuiTableSortSpecs_ImGuiTableSortSpecs", signature="()", stname="ImGuiTableSortSpecs"}, @@ -8227,7 +8613,7 @@ local t={ cimguiname="ImGuiTableSortSpecs_destroy", defaults={}, destructor=true, - location="imgui:2152", + location="imgui:2155", ov_cimguiname="ImGuiTableSortSpecs_destroy", ret="void", signature="(ImGuiTableSortSpecs*)", @@ -8244,7 +8630,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiTableTempData", - location="imgui_internal:3115", + location="imgui_internal:3127", + namespace="ImGuiTableTempData", ov_cimguiname="ImGuiTableTempData_ImGuiTableTempData", signature="()", stname="ImGuiTableTempData"}, @@ -8260,7 +8647,7 @@ local t={ cimguiname="ImGuiTableTempData_destroy", defaults={}, destructor=true, - location="imgui_internal:3115", + location="imgui_internal:3127", ov_cimguiname="ImGuiTableTempData_destroy", ret="void", signature="(ImGuiTableTempData*)", @@ -8277,7 +8664,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiTable", - location="imgui_internal:3086", + location="imgui_internal:3098", + namespace="ImGuiTable", ov_cimguiname="ImGuiTable_ImGuiTable", signature="()", stname="ImGuiTable"}, @@ -8293,7 +8681,7 @@ local t={ cimguiname="ImGuiTable_destroy", defaults={}, destructor=true, - location="imgui_internal:3087", + location="imgui_internal:3099", ov_cimguiname="ImGuiTable_destroy", realdestructor=true, ret="void", @@ -8311,7 +8699,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiTextBuffer", - location="imgui:2760", + location="imgui:2763", + namespace="ImGuiTextBuffer", ov_cimguiname="ImGuiTextBuffer_ImGuiTextBuffer", signature="()", stname="ImGuiTextBuffer"}, @@ -8336,7 +8725,8 @@ local t={ defaults={ str_end="NULL"}, funcname="append", - location="imgui:2770", + location="imgui:2773", + namespace="ImGuiTextBuffer", ov_cimguiname="ImGuiTextBuffer_append", ret="void", signature="(const char*,const char*)", @@ -8362,8 +8752,9 @@ local t={ defaults={}, funcname="appendf", isvararg="...)", - location="imgui:2771", + location="imgui:2774", manual=true, + namespace="ImGuiTextBuffer", ov_cimguiname="ImGuiTextBuffer_appendf", ret="void", signature="(ImGuiTextBuffer*, const char*,...)", @@ -8388,7 +8779,8 @@ local t={ cimguiname="ImGuiTextBuffer_appendfv", defaults={}, funcname="appendfv", - location="imgui:2772", + location="imgui:2775", + namespace="ImGuiTextBuffer", ov_cimguiname="ImGuiTextBuffer_appendfv", ret="void", signature="(const char*,va_list)", @@ -8407,7 +8799,8 @@ local t={ cimguiname="ImGuiTextBuffer_begin", defaults={}, funcname="begin", - location="imgui:2762", + location="imgui:2765", + namespace="ImGuiTextBuffer", ov_cimguiname="ImGuiTextBuffer_begin", ret="const char*", signature="()const", @@ -8426,7 +8819,8 @@ local t={ cimguiname="ImGuiTextBuffer_c_str", defaults={}, funcname="c_str", - location="imgui:2769", + location="imgui:2772", + namespace="ImGuiTextBuffer", ov_cimguiname="ImGuiTextBuffer_c_str", ret="const char*", signature="()const", @@ -8445,7 +8839,8 @@ local t={ cimguiname="ImGuiTextBuffer_clear", defaults={}, funcname="clear", - location="imgui:2766", + location="imgui:2769", + namespace="ImGuiTextBuffer", ov_cimguiname="ImGuiTextBuffer_clear", ret="void", signature="()", @@ -8462,7 +8857,7 @@ local t={ cimguiname="ImGuiTextBuffer_destroy", defaults={}, destructor=true, - location="imgui:2760", + location="imgui:2763", ov_cimguiname="ImGuiTextBuffer_destroy", ret="void", signature="(ImGuiTextBuffer*)", @@ -8481,7 +8876,8 @@ local t={ cimguiname="ImGuiTextBuffer_empty", defaults={}, funcname="empty", - location="imgui:2765", + location="imgui:2768", + namespace="ImGuiTextBuffer", ov_cimguiname="ImGuiTextBuffer_empty", ret="bool", signature="()const", @@ -8500,7 +8896,8 @@ local t={ cimguiname="ImGuiTextBuffer_end", defaults={}, funcname="end", - location="imgui:2763", + location="imgui:2766", + namespace="ImGuiTextBuffer", ov_cimguiname="ImGuiTextBuffer_end", ret="const char*", signature="()const", @@ -8522,7 +8919,8 @@ local t={ cimguiname="ImGuiTextBuffer_reserve", defaults={}, funcname="reserve", - location="imgui:2768", + location="imgui:2771", + namespace="ImGuiTextBuffer", ov_cimguiname="ImGuiTextBuffer_reserve", ret="void", signature="(int)", @@ -8544,7 +8942,8 @@ local t={ cimguiname="ImGuiTextBuffer_resize", defaults={}, funcname="resize", - location="imgui:2767", + location="imgui:2770", + namespace="ImGuiTextBuffer", ov_cimguiname="ImGuiTextBuffer_resize", ret="void", signature="(int)", @@ -8563,7 +8962,8 @@ local t={ cimguiname="ImGuiTextBuffer_size", defaults={}, funcname="size", - location="imgui:2764", + location="imgui:2767", + namespace="ImGuiTextBuffer", ov_cimguiname="ImGuiTextBuffer_size", ret="int", signature="()const", @@ -8582,7 +8982,8 @@ local t={ cimguiname="ImGuiTextFilter_Build", defaults={}, funcname="Build", - location="imgui:2733", + location="imgui:2736", + namespace="ImGuiTextFilter", ov_cimguiname="ImGuiTextFilter_Build", ret="void", signature="()", @@ -8601,7 +9002,8 @@ local t={ cimguiname="ImGuiTextFilter_Clear", defaults={}, funcname="Clear", - location="imgui:2734", + location="imgui:2737", + namespace="ImGuiTextFilter", ov_cimguiname="ImGuiTextFilter_Clear", ret="void", signature="()", @@ -8628,7 +9030,8 @@ local t={ label="\"Filter(inc,-exc)\"", width="0.0f"}, funcname="Draw", - location="imgui:2731", + location="imgui:2734", + namespace="ImGuiTextFilter", ov_cimguiname="ImGuiTextFilter_Draw", ret="bool", signature="(const char*,float)", @@ -8649,7 +9052,8 @@ local t={ defaults={ default_filter="\"\""}, funcname="ImGuiTextFilter", - location="imgui:2730", + location="imgui:2733", + namespace="ImGuiTextFilter", ov_cimguiname="ImGuiTextFilter_ImGuiTextFilter", signature="(const char*)", stname="ImGuiTextFilter"}, @@ -8667,7 +9071,8 @@ local t={ cimguiname="ImGuiTextFilter_IsActive", defaults={}, funcname="IsActive", - location="imgui:2735", + location="imgui:2738", + namespace="ImGuiTextFilter", ov_cimguiname="ImGuiTextFilter_IsActive", ret="bool", signature="()const", @@ -8693,7 +9098,8 @@ local t={ defaults={ text_end="NULL"}, funcname="PassFilter", - location="imgui:2732", + location="imgui:2735", + namespace="ImGuiTextFilter", ov_cimguiname="ImGuiTextFilter_PassFilter", ret="bool", signature="(const char*,const char*)const", @@ -8710,7 +9116,7 @@ local t={ cimguiname="ImGuiTextFilter_destroy", defaults={}, destructor=true, - location="imgui:2730", + location="imgui:2733", ov_cimguiname="ImGuiTextFilter_destroy", ret="void", signature="(ImGuiTextFilter*)", @@ -8738,7 +9144,8 @@ local t={ cimguiname="ImGuiTextIndex_append", defaults={}, funcname="append", - location="imgui_internal:821", + location="imgui_internal:827", + namespace="ImGuiTextIndex", ov_cimguiname="ImGuiTextIndex_append", ret="void", signature="(const char*,int,int)", @@ -8757,7 +9164,8 @@ local t={ cimguiname="ImGuiTextIndex_clear", defaults={}, funcname="clear", - location="imgui_internal:817", + location="imgui_internal:823", + namespace="ImGuiTextIndex", ov_cimguiname="ImGuiTextIndex_clear", ret="void", signature="()", @@ -8782,7 +9190,8 @@ local t={ cimguiname="ImGuiTextIndex_get_line_begin", defaults={}, funcname="get_line_begin", - location="imgui_internal:819", + location="imgui_internal:825", + namespace="ImGuiTextIndex", ov_cimguiname="ImGuiTextIndex_get_line_begin", ret="const char*", signature="(const char*,int)", @@ -8807,7 +9216,8 @@ local t={ cimguiname="ImGuiTextIndex_get_line_end", defaults={}, funcname="get_line_end", - location="imgui_internal:820", + location="imgui_internal:826", + namespace="ImGuiTextIndex", ov_cimguiname="ImGuiTextIndex_get_line_end", ret="const char*", signature="(const char*,int)", @@ -8826,7 +9236,8 @@ local t={ cimguiname="ImGuiTextIndex_size", defaults={}, funcname="size", - location="imgui_internal:818", + location="imgui_internal:824", + namespace="ImGuiTextIndex", ov_cimguiname="ImGuiTextIndex_size", ret="int", signature="()", @@ -8843,7 +9254,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiTextRange", - location="imgui:2743", + location="imgui:2746", + namespace="ImGuiTextFilter::ImGuiTextRange", ov_cimguiname="ImGuiTextRange_ImGuiTextRange_Nil", signature="()", stname="ImGuiTextRange"}, @@ -8863,7 +9275,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiTextRange", - location="imgui:2744", + location="imgui:2747", + namespace="ImGuiTextFilter::ImGuiTextRange", ov_cimguiname="ImGuiTextRange_ImGuiTextRange_Str", signature="(const char*,const char*)", stname="ImGuiTextRange"}, @@ -8880,7 +9293,7 @@ local t={ cimguiname="ImGuiTextRange_destroy", defaults={}, destructor=true, - location="imgui:2743", + location="imgui:2746", ov_cimguiname="ImGuiTextRange_destroy", ret="void", signature="(ImGuiTextRange*)", @@ -8899,7 +9312,8 @@ local t={ cimguiname="ImGuiTextRange_empty", defaults={}, funcname="empty", - location="imgui:2745", + location="imgui:2748", + namespace="ImGuiTextFilter::ImGuiTextRange", ov_cimguiname="ImGuiTextRange_empty", ret="bool", signature="()const", @@ -8917,6 +9331,7 @@ local t={ type="char"}, [3]={ name="out", + template_orig="ImVector* out", type="ImVector_ImGuiTextRange*"}}, argsoriginal="(char separator,ImVector* out)", call_args="(separator,out)", @@ -8924,7 +9339,8 @@ local t={ cimguiname="ImGuiTextRange_split", defaults={}, funcname="split", - location="imgui:2746", + location="imgui:2749", + namespace="ImGuiTextFilter::ImGuiTextRange", ov_cimguiname="ImGuiTextRange_split", ret="void", signature="(char,ImVector_ImGuiTextRange*)const", @@ -8943,7 +9359,8 @@ local t={ cimguiname="ImGuiTypingSelectState_Clear", defaults={}, funcname="Clear", - location="imgui_internal:1812", + location="imgui_internal:1821", + namespace="ImGuiTypingSelectState", ov_cimguiname="ImGuiTypingSelectState_Clear", ret="void", signature="()", @@ -8960,7 +9377,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiTypingSelectState", - location="imgui_internal:1811", + location="imgui_internal:1820", + namespace="ImGuiTypingSelectState", ov_cimguiname="ImGuiTypingSelectState_ImGuiTypingSelectState", signature="()", stname="ImGuiTypingSelectState"}, @@ -8976,7 +9394,7 @@ local t={ cimguiname="ImGuiTypingSelectState_destroy", defaults={}, destructor=true, - location="imgui_internal:1811", + location="imgui_internal:1820", ov_cimguiname="ImGuiTypingSelectState_destroy", ret="void", signature="(ImGuiTypingSelectState*)", @@ -8999,7 +9417,8 @@ local t={ conv="ImVec2", defaults={}, funcname="CalcWorkRectPos", - location="imgui_internal:1980", + location="imgui_internal:1991", + namespace="ImGuiViewportP", nonUDT=1, ov_cimguiname="ImGuiViewportP_CalcWorkRectPos", ret="ImVec2_c", @@ -9026,7 +9445,8 @@ local t={ conv="ImVec2", defaults={}, funcname="CalcWorkRectSize", - location="imgui_internal:1981", + location="imgui_internal:1992", + namespace="ImGuiViewportP", nonUDT=1, ov_cimguiname="ImGuiViewportP_CalcWorkRectSize", ret="ImVec2_c", @@ -9047,7 +9467,8 @@ local t={ conv="ImRect", defaults={}, funcname="GetBuildWorkRect", - location="imgui_internal:1987", + location="imgui_internal:1998", + namespace="ImGuiViewportP", nonUDT=1, ov_cimguiname="ImGuiViewportP_GetBuildWorkRect", ret="ImRect_c", @@ -9068,7 +9489,8 @@ local t={ conv="ImRect", defaults={}, funcname="GetMainRect", - location="imgui_internal:1985", + location="imgui_internal:1996", + namespace="ImGuiViewportP", nonUDT=1, ov_cimguiname="ImGuiViewportP_GetMainRect", ret="ImRect_c", @@ -9089,7 +9511,8 @@ local t={ conv="ImRect", defaults={}, funcname="GetWorkRect", - location="imgui_internal:1986", + location="imgui_internal:1997", + namespace="ImGuiViewportP", nonUDT=1, ov_cimguiname="ImGuiViewportP_GetWorkRect", ret="ImRect_c", @@ -9107,7 +9530,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiViewportP", - location="imgui_internal:1976", + location="imgui_internal:1987", + namespace="ImGuiViewportP", ov_cimguiname="ImGuiViewportP_ImGuiViewportP", signature="()", stname="ImGuiViewportP"}, @@ -9125,7 +9549,8 @@ local t={ cimguiname="ImGuiViewportP_UpdateWorkRect", defaults={}, funcname="UpdateWorkRect", - location="imgui_internal:1982", + location="imgui_internal:1993", + namespace="ImGuiViewportP", ov_cimguiname="ImGuiViewportP_UpdateWorkRect", ret="void", signature="()", @@ -9142,7 +9567,7 @@ local t={ cimguiname="ImGuiViewportP_destroy", defaults={}, destructor=true, - location="imgui_internal:1977", + location="imgui_internal:1988", ov_cimguiname="ImGuiViewportP_destroy", realdestructor=true, ret="void", @@ -9163,7 +9588,8 @@ local t={ conv="ImVec2", defaults={}, funcname="GetCenter", - location="imgui:3975", + location="imgui:3984", + namespace="ImGuiViewport", nonUDT=1, ov_cimguiname="ImGuiViewport_GetCenter", ret="ImVec2_c", @@ -9184,7 +9610,8 @@ local t={ conv="ImVec2", defaults={}, funcname="GetWorkCenter", - location="imgui:3976", + location="imgui:3985", + namespace="ImGuiViewport", nonUDT=1, ov_cimguiname="ImGuiViewport_GetWorkCenter", ret="ImVec2_c", @@ -9202,7 +9629,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiViewport", - location="imgui:3972", + location="imgui:3981", + namespace="ImGuiViewport", ov_cimguiname="ImGuiViewport_ImGuiViewport", signature="()", stname="ImGuiViewport"}, @@ -9218,7 +9646,7 @@ local t={ cimguiname="ImGuiViewport_destroy", defaults={}, destructor=true, - location="imgui:3972", + location="imgui:3981", ov_cimguiname="ImGuiViewport_destroy", ret="void", signature="(ImGuiViewport*)", @@ -9237,7 +9665,8 @@ local t={ cimguiname="ImGuiWindowSettings_GetName", defaults={}, funcname="GetName", - location="imgui_internal:2008", + location="imgui_internal:2019", + namespace="ImGuiWindowSettings", ov_cimguiname="ImGuiWindowSettings_GetName", ret="char*", signature="()", @@ -9254,7 +9683,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiWindowSettings", - location="imgui_internal:2007", + location="imgui_internal:2018", + namespace="ImGuiWindowSettings", ov_cimguiname="ImGuiWindowSettings_ImGuiWindowSettings", signature="()", stname="ImGuiWindowSettings"}, @@ -9270,7 +9700,7 @@ local t={ cimguiname="ImGuiWindowSettings_destroy", defaults={}, destructor=true, - location="imgui_internal:2007", + location="imgui_internal:2018", ov_cimguiname="ImGuiWindowSettings_destroy", ret="void", signature="(ImGuiWindowSettings*)", @@ -9296,7 +9726,8 @@ local t={ defaults={ str_end="NULL"}, funcname="GetID", - location="imgui_internal:2766", + location="imgui_internal:2778", + namespace="ImGuiWindow", ov_cimguiname="ImGuiWindow_GetID_Str", ret="ImGuiID", signature="(const char*,const char*)", @@ -9316,7 +9747,8 @@ local t={ cimguiname="ImGuiWindow_GetID", defaults={}, funcname="GetID", - location="imgui_internal:2767", + location="imgui_internal:2779", + namespace="ImGuiWindow", ov_cimguiname="ImGuiWindow_GetID_Ptr", ret="ImGuiID", signature="(const void*)", @@ -9336,7 +9768,8 @@ local t={ cimguiname="ImGuiWindow_GetID", defaults={}, funcname="GetID", - location="imgui_internal:2768", + location="imgui_internal:2780", + namespace="ImGuiWindow", ov_cimguiname="ImGuiWindow_GetID_Int", ret="ImGuiID", signature="(int)", @@ -9360,7 +9793,8 @@ local t={ cimguiname="ImGuiWindow_GetIDFromPos", defaults={}, funcname="GetIDFromPos", - location="imgui_internal:2769", + location="imgui_internal:2781", + namespace="ImGuiWindow", ov_cimguiname="ImGuiWindow_GetIDFromPos", ret="ImGuiID", signature="(const ImVec2)", @@ -9382,7 +9816,8 @@ local t={ cimguiname="ImGuiWindow_GetIDFromRectangle", defaults={}, funcname="GetIDFromRectangle", - location="imgui_internal:2770", + location="imgui_internal:2782", + namespace="ImGuiWindow", ov_cimguiname="ImGuiWindow_GetIDFromRectangle", ret="ImGuiID", signature="(const ImRect)", @@ -9405,7 +9840,8 @@ local t={ constructor=true, defaults={}, funcname="ImGuiWindow", - location="imgui_internal:2762", + location="imgui_internal:2774", + namespace="ImGuiWindow", ov_cimguiname="ImGuiWindow_ImGuiWindow", signature="(ImGuiContext*,const char*)", stname="ImGuiWindow"}, @@ -9424,7 +9860,8 @@ local t={ conv="ImRect", defaults={}, funcname="MenuBarRect", - location="imgui_internal:2775", + location="imgui_internal:2787", + namespace="ImGuiWindow", nonUDT=1, ov_cimguiname="ImGuiWindow_MenuBarRect", ret="ImRect_c", @@ -9445,7 +9882,8 @@ local t={ conv="ImRect", defaults={}, funcname="Rect", - location="imgui_internal:2773", + location="imgui_internal:2785", + namespace="ImGuiWindow", nonUDT=1, ov_cimguiname="ImGuiWindow_Rect", ret="ImRect_c", @@ -9466,7 +9904,8 @@ local t={ conv="ImRect", defaults={}, funcname="TitleBarRect", - location="imgui_internal:2774", + location="imgui_internal:2786", + namespace="ImGuiWindow", nonUDT=1, ov_cimguiname="ImGuiWindow_TitleBarRect", ret="ImRect_c", @@ -9484,7 +9923,7 @@ local t={ cimguiname="ImGuiWindow_destroy", defaults={}, destructor=true, - location="imgui_internal:2764", + location="imgui_internal:2776", ov_cimguiname="ImGuiWindow_destroy", realdestructor=true, ret="void", @@ -9504,7 +9943,8 @@ local t={ cimguiname="ImPool_Add", defaults={}, funcname="Add", - location="imgui_internal:774", + location="imgui_internal:780", + namespace="ImPool", ov_cimguiname="ImPool_Add", ret="T*", signature="()", @@ -9524,7 +9964,8 @@ local t={ cimguiname="ImPool_Clear", defaults={}, funcname="Clear", - location="imgui_internal:773", + location="imgui_internal:779", + namespace="ImPool", ov_cimguiname="ImPool_Clear", ret="void", signature="()", @@ -9547,7 +9988,8 @@ local t={ cimguiname="ImPool_Contains", defaults={}, funcname="Contains", - location="imgui_internal:772", + location="imgui_internal:778", + namespace="ImPool", ov_cimguiname="ImPool_Contains", ret="bool", signature="(const T*)const", @@ -9567,7 +10009,8 @@ local t={ cimguiname="ImPool_GetAliveCount", defaults={}, funcname="GetAliveCount", - location="imgui_internal:781", + location="imgui_internal:787", + namespace="ImPool", ov_cimguiname="ImPool_GetAliveCount", ret="int", signature="()const", @@ -9587,7 +10030,8 @@ local t={ cimguiname="ImPool_GetBufSize", defaults={}, funcname="GetBufSize", - location="imgui_internal:782", + location="imgui_internal:788", + namespace="ImPool", ov_cimguiname="ImPool_GetBufSize", ret="int", signature="()const", @@ -9610,7 +10054,8 @@ local t={ cimguiname="ImPool_GetByIndex", defaults={}, funcname="GetByIndex", - location="imgui_internal:769", + location="imgui_internal:775", + namespace="ImPool", ov_cimguiname="ImPool_GetByIndex", ret="T*", signature="(ImPoolIdx)", @@ -9633,7 +10078,8 @@ local t={ cimguiname="ImPool_GetByKey", defaults={}, funcname="GetByKey", - location="imgui_internal:768", + location="imgui_internal:774", + namespace="ImPool", ov_cimguiname="ImPool_GetByKey", ret="T*", signature="(ImGuiID)", @@ -9656,7 +10102,8 @@ local t={ cimguiname="ImPool_GetIndex", defaults={}, funcname="GetIndex", - location="imgui_internal:770", + location="imgui_internal:776", + namespace="ImPool", ov_cimguiname="ImPool_GetIndex", ret="ImPoolIdx", signature="(const T*)const", @@ -9676,7 +10123,8 @@ local t={ cimguiname="ImPool_GetMapSize", defaults={}, funcname="GetMapSize", - location="imgui_internal:783", + location="imgui_internal:789", + namespace="ImPool", ov_cimguiname="ImPool_GetMapSize", ret="int", signature="()const", @@ -9699,7 +10147,8 @@ local t={ cimguiname="ImPool_GetOrAddByKey", defaults={}, funcname="GetOrAddByKey", - location="imgui_internal:771", + location="imgui_internal:777", + namespace="ImPool", ov_cimguiname="ImPool_GetOrAddByKey", ret="T*", signature="(ImGuiID)", @@ -9717,7 +10166,8 @@ local t={ constructor=true, defaults={}, funcname="ImPool", - location="imgui_internal:766", + location="imgui_internal:772", + namespace="ImPool", ov_cimguiname="ImPool_ImPool", signature="()", stname="ImPool", @@ -9742,7 +10192,8 @@ local t={ cimguiname="ImPool_Remove", defaults={}, funcname="Remove", - location="imgui_internal:775", + location="imgui_internal:781", + namespace="ImPool", ov_cimguiname="ImPool_Remove_TPtr", ret="void", signature="(ImGuiID,const T*)", @@ -9766,7 +10217,8 @@ local t={ cimguiname="ImPool_Remove", defaults={}, funcname="Remove", - location="imgui_internal:776", + location="imgui_internal:782", + namespace="ImPool", ov_cimguiname="ImPool_Remove_PoolIdx", ret="void", signature="(ImGuiID,ImPoolIdx)", @@ -9790,7 +10242,8 @@ local t={ cimguiname="ImPool_Reserve", defaults={}, funcname="Reserve", - location="imgui_internal:777", + location="imgui_internal:783", + namespace="ImPool", ov_cimguiname="ImPool_Reserve", ret="void", signature="(int)", @@ -9813,7 +10266,8 @@ local t={ cimguiname="ImPool_TryGetMapData", defaults={}, funcname="TryGetMapData", - location="imgui_internal:784", + location="imgui_internal:790", + namespace="ImPool", ov_cimguiname="ImPool_TryGetMapData", ret="T*", signature="(ImPoolIdx)", @@ -9831,7 +10285,7 @@ local t={ cimguiname="ImPool_destroy", defaults={}, destructor=true, - location="imgui_internal:767", + location="imgui_internal:773", ov_cimguiname="ImPool_destroy", realdestructor=true, ret="void", @@ -9855,7 +10309,8 @@ local t={ cimguiname="ImRect_Add", defaults={}, funcname="Add", - location="imgui_internal:604", + location="imgui_internal:608", + namespace="ImRect", ov_cimguiname="ImRect_Add_Vec2", ret="void", signature="(const ImVec2)", @@ -9875,13 +10330,60 @@ local t={ cimguiname="ImRect_Add", defaults={}, funcname="Add", - location="imgui_internal:605", + location="imgui_internal:609", + namespace="ImRect", ov_cimguiname="ImRect_Add_Rect", ret="void", signature="(const ImRect)", stname="ImRect"}, ["(const ImRect)"]=nil, ["(const ImVec2)"]=nil}, + ImRect_AddX={ + [1]={ + args="(ImRect* self,float x)", + argsT={ + [1]={ + name="self", + type="ImRect*"}, + [2]={ + name="x", + type="float"}}, + argsoriginal="(float x)", + call_args="(x)", + call_args_old="(x)", + cimguiname="ImRect_AddX", + defaults={}, + funcname="AddX", + location="imgui_internal:610", + namespace="ImRect", + ov_cimguiname="ImRect_AddX", + ret="void", + signature="(float)", + stname="ImRect"}, + ["(float)"]=nil}, + ImRect_AddY={ + [1]={ + args="(ImRect* self,float y)", + argsT={ + [1]={ + name="self", + type="ImRect*"}, + [2]={ + name="y", + type="float"}}, + argsoriginal="(float y)", + call_args="(y)", + call_args_old="(y)", + cimguiname="ImRect_AddY", + defaults={}, + funcname="AddY", + location="imgui_internal:611", + namespace="ImRect", + ov_cimguiname="ImRect_AddY", + ret="void", + signature="(float)", + stname="ImRect"}, + ["(float)"]=nil}, ImRect_AsVec4={ [1]={ args="(ImRect* self)", @@ -9895,7 +10397,8 @@ local t={ cimguiname="ImRect_AsVec4", defaults={}, funcname="AsVec4", - location="imgui_internal:615", + location="imgui_internal:621", + namespace="ImRect", nonUDT=2, ov_cimguiname="ImRect_AsVec4", ret="const ImVec4_c*", @@ -9919,7 +10422,8 @@ local t={ cimguiname="ImRect_ClipWith", defaults={}, funcname="ClipWith", - location="imgui_internal:611", + location="imgui_internal:617", + namespace="ImRect", ov_cimguiname="ImRect_ClipWith", ret="void", signature="(const ImRect)", @@ -9941,7 +10445,8 @@ local t={ cimguiname="ImRect_ClipWithFull", defaults={}, funcname="ClipWithFull", - location="imgui_internal:612", + location="imgui_internal:618", + namespace="ImRect", ov_cimguiname="ImRect_ClipWithFull", ret="void", signature="(const ImRect)", @@ -9963,7 +10468,8 @@ local t={ cimguiname="ImRect_Contains", defaults={}, funcname="Contains", - location="imgui_internal:600", + location="imgui_internal:604", + namespace="ImRect", ov_cimguiname="ImRect_Contains_Vec2", ret="bool", signature="(const ImVec2)const", @@ -9983,7 +10489,8 @@ local t={ cimguiname="ImRect_Contains", defaults={}, funcname="Contains", - location="imgui_internal:601", + location="imgui_internal:605", + namespace="ImRect", ov_cimguiname="ImRect_Contains_Rect", ret="bool", signature="(const ImRect)const", @@ -10009,7 +10516,8 @@ local t={ cimguiname="ImRect_ContainsWithPad", defaults={}, funcname="ContainsWithPad", - location="imgui_internal:602", + location="imgui_internal:606", + namespace="ImRect", ov_cimguiname="ImRect_ContainsWithPad", ret="bool", signature="(const ImVec2,const ImVec2)const", @@ -10031,7 +10539,8 @@ local t={ cimguiname="ImRect_Expand", defaults={}, funcname="Expand", - location="imgui_internal:606", + location="imgui_internal:612", + namespace="ImRect", ov_cimguiname="ImRect_Expand_Float", ret="void", signature="(const float)", @@ -10051,7 +10560,8 @@ local t={ cimguiname="ImRect_Expand", defaults={}, funcname="Expand", - location="imgui_internal:607", + location="imgui_internal:613", + namespace="ImRect", ov_cimguiname="ImRect_Expand_Vec2", ret="void", signature="(const ImVec2)", @@ -10071,7 +10581,8 @@ local t={ cimguiname="ImRect_GetArea", defaults={}, funcname="GetArea", - location="imgui_internal:595", + location="imgui_internal:599", + namespace="ImRect", ov_cimguiname="ImRect_GetArea", ret="float", signature="()const", @@ -10091,7 +10602,8 @@ local t={ conv="ImVec2", defaults={}, funcname="GetBL", - location="imgui_internal:598", + location="imgui_internal:602", + namespace="ImRect", nonUDT=1, ov_cimguiname="ImRect_GetBL", ret="ImVec2_c", @@ -10112,7 +10624,8 @@ local t={ conv="ImVec2", defaults={}, funcname="GetBR", - location="imgui_internal:599", + location="imgui_internal:603", + namespace="ImRect", nonUDT=1, ov_cimguiname="ImRect_GetBR", ret="ImVec2_c", @@ -10133,7 +10646,8 @@ local t={ conv="ImVec2", defaults={}, funcname="GetCenter", - location="imgui_internal:591", + location="imgui_internal:595", + namespace="ImRect", nonUDT=1, ov_cimguiname="ImRect_GetCenter", ret="ImVec2_c", @@ -10153,7 +10667,8 @@ local t={ cimguiname="ImRect_GetHeight", defaults={}, funcname="GetHeight", - location="imgui_internal:594", + location="imgui_internal:598", + namespace="ImRect", ov_cimguiname="ImRect_GetHeight", ret="float", signature="()const", @@ -10173,7 +10688,8 @@ local t={ conv="ImVec2", defaults={}, funcname="GetSize", - location="imgui_internal:592", + location="imgui_internal:596", + namespace="ImRect", nonUDT=1, ov_cimguiname="ImRect_GetSize", ret="ImVec2_c", @@ -10194,7 +10710,8 @@ local t={ conv="ImVec2", defaults={}, funcname="GetTL", - location="imgui_internal:596", + location="imgui_internal:600", + namespace="ImRect", nonUDT=1, ov_cimguiname="ImRect_GetTL", ret="ImVec2_c", @@ -10215,7 +10732,8 @@ local t={ conv="ImVec2", defaults={}, funcname="GetTR", - location="imgui_internal:597", + location="imgui_internal:601", + namespace="ImRect", nonUDT=1, ov_cimguiname="ImRect_GetTR", ret="ImVec2_c", @@ -10235,7 +10753,8 @@ local t={ cimguiname="ImRect_GetWidth", defaults={}, funcname="GetWidth", - location="imgui_internal:593", + location="imgui_internal:597", + namespace="ImRect", ov_cimguiname="ImRect_GetWidth", ret="float", signature="()const", @@ -10252,7 +10771,8 @@ local t={ constructor=true, defaults={}, funcname="ImRect", - location="imgui_internal:586", + location="imgui_internal:590", + namespace="ImRect", ov_cimguiname="ImRect_ImRect_Nil", signature="()", stname="ImRect"}, @@ -10272,7 +10792,8 @@ local t={ constructor=true, defaults={}, funcname="ImRect", - location="imgui_internal:587", + location="imgui_internal:591", + namespace="ImRect", ov_cimguiname="ImRect_ImRect_Vec2", signature="(const ImVec2,const ImVec2)", stname="ImRect"}, @@ -10289,7 +10810,8 @@ local t={ constructor=true, defaults={}, funcname="ImRect", - location="imgui_internal:588", + location="imgui_internal:592", + namespace="ImRect", ov_cimguiname="ImRect_ImRect_Vec4", signature="(const ImVec4)", stname="ImRect"}, @@ -10315,7 +10837,8 @@ local t={ constructor=true, defaults={}, funcname="ImRect", - location="imgui_internal:589", + location="imgui_internal:593", + namespace="ImRect", ov_cimguiname="ImRect_ImRect_Float", signature="(float,float,float,float)", stname="ImRect"}, @@ -10336,7 +10859,8 @@ local t={ cimguiname="ImRect_IsInverted", defaults={}, funcname="IsInverted", - location="imgui_internal:613", + location="imgui_internal:619", + namespace="ImRect", ov_cimguiname="ImRect_IsInverted", ret="bool", signature="()const", @@ -10358,7 +10882,8 @@ local t={ cimguiname="ImRect_Overlaps", defaults={}, funcname="Overlaps", - location="imgui_internal:603", + location="imgui_internal:607", + namespace="ImRect", ov_cimguiname="ImRect_Overlaps", ret="bool", signature="(const ImRect)const", @@ -10378,7 +10903,8 @@ local t={ conv="ImVec4", defaults={}, funcname="ToVec4", - location="imgui_internal:614", + location="imgui_internal:620", + namespace="ImRect", nonUDT=1, ov_cimguiname="ImRect_ToVec4", ret="ImVec4_c", @@ -10401,7 +10927,8 @@ local t={ cimguiname="ImRect_Translate", defaults={}, funcname="Translate", - location="imgui_internal:608", + location="imgui_internal:614", + namespace="ImRect", ov_cimguiname="ImRect_Translate", ret="void", signature="(const ImVec2)", @@ -10423,7 +10950,8 @@ local t={ cimguiname="ImRect_TranslateX", defaults={}, funcname="TranslateX", - location="imgui_internal:609", + location="imgui_internal:615", + namespace="ImRect", ov_cimguiname="ImRect_TranslateX", ret="void", signature="(float)", @@ -10445,7 +10973,8 @@ local t={ cimguiname="ImRect_TranslateY", defaults={}, funcname="TranslateY", - location="imgui_internal:610", + location="imgui_internal:616", + namespace="ImRect", ov_cimguiname="ImRect_TranslateY", ret="void", signature="(float)", @@ -10462,7 +10991,7 @@ local t={ cimguiname="ImRect_destroy", defaults={}, destructor=true, - location="imgui_internal:586", + location="imgui_internal:590", ov_cimguiname="ImRect_destroy", ret="void", signature="(ImRect*)", @@ -10481,7 +11010,8 @@ local t={ cimguiname="ImSpanAllocator_GetArenaSizeInBytes", defaults={}, funcname="GetArenaSizeInBytes", - location="imgui_internal:713", + location="imgui_internal:719", + namespace="ImSpanAllocator", ov_cimguiname="ImSpanAllocator_GetArenaSizeInBytes", ret="int", signature="()", @@ -10504,7 +11034,8 @@ local t={ cimguiname="ImSpanAllocator_GetSpanPtrBegin", defaults={}, funcname="GetSpanPtrBegin", - location="imgui_internal:715", + location="imgui_internal:721", + namespace="ImSpanAllocator", ov_cimguiname="ImSpanAllocator_GetSpanPtrBegin", ret="void*", signature="(int)", @@ -10527,7 +11058,8 @@ local t={ cimguiname="ImSpanAllocator_GetSpanPtrEnd", defaults={}, funcname="GetSpanPtrEnd", - location="imgui_internal:716", + location="imgui_internal:722", + namespace="ImSpanAllocator", ov_cimguiname="ImSpanAllocator_GetSpanPtrEnd", ret="void*", signature="(int)", @@ -10545,7 +11077,8 @@ local t={ constructor=true, defaults={}, funcname="ImSpanAllocator", - location="imgui_internal:711", + location="imgui_internal:717", + namespace="ImSpanAllocator", ov_cimguiname="ImSpanAllocator_ImSpanAllocator", signature="()", stname="ImSpanAllocator", @@ -10574,7 +11107,8 @@ local t={ defaults={ a="4"}, funcname="Reserve", - location="imgui_internal:712", + location="imgui_internal:718", + namespace="ImSpanAllocator", ov_cimguiname="ImSpanAllocator_Reserve", ret="void", signature="(int,size_t,int)", @@ -10597,7 +11131,8 @@ local t={ cimguiname="ImSpanAllocator_SetArenaBasePtr", defaults={}, funcname="SetArenaBasePtr", - location="imgui_internal:714", + location="imgui_internal:720", + namespace="ImSpanAllocator", ov_cimguiname="ImSpanAllocator_SetArenaBasePtr", ret="void", signature="(void*)", @@ -10615,7 +11150,7 @@ local t={ cimguiname="ImSpanAllocator_destroy", defaults={}, destructor=true, - location="imgui_internal:711", + location="imgui_internal:717", ov_cimguiname="ImSpanAllocator_destroy", ret="void", signature="(ImSpanAllocator*)", @@ -10633,7 +11168,8 @@ local t={ constructor=true, defaults={}, funcname="ImSpan", - location="imgui_internal:679", + location="imgui_internal:685", + namespace="ImSpan", ov_cimguiname="ImSpan_ImSpan_Nil", signature="()", stname="ImSpan", @@ -10654,7 +11190,8 @@ local t={ constructor=true, defaults={}, funcname="ImSpan", - location="imgui_internal:680", + location="imgui_internal:686", + namespace="ImSpan", ov_cimguiname="ImSpan_ImSpan_TPtrInt", signature="(T*,int)", stname="ImSpan", @@ -10675,7 +11212,8 @@ local t={ constructor=true, defaults={}, funcname="ImSpan", - location="imgui_internal:681", + location="imgui_internal:687", + namespace="ImSpan", ov_cimguiname="ImSpan_ImSpan_TPtrTPtr", signature="(T*,T*)", stname="ImSpan", @@ -10696,7 +11234,8 @@ local t={ cimguiname="ImSpan_begin", defaults={}, funcname="begin", - location="imgui_internal:690", + location="imgui_internal:696", + namespace="ImSpan", ov_cimguiname="ImSpan_begin_Nil", ret="T*", signature="()", @@ -10714,7 +11253,8 @@ local t={ cimguiname="ImSpan_begin", defaults={}, funcname="begin", - location="imgui_internal:691", + location="imgui_internal:697", + namespace="ImSpan", ov_cimguiname="ImSpan_begin__const", ret="const T*", signature="()const", @@ -10733,7 +11273,7 @@ local t={ cimguiname="ImSpan_destroy", defaults={}, destructor=true, - location="imgui_internal:679", + location="imgui_internal:685", ov_cimguiname="ImSpan_destroy", ret="void", signature="(ImSpan*)", @@ -10753,7 +11293,8 @@ local t={ cimguiname="ImSpan_end", defaults={}, funcname="end", - location="imgui_internal:692", + location="imgui_internal:698", + namespace="ImSpan", ov_cimguiname="ImSpan_end_Nil", ret="T*", signature="()", @@ -10771,7 +11312,8 @@ local t={ cimguiname="ImSpan_end", defaults={}, funcname="end", - location="imgui_internal:693", + location="imgui_internal:699", + namespace="ImSpan", ov_cimguiname="ImSpan_end__const", ret="const T*", signature="()const", @@ -10795,7 +11337,8 @@ local t={ cimguiname="ImSpan_index_from_ptr", defaults={}, funcname="index_from_ptr", - location="imgui_internal:696", + location="imgui_internal:702", + namespace="ImSpan", ov_cimguiname="ImSpan_index_from_ptr", ret="int", signature="(const T*)const", @@ -10821,7 +11364,8 @@ local t={ cimguiname="ImSpan_set", defaults={}, funcname="set", - location="imgui_internal:683", + location="imgui_internal:689", + namespace="ImSpan", ov_cimguiname="ImSpan_set_Int", ret="void", signature="(T*,int)", @@ -10845,7 +11389,8 @@ local t={ cimguiname="ImSpan_set", defaults={}, funcname="set", - location="imgui_internal:684", + location="imgui_internal:690", + namespace="ImSpan", ov_cimguiname="ImSpan_set_TPtr", ret="void", signature="(T*,T*)", @@ -10866,7 +11411,8 @@ local t={ cimguiname="ImSpan_size", defaults={}, funcname="size", - location="imgui_internal:685", + location="imgui_internal:691", + namespace="ImSpan", ov_cimguiname="ImSpan_size", ret="int", signature="()const", @@ -10886,7 +11432,8 @@ local t={ cimguiname="ImSpan_size_in_bytes", defaults={}, funcname="size_in_bytes", - location="imgui_internal:686", + location="imgui_internal:692", + namespace="ImSpan", ov_cimguiname="ImSpan_size_in_bytes", ret="int", signature="()const", @@ -10906,7 +11453,8 @@ local t={ cimguiname="ImStableVector_clear", defaults={}, funcname="clear", - location="imgui_internal:735", + location="imgui_internal:741", + namespace="ImStableVector", ov_cimguiname="ImStableVector_clear", ret="void", signature="()", @@ -10929,7 +11477,8 @@ local t={ cimguiname="ImStableVector_push_back", defaults={}, funcname="push_back", - location="imgui_internal:751", + location="imgui_internal:757", + namespace="ImStableVector", ov_cimguiname="ImStableVector_push_back", ret="T*", signature="(const T)", @@ -10952,7 +11501,8 @@ local t={ cimguiname="ImStableVector_reserve", defaults={}, funcname="reserve", - location="imgui_internal:737", + location="imgui_internal:743", + namespace="ImStableVector", ov_cimguiname="ImStableVector_reserve", ret="void", signature="(int)", @@ -10975,7 +11525,8 @@ local t={ cimguiname="ImStableVector_resize", defaults={}, funcname="resize", - location="imgui_internal:736", + location="imgui_internal:742", + namespace="ImStableVector", ov_cimguiname="ImStableVector_resize", ret="void", signature="(int)", @@ -11004,7 +11555,8 @@ local t={ cimguiname="ImTextureData_Create", defaults={}, funcname="Create", - location="imgui:3533", + location="imgui:3541", + namespace="ImTextureData", ov_cimguiname="ImTextureData_Create", ret="void", signature="(ImTextureFormat,int,int)", @@ -11023,7 +11575,8 @@ local t={ cimguiname="ImTextureData_DestroyPixels", defaults={}, funcname="DestroyPixels", - location="imgui:3534", + location="imgui:3542", + namespace="ImTextureData", ov_cimguiname="ImTextureData_DestroyPixels", ret="void", signature="()", @@ -11042,7 +11595,8 @@ local t={ cimguiname="ImTextureData_GetPitch", defaults={}, funcname="GetPitch", - location="imgui:3538", + location="imgui:3546", + namespace="ImTextureData", ov_cimguiname="ImTextureData_GetPitch", ret="int", signature="()const", @@ -11061,7 +11615,8 @@ local t={ cimguiname="ImTextureData_GetPixels", defaults={}, funcname="GetPixels", - location="imgui:3535", + location="imgui:3543", + namespace="ImTextureData", ov_cimguiname="ImTextureData_GetPixels", ret="void*", signature="()", @@ -11086,7 +11641,8 @@ local t={ cimguiname="ImTextureData_GetPixelsAt", defaults={}, funcname="GetPixelsAt", - location="imgui:3536", + location="imgui:3544", + namespace="ImTextureData", ov_cimguiname="ImTextureData_GetPixelsAt", ret="void*", signature="(int,int)", @@ -11105,7 +11661,8 @@ local t={ cimguiname="ImTextureData_GetSizeInBytes", defaults={}, funcname="GetSizeInBytes", - location="imgui:3537", + location="imgui:3545", + namespace="ImTextureData", ov_cimguiname="ImTextureData_GetSizeInBytes", ret="int", signature="()const", @@ -11124,7 +11681,8 @@ local t={ cimguiname="ImTextureData_GetTexID", defaults={}, funcname="GetTexID", - location="imgui:3540", + location="imgui:3548", + namespace="ImTextureData", ov_cimguiname="ImTextureData_GetTexID", ret="ImTextureID", signature="()const", @@ -11144,7 +11702,8 @@ local t={ conv="ImTextureRef", defaults={}, funcname="GetTexRef", - location="imgui:3539", + location="imgui:3547", + namespace="ImTextureData", nonUDT=1, ov_cimguiname="ImTextureData_GetTexRef", ret="ImTextureRef_c", @@ -11162,7 +11721,8 @@ local t={ constructor=true, defaults={}, funcname="ImTextureData", - location="imgui:3531", + location="imgui:3539", + namespace="ImTextureData", ov_cimguiname="ImTextureData_ImTextureData", signature="()", stname="ImTextureData"}, @@ -11183,7 +11743,8 @@ local t={ cimguiname="ImTextureData_SetStatus", defaults={}, funcname="SetStatus", - location="imgui:3546", + location="imgui:3554", + namespace="ImTextureData", ov_cimguiname="ImTextureData_SetStatus", ret="void", signature="(ImTextureStatus)", @@ -11205,7 +11766,8 @@ local t={ cimguiname="ImTextureData_SetTexID", defaults={}, funcname="SetTexID", - location="imgui:3545", + location="imgui:3553", + namespace="ImTextureData", ov_cimguiname="ImTextureData_SetTexID", ret="void", signature="(ImTextureID)", @@ -11222,7 +11784,7 @@ local t={ cimguiname="ImTextureData_destroy", defaults={}, destructor=true, - location="imgui:3532", + location="imgui:3540", ov_cimguiname="ImTextureData_destroy", realdestructor=true, ret="void", @@ -11243,6 +11805,7 @@ local t={ defaults={}, funcname="GetTexID", location="imgui:375", + namespace="ImTextureRef", ov_cimguiname="ImTextureRef_GetTexID", ret="ImTextureID", signature="()const", @@ -11260,6 +11823,7 @@ local t={ defaults={}, funcname="ImTextureRef", location="imgui:369", + namespace="ImTextureRef", ov_cimguiname="ImTextureRef_ImTextureRef_Nil", signature="()", stname="ImTextureRef"}, @@ -11277,6 +11841,7 @@ local t={ defaults={}, funcname="ImTextureRef", location="imgui:370", + namespace="ImTextureRef", ov_cimguiname="ImTextureRef_ImTextureRef_TextureID", signature="(ImTextureID)", stname="ImTextureRef"}, @@ -11310,7 +11875,8 @@ local t={ constructor=true, defaults={}, funcname="ImVec1", - location="imgui_internal:558", + location="imgui_internal:562", + namespace="ImVec1", ov_cimguiname="ImVec1_ImVec1_Nil", signature="()", stname="ImVec1"}, @@ -11327,7 +11893,8 @@ local t={ constructor=true, defaults={}, funcname="ImVec1", - location="imgui_internal:559", + location="imgui_internal:563", + namespace="ImVec1", ov_cimguiname="ImVec1_ImVec1_Float", signature="(float)", stname="ImVec1"}, @@ -11344,7 +11911,7 @@ local t={ cimguiname="ImVec1_destroy", defaults={}, destructor=true, - location="imgui_internal:558", + location="imgui_internal:562", ov_cimguiname="ImVec1_destroy", ret="void", signature="(ImVec1*)", @@ -11362,6 +11929,7 @@ local t={ defaults={}, funcname="ImVec2", location="imgui:298", + namespace="ImVec2", ov_cimguiname="ImVec2_ImVec2_Nil", signature="()", stname="ImVec2"}, @@ -11382,6 +11950,7 @@ local t={ defaults={}, funcname="ImVec2", location="imgui:299", + namespace="ImVec2", ov_cimguiname="ImVec2_ImVec2_Float", signature="(float,float)", stname="ImVec2"}, @@ -11415,7 +11984,8 @@ local t={ constructor=true, defaults={}, funcname="ImVec2i", - location="imgui_internal:566", + location="imgui_internal:570", + namespace="ImVec2i", ov_cimguiname="ImVec2i_ImVec2i_Nil", signature="()", stname="ImVec2i"}, @@ -11435,7 +12005,8 @@ local t={ constructor=true, defaults={}, funcname="ImVec2i", - location="imgui_internal:567", + location="imgui_internal:571", + namespace="ImVec2i", ov_cimguiname="ImVec2i_ImVec2i_Int", signature="(int,int)", stname="ImVec2i"}, @@ -11452,7 +12023,7 @@ local t={ cimguiname="ImVec2i_destroy", defaults={}, destructor=true, - location="imgui_internal:566", + location="imgui_internal:570", ov_cimguiname="ImVec2i_destroy", ret="void", signature="(ImVec2i*)", @@ -11469,7 +12040,8 @@ local t={ constructor=true, defaults={}, funcname="ImVec2ih", - location="imgui_internal:574", + location="imgui_internal:578", + namespace="ImVec2ih", ov_cimguiname="ImVec2ih_ImVec2ih_Nil", signature="()", stname="ImVec2ih"}, @@ -11489,7 +12061,8 @@ local t={ constructor=true, defaults={}, funcname="ImVec2ih", - location="imgui_internal:575", + location="imgui_internal:579", + namespace="ImVec2ih", ov_cimguiname="ImVec2ih_ImVec2ih_short", signature="(short,short)", stname="ImVec2ih"}, @@ -11506,7 +12079,8 @@ local t={ constructor=true, defaults={}, funcname="ImVec2ih", - location="imgui_internal:576", + location="imgui_internal:580", + namespace="ImVec2ih", ov_cimguiname="ImVec2ih_ImVec2ih_Vec2", signature="(const ImVec2)", stname="ImVec2ih"}, @@ -11524,7 +12098,7 @@ local t={ cimguiname="ImVec2ih_destroy", defaults={}, destructor=true, - location="imgui_internal:574", + location="imgui_internal:578", ov_cimguiname="ImVec2ih_destroy", ret="void", signature="(ImVec2ih*)", @@ -11542,6 +12116,7 @@ local t={ defaults={}, funcname="ImVec4", location="imgui:311", + namespace="ImVec4", ov_cimguiname="ImVec4_ImVec4_Nil", signature="()", stname="ImVec4"}, @@ -11568,6 +12143,7 @@ local t={ defaults={}, funcname="ImVec4", location="imgui:312", + namespace="ImVec4", ov_cimguiname="ImVec4_ImVec4_Float", signature="(float,float,float,float)", stname="ImVec4"}, @@ -11601,7 +12177,8 @@ local t={ constructor=true, defaults={}, funcname="ImVector", - location="imgui:2220", + location="imgui:2223", + namespace="ImVector", ov_cimguiname="ImVector_ImVector_Nil", signature="()", stname="ImVector", @@ -11611,6 +12188,7 @@ local t={ argsT={ [1]={ name="src", + template_orig="const ImVector& src", type="const ImVector_T "}}, argsoriginal="(const ImVector& src)", call_args="(src)", @@ -11619,7 +12197,8 @@ local t={ constructor=true, defaults={}, funcname="ImVector", - location="imgui:2221", + location="imgui:2224", + namespace="ImVector", ov_cimguiname="ImVector_ImVector_Vector_T_", signature="(const ImVector_T )", stname="ImVector", @@ -11642,7 +12221,8 @@ local t={ cimguiname="ImVector__grow_capacity", defaults={}, funcname="_grow_capacity", - location="imgui:2247", + location="imgui:2250", + namespace="ImVector", ov_cimguiname="ImVector__grow_capacity", ret="int", signature="(int)const", @@ -11662,7 +12242,8 @@ local t={ cimguiname="ImVector_back", defaults={}, funcname="back", - location="imgui:2243", + location="imgui:2246", + namespace="ImVector", ov_cimguiname="ImVector_back_Nil", ret="T*", retref="&", @@ -11681,7 +12262,8 @@ local t={ cimguiname="ImVector_back", defaults={}, funcname="back", - location="imgui:2244", + location="imgui:2247", + namespace="ImVector", ov_cimguiname="ImVector_back__const", ret="const T*", retref="&", @@ -11703,7 +12285,8 @@ local t={ cimguiname="ImVector_begin", defaults={}, funcname="begin", - location="imgui:2237", + location="imgui:2240", + namespace="ImVector", ov_cimguiname="ImVector_begin_Nil", ret="T*", signature="()", @@ -11721,7 +12304,8 @@ local t={ cimguiname="ImVector_begin", defaults={}, funcname="begin", - location="imgui:2238", + location="imgui:2241", + namespace="ImVector", ov_cimguiname="ImVector_begin__const", ret="const T*", signature="()const", @@ -11742,7 +12326,8 @@ local t={ cimguiname="ImVector_capacity", defaults={}, funcname="capacity", - location="imgui:2233", + location="imgui:2236", + namespace="ImVector", ov_cimguiname="ImVector_capacity", ret="int", signature="()const", @@ -11762,7 +12347,8 @@ local t={ cimguiname="ImVector_clear", defaults={}, funcname="clear", - location="imgui:2225", + location="imgui:2228", + namespace="ImVector", ov_cimguiname="ImVector_clear", ret="void", signature="()", @@ -11782,7 +12368,8 @@ local t={ cimguiname="ImVector_clear_delete", defaults={}, funcname="clear_delete", - location="imgui:2226", + location="imgui:2229", + namespace="ImVector", ov_cimguiname="ImVector_clear_delete", ret="void", signature="()", @@ -11802,7 +12389,8 @@ local t={ cimguiname="ImVector_clear_destruct", defaults={}, funcname="clear_destruct", - location="imgui:2227", + location="imgui:2230", + namespace="ImVector", ov_cimguiname="ImVector_clear_destruct", ret="void", signature="()", @@ -11825,7 +12413,8 @@ local t={ cimguiname="ImVector_contains", defaults={}, funcname="contains", - location="imgui:2262", + location="imgui:2265", + namespace="ImVector", ov_cimguiname="ImVector_contains", ret="bool", signature="(const T)const", @@ -11843,7 +12432,7 @@ local t={ cimguiname="ImVector_destroy", defaults={}, destructor=true, - location="imgui:2223", + location="imgui:2226", ov_cimguiname="ImVector_destroy", realdestructor=true, ret="void", @@ -11864,7 +12453,8 @@ local t={ cimguiname="ImVector_empty", defaults={}, funcname="empty", - location="imgui:2229", + location="imgui:2232", + namespace="ImVector", ov_cimguiname="ImVector_empty", ret="bool", signature="()const", @@ -11884,7 +12474,8 @@ local t={ cimguiname="ImVector_end", defaults={}, funcname="end", - location="imgui:2239", + location="imgui:2242", + namespace="ImVector", ov_cimguiname="ImVector_end_Nil", ret="T*", signature="()", @@ -11902,7 +12493,8 @@ local t={ cimguiname="ImVector_end", defaults={}, funcname="end", - location="imgui:2240", + location="imgui:2243", + namespace="ImVector", ov_cimguiname="ImVector_end__const", ret="const T*", signature="()const", @@ -11926,7 +12518,8 @@ local t={ cimguiname="ImVector_erase", defaults={}, funcname="erase", - location="imgui:2258", + location="imgui:2261", + namespace="ImVector", ov_cimguiname="ImVector_erase_Nil", ret="T*", signature="(const T*)", @@ -11950,7 +12543,8 @@ local t={ cimguiname="ImVector_erase", defaults={}, funcname="erase", - location="imgui:2259", + location="imgui:2262", + namespace="ImVector", ov_cimguiname="ImVector_erase_TPtr", ret="T*", signature="(const T*,const T*)", @@ -11974,7 +12568,8 @@ local t={ cimguiname="ImVector_erase_unsorted", defaults={}, funcname="erase_unsorted", - location="imgui:2260", + location="imgui:2263", + namespace="ImVector", ov_cimguiname="ImVector_erase_unsorted", ret="T*", signature="(const T*)", @@ -11997,7 +12592,8 @@ local t={ cimguiname="ImVector_find", defaults={}, funcname="find", - location="imgui:2263", + location="imgui:2266", + namespace="ImVector", ov_cimguiname="ImVector_find_Nil", ret="T*", signature="(const T)", @@ -12018,7 +12614,8 @@ local t={ cimguiname="ImVector_find", defaults={}, funcname="find", - location="imgui:2264", + location="imgui:2267", + namespace="ImVector", ov_cimguiname="ImVector_find__const", ret="const T*", signature="(const T)const", @@ -12042,7 +12639,8 @@ local t={ cimguiname="ImVector_find_erase", defaults={}, funcname="find_erase", - location="imgui:2266", + location="imgui:2269", + namespace="ImVector", ov_cimguiname="ImVector_find_erase", ret="bool", signature="(const T)", @@ -12065,7 +12663,8 @@ local t={ cimguiname="ImVector_find_erase_unsorted", defaults={}, funcname="find_erase_unsorted", - location="imgui:2267", + location="imgui:2270", + namespace="ImVector", ov_cimguiname="ImVector_find_erase_unsorted", ret="bool", signature="(const T)", @@ -12088,7 +12687,8 @@ local t={ cimguiname="ImVector_find_index", defaults={}, funcname="find_index", - location="imgui:2265", + location="imgui:2268", + namespace="ImVector", ov_cimguiname="ImVector_find_index", ret="int", signature="(const T)const", @@ -12108,7 +12708,8 @@ local t={ cimguiname="ImVector_front", defaults={}, funcname="front", - location="imgui:2241", + location="imgui:2244", + namespace="ImVector", ov_cimguiname="ImVector_front_Nil", ret="T*", retref="&", @@ -12127,7 +12728,8 @@ local t={ cimguiname="ImVector_front", defaults={}, funcname="front", - location="imgui:2242", + location="imgui:2245", + namespace="ImVector", ov_cimguiname="ImVector_front__const", ret="const T*", retref="&", @@ -12152,7 +12754,8 @@ local t={ cimguiname="ImVector_index_from_ptr", defaults={}, funcname="index_from_ptr", - location="imgui:2268", + location="imgui:2271", + namespace="ImVector", ov_cimguiname="ImVector_index_from_ptr", ret="int", signature="(const T*)const", @@ -12178,7 +12781,8 @@ local t={ cimguiname="ImVector_insert", defaults={}, funcname="insert", - location="imgui:2261", + location="imgui:2264", + namespace="ImVector", ov_cimguiname="ImVector_insert", ret="T*", signature="(const T*,const T)", @@ -12198,7 +12802,8 @@ local t={ cimguiname="ImVector_max_size", defaults={}, funcname="max_size", - location="imgui:2232", + location="imgui:2235", + namespace="ImVector", ov_cimguiname="ImVector_max_size", ret="int", signature="()const", @@ -12218,7 +12823,8 @@ local t={ cimguiname="ImVector_pop_back", defaults={}, funcname="pop_back", - location="imgui:2256", + location="imgui:2259", + namespace="ImVector", ov_cimguiname="ImVector_pop_back", ret="void", signature="()", @@ -12241,7 +12847,8 @@ local t={ cimguiname="ImVector_push_back", defaults={}, funcname="push_back", - location="imgui:2255", + location="imgui:2258", + namespace="ImVector", ov_cimguiname="ImVector_push_back", ret="void", signature="(const T)", @@ -12264,7 +12871,8 @@ local t={ cimguiname="ImVector_push_front", defaults={}, funcname="push_front", - location="imgui:2257", + location="imgui:2260", + namespace="ImVector", ov_cimguiname="ImVector_push_front", ret="void", signature="(const T)", @@ -12287,7 +12895,8 @@ local t={ cimguiname="ImVector_reserve", defaults={}, funcname="reserve", - location="imgui:2251", + location="imgui:2254", + namespace="ImVector", ov_cimguiname="ImVector_reserve", ret="void", signature="(int)", @@ -12310,7 +12919,8 @@ local t={ cimguiname="ImVector_reserve_discard", defaults={}, funcname="reserve_discard", - location="imgui:2252", + location="imgui:2255", + namespace="ImVector", ov_cimguiname="ImVector_reserve_discard", ret="void", signature="(int)", @@ -12333,7 +12943,8 @@ local t={ cimguiname="ImVector_resize", defaults={}, funcname="resize", - location="imgui:2248", + location="imgui:2251", + namespace="ImVector", ov_cimguiname="ImVector_resize_Nil", ret="void", signature="(int)", @@ -12357,7 +12968,8 @@ local t={ cimguiname="ImVector_resize", defaults={}, funcname="resize", - location="imgui:2249", + location="imgui:2252", + namespace="ImVector", ov_cimguiname="ImVector_resize_T", ret="void", signature="(int,const T)", @@ -12381,7 +12993,8 @@ local t={ cimguiname="ImVector_shrink", defaults={}, funcname="shrink", - location="imgui:2250", + location="imgui:2253", + namespace="ImVector", ov_cimguiname="ImVector_shrink", ret="void", signature="(int)", @@ -12401,7 +13014,8 @@ local t={ cimguiname="ImVector_size", defaults={}, funcname="size", - location="imgui:2230", + location="imgui:2233", + namespace="ImVector", ov_cimguiname="ImVector_size", ret="int", signature="()const", @@ -12421,7 +13035,8 @@ local t={ cimguiname="ImVector_size_in_bytes", defaults={}, funcname="size_in_bytes", - location="imgui:2231", + location="imgui:2234", + namespace="ImVector", ov_cimguiname="ImVector_size_in_bytes", ret="int", signature="()const", @@ -12438,6 +13053,7 @@ local t={ [2]={ name="rhs", reftoptr=true, + template_orig="ImVector& rhs", type="ImVector_T *"}}, argsoriginal="(ImVector& rhs)", call_args="(*rhs)", @@ -12445,7 +13061,8 @@ local t={ cimguiname="ImVector_swap", defaults={}, funcname="swap", - location="imgui:2245", + location="imgui:2248", + namespace="ImVector", ov_cimguiname="ImVector_swap", ret="void", signature="(ImVector_T *)", @@ -12489,7 +13106,7 @@ local t={ cimguiname="igActivateItemByID", defaults={}, funcname="ActivateItemByID", - location="imgui_internal:3379", + location="imgui_internal:3392", namespace="ImGui", ov_cimguiname="igActivateItemByID", ret="void", @@ -12512,7 +13129,7 @@ local t={ cimguiname="igAddContextHook", defaults={}, funcname="AddContextHook", - location="imgui_internal:3231", + location="imgui_internal:3243", namespace="ImGui", ov_cimguiname="igAddContextHook", ret="ImGuiID", @@ -12528,6 +13145,7 @@ local t={ type="ImDrawData*"}, [2]={ name="out_list", + template_orig="ImVector* out_list", type="ImVector_ImDrawListPtr*"}, [3]={ name="draw_list", @@ -12538,7 +13156,7 @@ local t={ cimguiname="igAddDrawListToDrawDataEx", defaults={}, funcname="AddDrawListToDrawDataEx", - location="imgui_internal:3223", + location="imgui_internal:3235", namespace="ImGui", ov_cimguiname="igAddDrawListToDrawDataEx", ret="void", @@ -12558,7 +13176,7 @@ local t={ cimguiname="igAddSettingsHandler", defaults={}, funcname="AddSettingsHandler", - location="imgui_internal:3253", + location="imgui_internal:3265", namespace="ImGui", ov_cimguiname="igAddSettingsHandler", ret="void", @@ -12628,7 +13246,7 @@ local t={ defaults={ flags="0"}, funcname="ArrowButtonEx", - location="imgui_internal:3639", + location="imgui_internal:3654", namespace="ImGui", ov_cimguiname="igArrowButtonEx", ret="bool", @@ -12685,7 +13303,7 @@ local t={ cimguiname="igBeginBoxSelect", defaults={}, funcname="BeginBoxSelect", - location="imgui_internal:3496", + location="imgui_internal:3510", namespace="ImGui", ov_cimguiname="igBeginBoxSelect", ret="bool", @@ -12780,7 +13398,7 @@ local t={ cimguiname="igBeginChildEx", defaults={}, funcname="BeginChildEx", - location="imgui_internal:3322", + location="imgui_internal:3334", namespace="ImGui", ov_cimguiname="igBeginChildEx", ret="bool", @@ -12807,7 +13425,7 @@ local t={ defaults={ flags="0"}, funcname="BeginColumns", - location="imgui_internal:3509", + location="imgui_internal:3523", namespace="ImGui", ov_cimguiname="igBeginColumns", ret="void", @@ -12860,7 +13478,7 @@ local t={ cimguiname="igBeginComboPopup", defaults={}, funcname="BeginComboPopup", - location="imgui_internal:3352", + location="imgui_internal:3365", namespace="ImGui", ov_cimguiname="igBeginComboPopup", ret="bool", @@ -12877,7 +13495,7 @@ local t={ cimguiname="igBeginComboPreview", defaults={}, funcname="BeginComboPreview", - location="imgui_internal:3353", + location="imgui_internal:3366", namespace="ImGui", ov_cimguiname="igBeginComboPreview", ret="bool", @@ -12915,7 +13533,7 @@ local t={ cimguiname="igBeginDisabledOverrideReenable", defaults={}, funcname="BeginDisabledOverrideReenable", - location="imgui_internal:3312", + location="imgui_internal:3324", namespace="ImGui", ov_cimguiname="igBeginDisabledOverrideReenable", ret="void", @@ -12976,7 +13594,7 @@ local t={ cimguiname="igBeginDragDropTargetCustom", defaults={}, funcname="BeginDragDropTargetCustom", - location="imgui_internal:3480", + location="imgui_internal:3494", namespace="ImGui", ov_cimguiname="igBeginDragDropTargetCustom", ret="bool", @@ -13000,7 +13618,7 @@ local t={ defaults={ p_bb="NULL"}, funcname="BeginDragDropTargetViewport", - location="imgui_internal:3481", + location="imgui_internal:3495", namespace="ImGui", ov_cimguiname="igBeginDragDropTargetViewport", ret="bool", @@ -13017,7 +13635,7 @@ local t={ cimguiname="igBeginErrorTooltip", defaults={}, funcname="BeginErrorTooltip", - location="imgui_internal:3726", + location="imgui_internal:3741", namespace="ImGui", ov_cimguiname="igBeginErrorTooltip", ret="bool", @@ -13160,7 +13778,7 @@ local t={ defaults={ enabled="true"}, funcname="BeginMenuEx", - location="imgui_internal:3348", + location="imgui_internal:3361", namespace="ImGui", ov_cimguiname="igBeginMenuEx", ret="bool", @@ -13310,7 +13928,7 @@ local t={ cimguiname="igBeginPopupEx", defaults={}, funcname="BeginPopupEx", - location="imgui_internal:3325", + location="imgui_internal:3338", namespace="ImGui", ov_cimguiname="igBeginPopupEx", ret="bool", @@ -13336,7 +13954,7 @@ local t={ cimguiname="igBeginPopupMenuEx", defaults={}, funcname="BeginPopupMenuEx", - location="imgui_internal:3326", + location="imgui_internal:3339", namespace="ImGui", ov_cimguiname="igBeginPopupMenuEx", ret="bool", @@ -13414,7 +14032,7 @@ local t={ cimguiname="igBeginTabBarEx", defaults={}, funcname="BeginTabBarEx", - location="imgui_internal:3584", + location="imgui_internal:3599", namespace="ImGui", ov_cimguiname="igBeginTabBarEx", ret="bool", @@ -13515,7 +14133,7 @@ local t={ inner_width="0.0f", outer_size="ImVec2(0,0)"}, funcname="BeginTableEx", - location="imgui_internal:3535", + location="imgui_internal:3549", namespace="ImGui", ov_cimguiname="igBeginTableEx", ret="bool", @@ -13555,7 +14173,7 @@ local t={ cimguiname="igBeginTooltipEx", defaults={}, funcname="BeginTooltipEx", - location="imgui_internal:3343", + location="imgui_internal:3356", namespace="ImGui", ov_cimguiname="igBeginTooltipEx", ret="bool", @@ -13572,7 +14190,7 @@ local t={ cimguiname="igBeginTooltipHidden", defaults={}, funcname="BeginTooltipHidden", - location="imgui_internal:3344", + location="imgui_internal:3357", namespace="ImGui", ov_cimguiname="igBeginTooltipHidden", ret="bool", @@ -13604,7 +14222,7 @@ local t={ cimguiname="igBeginViewportSideBar", defaults={}, funcname="BeginViewportSideBar", - location="imgui_internal:3347", + location="imgui_internal:3360", namespace="ImGui", ov_cimguiname="igBeginViewportSideBar", ret="bool", @@ -13624,7 +14242,7 @@ local t={ cimguiname="igBringWindowToDisplayBack", defaults={}, funcname="BringWindowToDisplayBack", - location="imgui_internal:3199", + location="imgui_internal:3211", namespace="ImGui", ov_cimguiname="igBringWindowToDisplayBack", ret="void", @@ -13647,7 +14265,7 @@ local t={ cimguiname="igBringWindowToDisplayBehind", defaults={}, funcname="BringWindowToDisplayBehind", - location="imgui_internal:3200", + location="imgui_internal:3212", namespace="ImGui", ov_cimguiname="igBringWindowToDisplayBehind", ret="void", @@ -13667,7 +14285,7 @@ local t={ cimguiname="igBringWindowToDisplayFront", defaults={}, funcname="BringWindowToDisplayFront", - location="imgui_internal:3198", + location="imgui_internal:3210", namespace="ImGui", ov_cimguiname="igBringWindowToDisplayFront", ret="void", @@ -13687,7 +14305,7 @@ local t={ cimguiname="igBringWindowToFocusFront", defaults={}, funcname="BringWindowToFocusFront", - location="imgui_internal:3197", + location="imgui_internal:3209", namespace="ImGui", ov_cimguiname="igBringWindowToFocusFront", ret="void", @@ -13808,7 +14426,7 @@ local t={ defaults={ flags="0"}, funcname="ButtonBehavior", - location="imgui_internal:3658", + location="imgui_internal:3673", namespace="ImGui", ov_cimguiname="igButtonBehavior", ret="bool", @@ -13836,7 +14454,7 @@ local t={ flags="0", size_arg="ImVec2(0,0)"}, funcname="ButtonEx", - location="imgui_internal:3638", + location="imgui_internal:3653", namespace="ImGui", ov_cimguiname="igButtonEx", ret="bool", @@ -13868,7 +14486,7 @@ local t={ cimguiname="igCalcClipRectVisibleItemsY", defaults={}, funcname="CalcClipRectVisibleItemsY", - location="imgui_internal:3308", + location="imgui_internal:3320", namespace="ImGui", ov_cimguiname="igCalcClipRectVisibleItemsY", ret="void", @@ -13895,7 +14513,7 @@ local t={ conv="ImVec2", defaults={}, funcname="CalcItemSize", - location="imgui_internal:3304", + location="imgui_internal:3316", namespace="ImGui", nonUDT=1, ov_cimguiname="igCalcItemSize", @@ -13939,7 +14557,7 @@ local t={ cimguiname="igCalcRoundingFlagsForRectInRect", defaults={}, funcname="CalcRoundingFlagsForRectInRect", - location="imgui_internal:3630", + location="imgui_internal:3645", namespace="ImGui", ov_cimguiname="igCalcRoundingFlagsForRectInRect", ret="ImDrawFlags", @@ -14002,7 +14620,7 @@ local t={ cimguiname="igCalcTypematicRepeatAmount", defaults={}, funcname="CalcTypematicRepeatAmount", - location="imgui_internal:3408", + location="imgui_internal:3421", namespace="ImGui", ov_cimguiname="igCalcTypematicRepeatAmount", ret="int", @@ -14023,7 +14641,7 @@ local t={ conv="ImVec2", defaults={}, funcname="CalcWindowNextAutoFitSize", - location="imgui_internal:3177", + location="imgui_internal:3189", namespace="ImGui", nonUDT=1, ov_cimguiname="igCalcWindowNextAutoFitSize", @@ -14047,7 +14665,7 @@ local t={ cimguiname="igCalcWrapWidthForPos", defaults={}, funcname="CalcWrapWidthForPos", - location="imgui_internal:3305", + location="imgui_internal:3317", namespace="ImGui", ov_cimguiname="igCalcWrapWidthForPos", ret="float", @@ -14070,7 +14688,7 @@ local t={ cimguiname="igCallContextHooks", defaults={}, funcname="CallContextHooks", - location="imgui_internal:3233", + location="imgui_internal:3245", namespace="ImGui", ov_cimguiname="igCallContextHooks", ret="void", @@ -14167,7 +14785,7 @@ local t={ cimguiname="igCheckboxFlags", defaults={}, funcname="CheckboxFlags", - location="imgui_internal:3643", + location="imgui_internal:3658", namespace="ImGui", ov_cimguiname="igCheckboxFlags_S64Ptr", ret="bool", @@ -14191,7 +14809,7 @@ local t={ cimguiname="igCheckboxFlags", defaults={}, funcname="CheckboxFlags", - location="imgui_internal:3644", + location="imgui_internal:3659", namespace="ImGui", ov_cimguiname="igCheckboxFlags_U64Ptr", ret="bool", @@ -14211,7 +14829,7 @@ local t={ cimguiname="igClearActiveID", defaults={}, funcname="ClearActiveID", - location="imgui_internal:3287", + location="imgui_internal:3299", namespace="ImGui", ov_cimguiname="igClearActiveID", ret="void", @@ -14228,7 +14846,7 @@ local t={ cimguiname="igClearDragDrop", defaults={}, funcname="ClearDragDrop", - location="imgui_internal:3482", + location="imgui_internal:3496", namespace="ImGui", ov_cimguiname="igClearDragDrop", ret="void", @@ -14245,7 +14863,7 @@ local t={ cimguiname="igClearIniSettings", defaults={}, funcname="ClearIniSettings", - location="imgui_internal:3252", + location="imgui_internal:3264", namespace="ImGui", ov_cimguiname="igClearIniSettings", ret="void", @@ -14265,7 +14883,7 @@ local t={ cimguiname="igClearWindowSettings", defaults={}, funcname="ClearWindowSettings", - location="imgui_internal:3261", + location="imgui_internal:3273", namespace="ImGui", ov_cimguiname="igClearWindowSettings", ret="void", @@ -14288,7 +14906,7 @@ local t={ cimguiname="igCloseButton", defaults={}, funcname="CloseButton", - location="imgui_internal:3647", + location="imgui_internal:3662", namespace="ImGui", ov_cimguiname="igCloseButton", ret="bool", @@ -14328,7 +14946,7 @@ local t={ cimguiname="igClosePopupToLevel", defaults={}, funcname="ClosePopupToLevel", - location="imgui_internal:3328", + location="imgui_internal:3341", namespace="ImGui", ov_cimguiname="igClosePopupToLevel", ret="void", @@ -14345,7 +14963,7 @@ local t={ cimguiname="igClosePopupsExceptModals", defaults={}, funcname="ClosePopupsExceptModals", - location="imgui_internal:3330", + location="imgui_internal:3343", namespace="ImGui", ov_cimguiname="igClosePopupsExceptModals", ret="void", @@ -14368,7 +14986,7 @@ local t={ cimguiname="igClosePopupsOverWindow", defaults={}, funcname="ClosePopupsOverWindow", - location="imgui_internal:3329", + location="imgui_internal:3342", namespace="ImGui", ov_cimguiname="igClosePopupsOverWindow", ret="void", @@ -14391,7 +15009,7 @@ local t={ cimguiname="igCollapseButton", defaults={}, funcname="CollapseButton", - location="imgui_internal:3648", + location="imgui_internal:3663", namespace="ImGui", ov_cimguiname="igCollapseButton", ret="bool", @@ -14667,7 +15285,7 @@ local t={ cimguiname="igColorEditOptionsPopup", defaults={}, funcname="ColorEditOptionsPopup", - location="imgui_internal:3702", + location="imgui_internal:3717", namespace="ImGui", ov_cimguiname="igColorEditOptionsPopup", ret="void", @@ -14748,7 +15366,7 @@ local t={ cimguiname="igColorPickerOptionsPopup", defaults={}, funcname="ColorPickerOptionsPopup", - location="imgui_internal:3703", + location="imgui_internal:3718", namespace="ImGui", ov_cimguiname="igColorPickerOptionsPopup", ret="void", @@ -14774,7 +15392,7 @@ local t={ cimguiname="igColorTooltip", defaults={}, funcname="ColorTooltip", - location="imgui_internal:3701", + location="imgui_internal:3716", namespace="ImGui", ov_cimguiname="igColorTooltip", ret="void", @@ -14922,7 +15540,7 @@ local t={ cimguiname="igConvertSingleModFlagToKey", defaults={}, funcname="ConvertSingleModFlagToKey", - location="imgui_internal:3392", + location="imgui_internal:3405", namespace="ImGui", ov_cimguiname="igConvertSingleModFlagToKey", ret="ImGuiKey", @@ -14963,7 +15581,7 @@ local t={ cimguiname="igCreateNewWindowSettings", defaults={}, funcname="CreateNewWindowSettings", - location="imgui_internal:3258", + location="imgui_internal:3270", namespace="ImGui", ov_cimguiname="igCreateNewWindowSettings", ret="ImGuiWindowSettings*", @@ -14996,7 +15614,7 @@ local t={ defaults={ p_data_when_empty="NULL"}, funcname="DataTypeApplyFromText", - location="imgui_internal:3685", + location="imgui_internal:3700", namespace="ImGui", ov_cimguiname="igDataTypeApplyFromText", ret="bool", @@ -15028,7 +15646,7 @@ local t={ cimguiname="igDataTypeApplyOp", defaults={}, funcname="DataTypeApplyOp", - location="imgui_internal:3684", + location="imgui_internal:3699", namespace="ImGui", ov_cimguiname="igDataTypeApplyOp", ret="void", @@ -15057,7 +15675,7 @@ local t={ cimguiname="igDataTypeClamp", defaults={}, funcname="DataTypeClamp", - location="imgui_internal:3687", + location="imgui_internal:3702", namespace="ImGui", ov_cimguiname="igDataTypeClamp", ret="bool", @@ -15083,7 +15701,7 @@ local t={ cimguiname="igDataTypeCompare", defaults={}, funcname="DataTypeCompare", - location="imgui_internal:3686", + location="imgui_internal:3701", namespace="ImGui", ov_cimguiname="igDataTypeCompare", ret="int", @@ -15115,7 +15733,7 @@ local t={ cimguiname="igDataTypeFormatString", defaults={}, funcname="DataTypeFormatString", - location="imgui_internal:3683", + location="imgui_internal:3698", namespace="ImGui", ov_cimguiname="igDataTypeFormatString", ret="int", @@ -15135,7 +15753,7 @@ local t={ cimguiname="igDataTypeGetInfo", defaults={}, funcname="DataTypeGetInfo", - location="imgui_internal:3682", + location="imgui_internal:3697", namespace="ImGui", ov_cimguiname="igDataTypeGetInfo", ret="const ImGuiDataTypeInfo*", @@ -15158,7 +15776,7 @@ local t={ cimguiname="igDataTypeIsZero", defaults={}, funcname="DataTypeIsZero", - location="imgui_internal:3688", + location="imgui_internal:3703", namespace="ImGui", ov_cimguiname="igDataTypeIsZero", ret="bool", @@ -15187,7 +15805,7 @@ local t={ cimguiname="igDebugAllocHook", defaults={}, funcname="DebugAllocHook", - location="imgui_internal:3733", + location="imgui_internal:3748", namespace="ImGui", ov_cimguiname="igDebugAllocHook", ret="void", @@ -15210,7 +15828,7 @@ local t={ cimguiname="igDebugBreakButton", defaults={}, funcname="DebugBreakButton", - location="imgui_internal:3742", + location="imgui_internal:3757", namespace="ImGui", ov_cimguiname="igDebugBreakButton", ret="bool", @@ -15233,7 +15851,7 @@ local t={ cimguiname="igDebugBreakButtonTooltip", defaults={}, funcname="DebugBreakButtonTooltip", - location="imgui_internal:3743", + location="imgui_internal:3758", namespace="ImGui", ov_cimguiname="igDebugBreakButtonTooltip", ret="void", @@ -15250,7 +15868,7 @@ local t={ cimguiname="igDebugBreakClearData", defaults={}, funcname="DebugBreakClearData", - location="imgui_internal:3741", + location="imgui_internal:3756", namespace="ImGui", ov_cimguiname="igDebugBreakClearData", ret="void", @@ -15288,7 +15906,7 @@ local t={ cimguiname="igDebugCheckVersionAndDataLayout", defaults={}, funcname="DebugCheckVersionAndDataLayout", - location="imgui:1143", + location="imgui:1144", namespace="ImGui", ov_cimguiname="igDebugCheckVersionAndDataLayout", ret="bool", @@ -15309,7 +15927,7 @@ local t={ defaults={ col="4278190335"}, funcname="DebugDrawCursorPos", - location="imgui_internal:3734", + location="imgui_internal:3749", namespace="ImGui", ov_cimguiname="igDebugDrawCursorPos", ret="void", @@ -15330,7 +15948,7 @@ local t={ defaults={ col="4278190335"}, funcname="DebugDrawItemRect", - location="imgui_internal:3736", + location="imgui_internal:3751", namespace="ImGui", ov_cimguiname="igDebugDrawItemRect", ret="void", @@ -15351,7 +15969,7 @@ local t={ defaults={ col="4278190335"}, funcname="DebugDrawLineExtents", - location="imgui_internal:3735", + location="imgui_internal:3750", namespace="ImGui", ov_cimguiname="igDebugDrawLineExtents", ret="void", @@ -15371,7 +15989,7 @@ local t={ cimguiname="igDebugFlashStyleColor", defaults={}, funcname="DebugFlashStyleColor", - location="imgui:1141", + location="imgui:1142", namespace="ImGui", ov_cimguiname="igDebugFlashStyleColor", ret="void", @@ -15400,7 +16018,7 @@ local t={ cimguiname="igDebugHookIdInfo", defaults={}, funcname="DebugHookIdInfo", - location="imgui_internal:3746", + location="imgui_internal:3761", namespace="ImGui", ov_cimguiname="igDebugHookIdInfo", ret="void", @@ -15420,7 +16038,7 @@ local t={ cimguiname="igDebugLocateItem", defaults={}, funcname="DebugLocateItem", - location="imgui_internal:3738", + location="imgui_internal:3753", namespace="ImGui", ov_cimguiname="igDebugLocateItem", ret="void", @@ -15440,7 +16058,7 @@ local t={ cimguiname="igDebugLocateItemOnHover", defaults={}, funcname="DebugLocateItemOnHover", - location="imgui_internal:3739", + location="imgui_internal:3754", namespace="ImGui", ov_cimguiname="igDebugLocateItemOnHover", ret="void", @@ -15457,7 +16075,7 @@ local t={ cimguiname="igDebugLocateItemResolveWithLastItem", defaults={}, funcname="DebugLocateItemResolveWithLastItem", - location="imgui_internal:3740", + location="imgui_internal:3755", namespace="ImGui", ov_cimguiname="igDebugLocateItemResolveWithLastItem", ret="void", @@ -15481,7 +16099,7 @@ local t={ defaults={}, funcname="DebugLog", isvararg="...)", - location="imgui:1145", + location="imgui:1146", namespace="ImGui", ov_cimguiname="igDebugLog", ret="void", @@ -15504,7 +16122,7 @@ local t={ cimguiname="igDebugLogV", defaults={}, funcname="DebugLogV", - location="imgui:1146", + location="imgui:1147", namespace="ImGui", ov_cimguiname="igDebugLogV", ret="void", @@ -15524,7 +16142,7 @@ local t={ cimguiname="igDebugNodeColumns", defaults={}, funcname="DebugNodeColumns", - location="imgui_internal:3747", + location="imgui_internal:3762", namespace="ImGui", ov_cimguiname="igDebugNodeColumns", ret="void", @@ -15556,7 +16174,7 @@ local t={ cimguiname="igDebugNodeDrawCmdShowMeshAndBoundingBox", defaults={}, funcname="DebugNodeDrawCmdShowMeshAndBoundingBox", - location="imgui_internal:3749", + location="imgui_internal:3764", namespace="ImGui", ov_cimguiname="igDebugNodeDrawCmdShowMeshAndBoundingBox", ret="void", @@ -15585,7 +16203,7 @@ local t={ cimguiname="igDebugNodeDrawList", defaults={}, funcname="DebugNodeDrawList", - location="imgui_internal:3748", + location="imgui_internal:3763", namespace="ImGui", ov_cimguiname="igDebugNodeDrawList", ret="void", @@ -15605,7 +16223,7 @@ local t={ cimguiname="igDebugNodeFont", defaults={}, funcname="DebugNodeFont", - location="imgui_internal:3750", + location="imgui_internal:3765", namespace="ImGui", ov_cimguiname="igDebugNodeFont", ret="void", @@ -15628,7 +16246,7 @@ local t={ cimguiname="igDebugNodeFontGlyph", defaults={}, funcname="DebugNodeFontGlyph", - location="imgui_internal:3752", + location="imgui_internal:3767", namespace="ImGui", ov_cimguiname="igDebugNodeFontGlyph", ret="void", @@ -15654,7 +16272,7 @@ local t={ cimguiname="igDebugNodeFontGlyphsForSrcMask", defaults={}, funcname="DebugNodeFontGlyphsForSrcMask", - location="imgui_internal:3751", + location="imgui_internal:3766", namespace="ImGui", ov_cimguiname="igDebugNodeFontGlyphsForSrcMask", ret="void", @@ -15674,7 +16292,7 @@ local t={ cimguiname="igDebugNodeInputTextState", defaults={}, funcname="DebugNodeInputTextState", - location="imgui_internal:3758", + location="imgui_internal:3773", namespace="ImGui", ov_cimguiname="igDebugNodeInputTextState", ret="void", @@ -15694,7 +16312,7 @@ local t={ cimguiname="igDebugNodeMultiSelectState", defaults={}, funcname="DebugNodeMultiSelectState", - location="imgui_internal:3760", + location="imgui_internal:3775", namespace="ImGui", ov_cimguiname="igDebugNodeMultiSelectState", ret="void", @@ -15717,7 +16335,7 @@ local t={ cimguiname="igDebugNodeStorage", defaults={}, funcname="DebugNodeStorage", - location="imgui_internal:3754", + location="imgui_internal:3769", namespace="ImGui", ov_cimguiname="igDebugNodeStorage", ret="void", @@ -15740,7 +16358,7 @@ local t={ cimguiname="igDebugNodeTabBar", defaults={}, funcname="DebugNodeTabBar", - location="imgui_internal:3755", + location="imgui_internal:3770", namespace="ImGui", ov_cimguiname="igDebugNodeTabBar", ret="void", @@ -15760,7 +16378,7 @@ local t={ cimguiname="igDebugNodeTable", defaults={}, funcname="DebugNodeTable", - location="imgui_internal:3756", + location="imgui_internal:3771", namespace="ImGui", ov_cimguiname="igDebugNodeTable", ret="void", @@ -15780,7 +16398,7 @@ local t={ cimguiname="igDebugNodeTableSettings", defaults={}, funcname="DebugNodeTableSettings", - location="imgui_internal:3757", + location="imgui_internal:3772", namespace="ImGui", ov_cimguiname="igDebugNodeTableSettings", ret="void", @@ -15807,7 +16425,7 @@ local t={ defaults={ highlight_rect="NULL"}, funcname="DebugNodeTexture", - location="imgui_internal:3753", + location="imgui_internal:3768", namespace="ImGui", ov_cimguiname="igDebugNodeTexture", ret="void", @@ -15827,7 +16445,7 @@ local t={ cimguiname="igDebugNodeTypingSelectState", defaults={}, funcname="DebugNodeTypingSelectState", - location="imgui_internal:3759", + location="imgui_internal:3774", namespace="ImGui", ov_cimguiname="igDebugNodeTypingSelectState", ret="void", @@ -15847,7 +16465,7 @@ local t={ cimguiname="igDebugNodeViewport", defaults={}, funcname="DebugNodeViewport", - location="imgui_internal:3765", + location="imgui_internal:3780", namespace="ImGui", ov_cimguiname="igDebugNodeViewport", ret="void", @@ -15870,7 +16488,7 @@ local t={ cimguiname="igDebugNodeWindow", defaults={}, funcname="DebugNodeWindow", - location="imgui_internal:3761", + location="imgui_internal:3776", namespace="ImGui", ov_cimguiname="igDebugNodeWindow", ret="void", @@ -15890,7 +16508,7 @@ local t={ cimguiname="igDebugNodeWindowSettings", defaults={}, funcname="DebugNodeWindowSettings", - location="imgui_internal:3762", + location="imgui_internal:3777", namespace="ImGui", ov_cimguiname="igDebugNodeWindowSettings", ret="void", @@ -15903,6 +16521,7 @@ local t={ argsT={ [1]={ name="windows", + template_orig="ImVector* windows", type="ImVector_ImGuiWindowPtr*"}, [2]={ name="label", @@ -15913,7 +16532,7 @@ local t={ cimguiname="igDebugNodeWindowsList", defaults={}, funcname="DebugNodeWindowsList", - location="imgui_internal:3763", + location="imgui_internal:3778", namespace="ImGui", ov_cimguiname="igDebugNodeWindowsList", ret="void", @@ -15939,7 +16558,7 @@ local t={ cimguiname="igDebugNodeWindowsListByBeginStackParent", defaults={}, funcname="DebugNodeWindowsListByBeginStackParent", - location="imgui_internal:3764", + location="imgui_internal:3779", namespace="ImGui", ov_cimguiname="igDebugNodeWindowsListByBeginStackParent", ret="void", @@ -15959,7 +16578,7 @@ local t={ cimguiname="igDebugRenderKeyboardPreview", defaults={}, funcname="DebugRenderKeyboardPreview", - location="imgui_internal:3766", + location="imgui_internal:3781", namespace="ImGui", ov_cimguiname="igDebugRenderKeyboardPreview", ret="void", @@ -15985,7 +16604,7 @@ local t={ cimguiname="igDebugRenderViewportThumbnail", defaults={}, funcname="DebugRenderViewportThumbnail", - location="imgui_internal:3767", + location="imgui_internal:3782", namespace="ImGui", ov_cimguiname="igDebugRenderViewportThumbnail", ret="void", @@ -16002,7 +16621,7 @@ local t={ cimguiname="igDebugStartItemPicker", defaults={}, funcname="DebugStartItemPicker", - location="imgui:1142", + location="imgui:1143", namespace="ImGui", ov_cimguiname="igDebugStartItemPicker", ret="void", @@ -16022,7 +16641,7 @@ local t={ cimguiname="igDebugTextEncoding", defaults={}, funcname="DebugTextEncoding", - location="imgui:1140", + location="imgui:1141", namespace="ImGui", ov_cimguiname="igDebugTextEncoding", ret="void", @@ -16045,7 +16664,7 @@ local t={ cimguiname="igDebugTextUnformattedWithLocateItem", defaults={}, funcname="DebugTextUnformattedWithLocateItem", - location="imgui_internal:3737", + location="imgui_internal:3752", namespace="ImGui", ov_cimguiname="igDebugTextUnformattedWithLocateItem", ret="void", @@ -16065,7 +16684,7 @@ local t={ cimguiname="igDebugTextureIDToU64", defaults={}, funcname="DebugTextureIDToU64", - location="imgui_internal:3745", + location="imgui_internal:3760", namespace="ImGui", ov_cimguiname="igDebugTextureIDToU64", ret="ImU64", @@ -16091,7 +16710,7 @@ local t={ cimguiname="igDemoMarker", defaults={}, funcname="DemoMarker", - location="imgui_internal:3730", + location="imgui_internal:3745", namespace="ImGui", ov_cimguiname="igDemoMarker", ret="void", @@ -16153,7 +16772,7 @@ local t={ cimguiname="igDragBehavior", defaults={}, funcname="DragBehavior", - location="imgui_internal:3659", + location="imgui_internal:3674", namespace="ImGui", ov_cimguiname="igDragBehavior", ret="bool", @@ -16752,7 +17371,7 @@ local t={ cimguiname="igEndBoxSelect", defaults={}, funcname="EndBoxSelect", - location="imgui_internal:3497", + location="imgui_internal:3511", namespace="ImGui", ov_cimguiname="igEndBoxSelect", ret="void", @@ -16786,7 +17405,7 @@ local t={ cimguiname="igEndColumns", defaults={}, funcname="EndColumns", - location="imgui_internal:3510", + location="imgui_internal:3524", namespace="ImGui", ov_cimguiname="igEndColumns", ret="void", @@ -16820,7 +17439,7 @@ local t={ cimguiname="igEndComboPreview", defaults={}, funcname="EndComboPreview", - location="imgui_internal:3354", + location="imgui_internal:3367", namespace="ImGui", ov_cimguiname="igEndComboPreview", ret="void", @@ -16854,7 +17473,7 @@ local t={ cimguiname="igEndDisabledOverrideReenable", defaults={}, funcname="EndDisabledOverrideReenable", - location="imgui_internal:3313", + location="imgui_internal:3325", namespace="ImGui", ov_cimguiname="igEndDisabledOverrideReenable", ret="void", @@ -16905,7 +17524,7 @@ local t={ cimguiname="igEndErrorTooltip", defaults={}, funcname="EndErrorTooltip", - location="imgui_internal:3727", + location="imgui_internal:3742", namespace="ImGui", ov_cimguiname="igEndErrorTooltip", ret="void", @@ -17126,7 +17745,7 @@ local t={ cimguiname="igErrorCheckEndFrameFinalizeErrorTooltip", defaults={}, funcname="ErrorCheckEndFrameFinalizeErrorTooltip", - location="imgui_internal:3725", + location="imgui_internal:3740", namespace="ImGui", ov_cimguiname="igErrorCheckEndFrameFinalizeErrorTooltip", ret="void", @@ -17143,7 +17762,7 @@ local t={ cimguiname="igErrorCheckUsingSetCursorPosToExtendParentBoundaries", defaults={}, funcname="ErrorCheckUsingSetCursorPosToExtendParentBoundaries", - location="imgui_internal:3724", + location="imgui_internal:3739", namespace="ImGui", ov_cimguiname="igErrorCheckUsingSetCursorPosToExtendParentBoundaries", ret="void", @@ -17163,7 +17782,7 @@ local t={ cimguiname="igErrorLog", defaults={}, funcname="ErrorLog", - location="imgui_internal:3720", + location="imgui_internal:3735", namespace="ImGui", ov_cimguiname="igErrorLog", ret="bool", @@ -17183,7 +17802,7 @@ local t={ cimguiname="igErrorRecoveryStoreState", defaults={}, funcname="ErrorRecoveryStoreState", - location="imgui_internal:3721", + location="imgui_internal:3736", namespace="ImGui", ov_cimguiname="igErrorRecoveryStoreState", ret="void", @@ -17203,7 +17822,7 @@ local t={ cimguiname="igErrorRecoveryTryToRecoverState", defaults={}, funcname="ErrorRecoveryTryToRecoverState", - location="imgui_internal:3722", + location="imgui_internal:3737", namespace="ImGui", ov_cimguiname="igErrorRecoveryTryToRecoverState", ret="void", @@ -17223,7 +17842,7 @@ local t={ cimguiname="igErrorRecoveryTryToRecoverWindowState", defaults={}, funcname="ErrorRecoveryTryToRecoverWindowState", - location="imgui_internal:3723", + location="imgui_internal:3738", namespace="ImGui", ov_cimguiname="igErrorRecoveryTryToRecoverWindowState", ret="void", @@ -17252,7 +17871,7 @@ local t={ cimguiname="igExtendHitBoxWhenNearViewportEdge", defaults={}, funcname="ExtendHitBoxWhenNearViewportEdge", - location="imgui_internal:3655", + location="imgui_internal:3670", namespace="ImGui", ov_cimguiname="igExtendHitBoxWhenNearViewportEdge", ret="void", @@ -17273,7 +17892,7 @@ local t={ conv="ImVec2", defaults={}, funcname="FindBestWindowPosForPopup", - location="imgui_internal:3336", + location="imgui_internal:3349", namespace="ImGui", nonUDT=1, ov_cimguiname="igFindBestWindowPosForPopup", @@ -17310,7 +17929,7 @@ local t={ conv="ImVec2", defaults={}, funcname="FindBestWindowPosForPopupEx", - location="imgui_internal:3337", + location="imgui_internal:3350", namespace="ImGui", nonUDT=1, ov_cimguiname="igFindBestWindowPosForPopupEx", @@ -17331,7 +17950,7 @@ local t={ cimguiname="igFindBlockingModal", defaults={}, funcname="FindBlockingModal", - location="imgui_internal:3335", + location="imgui_internal:3348", namespace="ImGui", ov_cimguiname="igFindBlockingModal", ret="ImGuiWindow*", @@ -17351,13 +17970,33 @@ local t={ cimguiname="igFindBottomMostVisibleWindowWithinBeginStack", defaults={}, funcname="FindBottomMostVisibleWindowWithinBeginStack", - location="imgui_internal:3202", + location="imgui_internal:3214", namespace="ImGui", ov_cimguiname="igFindBottomMostVisibleWindowWithinBeginStack", ret="ImGuiWindow*", signature="(ImGuiWindow*)", stname=""}, ["(ImGuiWindow*)"]=nil}, + igFindFrontMostVisibleChildWindow={ + [1]={ + args="(ImGuiWindow* window)", + argsT={ + [1]={ + name="window", + type="ImGuiWindow*"}}, + argsoriginal="(ImGuiWindow* window)", + call_args="(window)", + call_args_old="(window)", + cimguiname="igFindFrontMostVisibleChildWindow", + defaults={}, + funcname="FindFrontMostVisibleChildWindow", + location="imgui_internal:3335", + namespace="ImGui", + ov_cimguiname="igFindFrontMostVisibleChildWindow", + ret="ImGuiWindow*", + signature="(ImGuiWindow*)", + stname=""}, + ["(ImGuiWindow*)"]=nil}, igFindHoveredWindowEx={ [1]={ args="(const ImVec2_c pos,bool find_first_and_in_any_viewport,ImGuiWindow** out_hovered_window,ImGuiWindow** out_hovered_window_under_moving_window)", @@ -17380,7 +18019,7 @@ local t={ cimguiname="igFindHoveredWindowEx", defaults={}, funcname="FindHoveredWindowEx", - location="imgui_internal:3238", + location="imgui_internal:3250", namespace="ImGui", ov_cimguiname="igFindHoveredWindowEx", ret="void", @@ -17403,7 +18042,7 @@ local t={ cimguiname="igFindOrCreateColumns", defaults={}, funcname="FindOrCreateColumns", - location="imgui_internal:3515", + location="imgui_internal:3529", namespace="ImGui", ov_cimguiname="igFindOrCreateColumns", ret="ImGuiOldColumns*", @@ -17427,7 +18066,7 @@ local t={ defaults={ text_end="NULL"}, funcname="FindRenderedTextEnd", - location="imgui_internal:3620", + location="imgui_internal:3635", namespace="ImGui", ov_cimguiname="igFindRenderedTextEnd", ret="const char*", @@ -17447,7 +18086,7 @@ local t={ cimguiname="igFindSettingsHandler", defaults={}, funcname="FindSettingsHandler", - location="imgui_internal:3255", + location="imgui_internal:3267", namespace="ImGui", ov_cimguiname="igFindSettingsHandler", ret="ImGuiSettingsHandler*", @@ -17467,7 +18106,7 @@ local t={ cimguiname="igFindWindowByID", defaults={}, funcname="FindWindowByID", - location="imgui_internal:3173", + location="imgui_internal:3185", namespace="ImGui", ov_cimguiname="igFindWindowByID", ret="ImGuiWindow*", @@ -17487,7 +18126,7 @@ local t={ cimguiname="igFindWindowByName", defaults={}, funcname="FindWindowByName", - location="imgui_internal:3174", + location="imgui_internal:3186", namespace="ImGui", ov_cimguiname="igFindWindowByName", ret="ImGuiWindow*", @@ -17507,7 +18146,7 @@ local t={ cimguiname="igFindWindowDisplayIndex", defaults={}, funcname="FindWindowDisplayIndex", - location="imgui_internal:3201", + location="imgui_internal:3213", namespace="ImGui", ov_cimguiname="igFindWindowDisplayIndex", ret="int", @@ -17527,7 +18166,7 @@ local t={ cimguiname="igFindWindowSettingsByID", defaults={}, funcname="FindWindowSettingsByID", - location="imgui_internal:3259", + location="imgui_internal:3271", namespace="ImGui", ov_cimguiname="igFindWindowSettingsByID", ret="ImGuiWindowSettings*", @@ -17547,7 +18186,7 @@ local t={ cimguiname="igFindWindowSettingsByWindow", defaults={}, funcname="FindWindowSettingsByWindow", - location="imgui_internal:3260", + location="imgui_internal:3272", namespace="ImGui", ov_cimguiname="igFindWindowSettingsByWindow", ret="ImGuiWindowSettings*", @@ -17567,7 +18206,7 @@ local t={ cimguiname="igFixupKeyChord", defaults={}, funcname="FixupKeyChord", - location="imgui_internal:3391", + location="imgui_internal:3404", namespace="ImGui", ov_cimguiname="igFixupKeyChord", ret="ImGuiKeyChord", @@ -17584,7 +18223,7 @@ local t={ cimguiname="igFocusItem", defaults={}, funcname="FocusItem", - location="imgui_internal:3378", + location="imgui_internal:3391", namespace="ImGui", ov_cimguiname="igFocusItem", ret="void", @@ -17613,7 +18252,7 @@ local t={ cimguiname="igFocusTopMostWindowUnderOne", defaults={}, funcname="FocusTopMostWindowUnderOne", - location="imgui_internal:3196", + location="imgui_internal:3208", namespace="ImGui", ov_cimguiname="igFocusTopMostWindowUnderOne", ret="void", @@ -17637,7 +18276,7 @@ local t={ defaults={ flags="0"}, funcname="FocusWindow", - location="imgui_internal:3195", + location="imgui_internal:3207", namespace="ImGui", ov_cimguiname="igFocusWindow", ret="void", @@ -17657,7 +18296,7 @@ local t={ cimguiname="igGcAwakeTransientWindowBuffers", defaults={}, funcname="GcAwakeTransientWindowBuffers", - location="imgui_internal:3717", + location="imgui_internal:3732", namespace="ImGui", ov_cimguiname="igGcAwakeTransientWindowBuffers", ret="void", @@ -17674,7 +18313,7 @@ local t={ cimguiname="igGcCompactTransientMiscBuffers", defaults={}, funcname="GcCompactTransientMiscBuffers", - location="imgui_internal:3715", + location="imgui_internal:3730", namespace="ImGui", ov_cimguiname="igGcCompactTransientMiscBuffers", ret="void", @@ -17694,7 +18333,7 @@ local t={ cimguiname="igGcCompactTransientWindowBuffers", defaults={}, funcname="GcCompactTransientWindowBuffers", - location="imgui_internal:3716", + location="imgui_internal:3731", namespace="ImGui", ov_cimguiname="igGcCompactTransientWindowBuffers", ret="void", @@ -17711,7 +18350,7 @@ local t={ cimguiname="igGetActiveID", defaults={}, funcname="GetActiveID", - location="imgui_internal:3283", + location="imgui_internal:3295", namespace="ImGui", ov_cimguiname="igGetActiveID", ret="ImGuiID", @@ -17737,7 +18376,7 @@ local t={ cimguiname="igGetAllocatorFunctions", defaults={}, funcname="GetAllocatorFunctions", - location="imgui:1154", + location="imgui:1155", namespace="ImGui", ov_cimguiname="igGetAllocatorFunctions", ret="void", @@ -17772,7 +18411,7 @@ local t={ cimguiname="igGetBackgroundDrawList", defaults={}, funcname="GetBackgroundDrawList", - location="imgui_internal:3221", + location="imgui_internal:3233", namespace="ImGui", ov_cimguiname="igGetBackgroundDrawList_ViewportPtr", ret="ImDrawList*", @@ -17793,7 +18432,7 @@ local t={ cimguiname="igGetBoxSelectState", defaults={}, funcname="GetBoxSelectState", - location="imgui_internal:3504", + location="imgui_internal:3518", namespace="ImGui", ov_cimguiname="igGetBoxSelectState", ret="ImGuiBoxSelectState*", @@ -17810,7 +18449,7 @@ local t={ cimguiname="igGetClipboardText", defaults={}, funcname="GetClipboardText", - location="imgui:1124", + location="imgui:1125", namespace="ImGui", ov_cimguiname="igGetClipboardText", ret="const char*", @@ -17916,7 +18555,7 @@ local t={ cimguiname="igGetColumnNormFromOffset", defaults={}, funcname="GetColumnNormFromOffset", - location="imgui_internal:3517", + location="imgui_internal:3531", namespace="ImGui", ov_cimguiname="igGetColumnNormFromOffset", ret="float", @@ -17960,7 +18599,7 @@ local t={ cimguiname="igGetColumnOffsetFromNorm", defaults={}, funcname="GetColumnOffsetFromNorm", - location="imgui_internal:3516", + location="imgui_internal:3530", namespace="ImGui", ov_cimguiname="igGetColumnOffsetFromNorm", ret="float", @@ -18021,7 +18660,7 @@ local t={ cimguiname="igGetColumnsID", defaults={}, funcname="GetColumnsID", - location="imgui_internal:3514", + location="imgui_internal:3528", namespace="ImGui", ov_cimguiname="igGetColumnsID", ret="ImGuiID", @@ -18074,7 +18713,7 @@ local t={ cimguiname="igGetCurrentFocusScope", defaults={}, funcname="GetCurrentFocusScope", - location="imgui_internal:3476", + location="imgui_internal:3490", namespace="ImGui", ov_cimguiname="igGetCurrentFocusScope", ret="ImGuiID", @@ -18091,7 +18730,7 @@ local t={ cimguiname="igGetCurrentTabBar", defaults={}, funcname="GetCurrentTabBar", - location="imgui_internal:3581", + location="imgui_internal:3596", namespace="ImGui", ov_cimguiname="igGetCurrentTabBar", ret="ImGuiTabBar*", @@ -18108,7 +18747,7 @@ local t={ cimguiname="igGetCurrentTable", defaults={}, funcname="GetCurrentTable", - location="imgui_internal:3533", + location="imgui_internal:3547", namespace="ImGui", ov_cimguiname="igGetCurrentTable", ret="ImGuiTable*", @@ -18125,7 +18764,7 @@ local t={ cimguiname="igGetCurrentWindow", defaults={}, funcname="GetCurrentWindow", - location="imgui_internal:3172", + location="imgui_internal:3184", namespace="ImGui", ov_cimguiname="igGetCurrentWindow", ret="ImGuiWindow*", @@ -18142,7 +18781,7 @@ local t={ cimguiname="igGetCurrentWindowRead", defaults={}, funcname="GetCurrentWindowRead", - location="imgui_internal:3171", + location="imgui_internal:3183", namespace="ImGui", ov_cimguiname="igGetCurrentWindowRead", ret="ImGuiWindow*", @@ -18250,7 +18889,7 @@ local t={ cimguiname="igGetDefaultFont", defaults={}, funcname="GetDefaultFont", - location="imgui_internal:3217", + location="imgui_internal:3229", namespace="ImGui", ov_cimguiname="igGetDefaultFont", ret="ImFont*", @@ -18318,7 +18957,7 @@ local t={ cimguiname="igGetFocusID", defaults={}, funcname="GetFocusID", - location="imgui_internal:3284", + location="imgui_internal:3296", namespace="ImGui", ov_cimguiname="igGetFocusID", ret="ImGuiID", @@ -18369,7 +19008,7 @@ local t={ cimguiname="igGetFontRasterizerDensity", defaults={}, funcname="GetFontRasterizerDensity", - location="imgui_internal:3215", + location="imgui_internal:3227", namespace="ImGui", ov_cimguiname="igGetFontRasterizerDensity", ret="float", @@ -18440,7 +19079,7 @@ local t={ cimguiname="igGetForegroundDrawList", defaults={}, funcname="GetForegroundDrawList", - location="imgui_internal:3220", + location="imgui_internal:3232", namespace="ImGui", ov_cimguiname="igGetForegroundDrawList_WindowPtr", ret="ImDrawList*", @@ -18458,7 +19097,7 @@ local t={ cimguiname="igGetForegroundDrawList", defaults={}, funcname="GetForegroundDrawList", - location="imgui_internal:3222", + location="imgui_internal:3234", namespace="ImGui", ov_cimguiname="igGetForegroundDrawList_ViewportPtr", ret="ImDrawList*", @@ -18528,7 +19167,7 @@ local t={ cimguiname="igGetHoveredID", defaults={}, funcname="GetHoveredID", - location="imgui_internal:3288", + location="imgui_internal:3300", namespace="ImGui", ov_cimguiname="igGetHoveredID", ret="ImGuiID", @@ -18634,7 +19273,7 @@ local t={ cimguiname="igGetIDWithSeed", defaults={}, funcname="GetIDWithSeed", - location="imgui_internal:3293", + location="imgui_internal:3305", namespace="ImGui", ov_cimguiname="igGetIDWithSeed_Str", ret="ImGuiID", @@ -18655,7 +19294,7 @@ local t={ cimguiname="igGetIDWithSeed", defaults={}, funcname="GetIDWithSeed", - location="imgui_internal:3294", + location="imgui_internal:3306", namespace="ImGui", ov_cimguiname="igGetIDWithSeed_Int", ret="ImGuiID", @@ -18692,7 +19331,7 @@ local t={ cimguiname="igGetIO", defaults={}, funcname="GetIO", - location="imgui_internal:3168", + location="imgui_internal:3180", namespace="ImGui", ov_cimguiname="igGetIO_ContextPtr", ret="ImGuiIO*", @@ -18714,7 +19353,7 @@ local t={ cimguiname="igGetInputTextState", defaults={}, funcname="GetInputTextState", - location="imgui_internal:3696", + location="imgui_internal:3711", namespace="ImGui", ov_cimguiname="igGetInputTextState", ret="ImGuiInputTextState*", @@ -18822,7 +19461,7 @@ local t={ cimguiname="igGetItemStatusFlags", defaults={}, funcname="GetItemStatusFlags", - location="imgui_internal:3282", + location="imgui_internal:3294", namespace="ImGui", ov_cimguiname="igGetItemStatusFlags", ret="ImGuiItemStatusFlags", @@ -18842,7 +19481,7 @@ local t={ cimguiname="igGetKeyChordName", defaults={}, funcname="GetKeyChordName", - location="imgui_internal:3403", + location="imgui_internal:3416", namespace="ImGui", ov_cimguiname="igGetKeyChordName", ret="const char*", @@ -18865,7 +19504,7 @@ local t={ cimguiname="igGetKeyData", defaults={}, funcname="GetKeyData", - location="imgui_internal:3401", + location="imgui_internal:3414", namespace="ImGui", ov_cimguiname="igGetKeyData_ContextPtr", ret="ImGuiKeyData*", @@ -18883,7 +19522,7 @@ local t={ cimguiname="igGetKeyData", defaults={}, funcname="GetKeyData", - location="imgui_internal:3402", + location="imgui_internal:3415", namespace="ImGui", ov_cimguiname="igGetKeyData_Key", ret="ImGuiKeyData*", @@ -18914,7 +19553,7 @@ local t={ conv="ImVec2", defaults={}, funcname="GetKeyMagnitude2d", - location="imgui_internal:3406", + location="imgui_internal:3419", namespace="ImGui", nonUDT=1, ov_cimguiname="igGetKeyMagnitude2d", @@ -18955,7 +19594,7 @@ local t={ cimguiname="igGetKeyOwner", defaults={}, funcname="GetKeyOwner", - location="imgui_internal:3425", + location="imgui_internal:3438", namespace="ImGui", ov_cimguiname="igGetKeyOwner", ret="ImGuiID", @@ -18978,7 +19617,7 @@ local t={ cimguiname="igGetKeyOwnerData", defaults={}, funcname="GetKeyOwnerData", - location="imgui_internal:3430", + location="imgui_internal:3443", namespace="ImGui", ov_cimguiname="igGetKeyOwnerData", ret="ImGuiKeyOwnerData*", @@ -19041,7 +19680,7 @@ local t={ cimguiname="igGetMouseButtonFromPopupFlags", defaults={}, funcname="GetMouseButtonFromPopupFlags", - location="imgui_internal:3338", + location="imgui_internal:3351", namespace="ImGui", ov_cimguiname="igGetMouseButtonFromPopupFlags", ret="ImGuiMouseButton", @@ -19061,7 +19700,7 @@ local t={ cimguiname="igGetMouseClickedCount", defaults={}, funcname="GetMouseClickedCount", - location="imgui:1109", + location="imgui:1110", namespace="ImGui", ov_cimguiname="igGetMouseClickedCount", ret="int", @@ -19078,7 +19717,7 @@ local t={ cimguiname="igGetMouseCursor", defaults={}, funcname="GetMouseCursor", - location="imgui:1118", + location="imgui:1119", namespace="ImGui", ov_cimguiname="igGetMouseCursor", ret="ImGuiMouseCursor", @@ -19104,7 +19743,7 @@ local t={ button="0", lock_threshold="-1.0f"}, funcname="GetMouseDragDelta", - location="imgui:1116", + location="imgui:1117", namespace="ImGui", nonUDT=1, ov_cimguiname="igGetMouseDragDelta", @@ -19123,7 +19762,7 @@ local t={ conv="ImVec2", defaults={}, funcname="GetMousePos", - location="imgui:1113", + location="imgui:1114", namespace="ImGui", nonUDT=1, ov_cimguiname="igGetMousePos", @@ -19142,7 +19781,7 @@ local t={ conv="ImVec2", defaults={}, funcname="GetMousePosOnOpeningCurrentPopup", - location="imgui:1114", + location="imgui:1115", namespace="ImGui", nonUDT=1, ov_cimguiname="igGetMousePosOnOpeningCurrentPopup", @@ -19163,7 +19802,7 @@ local t={ cimguiname="igGetMultiSelectState", defaults={}, funcname="GetMultiSelectState", - location="imgui_internal:3505", + location="imgui_internal:3519", namespace="ImGui", ov_cimguiname="igGetMultiSelectState", ret="ImGuiMultiSelectState*", @@ -19183,7 +19822,7 @@ local t={ cimguiname="igGetNavTweakPressedAmount", defaults={}, funcname="GetNavTweakPressedAmount", - location="imgui_internal:3407", + location="imgui_internal:3420", namespace="ImGui", ov_cimguiname="igGetNavTweakPressedAmount", ret="float", @@ -19219,7 +19858,7 @@ local t={ cimguiname="igGetPlatformIO", defaults={}, funcname="GetPlatformIO", - location="imgui_internal:3169", + location="imgui_internal:3181", namespace="ImGui", ov_cimguiname="igGetPlatformIO_ContextPtr", ret="ImGuiPlatformIO*", @@ -19242,7 +19881,7 @@ local t={ conv="ImRect", defaults={}, funcname="GetPopupAllowedExtentRect", - location="imgui_internal:3332", + location="imgui_internal:3345", namespace="ImGui", nonUDT=1, ov_cimguiname="igGetPopupAllowedExtentRect", @@ -19263,7 +19902,7 @@ local t={ cimguiname="igGetRoundedFontSize", defaults={}, funcname="GetRoundedFontSize", - location="imgui_internal:3216", + location="imgui_internal:3228", namespace="ImGui", ov_cimguiname="igGetRoundedFontSize", ret="float", @@ -19280,7 +19919,7 @@ local t={ cimguiname="igGetScale", defaults={}, funcname="GetScale", - location="imgui_internal:3170", + location="imgui_internal:3182", namespace="ImGui", ov_cimguiname="igGetScale", ret="float", @@ -19368,7 +20007,7 @@ local t={ cimguiname="igGetShortcutRoutingData", defaults={}, funcname="GetShortcutRoutingData", - location="imgui_internal:3464", + location="imgui_internal:3477", namespace="ImGui", ov_cimguiname="igGetShortcutRoutingData", ret="ImGuiKeyRoutingData*", @@ -19465,7 +20104,7 @@ local t={ cimguiname="igGetStyleVarInfo", defaults={}, funcname="GetStyleVarInfo", - location="imgui_internal:3311", + location="imgui_internal:3323", namespace="ImGui", ov_cimguiname="igGetStyleVarInfo", ret="const ImGuiStyleVarInfo*", @@ -19533,7 +20172,7 @@ local t={ cimguiname="igGetTopMostAndVisiblePopupModal", defaults={}, funcname="GetTopMostAndVisiblePopupModal", - location="imgui_internal:3334", + location="imgui_internal:3347", namespace="ImGui", ov_cimguiname="igGetTopMostAndVisiblePopupModal", ret="ImGuiWindow*", @@ -19550,7 +20189,7 @@ local t={ cimguiname="igGetTopMostPopupModal", defaults={}, funcname="GetTopMostPopupModal", - location="imgui_internal:3333", + location="imgui_internal:3346", namespace="ImGui", ov_cimguiname="igGetTopMostPopupModal", ret="ImGuiWindow*", @@ -19593,7 +20232,7 @@ local t={ cimguiname="igGetTypematicRepeatRate", defaults={}, funcname="GetTypematicRepeatRate", - location="imgui_internal:3409", + location="imgui_internal:3422", namespace="ImGui", ov_cimguiname="igGetTypematicRepeatRate", ret="void", @@ -19614,7 +20253,7 @@ local t={ defaults={ flags="ImGuiTypingSelectFlags_None"}, funcname="GetTypingSelectRequest", - location="imgui_internal:3490", + location="imgui_internal:3504", namespace="ImGui", ov_cimguiname="igGetTypingSelectRequest", ret="ImGuiTypingSelectRequest*", @@ -19707,7 +20346,7 @@ local t={ cimguiname="igGetWindowResizeBorderID", defaults={}, funcname="GetWindowResizeBorderID", - location="imgui_internal:3654", + location="imgui_internal:3669", namespace="ImGui", ov_cimguiname="igGetWindowResizeBorderID", ret="ImGuiID", @@ -19730,7 +20369,7 @@ local t={ cimguiname="igGetWindowResizeCornerID", defaults={}, funcname="GetWindowResizeCornerID", - location="imgui_internal:3653", + location="imgui_internal:3668", namespace="ImGui", ov_cimguiname="igGetWindowResizeCornerID", ret="ImGuiID", @@ -19753,7 +20392,7 @@ local t={ cimguiname="igGetWindowScrollbarID", defaults={}, funcname="GetWindowScrollbarID", - location="imgui_internal:3652", + location="imgui_internal:3667", namespace="ImGui", ov_cimguiname="igGetWindowScrollbarID", ret="ImGuiID", @@ -19777,7 +20416,7 @@ local t={ conv="ImRect", defaults={}, funcname="GetWindowScrollbarRect", - location="imgui_internal:3651", + location="imgui_internal:3666", namespace="ImGui", nonUDT=1, ov_cimguiname="igGetWindowScrollbarRect", @@ -19814,7 +20453,7 @@ local t={ cimguiname="igGetWindowViewport", defaults={}, funcname="GetWindowViewport", - location="imgui_internal:3245", + location="imgui_internal:3257", namespace="ImGui", ov_cimguiname="igGetWindowViewport", ret="ImGuiViewport*", @@ -19851,7 +20490,7 @@ local t={ cimguiname="igImAbs", defaults={}, funcname="ImAbs", - location="imgui_internal:492", + location="imgui_internal:495", ov_cimguiname="igImAbs_Int", ret="int", signature="(int)", @@ -19868,7 +20507,7 @@ local t={ cimguiname="igImAbs", defaults={}, funcname="ImAbs", - location="imgui_internal:493", + location="imgui_internal:496", ov_cimguiname="igImAbs_Float", ret="float", signature="(float)", @@ -19885,7 +20524,7 @@ local t={ cimguiname="igImAbs", defaults={}, funcname="ImAbs", - location="imgui_internal:494", + location="imgui_internal:497", ov_cimguiname="igImAbs_double", ret="double", signature="(double)", @@ -19909,7 +20548,7 @@ local t={ cimguiname="igImAlphaBlendColors", defaults={}, funcname="ImAlphaBlendColors", - location="imgui_internal:376", + location="imgui_internal:379", ov_cimguiname="igImAlphaBlendColors", ret="ImU32", signature="(ImU32,ImU32)", @@ -19941,7 +20580,7 @@ local t={ conv="ImVec2", defaults={}, funcname="ImBezierCubicCalc", - location="imgui_internal:541", + location="imgui_internal:545", nonUDT=1, ov_cimguiname="igImBezierCubicCalc", ret="ImVec2_c", @@ -19977,7 +20616,7 @@ local t={ conv="ImVec2", defaults={}, funcname="ImBezierCubicClosestPoint", - location="imgui_internal:542", + location="imgui_internal:546", nonUDT=1, ov_cimguiname="igImBezierCubicClosestPoint", ret="ImVec2_c", @@ -20013,7 +20652,7 @@ local t={ conv="ImVec2", defaults={}, funcname="ImBezierCubicClosestPointCasteljau", - location="imgui_internal:543", + location="imgui_internal:547", nonUDT=1, ov_cimguiname="igImBezierCubicClosestPointCasteljau", ret="ImVec2_c", @@ -20043,7 +20682,7 @@ local t={ conv="ImVec2", defaults={}, funcname="ImBezierQuadraticCalc", - location="imgui_internal:544", + location="imgui_internal:548", nonUDT=1, ov_cimguiname="igImBezierQuadraticCalc", ret="ImVec2_c", @@ -20066,7 +20705,7 @@ local t={ cimguiname="igImBitArrayClearAllBits", defaults={}, funcname="ImBitArrayClearAllBits", - location="imgui_internal:622", + location="imgui_internal:628", ov_cimguiname="igImBitArrayClearAllBits", ret="void", signature="(ImU32*,int)", @@ -20088,7 +20727,7 @@ local t={ cimguiname="igImBitArrayClearBit", defaults={}, funcname="ImBitArrayClearBit", - location="imgui_internal:624", + location="imgui_internal:630", ov_cimguiname="igImBitArrayClearBit", ret="void", signature="(ImU32*,int)", @@ -20107,7 +20746,7 @@ local t={ cimguiname="igImBitArrayGetStorageSizeInBytes", defaults={}, funcname="ImBitArrayGetStorageSizeInBytes", - location="imgui_internal:621", + location="imgui_internal:627", ov_cimguiname="igImBitArrayGetStorageSizeInBytes", ret="size_t", signature="(int)", @@ -20129,7 +20768,7 @@ local t={ cimguiname="igImBitArraySetBit", defaults={}, funcname="ImBitArraySetBit", - location="imgui_internal:625", + location="imgui_internal:631", ov_cimguiname="igImBitArraySetBit", ret="void", signature="(ImU32*,int)", @@ -20154,7 +20793,7 @@ local t={ cimguiname="igImBitArraySetBitRange", defaults={}, funcname="ImBitArraySetBitRange", - location="imgui_internal:626", + location="imgui_internal:632", ov_cimguiname="igImBitArraySetBitRange", ret="void", signature="(ImU32*,int,int)", @@ -20176,7 +20815,7 @@ local t={ cimguiname="igImBitArrayTestBit", defaults={}, funcname="ImBitArrayTestBit", - location="imgui_internal:623", + location="imgui_internal:629", ov_cimguiname="igImBitArrayTestBit", ret="bool", signature="(const ImU32*,int)", @@ -20195,7 +20834,7 @@ local t={ cimguiname="igImCharIsBlankA", defaults={}, funcname="ImCharIsBlankA", - location="imgui_internal:402", + location="imgui_internal:405", ov_cimguiname="igImCharIsBlankA", ret="bool", signature="(char)", @@ -20214,7 +20853,7 @@ local t={ cimguiname="igImCharIsBlankW", defaults={}, funcname="ImCharIsBlankW", - location="imgui_internal:403", + location="imgui_internal:406", ov_cimguiname="igImCharIsBlankW", ret="bool", signature="(unsigned int)", @@ -20233,7 +20872,7 @@ local t={ cimguiname="igImCharIsXdigitA", defaults={}, funcname="ImCharIsXdigitA", - location="imgui_internal:404", + location="imgui_internal:407", ov_cimguiname="igImCharIsXdigitA", ret="bool", signature="(char)", @@ -20259,7 +20898,7 @@ local t={ conv="ImVec2", defaults={}, funcname="ImClamp", - location="imgui_internal:516", + location="imgui_internal:520", nonUDT=1, ov_cimguiname="igImClamp", ret="ImVec2_c", @@ -20279,7 +20918,7 @@ local t={ cimguiname="igImCountSetBits", defaults={}, funcname="ImCountSetBits", - location="imgui_internal:382", + location="imgui_internal:385", ov_cimguiname="igImCountSetBits", ret="unsigned int", signature="(unsigned int)", @@ -20301,7 +20940,7 @@ local t={ cimguiname="igImDot", defaults={}, funcname="ImDot", - location="imgui_internal:531", + location="imgui_internal:535", ov_cimguiname="igImDot", ret="float", signature="(const ImVec2,const ImVec2)", @@ -20326,7 +20965,7 @@ local t={ cimguiname="igImExponentialMovingAverage", defaults={}, funcname="ImExponentialMovingAverage", - location="imgui_internal:537", + location="imgui_internal:541", ov_cimguiname="igImExponentialMovingAverage", ret="float", signature="(float,float,int)", @@ -20345,7 +20984,7 @@ local t={ cimguiname="igImFileClose", defaults={}, funcname="ImFileClose", - location="imgui_internal:466", + location="imgui_internal:469", ov_cimguiname="igImFileClose", ret="bool", signature="(ImFileHandle)", @@ -20364,7 +21003,7 @@ local t={ cimguiname="igImFileGetSize", defaults={}, funcname="ImFileGetSize", - location="imgui_internal:467", + location="imgui_internal:470", ov_cimguiname="igImFileGetSize", ret="ImU64", signature="(ImFileHandle)", @@ -20394,7 +21033,7 @@ local t={ out_file_size="NULL", padding_bytes="0"}, funcname="ImFileLoadToMemory", - location="imgui_internal:473", + location="imgui_internal:476", ov_cimguiname="igImFileLoadToMemory", ret="void*", signature="(const char*,const char*,size_t*,int)", @@ -20416,7 +21055,7 @@ local t={ cimguiname="igImFileOpen", defaults={}, funcname="ImFileOpen", - location="imgui_internal:465", + location="imgui_internal:468", ov_cimguiname="igImFileOpen", ret="ImFileHandle", signature="(const char*,const char*)", @@ -20444,7 +21083,7 @@ local t={ cimguiname="igImFileRead", defaults={}, funcname="ImFileRead", - location="imgui_internal:468", + location="imgui_internal:471", ov_cimguiname="igImFileRead", ret="ImU64", signature="(void*,ImU64,ImU64,ImFileHandle)", @@ -20472,7 +21111,7 @@ local t={ cimguiname="igImFileWrite", defaults={}, funcname="ImFileWrite", - location="imgui_internal:469", + location="imgui_internal:472", ov_cimguiname="igImFileWrite", ret="ImU64", signature="(const void*,ImU64,ImU64,ImFileHandle)", @@ -20491,7 +21130,7 @@ local t={ cimguiname="igImFloor", defaults={}, funcname="ImFloor", - location="imgui_internal:526", + location="imgui_internal:530", ov_cimguiname="igImFloor_Float", ret="float", signature="(float)", @@ -20509,7 +21148,7 @@ local t={ conv="ImVec2", defaults={}, funcname="ImFloor", - location="imgui_internal:527", + location="imgui_internal:531", nonUDT=1, ov_cimguiname="igImFloor_Vec2", ret="ImVec2_c", @@ -20533,7 +21172,7 @@ local t={ cimguiname="igImFontAtlasAddDrawListSharedData", defaults={}, funcname="ImFontAtlasAddDrawListSharedData", - location="imgui_internal:3955", + location="imgui_internal:3970", ov_cimguiname="igImFontAtlasAddDrawListSharedData", ret="void", signature="(ImFontAtlas*,ImDrawListSharedData*)", @@ -20564,7 +21203,7 @@ local t={ cimguiname="igImFontAtlasBakedAdd", defaults={}, funcname="ImFontAtlasBakedAdd", - location="imgui_internal:3941", + location="imgui_internal:3956", ov_cimguiname="igImFontAtlasBakedAdd", ret="ImFontBaked*", signature="(ImFontAtlas*,ImFont*,float,float,ImGuiID)", @@ -20592,7 +21231,7 @@ local t={ cimguiname="igImFontAtlasBakedAddFontGlyph", defaults={}, funcname="ImFontAtlasBakedAddFontGlyph", - location="imgui_internal:3943", + location="imgui_internal:3958", ov_cimguiname="igImFontAtlasBakedAddFontGlyph", ret="ImFontGlyph*", signature="(ImFontAtlas*,ImFontBaked*,ImFontConfig*,const ImFontGlyph*)", @@ -20623,7 +21262,7 @@ local t={ cimguiname="igImFontAtlasBakedAddFontGlyphAdvancedX", defaults={}, funcname="ImFontAtlasBakedAddFontGlyphAdvancedX", - location="imgui_internal:3944", + location="imgui_internal:3959", ov_cimguiname="igImFontAtlasBakedAddFontGlyphAdvancedX", ret="void", signature="(ImFontAtlas*,ImFontBaked*,ImFontConfig*,ImWchar,float)", @@ -20648,7 +21287,7 @@ local t={ cimguiname="igImFontAtlasBakedDiscard", defaults={}, funcname="ImFontAtlasBakedDiscard", - location="imgui_internal:3942", + location="imgui_internal:3957", ov_cimguiname="igImFontAtlasBakedDiscard", ret="void", signature="(ImFontAtlas*,ImFont*,ImFontBaked*)", @@ -20676,7 +21315,7 @@ local t={ cimguiname="igImFontAtlasBakedDiscardFontGlyph", defaults={}, funcname="ImFontAtlasBakedDiscardFontGlyph", - location="imgui_internal:3945", + location="imgui_internal:3960", ov_cimguiname="igImFontAtlasBakedDiscardFontGlyph", ret="void", signature="(ImFontAtlas*,ImFont*,ImFontBaked*,ImFontGlyph*)", @@ -20704,7 +21343,7 @@ local t={ cimguiname="igImFontAtlasBakedGetClosestMatch", defaults={}, funcname="ImFontAtlasBakedGetClosestMatch", - location="imgui_internal:3940", + location="imgui_internal:3955", ov_cimguiname="igImFontAtlasBakedGetClosestMatch", ret="ImFontBaked*", signature="(ImFontAtlas*,ImFont*,float,float)", @@ -20729,7 +21368,7 @@ local t={ cimguiname="igImFontAtlasBakedGetId", defaults={}, funcname="ImFontAtlasBakedGetId", - location="imgui_internal:3938", + location="imgui_internal:3953", ov_cimguiname="igImFontAtlasBakedGetId", ret="ImGuiID", signature="(ImGuiID,float,float)", @@ -20757,7 +21396,7 @@ local t={ cimguiname="igImFontAtlasBakedGetOrAdd", defaults={}, funcname="ImFontAtlasBakedGetOrAdd", - location="imgui_internal:3939", + location="imgui_internal:3954", ov_cimguiname="igImFontAtlasBakedGetOrAdd", ret="ImFontBaked*", signature="(ImFontAtlas*,ImFont*,float,float)", @@ -20797,7 +21436,7 @@ local t={ cimguiname="igImFontAtlasBakedSetFontGlyphBitmap", defaults={}, funcname="ImFontAtlasBakedSetFontGlyphBitmap", - location="imgui_internal:3946", + location="imgui_internal:3961", ov_cimguiname="igImFontAtlasBakedSetFontGlyphBitmap", ret="void", signature="(ImFontAtlas*,ImFontBaked*,ImFontConfig*,ImFontGlyph*,ImTextureRect*,const unsigned char*,ImTextureFormat,int)", @@ -20816,7 +21455,7 @@ local t={ cimguiname="igImFontAtlasBuildClear", defaults={}, funcname="ImFontAtlasBuildClear", - location="imgui_internal:3916", + location="imgui_internal:3931", ov_cimguiname="igImFontAtlasBuildClear", ret="void", signature="(ImFontAtlas*)", @@ -20835,7 +21474,7 @@ local t={ cimguiname="igImFontAtlasBuildDestroy", defaults={}, funcname="ImFontAtlasBuildDestroy", - location="imgui_internal:3910", + location="imgui_internal:3925", ov_cimguiname="igImFontAtlasBuildDestroy", ret="void", signature="(ImFontAtlas*)", @@ -20857,7 +21496,7 @@ local t={ cimguiname="igImFontAtlasBuildDiscardBakes", defaults={}, funcname="ImFontAtlasBuildDiscardBakes", - location="imgui_internal:3928", + location="imgui_internal:3943", ov_cimguiname="igImFontAtlasBuildDiscardBakes", ret="void", signature="(ImFontAtlas*,int)", @@ -20885,7 +21524,7 @@ local t={ cimguiname="igImFontAtlasBuildGetOversampleFactors", defaults={}, funcname="ImFontAtlasBuildGetOversampleFactors", - location="imgui_internal:3927", + location="imgui_internal:3942", ov_cimguiname="igImFontAtlasBuildGetOversampleFactors", ret="void", signature="(ImFontConfig*,ImFontBaked*,int*,int*)", @@ -20904,7 +21543,7 @@ local t={ cimguiname="igImFontAtlasBuildInit", defaults={}, funcname="ImFontAtlasBuildInit", - location="imgui_internal:3909", + location="imgui_internal:3924", ov_cimguiname="igImFontAtlasBuildInit", ret="void", signature="(ImFontAtlas*)", @@ -20923,7 +21562,7 @@ local t={ cimguiname="igImFontAtlasBuildLegacyPreloadAllGlyphRanges", defaults={}, funcname="ImFontAtlasBuildLegacyPreloadAllGlyphRanges", - location="imgui_internal:3926", + location="imgui_internal:3941", ov_cimguiname="igImFontAtlasBuildLegacyPreloadAllGlyphRanges", ret="void", signature="(ImFontAtlas*)", @@ -20942,7 +21581,7 @@ local t={ cimguiname="igImFontAtlasBuildMain", defaults={}, funcname="ImFontAtlasBuildMain", - location="imgui_internal:3911", + location="imgui_internal:3926", ov_cimguiname="igImFontAtlasBuildMain", ret="void", signature="(ImFontAtlas*)", @@ -20967,7 +21606,7 @@ local t={ cimguiname="igImFontAtlasBuildNotifySetFont", defaults={}, funcname="ImFontAtlasBuildNotifySetFont", - location="imgui_internal:3913", + location="imgui_internal:3928", ov_cimguiname="igImFontAtlasBuildNotifySetFont", ret="void", signature="(ImFontAtlas*,ImFont*,ImFont*)", @@ -21004,7 +21643,7 @@ local t={ cimguiname="igImFontAtlasBuildRenderBitmapFromString", defaults={}, funcname="ImFontAtlasBuildRenderBitmapFromString", - location="imgui_internal:3915", + location="imgui_internal:3930", ov_cimguiname="igImFontAtlasBuildRenderBitmapFromString", ret="void", signature="(ImFontAtlas*,int,int,int,int,const char*,char)", @@ -21026,7 +21665,7 @@ local t={ cimguiname="igImFontAtlasBuildSetupFontLoader", defaults={}, funcname="ImFontAtlasBuildSetupFontLoader", - location="imgui_internal:3912", + location="imgui_internal:3927", ov_cimguiname="igImFontAtlasBuildSetupFontLoader", ret="void", signature="(ImFontAtlas*,const ImFontLoader*)", @@ -21051,7 +21690,7 @@ local t={ cimguiname="igImFontAtlasBuildSetupFontSpecialGlyphs", defaults={}, funcname="ImFontAtlasBuildSetupFontSpecialGlyphs", - location="imgui_internal:3925", + location="imgui_internal:3940", ov_cimguiname="igImFontAtlasBuildSetupFontSpecialGlyphs", ret="void", signature="(ImFontAtlas*,ImFont*,ImFontConfig*)", @@ -21070,7 +21709,7 @@ local t={ cimguiname="igImFontAtlasBuildUpdatePointers", defaults={}, funcname="ImFontAtlasBuildUpdatePointers", - location="imgui_internal:3914", + location="imgui_internal:3929", ov_cimguiname="igImFontAtlasBuildUpdatePointers", ret="void", signature="(ImFontAtlas*)", @@ -21089,7 +21728,7 @@ local t={ cimguiname="igImFontAtlasDebugLogTextureRequests", defaults={}, funcname="ImFontAtlasDebugLogTextureRequests", - location="imgui_internal:3972", + location="imgui_internal:3988", ov_cimguiname="igImFontAtlasDebugLogTextureRequests", ret="void", signature="(ImFontAtlas*)", @@ -21111,7 +21750,7 @@ local t={ cimguiname="igImFontAtlasFontDestroyOutput", defaults={}, funcname="ImFontAtlasFontDestroyOutput", - location="imgui_internal:3934", + location="imgui_internal:3949", ov_cimguiname="igImFontAtlasFontDestroyOutput", ret="void", signature="(ImFontAtlas*,ImFont*)", @@ -21133,7 +21772,7 @@ local t={ cimguiname="igImFontAtlasFontDestroySourceData", defaults={}, funcname="ImFontAtlasFontDestroySourceData", - location="imgui_internal:3932", + location="imgui_internal:3947", ov_cimguiname="igImFontAtlasFontDestroySourceData", ret="void", signature="(ImFontAtlas*,ImFontConfig*)", @@ -21158,7 +21797,7 @@ local t={ cimguiname="igImFontAtlasFontDiscardBakes", defaults={}, funcname="ImFontAtlasFontDiscardBakes", - location="imgui_internal:3936", + location="imgui_internal:3951", ov_cimguiname="igImFontAtlasFontDiscardBakes", ret="void", signature="(ImFontAtlas*,ImFont*,int)", @@ -21180,7 +21819,7 @@ local t={ cimguiname="igImFontAtlasFontInitOutput", defaults={}, funcname="ImFontAtlasFontInitOutput", - location="imgui_internal:3933", + location="imgui_internal:3948", ov_cimguiname="igImFontAtlasFontInitOutput", ret="bool", signature="(ImFontAtlas*,ImFont*)", @@ -21202,7 +21841,7 @@ local t={ cimguiname="igImFontAtlasFontRebuildOutput", defaults={}, funcname="ImFontAtlasFontRebuildOutput", - location="imgui_internal:3935", + location="imgui_internal:3950", ov_cimguiname="igImFontAtlasFontRebuildOutput", ret="void", signature="(ImFontAtlas*,ImFont*)", @@ -21227,7 +21866,7 @@ local t={ cimguiname="igImFontAtlasFontSourceAddToFont", defaults={}, funcname="ImFontAtlasFontSourceAddToFont", - location="imgui_internal:3931", + location="imgui_internal:3946", ov_cimguiname="igImFontAtlasFontSourceAddToFont", ret="void", signature="(ImFontAtlas*,ImFont*,ImFontConfig*)", @@ -21249,7 +21888,7 @@ local t={ cimguiname="igImFontAtlasFontSourceInit", defaults={}, funcname="ImFontAtlasFontSourceInit", - location="imgui_internal:3930", + location="imgui_internal:3945", ov_cimguiname="igImFontAtlasFontSourceInit", ret="bool", signature="(ImFontAtlas*,ImFontConfig*)", @@ -21265,7 +21904,7 @@ local t={ cimguiname="igImFontAtlasGetFontLoaderForStbTruetype", defaults={}, funcname="ImFontAtlasGetFontLoaderForStbTruetype", - location="imgui_internal:3813", + location="imgui_internal:3828", ov_cimguiname="igImFontAtlasGetFontLoaderForStbTruetype", ret="const ImFontLoader*", signature="()", @@ -21299,7 +21938,7 @@ local t={ cimguiname="igImFontAtlasGetMouseCursorTexData", defaults={}, funcname="ImFontAtlasGetMouseCursorTexData", - location="imgui_internal:3975", + location="imgui_internal:3991", ov_cimguiname="igImFontAtlasGetMouseCursorTexData", ret="bool", signature="(ImFontAtlas*,ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])", @@ -21328,7 +21967,7 @@ local t={ defaults={ overwrite_entry="NULL"}, funcname="ImFontAtlasPackAddRect", - location="imgui_internal:3949", + location="imgui_internal:3964", ov_cimguiname="igImFontAtlasPackAddRect", ret="ImFontAtlasRectId", signature="(ImFontAtlas*,int,int,ImFontAtlasRectEntry*)", @@ -21350,7 +21989,7 @@ local t={ cimguiname="igImFontAtlasPackDiscardRect", defaults={}, funcname="ImFontAtlasPackDiscardRect", - location="imgui_internal:3952", + location="imgui_internal:3967", ov_cimguiname="igImFontAtlasPackDiscardRect", ret="void", signature="(ImFontAtlas*,ImFontAtlasRectId)", @@ -21372,7 +22011,7 @@ local t={ cimguiname="igImFontAtlasPackGetRect", defaults={}, funcname="ImFontAtlasPackGetRect", - location="imgui_internal:3950", + location="imgui_internal:3965", ov_cimguiname="igImFontAtlasPackGetRect", ret="ImTextureRect*", signature="(ImFontAtlas*,ImFontAtlasRectId)", @@ -21394,7 +22033,7 @@ local t={ cimguiname="igImFontAtlasPackGetRectSafe", defaults={}, funcname="ImFontAtlasPackGetRectSafe", - location="imgui_internal:3951", + location="imgui_internal:3966", ov_cimguiname="igImFontAtlasPackGetRectSafe", ret="ImTextureRect*", signature="(ImFontAtlas*,ImFontAtlasRectId)", @@ -21413,7 +22052,7 @@ local t={ cimguiname="igImFontAtlasPackInit", defaults={}, funcname="ImFontAtlasPackInit", - location="imgui_internal:3948", + location="imgui_internal:3963", ov_cimguiname="igImFontAtlasPackInit", ret="void", signature="(ImFontAtlas*)", @@ -21432,7 +22071,7 @@ local t={ cimguiname="igImFontAtlasRectId_GetGeneration", defaults={}, funcname="ImFontAtlasRectId_GetGeneration", - location="imgui_internal:3836", + location="imgui_internal:3851", ov_cimguiname="igImFontAtlasRectId_GetGeneration", ret="unsigned int", signature="(ImFontAtlasRectId)", @@ -21451,7 +22090,7 @@ local t={ cimguiname="igImFontAtlasRectId_GetIndex", defaults={}, funcname="ImFontAtlasRectId_GetIndex", - location="imgui_internal:3835", + location="imgui_internal:3850", ov_cimguiname="igImFontAtlasRectId_GetIndex", ret="int", signature="(ImFontAtlasRectId)", @@ -21473,7 +22112,7 @@ local t={ cimguiname="igImFontAtlasRectId_Make", defaults={}, funcname="ImFontAtlasRectId_Make", - location="imgui_internal:3837", + location="imgui_internal:3852", ov_cimguiname="igImFontAtlasRectId_Make", ret="ImFontAtlasRectId", signature="(int,int)", @@ -21495,7 +22134,7 @@ local t={ cimguiname="igImFontAtlasRemoveDrawListSharedData", defaults={}, funcname="ImFontAtlasRemoveDrawListSharedData", - location="imgui_internal:3956", + location="imgui_internal:3971", ov_cimguiname="igImFontAtlasRemoveDrawListSharedData", ret="void", signature="(ImFontAtlas*,ImDrawListSharedData*)", @@ -21520,7 +22159,7 @@ local t={ cimguiname="igImFontAtlasTextureAdd", defaults={}, funcname="ImFontAtlasTextureAdd", - location="imgui_internal:3918", + location="imgui_internal:3933", ov_cimguiname="igImFontAtlasTextureAdd", ret="ImTextureData*", signature="(ImFontAtlas*,int,int)", @@ -21560,7 +22199,7 @@ local t={ cimguiname="igImFontAtlasTextureBlockConvert", defaults={}, funcname="ImFontAtlasTextureBlockConvert", - location="imgui_internal:3960", + location="imgui_internal:3975", ov_cimguiname="igImFontAtlasTextureBlockConvert", ret="void", signature="(const unsigned char*,ImTextureFormat,int,unsigned char*,ImTextureFormat,int,int,int)", @@ -21600,7 +22239,7 @@ local t={ cimguiname="igImFontAtlasTextureBlockCopy", defaults={}, funcname="ImFontAtlasTextureBlockCopy", - location="imgui_internal:3964", + location="imgui_internal:3979", ov_cimguiname="igImFontAtlasTextureBlockCopy", ret="void", signature="(ImTextureData*,int,int,ImTextureData*,int,int,int,int)", @@ -21634,7 +22273,7 @@ local t={ cimguiname="igImFontAtlasTextureBlockFill", defaults={}, funcname="ImFontAtlasTextureBlockFill", - location="imgui_internal:3963", + location="imgui_internal:3978", ov_cimguiname="igImFontAtlasTextureBlockFill", ret="void", signature="(ImTextureData*,int,int,int,int,ImU32)", @@ -21653,7 +22292,7 @@ local t={ cimguiname="igImFontAtlasTextureBlockPostProcess", defaults={}, funcname="ImFontAtlasTextureBlockPostProcess", - location="imgui_internal:3961", + location="imgui_internal:3976", ov_cimguiname="igImFontAtlasTextureBlockPostProcess", ret="void", signature="(ImFontAtlasPostProcessData*)", @@ -21675,7 +22314,7 @@ local t={ cimguiname="igImFontAtlasTextureBlockPostProcessMultiply", defaults={}, funcname="ImFontAtlasTextureBlockPostProcessMultiply", - location="imgui_internal:3962", + location="imgui_internal:3977", ov_cimguiname="igImFontAtlasTextureBlockPostProcessMultiply", ret="void", signature="(ImFontAtlasPostProcessData*,float)", @@ -21709,7 +22348,7 @@ local t={ cimguiname="igImFontAtlasTextureBlockQueueUpload", defaults={}, funcname="ImFontAtlasTextureBlockQueueUpload", - location="imgui_internal:3965", + location="imgui_internal:3980", ov_cimguiname="igImFontAtlasTextureBlockQueueUpload", ret="void", signature="(ImFontAtlas*,ImTextureData*,int,int,int,int)", @@ -21728,7 +22367,7 @@ local t={ cimguiname="igImFontAtlasTextureCompact", defaults={}, funcname="ImFontAtlasTextureCompact", - location="imgui_internal:3922", + location="imgui_internal:3937", ov_cimguiname="igImFontAtlasTextureCompact", ret="void", signature="(ImFontAtlas*)", @@ -21748,7 +22387,7 @@ local t={ conv="ImVec2i", defaults={}, funcname="ImFontAtlasTextureGetSizeEstimate", - location="imgui_internal:3923", + location="imgui_internal:3938", nonUDT=1, ov_cimguiname="igImFontAtlasTextureGetSizeEstimate", ret="ImVec2i_c", @@ -21776,7 +22415,7 @@ local t={ old_h="-1", old_w="-1"}, funcname="ImFontAtlasTextureGrow", - location="imgui_internal:3921", + location="imgui_internal:3936", ov_cimguiname="igImFontAtlasTextureGrow", ret="void", signature="(ImFontAtlas*,int,int)", @@ -21795,7 +22434,7 @@ local t={ cimguiname="igImFontAtlasTextureMakeSpace", defaults={}, funcname="ImFontAtlasTextureMakeSpace", - location="imgui_internal:3919", + location="imgui_internal:3934", ov_cimguiname="igImFontAtlasTextureMakeSpace", ret="void", signature="(ImFontAtlas*)", @@ -21820,7 +22459,7 @@ local t={ cimguiname="igImFontAtlasTextureRepack", defaults={}, funcname="ImFontAtlasTextureRepack", - location="imgui_internal:3920", + location="imgui_internal:3935", ov_cimguiname="igImFontAtlasTextureRepack", ret="void", signature="(ImFontAtlas*,int,int)", @@ -21839,7 +22478,7 @@ local t={ cimguiname="igImFontAtlasUpdateDrawListsSharedData", defaults={}, funcname="ImFontAtlasUpdateDrawListsSharedData", - location="imgui_internal:3958", + location="imgui_internal:3973", ov_cimguiname="igImFontAtlasUpdateDrawListsSharedData", ret="void", signature="(ImFontAtlas*)", @@ -21864,7 +22503,7 @@ local t={ cimguiname="igImFontAtlasUpdateDrawListsTextures", defaults={}, funcname="ImFontAtlasUpdateDrawListsTextures", - location="imgui_internal:3957", + location="imgui_internal:3972", ov_cimguiname="igImFontAtlasUpdateDrawListsTextures", ret="void", signature="(ImFontAtlas*,ImTextureRef,ImTextureRef)", @@ -21889,7 +22528,7 @@ local t={ cimguiname="igImFontAtlasUpdateNewFrame", defaults={}, funcname="ImFontAtlasUpdateNewFrame", - location="imgui_internal:3954", + location="imgui_internal:3969", ov_cimguiname="igImFontAtlasUpdateNewFrame", ret="void", signature="(ImFontAtlas*,int,bool)", @@ -21936,7 +22575,7 @@ local t={ conv="ImVec2", defaults={}, funcname="ImFontCalcTextSizeEx", - location="imgui_internal:439", + location="imgui_internal:442", nonUDT=1, ov_cimguiname="igImFontCalcTextSizeEx", ret="ImVec2_c", @@ -21972,7 +22611,7 @@ local t={ defaults={ flags="0"}, funcname="ImFontCalcWordWrapPositionEx", - location="imgui_internal:440", + location="imgui_internal:443", ov_cimguiname="igImFontCalcWordWrapPositionEx", ret="const char*", signature="(ImFont*,float,const char*,const char*,float,ImDrawTextFlags)", @@ -22001,7 +22640,7 @@ local t={ defaults={}, funcname="ImFormatString", isvararg="...)", - location="imgui_internal:408", + location="imgui_internal:411", ov_cimguiname="igImFormatString", ret="int", signature="(char*,size_t,const char*,...)", @@ -22030,7 +22669,7 @@ local t={ defaults={}, funcname="ImFormatStringToTempBuffer", isvararg="...)", - location="imgui_internal:410", + location="imgui_internal:413", ov_cimguiname="igImFormatStringToTempBuffer", ret="void", signature="(const char**,const char**,const char*,...)", @@ -22058,7 +22697,7 @@ local t={ cimguiname="igImFormatStringToTempBufferV", defaults={}, funcname="ImFormatStringToTempBufferV", - location="imgui_internal:411", + location="imgui_internal:414", ov_cimguiname="igImFormatStringToTempBufferV", ret="void", signature="(const char**,const char**,const char*,va_list)", @@ -22086,7 +22725,7 @@ local t={ cimguiname="igImFormatStringV", defaults={}, funcname="ImFormatStringV", - location="imgui_internal:409", + location="imgui_internal:412", ov_cimguiname="igImFormatStringV", ret="int", signature="(char*,size_t,const char*,va_list)", @@ -22112,7 +22751,7 @@ local t={ defaults={ seed="0"}, funcname="ImHashData", - location="imgui_internal:366", + location="imgui_internal:369", ov_cimguiname="igImHashData", ret="ImGuiID", signature="(const void*,size_t,ImGuiID)", @@ -22131,7 +22770,7 @@ local t={ cimguiname="igImHashSkipUncontributingPrefix", defaults={}, funcname="ImHashSkipUncontributingPrefix", - location="imgui_internal:368", + location="imgui_internal:371", ov_cimguiname="igImHashSkipUncontributingPrefix", ret="const char*", signature="(const char*)", @@ -22158,7 +22797,7 @@ local t={ data_size="0", seed="0"}, funcname="ImHashStr", - location="imgui_internal:367", + location="imgui_internal:370", ov_cimguiname="igImHashStr", ret="ImGuiID", signature="(const char*,size_t,ImGuiID)", @@ -22180,7 +22819,7 @@ local t={ cimguiname="igImInvLength", defaults={}, funcname="ImInvLength", - location="imgui_internal:523", + location="imgui_internal:527", ov_cimguiname="igImInvLength", ret="float", signature="(const ImVec2,float)", @@ -22199,7 +22838,7 @@ local t={ cimguiname="igImIsFloatAboveGuaranteedIntegerPrecision", defaults={}, funcname="ImIsFloatAboveGuaranteedIntegerPrecision", - location="imgui_internal:536", + location="imgui_internal:540", ov_cimguiname="igImIsFloatAboveGuaranteedIntegerPrecision", ret="bool", signature="(float)", @@ -22218,7 +22857,7 @@ local t={ cimguiname="igImIsPowerOfTwo", defaults={}, funcname="ImIsPowerOfTwo", - location="imgui_internal:379", + location="imgui_internal:382", ov_cimguiname="igImIsPowerOfTwo_Int", ret="bool", signature="(int)", @@ -22235,7 +22874,7 @@ local t={ cimguiname="igImIsPowerOfTwo", defaults={}, funcname="ImIsPowerOfTwo", - location="imgui_internal:380", + location="imgui_internal:383", ov_cimguiname="igImIsPowerOfTwo_U64", ret="bool", signature="(ImU64)", @@ -22255,7 +22894,7 @@ local t={ cimguiname="igImLengthSqr", defaults={}, funcname="ImLengthSqr", - location="imgui_internal:521", + location="imgui_internal:525", ov_cimguiname="igImLengthSqr_Vec2", ret="float", signature="(const ImVec2)", @@ -22272,7 +22911,7 @@ local t={ cimguiname="igImLengthSqr", defaults={}, funcname="ImLengthSqr", - location="imgui_internal:522", + location="imgui_internal:526", ov_cimguiname="igImLengthSqr_Vec4", ret="float", signature="(const ImVec4)", @@ -22299,7 +22938,7 @@ local t={ conv="ImVec2", defaults={}, funcname="ImLerp", - location="imgui_internal:517", + location="imgui_internal:521", nonUDT=1, ov_cimguiname="igImLerp_Vec2Float", ret="ImVec2_c", @@ -22324,7 +22963,7 @@ local t={ conv="ImVec2", defaults={}, funcname="ImLerp", - location="imgui_internal:518", + location="imgui_internal:522", nonUDT=1, ov_cimguiname="igImLerp_Vec2Vec2", ret="ImVec2_c", @@ -22349,7 +22988,7 @@ local t={ conv="ImVec4", defaults={}, funcname="ImLerp", - location="imgui_internal:519", + location="imgui_internal:523", nonUDT=1, ov_cimguiname="igImLerp_Vec4", ret="ImVec4_c", @@ -22378,7 +23017,7 @@ local t={ conv="ImVec2", defaults={}, funcname="ImLineClosestPoint", - location="imgui_internal:545", + location="imgui_internal:549", nonUDT=1, ov_cimguiname="igImLineClosestPoint", ret="ImVec2_c", @@ -22410,7 +23049,7 @@ local t={ cimguiname="igImLinearRemapClamp", defaults={}, funcname="ImLinearRemapClamp", - location="imgui_internal:534", + location="imgui_internal:538", ov_cimguiname="igImLinearRemapClamp", ret="float", signature="(float,float,float,float,float)", @@ -22435,7 +23074,7 @@ local t={ cimguiname="igImLinearSweep", defaults={}, funcname="ImLinearSweep", - location="imgui_internal:533", + location="imgui_internal:537", ov_cimguiname="igImLinearSweep", ret="float", signature="(float,float,float)", @@ -22454,7 +23093,7 @@ local t={ cimguiname="igImLog", defaults={}, funcname="ImLog", - location="imgui_internal:490", + location="imgui_internal:493", ov_cimguiname="igImLog_Float", ret="float", signature="(float)", @@ -22471,7 +23110,7 @@ local t={ cimguiname="igImLog", defaults={}, funcname="ImLog", - location="imgui_internal:491", + location="imgui_internal:494", ov_cimguiname="igImLog_double", ret="double", signature="(double)", @@ -22497,7 +23136,7 @@ local t={ cimguiname="igImLowerBound", defaults={}, funcname="ImLowerBound", - location="imgui_internal:825", + location="imgui_internal:831", ov_cimguiname="igImLowerBound", ret="ImGuiStoragePair*", signature="(ImGuiStoragePair*,ImGuiStoragePair*,ImGuiID)", @@ -22520,7 +23159,7 @@ local t={ conv="ImVec2", defaults={}, funcname="ImMax", - location="imgui_internal:515", + location="imgui_internal:519", nonUDT=1, ov_cimguiname="igImMax", ret="ImVec2_c", @@ -22543,7 +23182,7 @@ local t={ cimguiname="igImMemdup", defaults={}, funcname="ImMemdup", - location="imgui_internal:391", + location="imgui_internal:394", ov_cimguiname="igImMemdup", ret="void*", signature="(const void*,size_t)", @@ -22566,7 +23205,7 @@ local t={ conv="ImVec2", defaults={}, funcname="ImMin", - location="imgui_internal:514", + location="imgui_internal:518", nonUDT=1, ov_cimguiname="igImMin", ret="ImVec2_c", @@ -22589,7 +23228,7 @@ local t={ cimguiname="igImModPositive", defaults={}, funcname="ImModPositive", - location="imgui_internal:530", + location="imgui_internal:534", ov_cimguiname="igImModPositive", ret="int", signature="(int,int)", @@ -22612,7 +23251,7 @@ local t={ conv="ImVec2", defaults={}, funcname="ImMul", - location="imgui_internal:535", + location="imgui_internal:539", nonUDT=1, ov_cimguiname="igImMul", ret="ImVec2_c", @@ -22632,7 +23271,7 @@ local t={ cimguiname="igImParseFormatFindEnd", defaults={}, funcname="ImParseFormatFindEnd", - location="imgui_internal:413", + location="imgui_internal:416", ov_cimguiname="igImParseFormatFindEnd", ret="const char*", signature="(const char*)", @@ -22651,7 +23290,7 @@ local t={ cimguiname="igImParseFormatFindStart", defaults={}, funcname="ImParseFormatFindStart", - location="imgui_internal:412", + location="imgui_internal:415", ov_cimguiname="igImParseFormatFindStart", ret="const char*", signature="(const char*)", @@ -22673,7 +23312,7 @@ local t={ cimguiname="igImParseFormatPrecision", defaults={}, funcname="ImParseFormatPrecision", - location="imgui_internal:417", + location="imgui_internal:420", ov_cimguiname="igImParseFormatPrecision", ret="int", signature="(const char*,int)", @@ -22698,7 +23337,7 @@ local t={ cimguiname="igImParseFormatSanitizeForPrinting", defaults={}, funcname="ImParseFormatSanitizeForPrinting", - location="imgui_internal:415", + location="imgui_internal:418", ov_cimguiname="igImParseFormatSanitizeForPrinting", ret="void", signature="(const char*,char*,size_t)", @@ -22723,7 +23362,7 @@ local t={ cimguiname="igImParseFormatSanitizeForScanning", defaults={}, funcname="ImParseFormatSanitizeForScanning", - location="imgui_internal:416", + location="imgui_internal:419", ov_cimguiname="igImParseFormatSanitizeForScanning", ret="const char*", signature="(const char*,char*,size_t)", @@ -22748,7 +23387,7 @@ local t={ cimguiname="igImParseFormatTrimDecorations", defaults={}, funcname="ImParseFormatTrimDecorations", - location="imgui_internal:414", + location="imgui_internal:417", ov_cimguiname="igImParseFormatTrimDecorations", ret="const char*", signature="(const char*,char*,size_t)", @@ -22770,7 +23409,7 @@ local t={ cimguiname="igImPow", defaults={}, funcname="ImPow", - location="imgui_internal:488", + location="imgui_internal:491", ov_cimguiname="igImPow_Float", ret="float", signature="(float,float)", @@ -22790,7 +23429,7 @@ local t={ cimguiname="igImPow", defaults={}, funcname="ImPow", - location="imgui_internal:489", + location="imgui_internal:492", ov_cimguiname="igImPow_double", ret="double", signature="(double,double)", @@ -22821,7 +23460,7 @@ local t={ cimguiname="igImQsort", defaults={}, funcname="ImQsort", - location="imgui_internal:372", + location="imgui_internal:375", ov_cimguiname="igImQsort", ret="void", signature="(void*,size_t,size_t,int(*)(void const*,void const*))", @@ -22847,7 +23486,7 @@ local t={ conv="ImVec2", defaults={}, funcname="ImRotate", - location="imgui_internal:532", + location="imgui_internal:536", nonUDT=1, ov_cimguiname="igImRotate", ret="ImVec2_c", @@ -22867,7 +23506,7 @@ local t={ cimguiname="igImRound64", defaults={}, funcname="ImRound64", - location="imgui_internal:529", + location="imgui_internal:533", ov_cimguiname="igImRound64", ret="float", signature="(float)", @@ -22886,7 +23525,7 @@ local t={ cimguiname="igImRsqrt", defaults={}, funcname="ImRsqrt", - location="imgui_internal:500", + location="imgui_internal:503", ov_cimguiname="igImRsqrt_Float", ret="float", signature="(float)", @@ -22903,7 +23542,7 @@ local t={ cimguiname="igImRsqrt", defaults={}, funcname="ImRsqrt", - location="imgui_internal:502", + location="imgui_internal:505", ov_cimguiname="igImRsqrt_double", ret="double", signature="(double)", @@ -22923,7 +23562,7 @@ local t={ cimguiname="igImSaturate", defaults={}, funcname="ImSaturate", - location="imgui_internal:520", + location="imgui_internal:524", ov_cimguiname="igImSaturate", ret="float", signature="(float)", @@ -22942,7 +23581,7 @@ local t={ cimguiname="igImSign", defaults={}, funcname="ImSign", - location="imgui_internal:495", + location="imgui_internal:498", ov_cimguiname="igImSign_Float", ret="float", signature="(float)", @@ -22959,7 +23598,7 @@ local t={ cimguiname="igImSign", defaults={}, funcname="ImSign", - location="imgui_internal:496", + location="imgui_internal:499", ov_cimguiname="igImSign_double", ret="double", signature="(double)", @@ -22979,7 +23618,7 @@ local t={ cimguiname="igImStrSkipBlank", defaults={}, funcname="ImStrSkipBlank", - location="imgui_internal:397", + location="imgui_internal:400", ov_cimguiname="igImStrSkipBlank", ret="const char*", signature="(const char*)", @@ -22998,7 +23637,7 @@ local t={ cimguiname="igImStrTrimBlanks", defaults={}, funcname="ImStrTrimBlanks", - location="imgui_internal:396", + location="imgui_internal:399", ov_cimguiname="igImStrTrimBlanks", ret="void", signature="(char*)", @@ -23020,7 +23659,7 @@ local t={ cimguiname="igImStrbol", defaults={}, funcname="ImStrbol", - location="imgui_internal:399", + location="imgui_internal:402", ov_cimguiname="igImStrbol", ret="const char*", signature="(const char*,const char*)", @@ -23045,7 +23684,7 @@ local t={ cimguiname="igImStrchrRange", defaults={}, funcname="ImStrchrRange", - location="imgui_internal:393", + location="imgui_internal:396", ov_cimguiname="igImStrchrRange", ret="const char*", signature="(const char*,const char*,char)", @@ -23064,7 +23703,7 @@ local t={ cimguiname="igImStrdup", defaults={}, funcname="ImStrdup", - location="imgui_internal:390", + location="imgui_internal:393", ov_cimguiname="igImStrdup", ret="char*", signature="(const char*)", @@ -23089,7 +23728,7 @@ local t={ cimguiname="igImStrdupcpy", defaults={}, funcname="ImStrdupcpy", - location="imgui_internal:392", + location="imgui_internal:395", ov_cimguiname="igImStrdupcpy", ret="char*", signature="(char*,size_t*,const char*)", @@ -23111,7 +23750,7 @@ local t={ cimguiname="igImStreolRange", defaults={}, funcname="ImStreolRange", - location="imgui_internal:394", + location="imgui_internal:397", ov_cimguiname="igImStreolRange", ret="const char*", signature="(const char*,const char*)", @@ -23133,7 +23772,7 @@ local t={ cimguiname="igImStricmp", defaults={}, funcname="ImStricmp", - location="imgui_internal:387", + location="imgui_internal:390", ov_cimguiname="igImStricmp", ret="int", signature="(const char*,const char*)", @@ -23161,7 +23800,7 @@ local t={ cimguiname="igImStristr", defaults={}, funcname="ImStristr", - location="imgui_internal:395", + location="imgui_internal:398", ov_cimguiname="igImStristr", ret="const char*", signature="(const char*,const char*,const char*,const char*)", @@ -23180,7 +23819,7 @@ local t={ cimguiname="igImStrlenW", defaults={}, funcname="ImStrlenW", - location="imgui_internal:398", + location="imgui_internal:401", ov_cimguiname="igImStrlenW", ret="int", signature="(const ImWchar*)", @@ -23205,7 +23844,7 @@ local t={ cimguiname="igImStrncpy", defaults={}, funcname="ImStrncpy", - location="imgui_internal:389", + location="imgui_internal:392", ov_cimguiname="igImStrncpy", ret="void", signature="(char*,const char*,size_t)", @@ -23230,7 +23869,7 @@ local t={ cimguiname="igImStrnicmp", defaults={}, funcname="ImStrnicmp", - location="imgui_internal:388", + location="imgui_internal:391", ov_cimguiname="igImStrnicmp", ret="int", signature="(const char*,const char*,size_t)", @@ -23256,7 +23895,7 @@ local t={ defaults={ flags="0"}, funcname="ImTextCalcWordWrapNextLineStart", - location="imgui_internal:441", + location="imgui_internal:444", ov_cimguiname="igImTextCalcWordWrapNextLineStart", ret="const char*", signature="(const char*,const char*,ImDrawTextFlags)", @@ -23281,7 +23920,7 @@ local t={ cimguiname="igImTextCharFromUtf8", defaults={}, funcname="ImTextCharFromUtf8", - location="imgui_internal:422", + location="imgui_internal:425", ov_cimguiname="igImTextCharFromUtf8", ret="int", signature="(unsigned int*,const char*,const char*)", @@ -23303,7 +23942,7 @@ local t={ cimguiname="igImTextCharToUtf8", defaults={}, funcname="ImTextCharToUtf8", - location="imgui_internal:420", + location="imgui_internal:423", ov_cimguiname="igImTextCharToUtf8", ret="int", signature="(char[5],unsigned int)", @@ -23331,7 +23970,7 @@ local t={ cimguiname="igImTextClassifierClear", defaults={}, funcname="ImTextClassifierClear", - location="imgui_internal:449", + location="imgui_internal:452", ov_cimguiname="igImTextClassifierClear", ret="void", signature="(ImU32*,unsigned int,unsigned int,ImWcharClass)", @@ -23362,7 +24001,7 @@ local t={ cimguiname="igImTextClassifierSetCharClass", defaults={}, funcname="ImTextClassifierSetCharClass", - location="imgui_internal:450", + location="imgui_internal:453", ov_cimguiname="igImTextClassifierSetCharClass", ret="void", signature="(ImU32*,unsigned int,unsigned int,ImWcharClass,unsigned int)", @@ -23393,7 +24032,7 @@ local t={ cimguiname="igImTextClassifierSetCharClassFromStr", defaults={}, funcname="ImTextClassifierSetCharClassFromStr", - location="imgui_internal:451", + location="imgui_internal:454", ov_cimguiname="igImTextClassifierSetCharClassFromStr", ret="void", signature="(ImU32*,unsigned int,unsigned int,ImWcharClass,const char*)", @@ -23415,7 +24054,7 @@ local t={ cimguiname="igImTextCountCharsFromUtf8", defaults={}, funcname="ImTextCountCharsFromUtf8", - location="imgui_internal:424", + location="imgui_internal:427", ov_cimguiname="igImTextCountCharsFromUtf8", ret="int", signature="(const char*,const char*)", @@ -23437,7 +24076,7 @@ local t={ cimguiname="igImTextCountLines", defaults={}, funcname="ImTextCountLines", - location="imgui_internal:429", + location="imgui_internal:432", ov_cimguiname="igImTextCountLines", ret="int", signature="(const char*,const char*)", @@ -23459,7 +24098,7 @@ local t={ cimguiname="igImTextCountUtf8BytesFromChar", defaults={}, funcname="ImTextCountUtf8BytesFromChar", - location="imgui_internal:425", + location="imgui_internal:428", ov_cimguiname="igImTextCountUtf8BytesFromChar", ret="int", signature="(const char*,const char*)", @@ -23481,7 +24120,7 @@ local t={ cimguiname="igImTextCountUtf8BytesFromStr", defaults={}, funcname="ImTextCountUtf8BytesFromStr", - location="imgui_internal:426", + location="imgui_internal:429", ov_cimguiname="igImTextCountUtf8BytesFromStr", ret="int", signature="(const ImWchar*,const ImWchar*)", @@ -23503,7 +24142,7 @@ local t={ cimguiname="igImTextFindPreviousUtf8Codepoint", defaults={}, funcname="ImTextFindPreviousUtf8Codepoint", - location="imgui_internal:427", + location="imgui_internal:430", ov_cimguiname="igImTextFindPreviousUtf8Codepoint", ret="const char*", signature="(const char*,const char*)", @@ -23528,7 +24167,7 @@ local t={ cimguiname="igImTextFindValidUtf8CodepointEnd", defaults={}, funcname="ImTextFindValidUtf8CodepointEnd", - location="imgui_internal:428", + location="imgui_internal:431", ov_cimguiname="igImTextFindValidUtf8CodepointEnd", ret="const char*", signature="(const char*,const char*,const char*)", @@ -23544,7 +24183,7 @@ local t={ cimguiname="igImTextInitClassifiers", defaults={}, funcname="ImTextInitClassifiers", - location="imgui_internal:448", + location="imgui_internal:451", ov_cimguiname="igImTextInitClassifiers", ret="void", signature="()", @@ -23576,7 +24215,7 @@ local t={ defaults={ in_remaining="NULL"}, funcname="ImTextStrFromUtf8", - location="imgui_internal:423", + location="imgui_internal:426", ov_cimguiname="igImTextStrFromUtf8", ret="int", signature="(ImWchar*,int,const char*,const char*,const char**)", @@ -23604,7 +24243,7 @@ local t={ cimguiname="igImTextStrToUtf8", defaults={}, funcname="ImTextStrToUtf8", - location="imgui_internal:421", + location="imgui_internal:424", ov_cimguiname="igImTextStrToUtf8", ret="int", signature="(char*,int,const ImWchar*,const ImWchar*)", @@ -23623,7 +24262,7 @@ local t={ cimguiname="igImTextureDataGetFormatBytesPerPixel", defaults={}, funcname="ImTextureDataGetFormatBytesPerPixel", - location="imgui_internal:3967", + location="imgui_internal:3983", ov_cimguiname="igImTextureDataGetFormatBytesPerPixel", ret="int", signature="(ImTextureFormat)", @@ -23642,7 +24281,7 @@ local t={ cimguiname="igImTextureDataGetFormatName", defaults={}, funcname="ImTextureDataGetFormatName", - location="imgui_internal:3969", + location="imgui_internal:3985", ov_cimguiname="igImTextureDataGetFormatName", ret="const char*", signature="(ImTextureFormat)", @@ -23661,12 +24300,43 @@ local t={ cimguiname="igImTextureDataGetStatusName", defaults={}, funcname="ImTextureDataGetStatusName", - location="imgui_internal:3968", + location="imgui_internal:3984", ov_cimguiname="igImTextureDataGetStatusName", ret="const char*", signature="(ImTextureStatus)", stname=""}, ["(ImTextureStatus)"]=nil}, + igImTextureDataQueueUpload={ + [1]={ + args="(ImTextureData* tex,int x,int y,int w,int h)", + argsT={ + [1]={ + name="tex", + type="ImTextureData*"}, + [2]={ + name="x", + type="int"}, + [3]={ + name="y", + type="int"}, + [4]={ + name="w", + type="int"}, + [5]={ + name="h", + type="int"}}, + argsoriginal="(ImTextureData* tex,int x,int y,int w,int h)", + call_args="(tex,x,y,w,h)", + call_args_old="(tex,x,y,w,h)", + cimguiname="igImTextureDataQueueUpload", + defaults={}, + funcname="ImTextureDataQueueUpload", + location="imgui_internal:3982", + ov_cimguiname="igImTextureDataQueueUpload", + ret="void", + signature="(ImTextureData*,int,int,int,int)", + stname=""}, + ["(ImTextureData*,int,int,int,int)"]=nil}, igImToUpper={ [1]={ args="(char c)", @@ -23680,7 +24350,7 @@ local t={ cimguiname="igImToUpper", defaults={}, funcname="ImToUpper", - location="imgui_internal:401", + location="imgui_internal:404", ov_cimguiname="igImToUpper", ret="char", signature="(char)", @@ -23705,7 +24375,7 @@ local t={ cimguiname="igImTriangleArea", defaults={}, funcname="ImTriangleArea", - location="imgui_internal:549", + location="imgui_internal:553", ov_cimguiname="igImTriangleArea", ret="float", signature="(const ImVec2,const ImVec2,const ImVec2)", @@ -23745,7 +24415,7 @@ local t={ cimguiname="igImTriangleBarycentricCoords", defaults={}, funcname="ImTriangleBarycentricCoords", - location="imgui_internal:548", + location="imgui_internal:552", ov_cimguiname="igImTriangleBarycentricCoords", ret="void", signature="(const ImVec2,const ImVec2,const ImVec2,const ImVec2,float*,float*,float*)", @@ -23774,7 +24444,7 @@ local t={ conv="ImVec2", defaults={}, funcname="ImTriangleClosestPoint", - location="imgui_internal:547", + location="imgui_internal:551", nonUDT=1, ov_cimguiname="igImTriangleClosestPoint", ret="ImVec2_c", @@ -23803,7 +24473,7 @@ local t={ cimguiname="igImTriangleContainsPoint", defaults={}, funcname="ImTriangleContainsPoint", - location="imgui_internal:546", + location="imgui_internal:550", ov_cimguiname="igImTriangleContainsPoint", ret="bool", signature="(const ImVec2,const ImVec2,const ImVec2,const ImVec2)", @@ -23828,7 +24498,7 @@ local t={ cimguiname="igImTriangleIsClockwise", defaults={}, funcname="ImTriangleIsClockwise", - location="imgui_internal:550", + location="imgui_internal:554", ov_cimguiname="igImTriangleIsClockwise", ret="bool", signature="(const ImVec2,const ImVec2,const ImVec2)", @@ -23847,7 +24517,7 @@ local t={ cimguiname="igImTrunc", defaults={}, funcname="ImTrunc", - location="imgui_internal:524", + location="imgui_internal:528", ov_cimguiname="igImTrunc_Float", ret="float", signature="(float)", @@ -23865,7 +24535,7 @@ local t={ conv="ImVec2", defaults={}, funcname="ImTrunc", - location="imgui_internal:525", + location="imgui_internal:529", nonUDT=1, ov_cimguiname="igImTrunc_Vec2", ret="ImVec2_c", @@ -23886,7 +24556,7 @@ local t={ cimguiname="igImTrunc64", defaults={}, funcname="ImTrunc64", - location="imgui_internal:528", + location="imgui_internal:532", ov_cimguiname="igImTrunc64", ret="float", signature="(float)", @@ -23905,7 +24575,7 @@ local t={ cimguiname="igImUpperPowerOfTwo", defaults={}, funcname="ImUpperPowerOfTwo", - location="imgui_internal:381", + location="imgui_internal:384", ov_cimguiname="igImUpperPowerOfTwo", ret="int", signature="(int)", @@ -24019,7 +24689,7 @@ local t={ defaults={ flags="0"}, funcname="ImageButtonEx", - location="imgui_internal:3640", + location="imgui_internal:3655", namespace="ImGui", ov_cimguiname="igImageButtonEx", ret="bool", @@ -24096,7 +24766,7 @@ local t={ cimguiname="igInitialize", defaults={}, funcname="Initialize", - location="imgui_internal:3226", + location="imgui_internal:3238", namespace="ImGui", ov_cimguiname="igInitialize", ret="void", @@ -24528,7 +25198,7 @@ local t={ cimguiname="igInputTextDeactivateHook", defaults={}, funcname="InputTextDeactivateHook", - location="imgui_internal:3692", + location="imgui_internal:3707", namespace="ImGui", ov_cimguiname="igInputTextDeactivateHook", ret="void", @@ -24571,7 +25241,7 @@ local t={ callback="NULL", user_data="NULL"}, funcname="InputTextEx", - location="imgui_internal:3691", + location="imgui_internal:3706", namespace="ImGui", ov_cimguiname="igInputTextEx", ret="bool", @@ -24701,7 +25371,7 @@ local t={ cimguiname="igIsActiveIdUsingNavDir", defaults={}, funcname="IsActiveIdUsingNavDir", - location="imgui_internal:3412", + location="imgui_internal:3425", namespace="ImGui", ov_cimguiname="igIsActiveIdUsingNavDir", ret="bool", @@ -24721,7 +25391,7 @@ local t={ cimguiname="igIsAliasKey", defaults={}, funcname="IsAliasKey", - location="imgui_internal:3389", + location="imgui_internal:3402", namespace="ImGui", ov_cimguiname="igIsAliasKey", ret="bool", @@ -24789,7 +25459,7 @@ local t={ cimguiname="igIsAnyMouseDown", defaults={}, funcname="IsAnyMouseDown", - location="imgui:1112", + location="imgui:1113", namespace="ImGui", ov_cimguiname="igIsAnyMouseDown", ret="bool", @@ -24812,7 +25482,7 @@ local t={ cimguiname="igIsClippedEx", defaults={}, funcname="IsClippedEx", - location="imgui_internal:3302", + location="imgui_internal:3314", namespace="ImGui", ov_cimguiname="igIsClippedEx", ret="bool", @@ -24829,7 +25499,7 @@ local t={ cimguiname="igIsDragDropActive", defaults={}, funcname="IsDragDropActive", - location="imgui_internal:3479", + location="imgui_internal:3493", namespace="ImGui", ov_cimguiname="igIsDragDropActive", ret="bool", @@ -24846,7 +25516,7 @@ local t={ cimguiname="igIsDragDropPayloadBeingAccepted", defaults={}, funcname="IsDragDropPayloadBeingAccepted", - location="imgui_internal:3483", + location="imgui_internal:3497", namespace="ImGui", ov_cimguiname="igIsDragDropPayloadBeingAccepted", ret="bool", @@ -24866,13 +25536,33 @@ local t={ cimguiname="igIsGamepadKey", defaults={}, funcname="IsGamepadKey", - location="imgui_internal:3387", + location="imgui_internal:3400", namespace="ImGui", ov_cimguiname="igIsGamepadKey", ret="bool", signature="(ImGuiKey)", stname=""}, ["(ImGuiKey)"]=nil}, + igIsInNavFocusRoute={ + [1]={ + args="(ImGuiID focus_scope_id)", + argsT={ + [1]={ + name="focus_scope_id", + type="ImGuiID"}}, + argsoriginal="(ImGuiID focus_scope_id)", + call_args="(focus_scope_id)", + call_args_old="(focus_scope_id)", + cimguiname="igIsInNavFocusRoute", + defaults={}, + funcname="IsInNavFocusRoute", + location="imgui_internal:3489", + namespace="ImGui", + ov_cimguiname="igIsInNavFocusRoute", + ret="bool", + signature="(ImGuiID)", + stname=""}, + ["(ImGuiID)"]=nil}, igIsItemActivated={ [1]={ args="()", @@ -24917,7 +25607,7 @@ local t={ cimguiname="igIsItemActiveAsInputText", defaults={}, funcname="IsItemActiveAsInputText", - location="imgui_internal:3698", + location="imgui_internal:3713", namespace="ImGui", ov_cimguiname="igIsItemActiveAsInputText", ret="bool", @@ -25123,7 +25813,7 @@ local t={ defaults={ owner_id="0"}, funcname="IsKeyChordPressed", - location="imgui_internal:3441", + location="imgui_internal:3454", namespace="ImGui", ov_cimguiname="igIsKeyChordPressed_InputFlags", ret="bool", @@ -25165,7 +25855,7 @@ local t={ cimguiname="igIsKeyDown", defaults={}, funcname="IsKeyDown", - location="imgui_internal:3438", + location="imgui_internal:3451", namespace="ImGui", ov_cimguiname="igIsKeyDown_ID", ret="bool", @@ -25215,7 +25905,7 @@ local t={ defaults={ owner_id="0"}, funcname="IsKeyPressed", - location="imgui_internal:3439", + location="imgui_internal:3452", namespace="ImGui", ov_cimguiname="igIsKeyPressed_InputFlags", ret="bool", @@ -25257,7 +25947,7 @@ local t={ cimguiname="igIsKeyReleased", defaults={}, funcname="IsKeyReleased", - location="imgui_internal:3440", + location="imgui_internal:3453", namespace="ImGui", ov_cimguiname="igIsKeyReleased_ID", ret="bool", @@ -25278,7 +25968,7 @@ local t={ cimguiname="igIsKeyboardKey", defaults={}, funcname="IsKeyboardKey", - location="imgui_internal:3386", + location="imgui_internal:3399", namespace="ImGui", ov_cimguiname="igIsKeyboardKey", ret="bool", @@ -25298,7 +25988,7 @@ local t={ cimguiname="igIsLRModKey", defaults={}, funcname="IsLRModKey", - location="imgui_internal:3390", + location="imgui_internal:3403", namespace="ImGui", ov_cimguiname="igIsLRModKey", ret="bool", @@ -25318,7 +26008,7 @@ local t={ cimguiname="igIsLegacyKey", defaults={}, funcname="IsLegacyKey", - location="imgui_internal:3385", + location="imgui_internal:3398", namespace="ImGui", ov_cimguiname="igIsLegacyKey", ret="bool", @@ -25342,7 +26032,7 @@ local t={ defaults={ ["repeat"]="false"}, funcname="IsMouseClicked", - location="imgui:1105", + location="imgui:1106", namespace="ImGui", ov_cimguiname="igIsMouseClicked_Bool", ret="bool", @@ -25367,7 +26057,7 @@ local t={ defaults={ owner_id="0"}, funcname="IsMouseClicked", - location="imgui_internal:3443", + location="imgui_internal:3456", namespace="ImGui", ov_cimguiname="igIsMouseClicked_InputFlags", ret="bool", @@ -25388,7 +26078,7 @@ local t={ cimguiname="igIsMouseDoubleClicked", defaults={}, funcname="IsMouseDoubleClicked", - location="imgui:1107", + location="imgui:1108", namespace="ImGui", ov_cimguiname="igIsMouseDoubleClicked_Nil", ret="bool", @@ -25409,7 +26099,7 @@ local t={ cimguiname="igIsMouseDoubleClicked", defaults={}, funcname="IsMouseDoubleClicked", - location="imgui_internal:3445", + location="imgui_internal:3458", namespace="ImGui", ov_cimguiname="igIsMouseDoubleClicked_ID", ret="bool", @@ -25430,7 +26120,7 @@ local t={ cimguiname="igIsMouseDown", defaults={}, funcname="IsMouseDown", - location="imgui:1104", + location="imgui:1105", namespace="ImGui", ov_cimguiname="igIsMouseDown_Nil", ret="bool", @@ -25451,7 +26141,7 @@ local t={ cimguiname="igIsMouseDown", defaults={}, funcname="IsMouseDown", - location="imgui_internal:3442", + location="imgui_internal:3455", namespace="ImGui", ov_cimguiname="igIsMouseDown_ID", ret="bool", @@ -25476,7 +26166,7 @@ local t={ defaults={ lock_threshold="-1.0f"}, funcname="IsMouseDragPastThreshold", - location="imgui_internal:3405", + location="imgui_internal:3418", namespace="ImGui", ov_cimguiname="igIsMouseDragPastThreshold", ret="bool", @@ -25500,7 +26190,7 @@ local t={ defaults={ lock_threshold="-1.0f"}, funcname="IsMouseDragging", - location="imgui:1115", + location="imgui:1116", namespace="ImGui", ov_cimguiname="igIsMouseDragging", ret="bool", @@ -25527,7 +26217,7 @@ local t={ defaults={ clip="true"}, funcname="IsMouseHoveringRect", - location="imgui:1110", + location="imgui:1111", namespace="ImGui", ov_cimguiname="igIsMouseHoveringRect", ret="bool", @@ -25547,7 +26237,7 @@ local t={ cimguiname="igIsMouseKey", defaults={}, funcname="IsMouseKey", - location="imgui_internal:3388", + location="imgui_internal:3401", namespace="ImGui", ov_cimguiname="igIsMouseKey", ret="bool", @@ -25568,7 +26258,7 @@ local t={ defaults={ mouse_pos="NULL"}, funcname="IsMousePosValid", - location="imgui:1111", + location="imgui:1112", namespace="ImGui", ov_cimguiname="igIsMousePosValid", ret="bool", @@ -25588,7 +26278,7 @@ local t={ cimguiname="igIsMouseReleased", defaults={}, funcname="IsMouseReleased", - location="imgui:1106", + location="imgui:1107", namespace="ImGui", ov_cimguiname="igIsMouseReleased_Nil", ret="bool", @@ -25609,7 +26299,7 @@ local t={ cimguiname="igIsMouseReleased", defaults={}, funcname="IsMouseReleased", - location="imgui_internal:3444", + location="imgui_internal:3457", namespace="ImGui", ov_cimguiname="igIsMouseReleased_ID", ret="bool", @@ -25633,7 +26323,7 @@ local t={ cimguiname="igIsMouseReleasedWithDelay", defaults={}, funcname="IsMouseReleasedWithDelay", - location="imgui:1108", + location="imgui:1109", namespace="ImGui", ov_cimguiname="igIsMouseReleasedWithDelay", ret="bool", @@ -25653,7 +26343,7 @@ local t={ cimguiname="igIsNamedKey", defaults={}, funcname="IsNamedKey", - location="imgui_internal:3383", + location="imgui_internal:3396", namespace="ImGui", ov_cimguiname="igIsNamedKey", ret="bool", @@ -25673,7 +26363,7 @@ local t={ cimguiname="igIsNamedKeyOrMod", defaults={}, funcname="IsNamedKeyOrMod", - location="imgui_internal:3384", + location="imgui_internal:3397", namespace="ImGui", ov_cimguiname="igIsNamedKeyOrMod", ret="bool", @@ -25718,7 +26408,7 @@ local t={ cimguiname="igIsPopupOpen", defaults={}, funcname="IsPopupOpen", - location="imgui_internal:3331", + location="imgui_internal:3344", namespace="ImGui", ov_cimguiname="igIsPopupOpen_ID", ret="bool", @@ -25742,7 +26432,7 @@ local t={ cimguiname="igIsPopupOpenRequestForItem", defaults={}, funcname="IsPopupOpenRequestForItem", - location="imgui_internal:3339", + location="imgui_internal:3352", namespace="ImGui", ov_cimguiname="igIsPopupOpenRequestForItem", ret="bool", @@ -25762,7 +26452,7 @@ local t={ cimguiname="igIsPopupOpenRequestForWindow", defaults={}, funcname="IsPopupOpenRequestForWindow", - location="imgui_internal:3340", + location="imgui_internal:3353", namespace="ImGui", ov_cimguiname="igIsPopupOpenRequestForWindow", ret="bool", @@ -25827,7 +26517,7 @@ local t={ cimguiname="igIsWindowAbove", defaults={}, funcname="IsWindowAbove", - location="imgui_internal:3181", + location="imgui_internal:3193", namespace="ImGui", ov_cimguiname="igIsWindowAbove", ret="bool", @@ -25870,7 +26560,7 @@ local t={ cimguiname="igIsWindowChildOf", defaults={}, funcname="IsWindowChildOf", - location="imgui_internal:3178", + location="imgui_internal:3190", namespace="ImGui", ov_cimguiname="igIsWindowChildOf", ret="bool", @@ -25911,7 +26601,7 @@ local t={ defaults={ flags="0"}, funcname="IsWindowContentHoverable", - location="imgui_internal:3301", + location="imgui_internal:3313", namespace="ImGui", ov_cimguiname="igIsWindowContentHoverable", ret="bool", @@ -25973,7 +26663,7 @@ local t={ cimguiname="igIsWindowInBeginStack", defaults={}, funcname="IsWindowInBeginStack", - location="imgui_internal:3179", + location="imgui_internal:3191", namespace="ImGui", ov_cimguiname="igIsWindowInBeginStack", ret="bool", @@ -25993,7 +26683,7 @@ local t={ cimguiname="igIsWindowNavFocusable", defaults={}, funcname="IsWindowNavFocusable", - location="imgui_internal:3182", + location="imgui_internal:3194", namespace="ImGui", ov_cimguiname="igIsWindowNavFocusable", ret="bool", @@ -26016,7 +26706,7 @@ local t={ cimguiname="igIsWindowWithinBeginStackOf", defaults={}, funcname="IsWindowWithinBeginStackOf", - location="imgui_internal:3180", + location="imgui_internal:3192", namespace="ImGui", ov_cimguiname="igIsWindowWithinBeginStackOf", ret="bool", @@ -26047,7 +26737,7 @@ local t={ extra_flags="0", nav_bb="NULL"}, funcname="ItemAdd", - location="imgui_internal:3299", + location="imgui_internal:3311", namespace="ImGui", ov_cimguiname="igItemAdd", ret="bool", @@ -26073,7 +26763,7 @@ local t={ cimguiname="igItemHoverable", defaults={}, funcname="ItemHoverable", - location="imgui_internal:3300", + location="imgui_internal:3312", namespace="ImGui", ov_cimguiname="igItemHoverable", ret="bool", @@ -26097,7 +26787,7 @@ local t={ defaults={ text_baseline_y="-1.0f"}, funcname="ItemSize", - location="imgui_internal:3297", + location="imgui_internal:3309", namespace="ImGui", ov_cimguiname="igItemSize_Vec2", ret="void", @@ -26119,7 +26809,7 @@ local t={ defaults={ text_baseline_y="-1.0f"}, funcname="ItemSize", - location="imgui_internal:3298", + location="imgui_internal:3310", namespace="ImGui", ov_cimguiname="igItemSize_Rect", ret="void", @@ -26140,7 +26830,7 @@ local t={ cimguiname="igKeepAliveID", defaults={}, funcname="KeepAliveID", - location="imgui_internal:3290", + location="imgui_internal:3302", namespace="ImGui", ov_cimguiname="igKeepAliveID", ret="void", @@ -26283,7 +26973,7 @@ local t={ cimguiname="igLoadIniSettingsFromDisk", defaults={}, funcname="LoadIniSettingsFromDisk", - location="imgui:1131", + location="imgui:1132", namespace="ImGui", ov_cimguiname="igLoadIniSettingsFromDisk", ret="void", @@ -26307,7 +26997,7 @@ local t={ defaults={ ini_size="0"}, funcname="LoadIniSettingsFromMemory", - location="imgui:1132", + location="imgui:1133", namespace="ImGui", ov_cimguiname="igLoadIniSettingsFromMemory", ret="void", @@ -26327,7 +27017,7 @@ local t={ cimguiname="igLocalizeGetMsg", defaults={}, funcname="LocalizeGetMsg", - location="imgui_internal:3265", + location="imgui_internal:3277", namespace="ImGui", ov_cimguiname="igLocalizeGetMsg", ret="const char*", @@ -26350,7 +27040,7 @@ local t={ cimguiname="igLocalizeRegisterEntries", defaults={}, funcname="LocalizeRegisterEntries", - location="imgui_internal:3264", + location="imgui_internal:3276", namespace="ImGui", ov_cimguiname="igLocalizeRegisterEntries", ret="void", @@ -26373,7 +27063,7 @@ local t={ cimguiname="igLogBegin", defaults={}, funcname="LogBegin", - location="imgui_internal:3316", + location="imgui_internal:3328", namespace="ImGui", ov_cimguiname="igLogBegin", ret="void", @@ -26434,7 +27124,7 @@ local t={ defaults={ text_end="NULL"}, funcname="LogRenderedText", - location="imgui_internal:3318", + location="imgui_internal:3330", namespace="ImGui", ov_cimguiname="igLogRenderedText", ret="void", @@ -26457,7 +27147,7 @@ local t={ cimguiname="igLogSetNextTextDecoration", defaults={}, funcname="LogSetNextTextDecoration", - location="imgui_internal:3319", + location="imgui_internal:3331", namespace="ImGui", ov_cimguiname="igLogSetNextTextDecoration", ret="void", @@ -26525,7 +27215,7 @@ local t={ defaults={ auto_open_depth="-1"}, funcname="LogToBuffer", - location="imgui_internal:3317", + location="imgui_internal:3329", namespace="ImGui", ov_cimguiname="igLogToBuffer", ret="void", @@ -26609,7 +27299,7 @@ local t={ cimguiname="igMarkIniSettingsDirty", defaults={}, funcname="MarkIniSettingsDirty", - location="imgui_internal:3250", + location="imgui_internal:3262", namespace="ImGui", ov_cimguiname="igMarkIniSettingsDirty_Nil", ret="void", @@ -26627,7 +27317,7 @@ local t={ cimguiname="igMarkIniSettingsDirty", defaults={}, funcname="MarkIniSettingsDirty", - location="imgui_internal:3251", + location="imgui_internal:3263", namespace="ImGui", ov_cimguiname="igMarkIniSettingsDirty_WindowPtr", ret="void", @@ -26648,7 +27338,7 @@ local t={ cimguiname="igMarkItemEdited", defaults={}, funcname="MarkItemEdited", - location="imgui_internal:3291", + location="imgui_internal:3303", namespace="ImGui", ov_cimguiname="igMarkItemEdited", ret="void", @@ -26668,7 +27358,7 @@ local t={ cimguiname="igMemAlloc", defaults={}, funcname="MemAlloc", - location="imgui:1155", + location="imgui:1156", namespace="ImGui", ov_cimguiname="igMemAlloc", ret="void*", @@ -26688,7 +27378,7 @@ local t={ cimguiname="igMemFree", defaults={}, funcname="MemFree", - location="imgui:1156", + location="imgui:1157", namespace="ImGui", ov_cimguiname="igMemFree", ret="void", @@ -26784,7 +27474,7 @@ local t={ selected="false", shortcut="NULL"}, funcname="MenuItemEx", - location="imgui_internal:3349", + location="imgui_internal:3362", namespace="ImGui", ov_cimguiname="igMenuItemEx", ret="bool", @@ -26804,7 +27494,7 @@ local t={ cimguiname="igMouseButtonToKey", defaults={}, funcname="MouseButtonToKey", - location="imgui_internal:3404", + location="imgui_internal:3417", namespace="ImGui", ov_cimguiname="igMouseButtonToKey", ret="ImGuiKey", @@ -26827,7 +27517,7 @@ local t={ cimguiname="igMultiSelectAddSetAll", defaults={}, funcname="MultiSelectAddSetAll", - location="imgui_internal:3502", + location="imgui_internal:3516", namespace="ImGui", ov_cimguiname="igMultiSelectAddSetAll", ret="void", @@ -26859,7 +27549,7 @@ local t={ cimguiname="igMultiSelectAddSetRange", defaults={}, funcname="MultiSelectAddSetRange", - location="imgui_internal:3503", + location="imgui_internal:3517", namespace="ImGui", ov_cimguiname="igMultiSelectAddSetRange", ret="void", @@ -26885,7 +27575,7 @@ local t={ cimguiname="igMultiSelectItemFooter", defaults={}, funcname="MultiSelectItemFooter", - location="imgui_internal:3501", + location="imgui_internal:3515", namespace="ImGui", ov_cimguiname="igMultiSelectItemFooter", ret="void", @@ -26911,7 +27601,7 @@ local t={ cimguiname="igMultiSelectItemHeader", defaults={}, funcname="MultiSelectItemHeader", - location="imgui_internal:3500", + location="imgui_internal:3514", namespace="ImGui", ov_cimguiname="igMultiSelectItemHeader", ret="void", @@ -26931,7 +27621,7 @@ local t={ cimguiname="igNavClearPreferredPosForAxis", defaults={}, funcname="NavClearPreferredPosForAxis", - location="imgui_internal:3368", + location="imgui_internal:3381", namespace="ImGui", ov_cimguiname="igNavClearPreferredPosForAxis", ret="void", @@ -26951,7 +27641,7 @@ local t={ cimguiname="igNavHighlightActivated", defaults={}, funcname="NavHighlightActivated", - location="imgui_internal:3367", + location="imgui_internal:3380", namespace="ImGui", ov_cimguiname="igNavHighlightActivated", ret="void", @@ -26968,7 +27658,7 @@ local t={ cimguiname="igNavInitRequestApplyResult", defaults={}, funcname="NavInitRequestApplyResult", - location="imgui_internal:3358", + location="imgui_internal:3371", namespace="ImGui", ov_cimguiname="igNavInitRequestApplyResult", ret="void", @@ -26991,7 +27681,7 @@ local t={ cimguiname="igNavInitWindow", defaults={}, funcname="NavInitWindow", - location="imgui_internal:3357", + location="imgui_internal:3370", namespace="ImGui", ov_cimguiname="igNavInitWindow", ret="void", @@ -27008,7 +27698,7 @@ local t={ cimguiname="igNavMoveRequestApplyResult", defaults={}, funcname="NavMoveRequestApplyResult", - location="imgui_internal:3365", + location="imgui_internal:3378", namespace="ImGui", ov_cimguiname="igNavMoveRequestApplyResult", ret="void", @@ -27025,7 +27715,7 @@ local t={ cimguiname="igNavMoveRequestButNoResultYet", defaults={}, funcname="NavMoveRequestButNoResultYet", - location="imgui_internal:3359", + location="imgui_internal:3372", namespace="ImGui", ov_cimguiname="igNavMoveRequestButNoResultYet", ret="bool", @@ -27042,7 +27732,7 @@ local t={ cimguiname="igNavMoveRequestCancel", defaults={}, funcname="NavMoveRequestCancel", - location="imgui_internal:3364", + location="imgui_internal:3377", namespace="ImGui", ov_cimguiname="igNavMoveRequestCancel", ret="void", @@ -27071,7 +27761,7 @@ local t={ cimguiname="igNavMoveRequestForward", defaults={}, funcname="NavMoveRequestForward", - location="imgui_internal:3361", + location="imgui_internal:3374", namespace="ImGui", ov_cimguiname="igNavMoveRequestForward", ret="void", @@ -27091,7 +27781,7 @@ local t={ cimguiname="igNavMoveRequestResolveWithLastItem", defaults={}, funcname="NavMoveRequestResolveWithLastItem", - location="imgui_internal:3362", + location="imgui_internal:3375", namespace="ImGui", ov_cimguiname="igNavMoveRequestResolveWithLastItem", ret="void", @@ -27114,7 +27804,7 @@ local t={ cimguiname="igNavMoveRequestResolveWithPastTreeNode", defaults={}, funcname="NavMoveRequestResolveWithPastTreeNode", - location="imgui_internal:3363", + location="imgui_internal:3376", namespace="ImGui", ov_cimguiname="igNavMoveRequestResolveWithPastTreeNode", ret="void", @@ -27143,7 +27833,7 @@ local t={ cimguiname="igNavMoveRequestSubmit", defaults={}, funcname="NavMoveRequestSubmit", - location="imgui_internal:3360", + location="imgui_internal:3373", namespace="ImGui", ov_cimguiname="igNavMoveRequestSubmit", ret="void", @@ -27166,7 +27856,7 @@ local t={ cimguiname="igNavMoveRequestTryWrapping", defaults={}, funcname="NavMoveRequestTryWrapping", - location="imgui_internal:3366", + location="imgui_internal:3379", namespace="ImGui", ov_cimguiname="igNavMoveRequestTryWrapping", ret="void", @@ -27183,7 +27873,7 @@ local t={ cimguiname="igNavUpdateCurrentWindowIsScrollPushableX", defaults={}, funcname="NavUpdateCurrentWindowIsScrollPushableX", - location="imgui_internal:3370", + location="imgui_internal:3383", namespace="ImGui", ov_cimguiname="igNavUpdateCurrentWindowIsScrollPushableX", ret="void", @@ -27305,7 +27995,7 @@ local t={ defaults={ popup_flags="ImGuiPopupFlags_None"}, funcname="OpenPopupEx", - location="imgui_internal:3327", + location="imgui_internal:3340", namespace="ImGui", ov_cimguiname="igOpenPopupEx", ret="void", @@ -27379,7 +28069,7 @@ local t={ cimguiname="igPlotEx", defaults={}, funcname="PlotEx", - location="imgui_internal:3707", + location="imgui_internal:3722", namespace="ImGui", ov_cimguiname="igPlotEx", ret="int", @@ -27613,7 +28303,7 @@ local t={ cimguiname="igPopColumnsBackground", defaults={}, funcname="PopColumnsBackground", - location="imgui_internal:3513", + location="imgui_internal:3527", namespace="ImGui", ov_cimguiname="igPopColumnsBackground", ret="void", @@ -27630,7 +28320,7 @@ local t={ cimguiname="igPopFocusScope", defaults={}, funcname="PopFocusScope", - location="imgui_internal:3475", + location="imgui_internal:3488", namespace="ImGui", ov_cimguiname="igPopFocusScope", ret="void", @@ -27715,7 +28405,7 @@ local t={ cimguiname="igPopPasswordFont", defaults={}, funcname="PopPasswordFont", - location="imgui_internal:3219", + location="imgui_internal:3231", namespace="ImGui", ov_cimguiname="igPopPasswordFont", ret="void", @@ -27848,7 +28538,7 @@ local t={ cimguiname="igPushColumnClipRect", defaults={}, funcname="PushColumnClipRect", - location="imgui_internal:3511", + location="imgui_internal:3525", namespace="ImGui", ov_cimguiname="igPushColumnClipRect", ret="void", @@ -27865,7 +28555,7 @@ local t={ cimguiname="igPushColumnsBackground", defaults={}, funcname="PushColumnsBackground", - location="imgui_internal:3512", + location="imgui_internal:3526", namespace="ImGui", ov_cimguiname="igPushColumnsBackground", ret="void", @@ -27885,7 +28575,7 @@ local t={ cimguiname="igPushFocusScope", defaults={}, funcname="PushFocusScope", - location="imgui_internal:3474", + location="imgui_internal:3487", namespace="ImGui", ov_cimguiname="igPushFocusScope", ret="void", @@ -28054,7 +28744,7 @@ local t={ cimguiname="igPushMultiItemsWidths", defaults={}, funcname="PushMultiItemsWidths", - location="imgui_internal:3306", + location="imgui_internal:3318", namespace="ImGui", ov_cimguiname="igPushMultiItemsWidths", ret="void", @@ -28074,7 +28764,7 @@ local t={ cimguiname="igPushOverrideID", defaults={}, funcname="PushOverrideID", - location="imgui_internal:3292", + location="imgui_internal:3304", namespace="ImGui", ov_cimguiname="igPushOverrideID", ret="void", @@ -28091,7 +28781,7 @@ local t={ cimguiname="igPushPasswordFont", defaults={}, funcname="PushPasswordFont", - location="imgui_internal:3218", + location="imgui_internal:3230", namespace="ImGui", ov_cimguiname="igPushPasswordFont", ret="void", @@ -28316,7 +29006,7 @@ local t={ cimguiname="igRegisterFontAtlas", defaults={}, funcname="RegisterFontAtlas", - location="imgui_internal:3210", + location="imgui_internal:3222", namespace="ImGui", ov_cimguiname="igRegisterFontAtlas", ret="void", @@ -28336,7 +29026,7 @@ local t={ cimguiname="igRegisterUserTexture", defaults={}, funcname="RegisterUserTexture", - location="imgui_internal:3208", + location="imgui_internal:3220", namespace="ImGui", ov_cimguiname="igRegisterUserTexture", ret="void", @@ -28359,7 +29049,7 @@ local t={ cimguiname="igRemoveContextHook", defaults={}, funcname="RemoveContextHook", - location="imgui_internal:3232", + location="imgui_internal:3244", namespace="ImGui", ov_cimguiname="igRemoveContextHook", ret="void", @@ -28379,7 +29069,7 @@ local t={ cimguiname="igRemoveSettingsHandler", defaults={}, funcname="RemoveSettingsHandler", - location="imgui_internal:3254", + location="imgui_internal:3266", namespace="ImGui", ov_cimguiname="igRemoveSettingsHandler", ret="void", @@ -28429,7 +29119,7 @@ local t={ defaults={ scale="1.0f"}, funcname="RenderArrow", - location="imgui_internal:3624", + location="imgui_internal:3639", namespace="ImGui", ov_cimguiname="igRenderArrow", ret="void", @@ -28461,7 +29151,7 @@ local t={ cimguiname="igRenderArrowPointingAt", defaults={}, funcname="RenderArrowPointingAt", - location="imgui_internal:3627", + location="imgui_internal:3642", namespace="ImGui", ov_cimguiname="igRenderArrowPointingAt", ret="void", @@ -28487,7 +29177,7 @@ local t={ cimguiname="igRenderBullet", defaults={}, funcname="RenderBullet", - location="imgui_internal:3625", + location="imgui_internal:3640", namespace="ImGui", ov_cimguiname="igRenderBullet", ret="void", @@ -28516,7 +29206,7 @@ local t={ cimguiname="igRenderCheckMark", defaults={}, funcname="RenderCheckMark", - location="imgui_internal:3626", + location="imgui_internal:3641", namespace="ImGui", ov_cimguiname="igRenderCheckMark", ret="void", @@ -28542,7 +29232,7 @@ local t={ cimguiname="igRenderColorComponentMarker", defaults={}, funcname="RenderColorComponentMarker", - location="imgui_internal:3614", + location="imgui_internal:3629", namespace="ImGui", ov_cimguiname="igRenderColorComponentMarker", ret="void", @@ -28585,7 +29275,7 @@ local t={ flags="0", rounding="0.0f"}, funcname="RenderColorRectWithAlphaCheckerboard", - location="imgui_internal:3615", + location="imgui_internal:3630", namespace="ImGui", ov_cimguiname="igRenderColorRectWithAlphaCheckerboard", ret="void", @@ -28594,27 +29284,30 @@ local t={ ["(ImDrawList*,ImVec2,ImVec2,ImU32,float,ImVec2,float,ImDrawFlags)"]=nil}, igRenderDragDropTargetRectEx={ [1]={ - args="(ImDrawList* draw_list,const ImRect_c bb)", + args="(ImDrawList* draw_list,const ImRect_c bb,float rounding)", argsT={ [1]={ name="draw_list", type="ImDrawList*"}, [2]={ name="bb", - type="const ImRect"}}, - argsoriginal="(ImDrawList* draw_list,const ImRect& bb)", - call_args="(draw_list,ConvertToCPP_ImRect(bb))", - call_args_old="(draw_list,bb)", + type="const ImRect"}, + [3]={ + name="rounding", + type="float"}}, + argsoriginal="(ImDrawList* draw_list,const ImRect& bb,float rounding)", + call_args="(draw_list,ConvertToCPP_ImRect(bb),rounding)", + call_args_old="(draw_list,bb,rounding)", cimguiname="igRenderDragDropTargetRectEx", defaults={}, funcname="RenderDragDropTargetRectEx", - location="imgui_internal:3485", + location="imgui_internal:3499", namespace="ImGui", ov_cimguiname="igRenderDragDropTargetRectEx", ret="void", - signature="(ImDrawList*,const ImRect)", + signature="(ImDrawList*,const ImRect,float)", stname=""}, - ["(ImDrawList*,const ImRect)"]=nil}, + ["(ImDrawList*,const ImRect,float)"]=nil}, igRenderDragDropTargetRectForItem={ [1]={ args="(const ImRect_c bb)", @@ -28628,7 +29321,7 @@ local t={ cimguiname="igRenderDragDropTargetRectForItem", defaults={}, funcname="RenderDragDropTargetRectForItem", - location="imgui_internal:3484", + location="imgui_internal:3498", namespace="ImGui", ov_cimguiname="igRenderDragDropTargetRectForItem", ret="void", @@ -28662,7 +29355,7 @@ local t={ borders="true", rounding="0.0f"}, funcname="RenderFrame", - location="imgui_internal:3612", + location="imgui_internal:3627", namespace="ImGui", ov_cimguiname="igRenderFrame", ret="void", @@ -28689,7 +29382,7 @@ local t={ defaults={ rounding="0.0f"}, funcname="RenderFrameBorder", - location="imgui_internal:3613", + location="imgui_internal:3628", namespace="ImGui", ov_cimguiname="igRenderFrameBorder", ret="void", @@ -28724,7 +29417,7 @@ local t={ cimguiname="igRenderMouseCursor", defaults={}, funcname="RenderMouseCursor", - location="imgui_internal:3621", + location="imgui_internal:3636", namespace="ImGui", ov_cimguiname="igRenderMouseCursor", ret="void", @@ -28751,7 +29444,7 @@ local t={ defaults={ flags="ImGuiNavRenderCursorFlags_None"}, funcname="RenderNavCursor", - location="imgui_internal:3616", + location="imgui_internal:3631", namespace="ImGui", ov_cimguiname="igRenderNavCursor", ret="void", @@ -28786,7 +29479,7 @@ local t={ cimguiname="igRenderRectFilledInRangeH", defaults={}, funcname="RenderRectFilledInRangeH", - location="imgui_internal:3628", + location="imgui_internal:3643", namespace="ImGui", ov_cimguiname="igRenderRectFilledInRangeH", ret="void", @@ -28818,7 +29511,7 @@ local t={ cimguiname="igRenderRectFilledWithHole", defaults={}, funcname="RenderRectFilledWithHole", - location="imgui_internal:3629", + location="imgui_internal:3644", namespace="ImGui", ov_cimguiname="igRenderRectFilledWithHole", ret="void", @@ -28849,7 +29542,7 @@ local t={ hide_text_after_hash="true", text_end="NULL"}, funcname="RenderText", - location="imgui_internal:3607", + location="imgui_internal:3622", namespace="ImGui", ov_cimguiname="igRenderText", ret="void", @@ -28889,7 +29582,7 @@ local t={ align="ImVec2(0,0)", clip_rect="NULL"}, funcname="RenderTextClipped", - location="imgui_internal:3609", + location="imgui_internal:3624", namespace="ImGui", ov_cimguiname="igRenderTextClipped", ret="void", @@ -28932,7 +29625,7 @@ local t={ align="ImVec2(0,0)", clip_rect="NULL"}, funcname="RenderTextClippedEx", - location="imgui_internal:3610", + location="imgui_internal:3625", namespace="ImGui", ov_cimguiname="igRenderTextClippedEx", ret="void", @@ -28970,7 +29663,7 @@ local t={ cimguiname="igRenderTextEllipsis", defaults={}, funcname="RenderTextEllipsis", - location="imgui_internal:3611", + location="imgui_internal:3626", namespace="ImGui", ov_cimguiname="igRenderTextEllipsis", ret="void", @@ -28999,7 +29692,7 @@ local t={ cimguiname="igRenderTextWrapped", defaults={}, funcname="RenderTextWrapped", - location="imgui_internal:3608", + location="imgui_internal:3623", namespace="ImGui", ov_cimguiname="igRenderTextWrapped", ret="void", @@ -29020,7 +29713,7 @@ local t={ defaults={ button="0"}, funcname="ResetMouseDragDelta", - location="imgui:1117", + location="imgui:1118", namespace="ImGui", ov_cimguiname="igResetMouseDragDelta", ret="void", @@ -29065,7 +29758,7 @@ local t={ cimguiname="igSaveIniSettingsToDisk", defaults={}, funcname="SaveIniSettingsToDisk", - location="imgui:1133", + location="imgui:1134", namespace="ImGui", ov_cimguiname="igSaveIniSettingsToDisk", ret="void", @@ -29086,7 +29779,7 @@ local t={ defaults={ out_ini_size="NULL"}, funcname="SaveIniSettingsToMemory", - location="imgui:1134", + location="imgui:1135", namespace="ImGui", ov_cimguiname="igSaveIniSettingsToMemory", ret="const char*", @@ -29109,7 +29802,7 @@ local t={ cimguiname="igScaleWindowsInViewport", defaults={}, funcname="ScaleWindowsInViewport", - location="imgui_internal:3246", + location="imgui_internal:3258", namespace="ImGui", ov_cimguiname="igScaleWindowsInViewport", ret="void", @@ -29132,7 +29825,7 @@ local t={ cimguiname="igScrollToBringRectIntoView", defaults={}, funcname="ScrollToBringRectIntoView", - location="imgui_internal:3278", + location="imgui_internal:3290", namespace="ImGui", ov_cimguiname="igScrollToBringRectIntoView", ret="void", @@ -29153,7 +29846,7 @@ local t={ defaults={ flags="0"}, funcname="ScrollToItem", - location="imgui_internal:3274", + location="imgui_internal:3286", namespace="ImGui", ov_cimguiname="igScrollToItem", ret="void", @@ -29180,7 +29873,7 @@ local t={ defaults={ flags="0"}, funcname="ScrollToRect", - location="imgui_internal:3275", + location="imgui_internal:3287", namespace="ImGui", ov_cimguiname="igScrollToRect", ret="void", @@ -29208,7 +29901,7 @@ local t={ defaults={ flags="0"}, funcname="ScrollToRectEx", - location="imgui_internal:3276", + location="imgui_internal:3288", namespace="ImGui", nonUDT=1, ov_cimguiname="igScrollToRectEx", @@ -29229,7 +29922,7 @@ local t={ cimguiname="igScrollbar", defaults={}, funcname="Scrollbar", - location="imgui_internal:3649", + location="imgui_internal:3664", namespace="ImGui", ov_cimguiname="igScrollbar", ret="void", @@ -29268,7 +29961,7 @@ local t={ defaults={ draw_rounding_flags="0"}, funcname="ScrollbarEx", - location="imgui_internal:3650", + location="imgui_internal:3665", namespace="ImGui", ov_cimguiname="igScrollbarEx", ret="bool", @@ -29371,7 +30064,7 @@ local t={ defaults={ thickness="1.0f"}, funcname="SeparatorEx", - location="imgui_internal:3641", + location="imgui_internal:3656", namespace="ImGui", ov_cimguiname="igSeparatorEx", ret="void", @@ -29420,7 +30113,7 @@ local t={ cimguiname="igSeparatorTextEx", defaults={}, funcname="SeparatorTextEx", - location="imgui_internal:3642", + location="imgui_internal:3657", namespace="ImGui", ov_cimguiname="igSeparatorTextEx", ret="void", @@ -29443,7 +30136,7 @@ local t={ cimguiname="igSetActiveID", defaults={}, funcname="SetActiveID", - location="imgui_internal:3285", + location="imgui_internal:3297", namespace="ImGui", ov_cimguiname="igSetActiveID", ret="void", @@ -29460,7 +30153,7 @@ local t={ cimguiname="igSetActiveIdUsingAllKeyboardKeys", defaults={}, funcname="SetActiveIdUsingAllKeyboardKeys", - location="imgui_internal:3411", + location="imgui_internal:3424", namespace="ImGui", ov_cimguiname="igSetActiveIdUsingAllKeyboardKeys", ret="void", @@ -29487,7 +30180,7 @@ local t={ defaults={ user_data="NULL"}, funcname="SetAllocatorFunctions", - location="imgui:1153", + location="imgui:1154", namespace="ImGui", ov_cimguiname="igSetAllocatorFunctions", ret="void", @@ -29507,7 +30200,7 @@ local t={ cimguiname="igSetClipboardText", defaults={}, funcname="SetClipboardText", - location="imgui:1125", + location="imgui:1126", namespace="ImGui", ov_cimguiname="igSetClipboardText", ret="void", @@ -29596,7 +30289,7 @@ local t={ cimguiname="igSetContextName", defaults={}, funcname="SetContextName", - location="imgui_internal:3230", + location="imgui_internal:3242", namespace="ImGui", ov_cimguiname="igSetContextName", ret="void", @@ -29642,7 +30335,7 @@ local t={ cimguiname="igSetCurrentFont", defaults={}, funcname="SetCurrentFont", - location="imgui_internal:3212", + location="imgui_internal:3224", namespace="ImGui", ov_cimguiname="igSetCurrentFont", ret="void", @@ -29775,7 +30468,7 @@ local t={ cimguiname="igSetFocusID", defaults={}, funcname="SetFocusID", - location="imgui_internal:3286", + location="imgui_internal:3298", namespace="ImGui", ov_cimguiname="igSetFocusID", ret="void", @@ -29795,7 +30488,7 @@ local t={ cimguiname="igSetFontRasterizerDensity", defaults={}, funcname="SetFontRasterizerDensity", - location="imgui_internal:3214", + location="imgui_internal:3226", namespace="ImGui", ov_cimguiname="igSetFontRasterizerDensity", ret="void", @@ -29815,7 +30508,7 @@ local t={ cimguiname="igSetHoveredID", defaults={}, funcname="SetHoveredID", - location="imgui_internal:3289", + location="imgui_internal:3301", namespace="ImGui", ov_cimguiname="igSetHoveredID", ret="void", @@ -29852,10 +30545,10 @@ local t={ cimguiname="igSetItemKeyOwner", defaults={}, funcname="SetItemKeyOwner", - location="imgui:1098", + location="imgui:1099", namespace="ImGui", ov_cimguiname="igSetItemKeyOwner_Nil", - ret="void", + ret="bool", signature="(ImGuiKey)", stname=""}, [2]={ @@ -29873,10 +30566,10 @@ local t={ cimguiname="igSetItemKeyOwner", defaults={}, funcname="SetItemKeyOwner", - location="imgui_internal:3428", + location="imgui_internal:3441", namespace="ImGui", ov_cimguiname="igSetItemKeyOwner_InputFlags", - ret="void", + ret="bool", signature="(ImGuiKey,ImGuiInputFlags)", stname=""}, ["(ImGuiKey)"]=nil, @@ -29948,7 +30641,7 @@ local t={ defaults={ flags="0"}, funcname="SetKeyOwner", - location="imgui_internal:3426", + location="imgui_internal:3439", namespace="ImGui", ov_cimguiname="igSetKeyOwner", ret="void", @@ -29975,7 +30668,7 @@ local t={ defaults={ flags="0"}, funcname="SetKeyOwnersForKeyChord", - location="imgui_internal:3427", + location="imgui_internal:3440", namespace="ImGui", ov_cimguiname="igSetKeyOwnersForKeyChord", ret="void", @@ -30025,7 +30718,7 @@ local t={ cimguiname="igSetLastItemData", defaults={}, funcname="SetLastItemData", - location="imgui_internal:3303", + location="imgui_internal:3315", namespace="ImGui", ov_cimguiname="igSetLastItemData", ret="void", @@ -30045,7 +30738,7 @@ local t={ cimguiname="igSetMouseCursor", defaults={}, funcname="SetMouseCursor", - location="imgui:1119", + location="imgui:1120", namespace="ImGui", ov_cimguiname="igSetMouseCursor", ret="void", @@ -30082,7 +30775,7 @@ local t={ cimguiname="igSetNavCursorVisibleAfterMove", defaults={}, funcname="SetNavCursorVisibleAfterMove", - location="imgui_internal:3369", + location="imgui_internal:3382", namespace="ImGui", ov_cimguiname="igSetNavCursorVisibleAfterMove", ret="void", @@ -30102,7 +30795,7 @@ local t={ cimguiname="igSetNavFocusScope", defaults={}, funcname="SetNavFocusScope", - location="imgui_internal:3373", + location="imgui_internal:3386", namespace="ImGui", ov_cimguiname="igSetNavFocusScope", ret="void", @@ -30131,7 +30824,7 @@ local t={ cimguiname="igSetNavID", defaults={}, funcname="SetNavID", - location="imgui_internal:3372", + location="imgui_internal:3385", namespace="ImGui", ov_cimguiname="igSetNavID", ret="void", @@ -30151,7 +30844,7 @@ local t={ cimguiname="igSetNavWindow", defaults={}, funcname="SetNavWindow", - location="imgui_internal:3371", + location="imgui_internal:3384", namespace="ImGui", ov_cimguiname="igSetNavWindow", ret="void", @@ -30191,7 +30884,7 @@ local t={ cimguiname="igSetNextFrameWantCaptureMouse", defaults={}, funcname="SetNextFrameWantCaptureMouse", - location="imgui:1120", + location="imgui:1121", namespace="ImGui", ov_cimguiname="igSetNextFrameWantCaptureMouse", ret="void", @@ -30228,7 +30921,7 @@ local t={ cimguiname="igSetNextItemColorMarker", defaults={}, funcname="SetNextItemColorMarker", - location="imgui_internal:3704", + location="imgui_internal:3719", namespace="ImGui", ov_cimguiname="igSetNextItemColorMarker", ret="void", @@ -30275,7 +30968,7 @@ local t={ cimguiname="igSetNextItemRefVal", defaults={}, funcname="SetNextItemRefVal", - location="imgui_internal:3697", + location="imgui_internal:3712", namespace="ImGui", ov_cimguiname="igSetNextItemRefVal", ret="void", @@ -30488,7 +31181,7 @@ local t={ cimguiname="igSetNextWindowRefreshPolicy", defaults={}, funcname="SetNextWindowRefreshPolicy", - location="imgui_internal:3205", + location="imgui_internal:3217", namespace="ImGui", ov_cimguiname="igSetNextWindowRefreshPolicy", ret="void", @@ -30611,7 +31304,7 @@ local t={ cimguiname="igSetScrollFromPosX", defaults={}, funcname="SetScrollFromPosX", - location="imgui_internal:3270", + location="imgui_internal:3282", namespace="ImGui", ov_cimguiname="igSetScrollFromPosX_WindowPtr", ret="void", @@ -30660,7 +31353,7 @@ local t={ cimguiname="igSetScrollFromPosY", defaults={}, funcname="SetScrollFromPosY", - location="imgui_internal:3271", + location="imgui_internal:3283", namespace="ImGui", ov_cimguiname="igSetScrollFromPosY_WindowPtr", ret="void", @@ -30744,7 +31437,7 @@ local t={ cimguiname="igSetScrollX", defaults={}, funcname="SetScrollX", - location="imgui_internal:3268", + location="imgui_internal:3280", namespace="ImGui", ov_cimguiname="igSetScrollX_WindowPtr", ret="void", @@ -30786,7 +31479,7 @@ local t={ cimguiname="igSetScrollY", defaults={}, funcname="SetScrollY", - location="imgui_internal:3269", + location="imgui_internal:3281", namespace="ImGui", ov_cimguiname="igSetScrollY_WindowPtr", ret="void", @@ -30813,7 +31506,7 @@ local t={ cimguiname="igSetShortcutRouting", defaults={}, funcname="SetShortcutRouting", - location="imgui_internal:3462", + location="imgui_internal:3475", namespace="ImGui", ov_cimguiname="igSetShortcutRouting", ret="bool", @@ -30923,7 +31616,7 @@ local t={ cimguiname="igSetWindowClipRectBeforeSetChannel", defaults={}, funcname="SetWindowClipRectBeforeSetChannel", - location="imgui_internal:3508", + location="imgui_internal:3522", namespace="ImGui", ov_cimguiname="igSetWindowClipRectBeforeSetChannel", ret="void", @@ -30997,7 +31690,7 @@ local t={ defaults={ cond="0"}, funcname="SetWindowCollapsed", - location="imgui_internal:3185", + location="imgui_internal:3197", namespace="ImGui", ov_cimguiname="igSetWindowCollapsed_WindowPtr", ret="void", @@ -31055,7 +31748,7 @@ local t={ cimguiname="igSetWindowHiddenAndSkipItemsForCurrentFrame", defaults={}, funcname="SetWindowHiddenAndSkipItemsForCurrentFrame", - location="imgui_internal:3187", + location="imgui_internal:3199", namespace="ImGui", ov_cimguiname="igSetWindowHiddenAndSkipItemsForCurrentFrame", ret="void", @@ -31081,7 +31774,7 @@ local t={ cimguiname="igSetWindowHitTestHole", defaults={}, funcname="SetWindowHitTestHole", - location="imgui_internal:3186", + location="imgui_internal:3198", namespace="ImGui", ov_cimguiname="igSetWindowHitTestHole", ret="void", @@ -31104,7 +31797,7 @@ local t={ cimguiname="igSetWindowParentWindowForFocusRoute", defaults={}, funcname="SetWindowParentWindowForFocusRoute", - location="imgui_internal:3188", + location="imgui_internal:3200", namespace="ImGui", ov_cimguiname="igSetWindowParentWindowForFocusRoute", ret="void", @@ -31178,7 +31871,7 @@ local t={ defaults={ cond="0"}, funcname="SetWindowPos", - location="imgui_internal:3183", + location="imgui_internal:3195", namespace="ImGui", ov_cimguiname="igSetWindowPos_WindowPtr", ret="void", @@ -31254,7 +31947,7 @@ local t={ defaults={ cond="0"}, funcname="SetWindowSize", - location="imgui_internal:3184", + location="imgui_internal:3196", namespace="ImGui", ov_cimguiname="igSetWindowSize_WindowPtr", ret="void", @@ -31279,7 +31972,7 @@ local t={ cimguiname="igSetWindowViewport", defaults={}, funcname="SetWindowViewport", - location="imgui_internal:3247", + location="imgui_internal:3259", namespace="ImGui", ov_cimguiname="igSetWindowViewport", ret="void", @@ -31317,7 +32010,7 @@ local t={ cimguiname="igShadeVertsLinearColorGradientKeepAlpha", defaults={}, funcname="ShadeVertsLinearColorGradientKeepAlpha", - location="imgui_internal:3710", + location="imgui_internal:3725", namespace="ImGui", ov_cimguiname="igShadeVertsLinearColorGradientKeepAlpha", ret="void", @@ -31358,7 +32051,7 @@ local t={ cimguiname="igShadeVertsLinearUV", defaults={}, funcname="ShadeVertsLinearUV", - location="imgui_internal:3711", + location="imgui_internal:3726", namespace="ImGui", ov_cimguiname="igShadeVertsLinearUV", ret="void", @@ -31396,7 +32089,7 @@ local t={ cimguiname="igShadeVertsTransformPos", defaults={}, funcname="ShadeVertsTransformPos", - location="imgui_internal:3712", + location="imgui_internal:3727", namespace="ImGui", ov_cimguiname="igShadeVertsTransformPos", ret="void", @@ -31444,7 +32137,7 @@ local t={ cimguiname="igShortcut", defaults={}, funcname="Shortcut", - location="imgui_internal:3461", + location="imgui_internal:3474", namespace="ImGui", ov_cimguiname="igShortcut_ID", ret="bool", @@ -31528,7 +32221,7 @@ local t={ cimguiname="igShowFontAtlas", defaults={}, funcname="ShowFontAtlas", - location="imgui_internal:3744", + location="imgui_internal:3759", namespace="ImGui", ov_cimguiname="igShowFontAtlas", ret="void", @@ -31677,7 +32370,7 @@ local t={ cimguiname="igShrinkWidths", defaults={}, funcname="ShrinkWidths", - location="imgui_internal:3307", + location="imgui_internal:3319", namespace="ImGui", ov_cimguiname="igShrinkWidths", ret="void", @@ -31694,7 +32387,7 @@ local t={ cimguiname="igShutdown", defaults={}, funcname="Shutdown", - location="imgui_internal:3227", + location="imgui_internal:3239", namespace="ImGui", ov_cimguiname="igShutdown", ret="void", @@ -31777,7 +32470,7 @@ local t={ cimguiname="igSliderBehavior", defaults={}, funcname="SliderBehavior", - location="imgui_internal:3660", + location="imgui_internal:3675", namespace="ImGui", ov_cimguiname="igSliderBehavior", ret="bool", @@ -32243,7 +32936,7 @@ local t={ hover_extend="0.0f", hover_visibility_delay="0.0f"}, funcname="SplitterBehavior", - location="imgui_internal:3661", + location="imgui_internal:3676", namespace="ImGui", ov_cimguiname="igSplitterBehavior", ret="bool", @@ -32263,7 +32956,7 @@ local t={ cimguiname="igStartMouseMovingWindow", defaults={}, funcname="StartMouseMovingWindow", - location="imgui_internal:3239", + location="imgui_internal:3251", namespace="ImGui", ov_cimguiname="igStartMouseMovingWindow", ret="void", @@ -32280,7 +32973,7 @@ local t={ cimguiname="igStopMouseMovingWindow", defaults={}, funcname="StopMouseMovingWindow", - location="imgui_internal:3240", + location="imgui_internal:3252", namespace="ImGui", ov_cimguiname="igStopMouseMovingWindow", ret="void", @@ -32366,7 +33059,7 @@ local t={ cimguiname="igTabBarCloseTab", defaults={}, funcname="TabBarCloseTab", - location="imgui_internal:3591", + location="imgui_internal:3606", namespace="ImGui", ov_cimguiname="igTabBarCloseTab", ret="void", @@ -32386,7 +33079,7 @@ local t={ cimguiname="igTabBarFindByID", defaults={}, funcname="TabBarFindByID", - location="imgui_internal:3582", + location="imgui_internal:3597", namespace="ImGui", ov_cimguiname="igTabBarFindByID", ret="ImGuiTabBar*", @@ -32409,7 +33102,7 @@ local t={ cimguiname="igTabBarFindTabByID", defaults={}, funcname="TabBarFindTabByID", - location="imgui_internal:3585", + location="imgui_internal:3600", namespace="ImGui", ov_cimguiname="igTabBarFindTabByID", ret="ImGuiTabItem*", @@ -32432,7 +33125,7 @@ local t={ cimguiname="igTabBarFindTabByOrder", defaults={}, funcname="TabBarFindTabByOrder", - location="imgui_internal:3586", + location="imgui_internal:3601", namespace="ImGui", ov_cimguiname="igTabBarFindTabByOrder", ret="ImGuiTabItem*", @@ -32452,7 +33145,7 @@ local t={ cimguiname="igTabBarGetCurrentTab", defaults={}, funcname="TabBarGetCurrentTab", - location="imgui_internal:3587", + location="imgui_internal:3602", namespace="ImGui", ov_cimguiname="igTabBarGetCurrentTab", ret="ImGuiTabItem*", @@ -32475,7 +33168,7 @@ local t={ cimguiname="igTabBarGetTabName", defaults={}, funcname="TabBarGetTabName", - location="imgui_internal:3589", + location="imgui_internal:3604", namespace="ImGui", ov_cimguiname="igTabBarGetTabName", ret="const char*", @@ -32498,7 +33191,7 @@ local t={ cimguiname="igTabBarGetTabOrder", defaults={}, funcname="TabBarGetTabOrder", - location="imgui_internal:3588", + location="imgui_internal:3603", namespace="ImGui", ov_cimguiname="igTabBarGetTabOrder", ret="int", @@ -32518,7 +33211,7 @@ local t={ cimguiname="igTabBarProcessReorder", defaults={}, funcname="TabBarProcessReorder", - location="imgui_internal:3596", + location="imgui_internal:3611", namespace="ImGui", ov_cimguiname="igTabBarProcessReorder", ret="bool", @@ -32541,7 +33234,7 @@ local t={ cimguiname="igTabBarQueueFocus", defaults={}, funcname="TabBarQueueFocus", - location="imgui_internal:3592", + location="imgui_internal:3607", namespace="ImGui", ov_cimguiname="igTabBarQueueFocus_TabItemPtr", ret="void", @@ -32562,7 +33255,7 @@ local t={ cimguiname="igTabBarQueueFocus", defaults={}, funcname="TabBarQueueFocus", - location="imgui_internal:3593", + location="imgui_internal:3608", namespace="ImGui", ov_cimguiname="igTabBarQueueFocus_Str", ret="void", @@ -32589,7 +33282,7 @@ local t={ cimguiname="igTabBarQueueReorder", defaults={}, funcname="TabBarQueueReorder", - location="imgui_internal:3594", + location="imgui_internal:3609", namespace="ImGui", ov_cimguiname="igTabBarQueueReorder", ret="void", @@ -32615,7 +33308,7 @@ local t={ cimguiname="igTabBarQueueReorderFromMousePos", defaults={}, funcname="TabBarQueueReorderFromMousePos", - location="imgui_internal:3595", + location="imgui_internal:3610", namespace="ImGui", ov_cimguiname="igTabBarQueueReorderFromMousePos", ret="void", @@ -32635,7 +33328,7 @@ local t={ cimguiname="igTabBarRemove", defaults={}, funcname="TabBarRemove", - location="imgui_internal:3583", + location="imgui_internal:3598", namespace="ImGui", ov_cimguiname="igTabBarRemove", ret="void", @@ -32658,7 +33351,7 @@ local t={ cimguiname="igTabBarRemoveTab", defaults={}, funcname="TabBarRemoveTab", - location="imgui_internal:3590", + location="imgui_internal:3605", namespace="ImGui", ov_cimguiname="igTabBarRemoveTab", ret="void", @@ -32687,7 +33380,7 @@ local t={ cimguiname="igTabItemBackground", defaults={}, funcname="TabItemBackground", - location="imgui_internal:3601", + location="imgui_internal:3616", namespace="ImGui", ov_cimguiname="igTabItemBackground", ret="void", @@ -32735,7 +33428,7 @@ local t={ conv="ImVec2", defaults={}, funcname="TabItemCalcSize", - location="imgui_internal:3599", + location="imgui_internal:3614", namespace="ImGui", nonUDT=1, ov_cimguiname="igTabItemCalcSize_Str", @@ -32755,7 +33448,7 @@ local t={ conv="ImVec2", defaults={}, funcname="TabItemCalcSize", - location="imgui_internal:3600", + location="imgui_internal:3615", namespace="ImGui", nonUDT=1, ov_cimguiname="igTabItemCalcSize_WindowPtr", @@ -32789,7 +33482,7 @@ local t={ cimguiname="igTabItemEx", defaults={}, funcname="TabItemEx", - location="imgui_internal:3597", + location="imgui_internal:3612", namespace="ImGui", ov_cimguiname="igTabItemEx", ret="bool", @@ -32836,7 +33529,7 @@ local t={ cimguiname="igTabItemLabelAndCloseButton", defaults={}, funcname="TabItemLabelAndCloseButton", - location="imgui_internal:3602", + location="imgui_internal:3617", namespace="ImGui", ov_cimguiname="igTabItemLabelAndCloseButton", ret="void", @@ -32862,7 +33555,7 @@ local t={ cimguiname="igTabItemSpacing", defaults={}, funcname="TabItemSpacing", - location="imgui_internal:3598", + location="imgui_internal:3613", namespace="ImGui", ov_cimguiname="igTabItemSpacing", ret="void", @@ -32911,13 +33604,37 @@ local t={ cimguiname="igTableAngledHeadersRowEx", defaults={}, funcname="TableAngledHeadersRowEx", - location="imgui_internal:3530", + location="imgui_internal:3544", namespace="ImGui", ov_cimguiname="igTableAngledHeadersRowEx", ret="void", signature="(ImGuiID,float,float,const ImGuiTableHeaderData*,int)", stname=""}, ["(ImGuiID,float,float,const ImGuiTableHeaderData*,int)"]=nil}, + igTableApplyExternalUnclipRect={ + [1]={ + args="(ImGuiTable* table,ImRect* rect)", + argsT={ + [1]={ + name="table", + type="ImGuiTable*"}, + [2]={ + name="rect", + reftoptr=true, + type="ImRect*"}}, + argsoriginal="(ImGuiTable* table,ImRect& rect)", + call_args="(table,*rect)", + call_args_old="(table,*rect)", + cimguiname="igTableApplyExternalUnclipRect", + defaults={}, + funcname="TableApplyExternalUnclipRect", + location="imgui_internal:3556", + namespace="ImGui", + ov_cimguiname="igTableApplyExternalUnclipRect", + ret="void", + signature="(ImGuiTable*,ImRect*)", + stname=""}, + ["(ImGuiTable*,ImRect*)"]=nil}, igTableBeginApplyRequests={ [1]={ args="(ImGuiTable* table)", @@ -32931,7 +33648,7 @@ local t={ cimguiname="igTableBeginApplyRequests", defaults={}, funcname="TableBeginApplyRequests", - location="imgui_internal:3537", + location="imgui_internal:3551", namespace="ImGui", ov_cimguiname="igTableBeginApplyRequests", ret="void", @@ -32954,7 +33671,7 @@ local t={ cimguiname="igTableBeginCell", defaults={}, funcname="TableBeginCell", - location="imgui_internal:3556", + location="imgui_internal:3571", namespace="ImGui", ov_cimguiname="igTableBeginCell", ret="void", @@ -32974,7 +33691,7 @@ local t={ cimguiname="igTableBeginContextMenuPopup", defaults={}, funcname="TableBeginContextMenuPopup", - location="imgui_internal:3544", + location="imgui_internal:3559", namespace="ImGui", ov_cimguiname="igTableBeginContextMenuPopup", ret="bool", @@ -32997,7 +33714,7 @@ local t={ cimguiname="igTableBeginInitMemory", defaults={}, funcname="TableBeginInitMemory", - location="imgui_internal:3536", + location="imgui_internal:3550", namespace="ImGui", ov_cimguiname="igTableBeginInitMemory", ret="void", @@ -33017,7 +33734,7 @@ local t={ cimguiname="igTableBeginRow", defaults={}, funcname="TableBeginRow", - location="imgui_internal:3554", + location="imgui_internal:3569", namespace="ImGui", ov_cimguiname="igTableBeginRow", ret="void", @@ -33040,7 +33757,7 @@ local t={ cimguiname="igTableCalcMaxColumnWidth", defaults={}, funcname="TableCalcMaxColumnWidth", - location="imgui_internal:3561", + location="imgui_internal:3576", namespace="ImGui", ov_cimguiname="igTableCalcMaxColumnWidth", ret="float", @@ -33060,7 +33777,7 @@ local t={ cimguiname="igTableDrawBorders", defaults={}, funcname="TableDrawBorders", - location="imgui_internal:3542", + location="imgui_internal:3557", namespace="ImGui", ov_cimguiname="igTableDrawBorders", ret="void", @@ -33083,7 +33800,7 @@ local t={ cimguiname="igTableDrawDefaultContextMenu", defaults={}, funcname="TableDrawDefaultContextMenu", - location="imgui_internal:3543", + location="imgui_internal:3558", namespace="ImGui", ov_cimguiname="igTableDrawDefaultContextMenu", ret="void", @@ -33103,7 +33820,7 @@ local t={ cimguiname="igTableEndCell", defaults={}, funcname="TableEndCell", - location="imgui_internal:3557", + location="imgui_internal:3572", namespace="ImGui", ov_cimguiname="igTableEndCell", ret="void", @@ -33123,7 +33840,7 @@ local t={ cimguiname="igTableEndRow", defaults={}, funcname="TableEndRow", - location="imgui_internal:3555", + location="imgui_internal:3570", namespace="ImGui", ov_cimguiname="igTableEndRow", ret="void", @@ -33143,7 +33860,7 @@ local t={ cimguiname="igTableFindByID", defaults={}, funcname="TableFindByID", - location="imgui_internal:3534", + location="imgui_internal:3548", namespace="ImGui", ov_cimguiname="igTableFindByID", ret="ImGuiTable*", @@ -33166,7 +33883,7 @@ local t={ cimguiname="igTableFixColumnSortDirection", defaults={}, funcname="TableFixColumnSortDirection", - location="imgui_internal:3552", + location="imgui_internal:3567", namespace="ImGui", ov_cimguiname="igTableFixColumnSortDirection", ret="void", @@ -33186,7 +33903,7 @@ local t={ cimguiname="igTableFixDisplayOrder", defaults={}, funcname="TableFixDisplayOrder", - location="imgui_internal:3548", + location="imgui_internal:3563", namespace="ImGui", ov_cimguiname="igTableFixDisplayOrder", ret="void", @@ -33203,7 +33920,7 @@ local t={ cimguiname="igTableGcCompactSettings", defaults={}, funcname="TableGcCompactSettings", - location="imgui_internal:3569", + location="imgui_internal:3584", namespace="ImGui", ov_cimguiname="igTableGcCompactSettings", ret="void", @@ -33223,7 +33940,7 @@ local t={ cimguiname="igTableGcCompactTransientBuffers", defaults={}, funcname="TableGcCompactTransientBuffers", - location="imgui_internal:3567", + location="imgui_internal:3582", namespace="ImGui", ov_cimguiname="igTableGcCompactTransientBuffers_TablePtr", ret="void", @@ -33241,7 +33958,7 @@ local t={ cimguiname="igTableGcCompactTransientBuffers", defaults={}, funcname="TableGcCompactTransientBuffers", - location="imgui_internal:3568", + location="imgui_internal:3583", namespace="ImGui", ov_cimguiname="igTableGcCompactTransientBuffers_TableTempDataPtr", ret="void", @@ -33262,7 +33979,7 @@ local t={ cimguiname="igTableGetBoundSettings", defaults={}, funcname="TableGetBoundSettings", - location="imgui_internal:3575", + location="imgui_internal:3590", namespace="ImGui", ov_cimguiname="igTableGetBoundSettings", ret="ImGuiTableSettings*", @@ -33286,7 +34003,7 @@ local t={ conv="ImRect", defaults={}, funcname="TableGetCellBgRect", - location="imgui_internal:3558", + location="imgui_internal:3573", namespace="ImGui", nonUDT=1, ov_cimguiname="igTableGetCellBgRect", @@ -33384,7 +34101,7 @@ local t={ cimguiname="igTableGetColumnName", defaults={}, funcname="TableGetColumnName", - location="imgui_internal:3559", + location="imgui_internal:3574", namespace="ImGui", ov_cimguiname="igTableGetColumnName_TablePtr", ret="const char*", @@ -33405,7 +34122,7 @@ local t={ cimguiname="igTableGetColumnNextSortDirection", defaults={}, funcname="TableGetColumnNextSortDirection", - location="imgui_internal:3551", + location="imgui_internal:3566", namespace="ImGui", ov_cimguiname="igTableGetColumnNextSortDirection", ret="ImGuiSortDirection", @@ -33432,7 +34149,7 @@ local t={ defaults={ instance_no="0"}, funcname="TableGetColumnResizeID", - location="imgui_internal:3560", + location="imgui_internal:3575", namespace="ImGui", ov_cimguiname="igTableGetColumnResizeID", ret="ImGuiID", @@ -33455,7 +34172,7 @@ local t={ cimguiname="igTableGetColumnWidthAuto", defaults={}, funcname="TableGetColumnWidthAuto", - location="imgui_internal:3553", + location="imgui_internal:3568", namespace="ImGui", ov_cimguiname="igTableGetColumnWidthAuto", ret="float", @@ -33472,7 +34189,7 @@ local t={ cimguiname="igTableGetHeaderAngledMaxLabelWidth", defaults={}, funcname="TableGetHeaderAngledMaxLabelWidth", - location="imgui_internal:3525", + location="imgui_internal:3539", namespace="ImGui", ov_cimguiname="igTableGetHeaderAngledMaxLabelWidth", ret="float", @@ -33489,7 +34206,7 @@ local t={ cimguiname="igTableGetHeaderRowHeight", defaults={}, funcname="TableGetHeaderRowHeight", - location="imgui_internal:3524", + location="imgui_internal:3538", namespace="ImGui", ov_cimguiname="igTableGetHeaderRowHeight", ret="float", @@ -33523,7 +34240,7 @@ local t={ cimguiname="igTableGetHoveredRow", defaults={}, funcname="TableGetHoveredRow", - location="imgui_internal:3523", + location="imgui_internal:3537", namespace="ImGui", ov_cimguiname="igTableGetHoveredRow", ret="int", @@ -33546,7 +34263,7 @@ local t={ cimguiname="igTableGetInstanceData", defaults={}, funcname="TableGetInstanceData", - location="imgui_internal:3546", + location="imgui_internal:3561", namespace="ImGui", ov_cimguiname="igTableGetInstanceData", ret="ImGuiTableInstanceData*", @@ -33569,7 +34286,7 @@ local t={ cimguiname="igTableGetInstanceID", defaults={}, funcname="TableGetInstanceID", - location="imgui_internal:3547", + location="imgui_internal:3562", namespace="ImGui", ov_cimguiname="igTableGetInstanceID", ret="ImGuiID", @@ -33660,7 +34377,7 @@ local t={ cimguiname="igTableLoadSettings", defaults={}, funcname="TableLoadSettings", - location="imgui_internal:3572", + location="imgui_internal:3587", namespace="ImGui", ov_cimguiname="igTableLoadSettings", ret="void", @@ -33680,7 +34397,7 @@ local t={ cimguiname="igTableMergeDrawChannels", defaults={}, funcname="TableMergeDrawChannels", - location="imgui_internal:3545", + location="imgui_internal:3560", namespace="ImGui", ov_cimguiname="igTableMergeDrawChannels", ret="void", @@ -33743,7 +34460,7 @@ local t={ defaults={ column_n="-1"}, funcname="TableOpenContextMenu", - location="imgui_internal:3520", + location="imgui_internal:3534", namespace="ImGui", ov_cimguiname="igTableOpenContextMenu", ret="void", @@ -33760,7 +34477,7 @@ local t={ cimguiname="igTablePopBackgroundChannel", defaults={}, funcname="TablePopBackgroundChannel", - location="imgui_internal:3527", + location="imgui_internal:3541", namespace="ImGui", ov_cimguiname="igTablePopBackgroundChannel", ret="void", @@ -33777,7 +34494,7 @@ local t={ cimguiname="igTablePopColumnChannel", defaults={}, funcname="TablePopColumnChannel", - location="imgui_internal:3529", + location="imgui_internal:3543", namespace="ImGui", ov_cimguiname="igTablePopColumnChannel", ret="void", @@ -33794,7 +34511,7 @@ local t={ cimguiname="igTablePushBackgroundChannel", defaults={}, funcname="TablePushBackgroundChannel", - location="imgui_internal:3526", + location="imgui_internal:3540", namespace="ImGui", ov_cimguiname="igTablePushBackgroundChannel", ret="void", @@ -33814,7 +34531,7 @@ local t={ cimguiname="igTablePushColumnChannel", defaults={}, funcname="TablePushColumnChannel", - location="imgui_internal:3528", + location="imgui_internal:3542", namespace="ImGui", ov_cimguiname="igTablePushColumnChannel", ret="void", @@ -33840,7 +34557,7 @@ local t={ cimguiname="igTableQueueSetColumnDisplayOrder", defaults={}, funcname="TableQueueSetColumnDisplayOrder", - location="imgui_internal:3565", + location="imgui_internal:3580", namespace="ImGui", ov_cimguiname="igTableQueueSetColumnDisplayOrder", ret="void", @@ -33860,7 +34577,7 @@ local t={ cimguiname="igTableRemove", defaults={}, funcname="TableRemove", - location="imgui_internal:3566", + location="imgui_internal:3581", namespace="ImGui", ov_cimguiname="igTableRemove", ret="void", @@ -33880,7 +34597,7 @@ local t={ cimguiname="igTableResetSettings", defaults={}, funcname="TableResetSettings", - location="imgui_internal:3574", + location="imgui_internal:3589", namespace="ImGui", ov_cimguiname="igTableResetSettings", ret="void", @@ -33900,7 +34617,7 @@ local t={ cimguiname="igTableSaveSettings", defaults={}, funcname="TableSaveSettings", - location="imgui_internal:3573", + location="imgui_internal:3588", namespace="ImGui", ov_cimguiname="igTableSaveSettings", ret="void", @@ -33953,7 +34670,7 @@ local t={ cimguiname="igTableSetColumnDisplayOrder", defaults={}, funcname="TableSetColumnDisplayOrder", - location="imgui_internal:3564", + location="imgui_internal:3579", namespace="ImGui", ov_cimguiname="igTableSetColumnDisplayOrder", ret="void", @@ -34022,7 +34739,7 @@ local t={ cimguiname="igTableSetColumnSortDirection", defaults={}, funcname="TableSetColumnSortDirection", - location="imgui_internal:3522", + location="imgui_internal:3536", namespace="ImGui", ov_cimguiname="igTableSetColumnSortDirection", ret="void", @@ -34045,7 +34762,7 @@ local t={ cimguiname="igTableSetColumnWidth", defaults={}, funcname="TableSetColumnWidth", - location="imgui_internal:3521", + location="imgui_internal:3535", namespace="ImGui", ov_cimguiname="igTableSetColumnWidth", ret="void", @@ -34065,7 +34782,7 @@ local t={ cimguiname="igTableSetColumnWidthAutoAll", defaults={}, funcname="TableSetColumnWidthAutoAll", - location="imgui_internal:3563", + location="imgui_internal:3578", namespace="ImGui", ov_cimguiname="igTableSetColumnWidthAutoAll", ret="void", @@ -34088,7 +34805,7 @@ local t={ cimguiname="igTableSetColumnWidthAutoSingle", defaults={}, funcname="TableSetColumnWidthAutoSingle", - location="imgui_internal:3562", + location="imgui_internal:3577", namespace="ImGui", ov_cimguiname="igTableSetColumnWidthAutoSingle", ret="void", @@ -34105,7 +34822,7 @@ local t={ cimguiname="igTableSettingsAddSettingsHandler", defaults={}, funcname="TableSettingsAddSettingsHandler", - location="imgui_internal:3576", + location="imgui_internal:3591", namespace="ImGui", ov_cimguiname="igTableSettingsAddSettingsHandler", ret="void", @@ -34128,7 +34845,7 @@ local t={ cimguiname="igTableSettingsCreate", defaults={}, funcname="TableSettingsCreate", - location="imgui_internal:3577", + location="imgui_internal:3592", namespace="ImGui", ov_cimguiname="igTableSettingsCreate", ret="ImGuiTableSettings*", @@ -34148,7 +34865,7 @@ local t={ cimguiname="igTableSettingsFindByID", defaults={}, funcname="TableSettingsFindByID", - location="imgui_internal:3578", + location="imgui_internal:3593", namespace="ImGui", ov_cimguiname="igTableSettingsFindByID", ret="ImGuiTableSettings*", @@ -34200,7 +34917,7 @@ local t={ cimguiname="igTableSetupDrawChannels", defaults={}, funcname="TableSetupDrawChannels", - location="imgui_internal:3538", + location="imgui_internal:3552", namespace="ImGui", ov_cimguiname="igTableSetupDrawChannels", ret="void", @@ -34243,7 +34960,7 @@ local t={ cimguiname="igTableSortSpecsBuild", defaults={}, funcname="TableSortSpecsBuild", - location="imgui_internal:3550", + location="imgui_internal:3565", namespace="ImGui", ov_cimguiname="igTableSortSpecsBuild", ret="void", @@ -34263,7 +34980,7 @@ local t={ cimguiname="igTableSortSpecsSanitize", defaults={}, funcname="TableSortSpecsSanitize", - location="imgui_internal:3549", + location="imgui_internal:3564", namespace="ImGui", ov_cimguiname="igTableSortSpecsSanitize", ret="void", @@ -34283,7 +35000,7 @@ local t={ cimguiname="igTableUpdateBorders", defaults={}, funcname="TableUpdateBorders", - location="imgui_internal:3540", + location="imgui_internal:3554", namespace="ImGui", ov_cimguiname="igTableUpdateBorders", ret="void", @@ -34303,7 +35020,7 @@ local t={ cimguiname="igTableUpdateColumnsWeightFromWidth", defaults={}, funcname="TableUpdateColumnsWeightFromWidth", - location="imgui_internal:3541", + location="imgui_internal:3555", namespace="ImGui", ov_cimguiname="igTableUpdateColumnsWeightFromWidth", ret="void", @@ -34323,7 +35040,7 @@ local t={ cimguiname="igTableUpdateLayout", defaults={}, funcname="TableUpdateLayout", - location="imgui_internal:3539", + location="imgui_internal:3553", namespace="ImGui", ov_cimguiname="igTableUpdateLayout", ret="void", @@ -34343,7 +35060,7 @@ local t={ cimguiname="igTeleportMousePos", defaults={}, funcname="TeleportMousePos", - location="imgui_internal:3410", + location="imgui_internal:3423", namespace="ImGui", ov_cimguiname="igTeleportMousePos", ret="void", @@ -34363,7 +35080,7 @@ local t={ cimguiname="igTempInputIsActive", defaults={}, funcname="TempInputIsActive", - location="imgui_internal:3695", + location="imgui_internal:3710", namespace="ImGui", ov_cimguiname="igTempInputIsActive", ret="bool", @@ -34406,7 +35123,7 @@ local t={ p_clamp_max="NULL", p_clamp_min="NULL"}, funcname="TempInputScalar", - location="imgui_internal:3694", + location="imgui_internal:3709", namespace="ImGui", ov_cimguiname="igTempInputScalar", ret="bool", @@ -34450,7 +35167,7 @@ local t={ flags="0", user_data="NULL"}, funcname="TempInputText", - location="imgui_internal:3693", + location="imgui_internal:3708", namespace="ImGui", ov_cimguiname="igTempInputText", ret="bool", @@ -34473,7 +35190,7 @@ local t={ cimguiname="igTestKeyOwner", defaults={}, funcname="TestKeyOwner", - location="imgui_internal:3429", + location="imgui_internal:3442", namespace="ImGui", ov_cimguiname="igTestKeyOwner", ret="bool", @@ -34496,7 +35213,7 @@ local t={ cimguiname="igTestShortcutRouting", defaults={}, funcname="TestShortcutRouting", - location="imgui_internal:3463", + location="imgui_internal:3476", namespace="ImGui", ov_cimguiname="igTestShortcutRouting", ret="bool", @@ -34550,7 +35267,7 @@ local t={ defaults={}, funcname="TextAligned", isvararg="...)", - location="imgui_internal:3634", + location="imgui_internal:3649", namespace="ImGui", ov_cimguiname="igTextAligned", ret="void", @@ -34579,7 +35296,7 @@ local t={ cimguiname="igTextAlignedV", defaults={}, funcname="TextAlignedV", - location="imgui_internal:3635", + location="imgui_internal:3650", namespace="ImGui", ov_cimguiname="igTextAlignedV", ret="void", @@ -34707,7 +35424,7 @@ local t={ flags="0", text_end="NULL"}, funcname="TextEx", - location="imgui_internal:3633", + location="imgui_internal:3648", namespace="ImGui", ov_cimguiname="igTextEx", ret="void", @@ -34947,7 +35664,7 @@ local t={ defaults={ label_end="NULL"}, funcname="TreeNodeBehavior", - location="imgui_internal:3664", + location="imgui_internal:3679", namespace="ImGui", ov_cimguiname="igTreeNodeBehavior", ret="bool", @@ -34967,7 +35684,7 @@ local t={ cimguiname="igTreeNodeDrawLineToChildNode", defaults={}, funcname="TreeNodeDrawLineToChildNode", - location="imgui_internal:3665", + location="imgui_internal:3680", namespace="ImGui", ov_cimguiname="igTreeNodeDrawLineToChildNode", ret="void", @@ -34987,7 +35704,7 @@ local t={ cimguiname="igTreeNodeDrawLineToTreePop", defaults={}, funcname="TreeNodeDrawLineToTreePop", - location="imgui_internal:3666", + location="imgui_internal:3681", namespace="ImGui", ov_cimguiname="igTreeNodeDrawLineToTreePop", ret="void", @@ -35169,7 +35886,7 @@ local t={ cimguiname="igTreeNodeSetOpen", defaults={}, funcname="TreeNodeSetOpen", - location="imgui_internal:3668", + location="imgui_internal:3683", namespace="ImGui", ov_cimguiname="igTreeNodeSetOpen", ret="void", @@ -35192,7 +35909,7 @@ local t={ cimguiname="igTreeNodeUpdateNextOpen", defaults={}, funcname="TreeNodeUpdateNextOpen", - location="imgui_internal:3669", + location="imgui_internal:3684", namespace="ImGui", ov_cimguiname="igTreeNodeUpdateNextOpen", ret="bool", @@ -35319,7 +36036,7 @@ local t={ cimguiname="igTreePushOverrideID", defaults={}, funcname="TreePushOverrideID", - location="imgui_internal:3667", + location="imgui_internal:3682", namespace="ImGui", ov_cimguiname="igTreePushOverrideID", ret="void", @@ -35350,7 +36067,7 @@ local t={ cimguiname="igTypingSelectFindBestLeadingMatch", defaults={}, funcname="TypingSelectFindBestLeadingMatch", - location="imgui_internal:3493", + location="imgui_internal:3507", namespace="ImGui", ov_cimguiname="igTypingSelectFindBestLeadingMatch", ret="int", @@ -35384,7 +36101,7 @@ local t={ cimguiname="igTypingSelectFindMatch", defaults={}, funcname="TypingSelectFindMatch", - location="imgui_internal:3491", + location="imgui_internal:3505", namespace="ImGui", ov_cimguiname="igTypingSelectFindMatch", ret="int", @@ -35418,7 +36135,7 @@ local t={ cimguiname="igTypingSelectFindNextSingleCharMatch", defaults={}, funcname="TypingSelectFindNextSingleCharMatch", - location="imgui_internal:3492", + location="imgui_internal:3506", namespace="ImGui", ov_cimguiname="igTypingSelectFindNextSingleCharMatch", ret="int", @@ -35459,7 +36176,7 @@ local t={ cimguiname="igUnregisterFontAtlas", defaults={}, funcname="UnregisterFontAtlas", - location="imgui_internal:3211", + location="imgui_internal:3223", namespace="ImGui", ov_cimguiname="igUnregisterFontAtlas", ret="void", @@ -35479,7 +36196,7 @@ local t={ cimguiname="igUnregisterUserTexture", defaults={}, funcname="UnregisterUserTexture", - location="imgui_internal:3209", + location="imgui_internal:3221", namespace="ImGui", ov_cimguiname="igUnregisterUserTexture", ret="void", @@ -35499,7 +36216,7 @@ local t={ cimguiname="igUpdateCurrentFontSize", defaults={}, funcname="UpdateCurrentFontSize", - location="imgui_internal:3213", + location="imgui_internal:3225", namespace="ImGui", ov_cimguiname="igUpdateCurrentFontSize", ret="void", @@ -35519,7 +36236,7 @@ local t={ cimguiname="igUpdateHoveredWindowAndCaptureFlags", defaults={}, funcname="UpdateHoveredWindowAndCaptureFlags", - location="imgui_internal:3237", + location="imgui_internal:3249", namespace="ImGui", ov_cimguiname="igUpdateHoveredWindowAndCaptureFlags", ret="void", @@ -35539,7 +36256,7 @@ local t={ cimguiname="igUpdateInputEvents", defaults={}, funcname="UpdateInputEvents", - location="imgui_internal:3236", + location="imgui_internal:3248", namespace="ImGui", ov_cimguiname="igUpdateInputEvents", ret="void", @@ -35556,7 +36273,7 @@ local t={ cimguiname="igUpdateMouseMovingWindowEndFrame", defaults={}, funcname="UpdateMouseMovingWindowEndFrame", - location="imgui_internal:3242", + location="imgui_internal:3254", namespace="ImGui", ov_cimguiname="igUpdateMouseMovingWindowEndFrame", ret="void", @@ -35573,7 +36290,7 @@ local t={ cimguiname="igUpdateMouseMovingWindowNewFrame", defaults={}, funcname="UpdateMouseMovingWindowNewFrame", - location="imgui_internal:3241", + location="imgui_internal:3253", namespace="ImGui", ov_cimguiname="igUpdateMouseMovingWindowNewFrame", ret="void", @@ -35599,7 +36316,7 @@ local t={ cimguiname="igUpdateWindowParentAndRootLinks", defaults={}, funcname="UpdateWindowParentAndRootLinks", - location="imgui_internal:3175", + location="imgui_internal:3187", namespace="ImGui", ov_cimguiname="igUpdateWindowParentAndRootLinks", ret="void", @@ -35619,7 +36336,7 @@ local t={ cimguiname="igUpdateWindowSkipRefresh", defaults={}, funcname="UpdateWindowSkipRefresh", - location="imgui_internal:3176", + location="imgui_internal:3188", namespace="ImGui", ov_cimguiname="igUpdateWindowSkipRefresh", ret="void", @@ -35859,7 +36576,7 @@ local t={ conv="ImVec2", defaults={}, funcname="WindowPosAbsToRel", - location="imgui_internal:3191", + location="imgui_internal:3203", namespace="ImGui", nonUDT=1, ov_cimguiname="igWindowPosAbsToRel", @@ -35884,7 +36601,7 @@ local t={ conv="ImVec2", defaults={}, funcname="WindowPosRelToAbs", - location="imgui_internal:3192", + location="imgui_internal:3204", namespace="ImGui", nonUDT=1, ov_cimguiname="igWindowPosRelToAbs", @@ -35909,7 +36626,7 @@ local t={ conv="ImRect", defaults={}, funcname="WindowRectAbsToRel", - location="imgui_internal:3189", + location="imgui_internal:3201", namespace="ImGui", nonUDT=1, ov_cimguiname="igWindowRectAbsToRel", @@ -35934,7 +36651,7 @@ local t={ conv="ImRect", defaults={}, funcname="WindowRectRelToAbs", - location="imgui_internal:3190", + location="imgui_internal:3202", namespace="ImGui", nonUDT=1, ov_cimguiname="igWindowRectRelToAbs", @@ -36009,12 +36726,14 @@ t.ImDrawList_AddImage["(ImTextureRef,const ImVec2,const ImVec2,const ImVec2,cons t.ImDrawList_AddImageQuad["(ImTextureRef,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)"]=t.ImDrawList_AddImageQuad[1] t.ImDrawList_AddImageRounded["(ImTextureRef,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)"]=t.ImDrawList_AddImageRounded[1] t.ImDrawList_AddLine["(const ImVec2,const ImVec2,ImU32,float)"]=t.ImDrawList_AddLine[1] +t.ImDrawList_AddLineH["(float,float,float,ImU32,float)"]=t.ImDrawList_AddLineH[1] +t.ImDrawList_AddLineV["(float,float,float,ImU32,float)"]=t.ImDrawList_AddLineV[1] t.ImDrawList_AddNgon["(const ImVec2,float,ImU32,int,float)"]=t.ImDrawList_AddNgon[1] t.ImDrawList_AddNgonFilled["(const ImVec2,float,ImU32,int)"]=t.ImDrawList_AddNgonFilled[1] -t.ImDrawList_AddPolyline["(const ImVec2*,int,ImU32,ImDrawFlags,float)"]=t.ImDrawList_AddPolyline[1] +t.ImDrawList_AddPolyline["(const ImVec2*,int,ImU32,float,ImDrawFlags)"]=t.ImDrawList_AddPolyline[1] t.ImDrawList_AddQuad["(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)"]=t.ImDrawList_AddQuad[1] t.ImDrawList_AddQuadFilled["(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)"]=t.ImDrawList_AddQuadFilled[1] -t.ImDrawList_AddRect["(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags,float)"]=t.ImDrawList_AddRect[1] +t.ImDrawList_AddRect["(const ImVec2,const ImVec2,ImU32,float,float,ImDrawFlags)"]=t.ImDrawList_AddRect[1] t.ImDrawList_AddRectFilled["(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)"]=t.ImDrawList_AddRectFilled[1] t.ImDrawList_AddRectFilledMultiColor["(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)"]=t.ImDrawList_AddRectFilledMultiColor[1] t.ImDrawList_AddText["(ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)"]=t.ImDrawList_AddText[2] @@ -36039,7 +36758,7 @@ t.ImDrawList_PathFillConvex["(ImU32)"]=t.ImDrawList_PathFillConvex[1] t.ImDrawList_PathLineTo["(const ImVec2)"]=t.ImDrawList_PathLineTo[1] t.ImDrawList_PathLineToMergeDuplicate["(const ImVec2)"]=t.ImDrawList_PathLineToMergeDuplicate[1] t.ImDrawList_PathRect["(const ImVec2,const ImVec2,float,ImDrawFlags)"]=t.ImDrawList_PathRect[1] -t.ImDrawList_PathStroke["(ImU32,ImDrawFlags,float)"]=t.ImDrawList_PathStroke[1] +t.ImDrawList_PathStroke["(ImU32,float,ImDrawFlags)"]=t.ImDrawList_PathStroke[1] t.ImDrawList_PopClipRect["()"]=t.ImDrawList_PopClipRect[1] t.ImDrawList_PopTexture["()"]=t.ImDrawList_PopTexture[1] t.ImDrawList_PrimQuadUV["(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)"]=t.ImDrawList_PrimQuadUV[1] @@ -36400,6 +37119,8 @@ t.ImPool_TryGetMapData["(ImPoolIdx)"]=t.ImPool_TryGetMapData[1] t.ImPool_destroy["(ImPool*)"]=t.ImPool_destroy[1] t.ImRect_Add["(const ImRect)"]=t.ImRect_Add[2] t.ImRect_Add["(const ImVec2)"]=t.ImRect_Add[1] +t.ImRect_AddX["(float)"]=t.ImRect_AddX[1] +t.ImRect_AddY["(float)"]=t.ImRect_AddY[1] t.ImRect_AsVec4["()const"]=t.ImRect_AsVec4[1] t.ImRect_ClipWith["(const ImRect)"]=t.ImRect_ClipWith[1] t.ImRect_ClipWithFull["(const ImRect)"]=t.ImRect_ClipWithFull[1] @@ -36724,6 +37445,7 @@ t.igFindBestWindowPosForPopup["(ImGuiWindow*)"]=t.igFindBestWindowPosForPopup[1] t.igFindBestWindowPosForPopupEx["(const ImVec2,const ImVec2,ImGuiDir*,const ImRect,const ImRect,ImGuiPopupPositionPolicy)"]=t.igFindBestWindowPosForPopupEx[1] t.igFindBlockingModal["(ImGuiWindow*)"]=t.igFindBlockingModal[1] t.igFindBottomMostVisibleWindowWithinBeginStack["(ImGuiWindow*)"]=t.igFindBottomMostVisibleWindowWithinBeginStack[1] +t.igFindFrontMostVisibleChildWindow["(ImGuiWindow*)"]=t.igFindFrontMostVisibleChildWindow[1] t.igFindHoveredWindowEx["(const ImVec2,bool,ImGuiWindow**,ImGuiWindow**)"]=t.igFindHoveredWindowEx[1] t.igFindOrCreateColumns["(ImGuiWindow*,ImGuiID)"]=t.igFindOrCreateColumns[1] t.igFindRenderedTextEnd["(const char*,const char*)"]=t.igFindRenderedTextEnd[1] @@ -37011,6 +37733,7 @@ t.igImTextStrToUtf8["(char*,int,const ImWchar*,const ImWchar*)"]=t.igImTextStrTo t.igImTextureDataGetFormatBytesPerPixel["(ImTextureFormat)"]=t.igImTextureDataGetFormatBytesPerPixel[1] t.igImTextureDataGetFormatName["(ImTextureFormat)"]=t.igImTextureDataGetFormatName[1] t.igImTextureDataGetStatusName["(ImTextureStatus)"]=t.igImTextureDataGetStatusName[1] +t.igImTextureDataQueueUpload["(ImTextureData*,int,int,int,int)"]=t.igImTextureDataQueueUpload[1] t.igImToUpper["(char)"]=t.igImToUpper[1] t.igImTriangleArea["(const ImVec2,const ImVec2,const ImVec2)"]=t.igImTriangleArea[1] t.igImTriangleBarycentricCoords["(const ImVec2,const ImVec2,const ImVec2,const ImVec2,float*,float*,float*)"]=t.igImTriangleBarycentricCoords[1] @@ -37054,6 +37777,7 @@ t.igIsClippedEx["(const ImRect,ImGuiID)"]=t.igIsClippedEx[1] t.igIsDragDropActive["()"]=t.igIsDragDropActive[1] t.igIsDragDropPayloadBeingAccepted["()"]=t.igIsDragDropPayloadBeingAccepted[1] t.igIsGamepadKey["(ImGuiKey)"]=t.igIsGamepadKey[1] +t.igIsInNavFocusRoute["(ImGuiID)"]=t.igIsInNavFocusRoute[1] t.igIsItemActivated["()"]=t.igIsItemActivated[1] t.igIsItemActive["()"]=t.igIsItemActive[1] t.igIsItemActiveAsInputText["()"]=t.igIsItemActiveAsInputText[1] @@ -37217,7 +37941,7 @@ t.igRenderBullet["(ImDrawList*,ImVec2,ImU32)"]=t.igRenderBullet[1] t.igRenderCheckMark["(ImDrawList*,ImVec2,ImU32,float)"]=t.igRenderCheckMark[1] t.igRenderColorComponentMarker["(const ImRect,ImU32,float)"]=t.igRenderColorComponentMarker[1] t.igRenderColorRectWithAlphaCheckerboard["(ImDrawList*,ImVec2,ImVec2,ImU32,float,ImVec2,float,ImDrawFlags)"]=t.igRenderColorRectWithAlphaCheckerboard[1] -t.igRenderDragDropTargetRectEx["(ImDrawList*,const ImRect)"]=t.igRenderDragDropTargetRectEx[1] +t.igRenderDragDropTargetRectEx["(ImDrawList*,const ImRect,float)"]=t.igRenderDragDropTargetRectEx[1] t.igRenderDragDropTargetRectForItem["(const ImRect)"]=t.igRenderDragDropTargetRectForItem[1] t.igRenderFrame["(ImVec2,ImVec2,ImU32,bool,float)"]=t.igRenderFrame[1] t.igRenderFrameBorder["(ImVec2,ImVec2,float)"]=t.igRenderFrameBorder[1] @@ -37390,6 +38114,7 @@ t.igTabItemLabelAndCloseButton["(ImDrawList*,const ImRect,ImGuiTabItemFlags,ImVe t.igTabItemSpacing["(const char*,ImGuiTabItemFlags,float)"]=t.igTabItemSpacing[1] t.igTableAngledHeadersRow["()"]=t.igTableAngledHeadersRow[1] t.igTableAngledHeadersRowEx["(ImGuiID,float,float,const ImGuiTableHeaderData*,int)"]=t.igTableAngledHeadersRowEx[1] +t.igTableApplyExternalUnclipRect["(ImGuiTable*,ImRect*)"]=t.igTableApplyExternalUnclipRect[1] t.igTableBeginApplyRequests["(ImGuiTable*)"]=t.igTableBeginApplyRequests[1] t.igTableBeginCell["(ImGuiTable*,int)"]=t.igTableBeginCell[1] t.igTableBeginContextMenuPopup["(ImGuiTable*)"]=t.igTableBeginContextMenuPopup[1] diff --git a/generator/output/impl_definitions.json b/generator/output/impl_definitions.json index a273852..17ade6e 100644 --- a/generator/output/impl_definitions.json +++ b/generator/output/impl_definitions.json @@ -489,7 +489,7 @@ "cimguiname": "ImGui_ImplOpenGL2_CreateDeviceObjects", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_CreateDeviceObjects", - "location": "imgui_impl_opengl2:37", + "location": "imgui_impl_opengl2:38", "ov_cimguiname": "ImGui_ImplOpenGL2_CreateDeviceObjects", "ret": "bool", "signature": "()", @@ -506,7 +506,7 @@ "cimguiname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", - "location": "imgui_impl_opengl2:38", + "location": "imgui_impl_opengl2:39", "ov_cimguiname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", "ret": "void", "signature": "()", @@ -523,7 +523,7 @@ "cimguiname": "ImGui_ImplOpenGL2_Init", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_Init", - "location": "imgui_impl_opengl2:31", + "location": "imgui_impl_opengl2:32", "ov_cimguiname": "ImGui_ImplOpenGL2_Init", "ret": "bool", "signature": "()", @@ -540,7 +540,7 @@ "cimguiname": "ImGui_ImplOpenGL2_NewFrame", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_NewFrame", - "location": "imgui_impl_opengl2:33", + "location": "imgui_impl_opengl2:34", "ov_cimguiname": "ImGui_ImplOpenGL2_NewFrame", "ret": "void", "signature": "()", @@ -562,7 +562,7 @@ "cimguiname": "ImGui_ImplOpenGL2_RenderDrawData", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_RenderDrawData", - "location": "imgui_impl_opengl2:34", + "location": "imgui_impl_opengl2:35", "ov_cimguiname": "ImGui_ImplOpenGL2_RenderDrawData", "ret": "void", "signature": "(ImDrawData*)", @@ -579,7 +579,7 @@ "cimguiname": "ImGui_ImplOpenGL2_Shutdown", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_Shutdown", - "location": "imgui_impl_opengl2:32", + "location": "imgui_impl_opengl2:33", "ov_cimguiname": "ImGui_ImplOpenGL2_Shutdown", "ret": "void", "signature": "()", @@ -601,7 +601,7 @@ "cimguiname": "ImGui_ImplOpenGL2_UpdateTexture", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_UpdateTexture", - "location": "imgui_impl_opengl2:41", + "location": "imgui_impl_opengl2:42", "ov_cimguiname": "ImGui_ImplOpenGL2_UpdateTexture", "ret": "void", "signature": "(ImTextureData*)", @@ -1363,7 +1363,7 @@ "cimguiname": "ImGui_ImplVulkanH_CreateOrResizeWindow", "defaults": {}, "funcname": "ImGui_ImplVulkanH_CreateOrResizeWindow", - "location": "imgui_impl_vulkan:200", + "location": "imgui_impl_vulkan:203", "ov_cimguiname": "ImGui_ImplVulkanH_CreateOrResizeWindow", "ret": "void", "signature": "(VkInstance,VkPhysicalDevice,VkDevice,ImGui_ImplVulkanH_Window*,uint32_t,const VkAllocationCallbacks*,int,int,uint32_t,VkImageUsageFlags)", @@ -1397,7 +1397,7 @@ "cimguiname": "ImGui_ImplVulkanH_DestroyWindow", "defaults": {}, "funcname": "ImGui_ImplVulkanH_DestroyWindow", - "location": "imgui_impl_vulkan:201", + "location": "imgui_impl_vulkan:204", "ov_cimguiname": "ImGui_ImplVulkanH_DestroyWindow", "ret": "void", "signature": "(VkInstance,VkDevice,ImGui_ImplVulkanH_Window*,const VkAllocationCallbacks*)", @@ -1419,7 +1419,7 @@ "cimguiname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode", "defaults": {}, "funcname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode", - "location": "imgui_impl_vulkan:206", + "location": "imgui_impl_vulkan:209", "ov_cimguiname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode", "ret": "int", "signature": "(VkPresentModeKHR)", @@ -1441,7 +1441,7 @@ "cimguiname": "ImGui_ImplVulkanH_SelectPhysicalDevice", "defaults": {}, "funcname": "ImGui_ImplVulkanH_SelectPhysicalDevice", - "location": "imgui_impl_vulkan:204", + "location": "imgui_impl_vulkan:207", "ov_cimguiname": "ImGui_ImplVulkanH_SelectPhysicalDevice", "ret": "VkPhysicalDevice", "signature": "(VkInstance)", @@ -1475,7 +1475,7 @@ "cimguiname": "ImGui_ImplVulkanH_SelectPresentMode", "defaults": {}, "funcname": "ImGui_ImplVulkanH_SelectPresentMode", - "location": "imgui_impl_vulkan:203", + "location": "imgui_impl_vulkan:206", "ov_cimguiname": "ImGui_ImplVulkanH_SelectPresentMode", "ret": "VkPresentModeKHR", "signature": "(VkPhysicalDevice,VkSurfaceKHR,const VkPresentModeKHR*,int)", @@ -1497,7 +1497,7 @@ "cimguiname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex", "defaults": {}, "funcname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex", - "location": "imgui_impl_vulkan:205", + "location": "imgui_impl_vulkan:208", "ov_cimguiname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex", "ret": "uint32_t", "signature": "(VkPhysicalDevice)", @@ -1535,7 +1535,7 @@ "cimguiname": "ImGui_ImplVulkanH_SelectSurfaceFormat", "defaults": {}, "funcname": "ImGui_ImplVulkanH_SelectSurfaceFormat", - "location": "imgui_impl_vulkan:202", + "location": "imgui_impl_vulkan:205", "ov_cimguiname": "ImGui_ImplVulkanH_SelectSurfaceFormat", "ret": "VkSurfaceFormatKHR", "signature": "(VkPhysicalDevice,VkSurfaceKHR,const VkFormat*,int,VkColorSpaceKHR)", @@ -1553,7 +1553,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGui_ImplVulkanH_Window", - "location": "imgui_impl_vulkan:252", + "location": "imgui_impl_vulkan:255", + "namespace": "ImGui_ImplVulkanH_Window", "ov_cimguiname": "ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window", "signature": "()", "stname": "ImGui_ImplVulkanH_Window" @@ -1572,7 +1573,7 @@ "cimguiname": "ImGui_ImplVulkanH_Window_destroy", "defaults": {}, "destructor": true, - "location": "imgui_impl_vulkan:252", + "location": "imgui_impl_vulkan:255", "ov_cimguiname": "ImGui_ImplVulkanH_Window_destroy", "ret": "void", "signature": "(ImGui_ImplVulkanH_Window*)", @@ -1581,12 +1582,8 @@ ], "ImGui_ImplVulkan_AddTexture": [ { - "args": "(VkSampler sampler,VkImageView image_view,VkImageLayout image_layout)", + "args": "(VkImageView image_view,VkImageLayout image_layout)", "argsT": [ - { - "name": "sampler", - "type": "VkSampler" - }, { "name": "image_view", "type": "VkImageView" @@ -1596,16 +1593,16 @@ "type": "VkImageLayout" } ], - "argsoriginal": "(VkSampler sampler,VkImageView image_view,VkImageLayout image_layout)", - "call_args": "(sampler,image_view,image_layout)", - "call_args_old": "(sampler,image_view,image_layout)", + "argsoriginal": "(VkImageView image_view,VkImageLayout image_layout)", + "call_args": "(image_view,image_layout)", + "call_args_old": "(image_view,image_layout)", "cimguiname": "ImGui_ImplVulkan_AddTexture", "defaults": {}, "funcname": "ImGui_ImplVulkan_AddTexture", - "location": "imgui_impl_vulkan:158", + "location": "imgui_impl_vulkan:157", "ov_cimguiname": "ImGui_ImplVulkan_AddTexture", "ret": "VkDescriptorSet", - "signature": "(VkSampler,VkImageView,VkImageLayout)", + "signature": "(VkImageView,VkImageLayout)", "stname": "" } ], @@ -1624,7 +1621,7 @@ "cimguiname": "ImGui_ImplVulkan_CreateMainPipeline", "defaults": {}, "funcname": "ImGui_ImplVulkan_CreateMainPipeline", - "location": "imgui_impl_vulkan:150", + "location": "imgui_impl_vulkan:151", "ov_cimguiname": "ImGui_ImplVulkan_CreateMainPipeline", "ret": "void", "signature": "(const ImGui_ImplVulkan_PipelineInfo*)", @@ -1646,7 +1643,7 @@ "cimguiname": "ImGui_ImplVulkan_Init", "defaults": {}, "funcname": "ImGui_ImplVulkan_Init", - "location": "imgui_impl_vulkan:141", + "location": "imgui_impl_vulkan:142", "ov_cimguiname": "ImGui_ImplVulkan_Init", "ret": "bool", "signature": "(ImGui_ImplVulkan_InitInfo*)", @@ -1678,7 +1675,7 @@ "user_data": "nullptr" }, "funcname": "ImGui_ImplVulkan_LoadFunctions", - "location": "imgui_impl_vulkan:163", + "location": "imgui_impl_vulkan:166", "ov_cimguiname": "ImGui_ImplVulkan_LoadFunctions", "ret": "bool", "signature": "(uint32_t,PFN_vkVoidFunction(*loader_func)(const char* function_name,void*,void*)", @@ -1695,7 +1692,7 @@ "cimguiname": "ImGui_ImplVulkan_NewFrame", "defaults": {}, "funcname": "ImGui_ImplVulkan_NewFrame", - "location": "imgui_impl_vulkan:143", + "location": "imgui_impl_vulkan:144", "ov_cimguiname": "ImGui_ImplVulkan_NewFrame", "ret": "void", "signature": "()", @@ -1717,7 +1714,7 @@ "cimguiname": "ImGui_ImplVulkan_RemoveTexture", "defaults": {}, "funcname": "ImGui_ImplVulkan_RemoveTexture", - "location": "imgui_impl_vulkan:159", + "location": "imgui_impl_vulkan:158", "ov_cimguiname": "ImGui_ImplVulkan_RemoveTexture", "ret": "void", "signature": "(VkDescriptorSet)", @@ -1749,7 +1746,7 @@ "pipeline": "0ULL" }, "funcname": "ImGui_ImplVulkan_RenderDrawData", - "location": "imgui_impl_vulkan:144", + "location": "imgui_impl_vulkan:145", "ov_cimguiname": "ImGui_ImplVulkan_RenderDrawData", "ret": "void", "signature": "(ImDrawData*,VkCommandBuffer,VkPipeline)", @@ -1771,7 +1768,7 @@ "cimguiname": "ImGui_ImplVulkan_SetMinImageCount", "defaults": {}, "funcname": "ImGui_ImplVulkan_SetMinImageCount", - "location": "imgui_impl_vulkan:145", + "location": "imgui_impl_vulkan:146", "ov_cimguiname": "ImGui_ImplVulkan_SetMinImageCount", "ret": "void", "signature": "(uint32_t)", @@ -1788,7 +1785,7 @@ "cimguiname": "ImGui_ImplVulkan_Shutdown", "defaults": {}, "funcname": "ImGui_ImplVulkan_Shutdown", - "location": "imgui_impl_vulkan:142", + "location": "imgui_impl_vulkan:143", "ov_cimguiname": "ImGui_ImplVulkan_Shutdown", "ret": "void", "signature": "()", @@ -1810,7 +1807,7 @@ "cimguiname": "ImGui_ImplVulkan_UpdateTexture", "defaults": {}, "funcname": "ImGui_ImplVulkan_UpdateTexture", - "location": "imgui_impl_vulkan:153", + "location": "imgui_impl_vulkan:154", "ov_cimguiname": "ImGui_ImplVulkan_UpdateTexture", "ret": "void", "signature": "(ImTextureData*)", diff --git a/generator/output/impl_definitions.lua b/generator/output/impl_definitions.lua index 425c8c7..f44ab8e 100644 --- a/generator/output/impl_definitions.lua +++ b/generator/output/impl_definitions.lua @@ -418,7 +418,7 @@ local t={ cimguiname="ImGui_ImplOpenGL2_CreateDeviceObjects", defaults={}, funcname="ImGui_ImplOpenGL2_CreateDeviceObjects", - location="imgui_impl_opengl2:37", + location="imgui_impl_opengl2:38", ov_cimguiname="ImGui_ImplOpenGL2_CreateDeviceObjects", ret="bool", signature="()", @@ -434,7 +434,7 @@ local t={ cimguiname="ImGui_ImplOpenGL2_DestroyDeviceObjects", defaults={}, funcname="ImGui_ImplOpenGL2_DestroyDeviceObjects", - location="imgui_impl_opengl2:38", + location="imgui_impl_opengl2:39", ov_cimguiname="ImGui_ImplOpenGL2_DestroyDeviceObjects", ret="void", signature="()", @@ -450,7 +450,7 @@ local t={ cimguiname="ImGui_ImplOpenGL2_Init", defaults={}, funcname="ImGui_ImplOpenGL2_Init", - location="imgui_impl_opengl2:31", + location="imgui_impl_opengl2:32", ov_cimguiname="ImGui_ImplOpenGL2_Init", ret="bool", signature="()", @@ -466,7 +466,7 @@ local t={ cimguiname="ImGui_ImplOpenGL2_NewFrame", defaults={}, funcname="ImGui_ImplOpenGL2_NewFrame", - location="imgui_impl_opengl2:33", + location="imgui_impl_opengl2:34", ov_cimguiname="ImGui_ImplOpenGL2_NewFrame", ret="void", signature="()", @@ -485,7 +485,7 @@ local t={ cimguiname="ImGui_ImplOpenGL2_RenderDrawData", defaults={}, funcname="ImGui_ImplOpenGL2_RenderDrawData", - location="imgui_impl_opengl2:34", + location="imgui_impl_opengl2:35", ov_cimguiname="ImGui_ImplOpenGL2_RenderDrawData", ret="void", signature="(ImDrawData*)", @@ -501,7 +501,7 @@ local t={ cimguiname="ImGui_ImplOpenGL2_Shutdown", defaults={}, funcname="ImGui_ImplOpenGL2_Shutdown", - location="imgui_impl_opengl2:32", + location="imgui_impl_opengl2:33", ov_cimguiname="ImGui_ImplOpenGL2_Shutdown", ret="void", signature="()", @@ -520,7 +520,7 @@ local t={ cimguiname="ImGui_ImplOpenGL2_UpdateTexture", defaults={}, funcname="ImGui_ImplOpenGL2_UpdateTexture", - location="imgui_impl_opengl2:41", + location="imgui_impl_opengl2:42", ov_cimguiname="ImGui_ImplOpenGL2_UpdateTexture", ret="void", signature="(ImTextureData*)", @@ -1179,7 +1179,7 @@ local t={ cimguiname="ImGui_ImplVulkanH_CreateOrResizeWindow", defaults={}, funcname="ImGui_ImplVulkanH_CreateOrResizeWindow", - location="imgui_impl_vulkan:200", + location="imgui_impl_vulkan:203", ov_cimguiname="ImGui_ImplVulkanH_CreateOrResizeWindow", ret="void", signature="(VkInstance,VkPhysicalDevice,VkDevice,ImGui_ImplVulkanH_Window*,uint32_t,const VkAllocationCallbacks*,int,int,uint32_t,VkImageUsageFlags)", @@ -1207,7 +1207,7 @@ local t={ cimguiname="ImGui_ImplVulkanH_DestroyWindow", defaults={}, funcname="ImGui_ImplVulkanH_DestroyWindow", - location="imgui_impl_vulkan:201", + location="imgui_impl_vulkan:204", ov_cimguiname="ImGui_ImplVulkanH_DestroyWindow", ret="void", signature="(VkInstance,VkDevice,ImGui_ImplVulkanH_Window*,const VkAllocationCallbacks*)", @@ -1226,7 +1226,7 @@ local t={ cimguiname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode", defaults={}, funcname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode", - location="imgui_impl_vulkan:206", + location="imgui_impl_vulkan:209", ov_cimguiname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode", ret="int", signature="(VkPresentModeKHR)", @@ -1245,7 +1245,7 @@ local t={ cimguiname="ImGui_ImplVulkanH_SelectPhysicalDevice", defaults={}, funcname="ImGui_ImplVulkanH_SelectPhysicalDevice", - location="imgui_impl_vulkan:204", + location="imgui_impl_vulkan:207", ov_cimguiname="ImGui_ImplVulkanH_SelectPhysicalDevice", ret="VkPhysicalDevice", signature="(VkInstance)", @@ -1273,7 +1273,7 @@ local t={ cimguiname="ImGui_ImplVulkanH_SelectPresentMode", defaults={}, funcname="ImGui_ImplVulkanH_SelectPresentMode", - location="imgui_impl_vulkan:203", + location="imgui_impl_vulkan:206", ov_cimguiname="ImGui_ImplVulkanH_SelectPresentMode", ret="VkPresentModeKHR", signature="(VkPhysicalDevice,VkSurfaceKHR,const VkPresentModeKHR*,int)", @@ -1292,7 +1292,7 @@ local t={ cimguiname="ImGui_ImplVulkanH_SelectQueueFamilyIndex", defaults={}, funcname="ImGui_ImplVulkanH_SelectQueueFamilyIndex", - location="imgui_impl_vulkan:205", + location="imgui_impl_vulkan:208", ov_cimguiname="ImGui_ImplVulkanH_SelectQueueFamilyIndex", ret="uint32_t", signature="(VkPhysicalDevice)", @@ -1323,7 +1323,7 @@ local t={ cimguiname="ImGui_ImplVulkanH_SelectSurfaceFormat", defaults={}, funcname="ImGui_ImplVulkanH_SelectSurfaceFormat", - location="imgui_impl_vulkan:202", + location="imgui_impl_vulkan:205", ov_cimguiname="ImGui_ImplVulkanH_SelectSurfaceFormat", ret="VkSurfaceFormatKHR", signature="(VkPhysicalDevice,VkSurfaceKHR,const VkFormat*,int,VkColorSpaceKHR)", @@ -1340,7 +1340,8 @@ local t={ constructor=true, defaults={}, funcname="ImGui_ImplVulkanH_Window", - location="imgui_impl_vulkan:252", + location="imgui_impl_vulkan:255", + namespace="ImGui_ImplVulkanH_Window", ov_cimguiname="ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window", signature="()", stname="ImGui_ImplVulkanH_Window"}, @@ -1356,7 +1357,7 @@ local t={ cimguiname="ImGui_ImplVulkanH_Window_destroy", defaults={}, destructor=true, - location="imgui_impl_vulkan:252", + location="imgui_impl_vulkan:255", ov_cimguiname="ImGui_ImplVulkanH_Window_destroy", ret="void", signature="(ImGui_ImplVulkanH_Window*)", @@ -1364,29 +1365,26 @@ local t={ ["(ImGui_ImplVulkanH_Window*)"]=nil}, ImGui_ImplVulkan_AddTexture={ [1]={ - args="(VkSampler sampler,VkImageView image_view,VkImageLayout image_layout)", + args="(VkImageView image_view,VkImageLayout image_layout)", argsT={ [1]={ - name="sampler", - type="VkSampler"}, - [2]={ name="image_view", type="VkImageView"}, - [3]={ + [2]={ name="image_layout", type="VkImageLayout"}}, - argsoriginal="(VkSampler sampler,VkImageView image_view,VkImageLayout image_layout)", - call_args="(sampler,image_view,image_layout)", - call_args_old="(sampler,image_view,image_layout)", + argsoriginal="(VkImageView image_view,VkImageLayout image_layout)", + call_args="(image_view,image_layout)", + call_args_old="(image_view,image_layout)", cimguiname="ImGui_ImplVulkan_AddTexture", defaults={}, funcname="ImGui_ImplVulkan_AddTexture", - location="imgui_impl_vulkan:158", + location="imgui_impl_vulkan:157", ov_cimguiname="ImGui_ImplVulkan_AddTexture", ret="VkDescriptorSet", - signature="(VkSampler,VkImageView,VkImageLayout)", + signature="(VkImageView,VkImageLayout)", stname=""}, - ["(VkSampler,VkImageView,VkImageLayout)"]=nil}, + ["(VkImageView,VkImageLayout)"]=nil}, ImGui_ImplVulkan_CreateMainPipeline={ [1]={ args="(const ImGui_ImplVulkan_PipelineInfo* info)", @@ -1400,7 +1398,7 @@ local t={ cimguiname="ImGui_ImplVulkan_CreateMainPipeline", defaults={}, funcname="ImGui_ImplVulkan_CreateMainPipeline", - location="imgui_impl_vulkan:150", + location="imgui_impl_vulkan:151", ov_cimguiname="ImGui_ImplVulkan_CreateMainPipeline", ret="void", signature="(const ImGui_ImplVulkan_PipelineInfo*)", @@ -1419,7 +1417,7 @@ local t={ cimguiname="ImGui_ImplVulkan_Init", defaults={}, funcname="ImGui_ImplVulkan_Init", - location="imgui_impl_vulkan:141", + location="imgui_impl_vulkan:142", ov_cimguiname="ImGui_ImplVulkan_Init", ret="bool", signature="(ImGui_ImplVulkan_InitInfo*)", @@ -1445,7 +1443,7 @@ local t={ defaults={ user_data="nullptr"}, funcname="ImGui_ImplVulkan_LoadFunctions", - location="imgui_impl_vulkan:163", + location="imgui_impl_vulkan:166", ov_cimguiname="ImGui_ImplVulkan_LoadFunctions", ret="bool", signature="(uint32_t,PFN_vkVoidFunction(*loader_func)(const char* function_name,void*,void*)", @@ -1461,7 +1459,7 @@ local t={ cimguiname="ImGui_ImplVulkan_NewFrame", defaults={}, funcname="ImGui_ImplVulkan_NewFrame", - location="imgui_impl_vulkan:143", + location="imgui_impl_vulkan:144", ov_cimguiname="ImGui_ImplVulkan_NewFrame", ret="void", signature="()", @@ -1480,7 +1478,7 @@ local t={ cimguiname="ImGui_ImplVulkan_RemoveTexture", defaults={}, funcname="ImGui_ImplVulkan_RemoveTexture", - location="imgui_impl_vulkan:159", + location="imgui_impl_vulkan:158", ov_cimguiname="ImGui_ImplVulkan_RemoveTexture", ret="void", signature="(VkDescriptorSet)", @@ -1506,7 +1504,7 @@ local t={ defaults={ pipeline="0ULL"}, funcname="ImGui_ImplVulkan_RenderDrawData", - location="imgui_impl_vulkan:144", + location="imgui_impl_vulkan:145", ov_cimguiname="ImGui_ImplVulkan_RenderDrawData", ret="void", signature="(ImDrawData*,VkCommandBuffer,VkPipeline)", @@ -1525,7 +1523,7 @@ local t={ cimguiname="ImGui_ImplVulkan_SetMinImageCount", defaults={}, funcname="ImGui_ImplVulkan_SetMinImageCount", - location="imgui_impl_vulkan:145", + location="imgui_impl_vulkan:146", ov_cimguiname="ImGui_ImplVulkan_SetMinImageCount", ret="void", signature="(uint32_t)", @@ -1541,7 +1539,7 @@ local t={ cimguiname="ImGui_ImplVulkan_Shutdown", defaults={}, funcname="ImGui_ImplVulkan_Shutdown", - location="imgui_impl_vulkan:142", + location="imgui_impl_vulkan:143", ov_cimguiname="ImGui_ImplVulkan_Shutdown", ret="void", signature="()", @@ -1560,7 +1558,7 @@ local t={ cimguiname="ImGui_ImplVulkan_UpdateTexture", defaults={}, funcname="ImGui_ImplVulkan_UpdateTexture", - location="imgui_impl_vulkan:153", + location="imgui_impl_vulkan:154", ov_cimguiname="ImGui_ImplVulkan_UpdateTexture", ret="void", signature="(ImTextureData*)", @@ -1633,7 +1631,7 @@ t.ImGui_ImplVulkanH_SelectQueueFamilyIndex["(VkPhysicalDevice)"]=t.ImGui_ImplVul t.ImGui_ImplVulkanH_SelectSurfaceFormat["(VkPhysicalDevice,VkSurfaceKHR,const VkFormat*,int,VkColorSpaceKHR)"]=t.ImGui_ImplVulkanH_SelectSurfaceFormat[1] t.ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window["()"]=t.ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window[1] t.ImGui_ImplVulkanH_Window_destroy["(ImGui_ImplVulkanH_Window*)"]=t.ImGui_ImplVulkanH_Window_destroy[1] -t.ImGui_ImplVulkan_AddTexture["(VkSampler,VkImageView,VkImageLayout)"]=t.ImGui_ImplVulkan_AddTexture[1] +t.ImGui_ImplVulkan_AddTexture["(VkImageView,VkImageLayout)"]=t.ImGui_ImplVulkan_AddTexture[1] t.ImGui_ImplVulkan_CreateMainPipeline["(const ImGui_ImplVulkan_PipelineInfo*)"]=t.ImGui_ImplVulkan_CreateMainPipeline[1] t.ImGui_ImplVulkan_Init["(ImGui_ImplVulkan_InitInfo*)"]=t.ImGui_ImplVulkan_Init[1] t.ImGui_ImplVulkan_LoadFunctions["(uint32_t,PFN_vkVoidFunction(*loader_func)(const char* function_name,void*,void*)"]=t.ImGui_ImplVulkan_LoadFunctions[1] diff --git a/generator/output/overloads.txt b/generator/output/overloads.txt index e6b6ad2..ee26f4b 100644 --- a/generator/output/overloads.txt +++ b/generator/output/overloads.txt @@ -243,8 +243,8 @@ igSelectable 2 1 bool igSelectable_Bool (const char*,bool,ImGuiSelectableFlags,const ImVec2) 2 bool igSelectable_BoolPtr (const char*,bool*,ImGuiSelectableFlags,const ImVec2) igSetItemKeyOwner 2 -1 void igSetItemKeyOwner_Nil (ImGuiKey) -2 void igSetItemKeyOwner_InputFlags (ImGuiKey,ImGuiInputFlags) +1 bool igSetItemKeyOwner_Nil (ImGuiKey) +2 bool igSetItemKeyOwner_InputFlags (ImGuiKey,ImGuiInputFlags) igSetScrollFromPosX 2 1 void igSetScrollFromPosX_Float (float,float) 2 void igSetScrollFromPosX_WindowPtr (ImGuiWindow*,float,float) diff --git a/generator/output/structs_and_enums.json b/generator/output/structs_and_enums.json index fd15464..44d21b7 100644 --- a/generator/output/structs_and_enums.json +++ b/generator/output/structs_and_enums.json @@ -6,11 +6,6 @@ "name": "ImDrawFlags_None", "value": "0" }, - { - "calc_value": 1, - "name": "ImDrawFlags_Closed", - "value": "1 << 0" - }, { "calc_value": 16, "name": "ImDrawFlags_RoundCornersTopLeft", @@ -36,6 +31,11 @@ "name": "ImDrawFlags_RoundCornersNone", "value": "1 << 8" }, + { + "calc_value": 512, + "name": "ImDrawFlags_Closed", + "value": "1 << 9" + }, { "calc_value": 48, "name": "ImDrawFlags_RoundCornersTop", @@ -70,6 +70,11 @@ "calc_value": 496, "name": "ImDrawFlags_RoundCornersMask_", "value": "ImDrawFlags_RoundCornersAll | ImDrawFlags_RoundCornersNone" + }, + { + "calc_value": 2147483663, + "name": "ImDrawFlags_InvalidMask_", + "value": "(ImDrawFlags)0x8000000F" } ], "ImDrawListFlags_": [ @@ -163,6 +168,11 @@ "calc_value": 8, "name": "ImFontFlags_LockBakedSizes", "value": "1 << 3" + }, + { + "calc_value": 16, + "name": "ImFontFlags_ImplicitRefSize", + "value": "1 << 4" } ], "ImGuiActivateFlags_": [ @@ -525,213 +535,218 @@ }, { "calc_value": 19, - "name": "ImGuiCol_SliderGrab", + "name": "ImGuiCol_CheckboxSelectedBg", "value": "19" }, { "calc_value": 20, - "name": "ImGuiCol_SliderGrabActive", + "name": "ImGuiCol_SliderGrab", "value": "20" }, { "calc_value": 21, - "name": "ImGuiCol_Button", + "name": "ImGuiCol_SliderGrabActive", "value": "21" }, { "calc_value": 22, - "name": "ImGuiCol_ButtonHovered", + "name": "ImGuiCol_Button", "value": "22" }, { "calc_value": 23, - "name": "ImGuiCol_ButtonActive", + "name": "ImGuiCol_ButtonHovered", "value": "23" }, { "calc_value": 24, - "name": "ImGuiCol_Header", + "name": "ImGuiCol_ButtonActive", "value": "24" }, { "calc_value": 25, - "name": "ImGuiCol_HeaderHovered", + "name": "ImGuiCol_Header", "value": "25" }, { "calc_value": 26, - "name": "ImGuiCol_HeaderActive", + "name": "ImGuiCol_HeaderHovered", "value": "26" }, { "calc_value": 27, - "name": "ImGuiCol_Separator", + "name": "ImGuiCol_HeaderActive", "value": "27" }, { "calc_value": 28, - "name": "ImGuiCol_SeparatorHovered", + "name": "ImGuiCol_Separator", "value": "28" }, { "calc_value": 29, - "name": "ImGuiCol_SeparatorActive", + "name": "ImGuiCol_SeparatorHovered", "value": "29" }, { "calc_value": 30, - "name": "ImGuiCol_ResizeGrip", + "name": "ImGuiCol_SeparatorActive", "value": "30" }, { "calc_value": 31, - "name": "ImGuiCol_ResizeGripHovered", + "name": "ImGuiCol_ResizeGrip", "value": "31" }, { "calc_value": 32, - "name": "ImGuiCol_ResizeGripActive", + "name": "ImGuiCol_ResizeGripHovered", "value": "32" }, { "calc_value": 33, - "name": "ImGuiCol_InputTextCursor", + "name": "ImGuiCol_ResizeGripActive", "value": "33" }, { "calc_value": 34, - "name": "ImGuiCol_TabHovered", + "name": "ImGuiCol_InputTextCursor", "value": "34" }, { "calc_value": 35, - "name": "ImGuiCol_Tab", + "name": "ImGuiCol_TabHovered", "value": "35" }, { "calc_value": 36, - "name": "ImGuiCol_TabSelected", + "name": "ImGuiCol_Tab", "value": "36" }, { "calc_value": 37, - "name": "ImGuiCol_TabSelectedOverline", + "name": "ImGuiCol_TabSelected", "value": "37" }, { "calc_value": 38, - "name": "ImGuiCol_TabDimmed", + "name": "ImGuiCol_TabSelectedOverline", "value": "38" }, { "calc_value": 39, - "name": "ImGuiCol_TabDimmedSelected", + "name": "ImGuiCol_TabDimmed", "value": "39" }, { "calc_value": 40, - "name": "ImGuiCol_TabDimmedSelectedOverline", + "name": "ImGuiCol_TabDimmedSelected", "value": "40" }, { "calc_value": 41, - "name": "ImGuiCol_PlotLines", + "name": "ImGuiCol_TabDimmedSelectedOverline", "value": "41" }, { "calc_value": 42, - "name": "ImGuiCol_PlotLinesHovered", + "name": "ImGuiCol_PlotLines", "value": "42" }, { "calc_value": 43, - "name": "ImGuiCol_PlotHistogram", + "name": "ImGuiCol_PlotLinesHovered", "value": "43" }, { "calc_value": 44, - "name": "ImGuiCol_PlotHistogramHovered", + "name": "ImGuiCol_PlotHistogram", "value": "44" }, { "calc_value": 45, - "name": "ImGuiCol_TableHeaderBg", + "name": "ImGuiCol_PlotHistogramHovered", "value": "45" }, { "calc_value": 46, - "name": "ImGuiCol_TableBorderStrong", + "name": "ImGuiCol_TableHeaderBg", "value": "46" }, { "calc_value": 47, - "name": "ImGuiCol_TableBorderLight", + "name": "ImGuiCol_TableBorderStrong", "value": "47" }, { "calc_value": 48, - "name": "ImGuiCol_TableRowBg", + "name": "ImGuiCol_TableBorderLight", "value": "48" }, { "calc_value": 49, - "name": "ImGuiCol_TableRowBgAlt", + "name": "ImGuiCol_TableRowBg", "value": "49" }, { "calc_value": 50, - "name": "ImGuiCol_TextLink", + "name": "ImGuiCol_TableRowBgAlt", "value": "50" }, { "calc_value": 51, - "name": "ImGuiCol_TextSelectedBg", + "name": "ImGuiCol_TextLink", "value": "51" }, { "calc_value": 52, - "name": "ImGuiCol_TreeLines", + "name": "ImGuiCol_TextSelectedBg", "value": "52" }, { "calc_value": 53, - "name": "ImGuiCol_DragDropTarget", + "name": "ImGuiCol_TreeLines", "value": "53" }, { "calc_value": 54, - "name": "ImGuiCol_DragDropTargetBg", + "name": "ImGuiCol_DragDropTarget", "value": "54" }, { "calc_value": 55, - "name": "ImGuiCol_UnsavedMarker", + "name": "ImGuiCol_DragDropTargetBg", "value": "55" }, { "calc_value": 56, - "name": "ImGuiCol_NavCursor", + "name": "ImGuiCol_UnsavedMarker", "value": "56" }, { "calc_value": 57, - "name": "ImGuiCol_NavWindowingHighlight", + "name": "ImGuiCol_NavCursor", "value": "57" }, { "calc_value": 58, - "name": "ImGuiCol_NavWindowingDimBg", + "name": "ImGuiCol_NavWindowingHighlight", "value": "58" }, { "calc_value": 59, - "name": "ImGuiCol_ModalWindowDimBg", + "name": "ImGuiCol_NavWindowingDimBg", "value": "59" }, { "calc_value": 60, - "name": "ImGuiCol_COUNT", + "name": "ImGuiCol_ModalWindowDimBg", "value": "60" + }, + { + "calc_value": 61, + "name": "ImGuiCol_COUNT", + "value": "61" } ], "ImGuiColorEditFlags_": [ @@ -2112,6 +2127,11 @@ "calc_value": 1024, "name": "ImGuiItemStatusFlags_HasShortcut", "value": "1 << 10" + }, + { + "calc_value": 2048, + "name": "ImGuiItemStatusFlags_EditedInternal", + "value": "1 << 11" } ], "ImGuiKey": [ @@ -4059,38 +4079,43 @@ }, { "calc_value": 35, - "name": "ImGuiStyleVar_ButtonTextAlign", + "name": "ImGuiStyleVar_DragDropTargetRounding", "value": "35" }, { "calc_value": 36, - "name": "ImGuiStyleVar_SelectableTextAlign", + "name": "ImGuiStyleVar_ButtonTextAlign", "value": "36" }, { "calc_value": 37, - "name": "ImGuiStyleVar_SeparatorSize", + "name": "ImGuiStyleVar_SelectableTextAlign", "value": "37" }, { "calc_value": 38, - "name": "ImGuiStyleVar_SeparatorTextBorderSize", + "name": "ImGuiStyleVar_SeparatorSize", "value": "38" }, { "calc_value": 39, - "name": "ImGuiStyleVar_SeparatorTextAlign", + "name": "ImGuiStyleVar_SeparatorTextBorderSize", "value": "39" }, { "calc_value": 40, - "name": "ImGuiStyleVar_SeparatorTextPadding", + "name": "ImGuiStyleVar_SeparatorTextAlign", "value": "40" }, { "calc_value": 41, - "name": "ImGuiStyleVar_COUNT", + "name": "ImGuiStyleVar_SeparatorTextPadding", "value": "41" + }, + { + "calc_value": 42, + "name": "ImGuiStyleVar_COUNT", + "value": "42" } ], "ImGuiTabBarFlagsPrivate_": [ @@ -5058,211 +5083,211 @@ "ImGuiSortDirection": "ImU8" }, "locations": { - "ImBitVector": "imgui_internal:659", - "ImColor": "imgui:2968", - "ImDrawChannel": "imgui:3224", - "ImDrawCmd": "imgui:3180", - "ImDrawCmdHeader": "imgui:3216", - "ImDrawData": "imgui:3445", - "ImDrawDataBuilder": "imgui_internal:887", - "ImDrawFlags_": "imgui:3249", - "ImDrawList": "imgui:3287", - "ImDrawListFlags_": "imgui:3269", - "ImDrawListSharedData": "imgui_internal:860", - "ImDrawListSplitter": "imgui:3232", - "ImDrawTextFlags_": "imgui_internal:432", - "ImDrawVert": "imgui:3201", - "ImFont": "imgui:3871", - "ImFontAtlas": "imgui:3672", - "ImFontAtlasBuilder": "imgui_internal:3879", - "ImFontAtlasFlags_": "imgui:3645", - "ImFontAtlasPostProcessData": "imgui_internal:3852", - "ImFontAtlasRect": "imgui:3635", - "ImFontAtlasRectEntry": "imgui_internal:3844", - "ImFontBaked": "imgui:3823", - "ImFontConfig": "imgui:3554", - "ImFontFlags_": "imgui:3858", - "ImFontGlyph": "imgui:3597", - "ImFontGlyphRangesBuilder": "imgui:3613", - "ImFontLoader": "imgui_internal:3793", - "ImFontStackData": "imgui_internal:895", - "ImGuiActivateFlags_": "imgui_internal:1684", - "ImGuiAxis": "imgui_internal:1143", - "ImGuiBackendFlags_": "imgui:1726", - "ImGuiBoxSelectState": "imgui_internal:1875", - "ImGuiButtonFlagsPrivate_": "imgui_internal:1031", - "ImGuiButtonFlags_": "imgui:1865", - "ImGuiChildFlags_": "imgui:1215", - "ImGuiCol_": "imgui:1737", - "ImGuiColorEditFlags_": "imgui:1877", - "ImGuiColorMod": "imgui_internal:915", - "ImGuiComboFlagsPrivate_": "imgui_internal:1057", - "ImGuiComboFlags_": "imgui:1377", - "ImGuiComboPreviewData": "imgui_internal:1157", - "ImGuiCond_": "imgui:1993", - "ImGuiConfigFlags_": "imgui:1707", - "ImGuiContext": "imgui_internal:2192", - "ImGuiContextHook": "imgui_internal:2175", - "ImGuiContextHookType": "imgui_internal:2173", - "ImGuiDataTypeInfo": "imgui_internal:941", - "ImGuiDataTypePrivate_": "imgui_internal:950", - "ImGuiDataTypeStorage": "imgui_internal:935", - "ImGuiDataType_": "imgui:1512", - "ImGuiDeactivatedItemData": "imgui_internal:1452", - "ImGuiDebugAllocEntry": "imgui_internal:2098", - "ImGuiDebugAllocInfo": "imgui_internal:2105", - "ImGuiDebugItemPathQuery": "imgui_internal:2144", - "ImGuiDebugLogFlags_": "imgui_internal:2075", - "ImGuiDir": "imgui:1530", - "ImGuiDragDropFlags_": "imgui:1483", - "ImGuiErrorRecoveryState": "imgui_internal:1408", - "ImGuiFocusRequestFlags_": "imgui_internal:1103", - "ImGuiFocusScopeData": "imgui_internal:1772", - "ImGuiFocusedFlags_": "imgui:1431", + "ImBitVector": "imgui_internal:665", + "ImColor": "imgui:2971", + "ImDrawChannel": "imgui:3221", + "ImDrawCmd": "imgui:3177", + "ImDrawCmdHeader": "imgui:3213", + "ImDrawData": "imgui:3452", + "ImDrawDataBuilder": "imgui_internal:893", + "ImDrawFlags_": "imgui:3245", + "ImDrawList": "imgui:3284", + "ImDrawListFlags_": "imgui:3266", + "ImDrawListSharedData": "imgui_internal:866", + "ImDrawListSplitter": "imgui:3229", + "ImDrawTextFlags_": "imgui_internal:435", + "ImDrawVert": "imgui:3198", + "ImFont": "imgui:3880", + "ImFontAtlas": "imgui:3680", + "ImFontAtlasBuilder": "imgui_internal:3894", + "ImFontAtlasFlags_": "imgui:3653", + "ImFontAtlasPostProcessData": "imgui_internal:3867", + "ImFontAtlasRect": "imgui:3643", + "ImFontAtlasRectEntry": "imgui_internal:3859", + "ImFontBaked": "imgui:3831", + "ImFontConfig": "imgui:3562", + "ImFontFlags_": "imgui:3866", + "ImFontGlyph": "imgui:3605", + "ImFontGlyphRangesBuilder": "imgui:3621", + "ImFontLoader": "imgui_internal:3808", + "ImFontStackData": "imgui_internal:901", + "ImGuiActivateFlags_": "imgui_internal:1693", + "ImGuiAxis": "imgui_internal:1150", + "ImGuiBackendFlags_": "imgui:1727", + "ImGuiBoxSelectState": "imgui_internal:1884", + "ImGuiButtonFlagsPrivate_": "imgui_internal:1038", + "ImGuiButtonFlags_": "imgui:1868", + "ImGuiChildFlags_": "imgui:1216", + "ImGuiCol_": "imgui:1738", + "ImGuiColorEditFlags_": "imgui:1880", + "ImGuiColorMod": "imgui_internal:921", + "ImGuiComboFlagsPrivate_": "imgui_internal:1064", + "ImGuiComboFlags_": "imgui:1378", + "ImGuiComboPreviewData": "imgui_internal:1164", + "ImGuiCond_": "imgui:1996", + "ImGuiConfigFlags_": "imgui:1708", + "ImGuiContext": "imgui_internal:2203", + "ImGuiContextHook": "imgui_internal:2186", + "ImGuiContextHookType": "imgui_internal:2184", + "ImGuiDataTypeInfo": "imgui_internal:947", + "ImGuiDataTypePrivate_": "imgui_internal:956", + "ImGuiDataTypeStorage": "imgui_internal:941", + "ImGuiDataType_": "imgui:1513", + "ImGuiDeactivatedItemData": "imgui_internal:1461", + "ImGuiDebugAllocEntry": "imgui_internal:2109", + "ImGuiDebugAllocInfo": "imgui_internal:2116", + "ImGuiDebugItemPathQuery": "imgui_internal:2155", + "ImGuiDebugLogFlags_": "imgui_internal:2086", + "ImGuiDir": "imgui:1531", + "ImGuiDragDropFlags_": "imgui:1484", + "ImGuiErrorRecoveryState": "imgui_internal:1416", + "ImGuiFocusRequestFlags_": "imgui_internal:1110", + "ImGuiFocusScopeData": "imgui_internal:1781", + "ImGuiFocusedFlags_": "imgui:1432", "ImGuiFreeTypeLoaderFlags_": "imgui_freetype:29", - "ImGuiGroupData": "imgui_internal:1170", - "ImGuiHoveredFlagsPrivate_": "imgui_internal:1014", - "ImGuiHoveredFlags_": "imgui:1445", - "ImGuiIDStackTool": "imgui_internal:2158", - "ImGuiIO": "imgui:2398", - "ImGuiInputEvent": "imgui_internal:1545", - "ImGuiInputEventAppFocused": "imgui_internal:1543", - "ImGuiInputEventKey": "imgui_internal:1541", - "ImGuiInputEventMouseButton": "imgui_internal:1540", - "ImGuiInputEventMousePos": "imgui_internal:1538", - "ImGuiInputEventMouseWheel": "imgui_internal:1539", - "ImGuiInputEventText": "imgui_internal:1542", - "ImGuiInputEventType": "imgui_internal:1515", - "ImGuiInputFlagsPrivate_": "imgui_internal:1611", - "ImGuiInputFlags_": "imgui:1683", - "ImGuiInputSource": "imgui_internal:1527", - "ImGuiInputTextCallbackData": "imgui:2639", - "ImGuiInputTextDeactivatedState": "imgui_internal:1207", - "ImGuiInputTextFlagsPrivate_": "imgui_internal:1022", - "ImGuiInputTextFlags_": "imgui:1250", - "ImGuiInputTextState": "imgui_internal:1229", - "ImGuiItemFlagsPrivate_": "imgui_internal:963", - "ImGuiItemFlags_": "imgui:1236", - "ImGuiItemStatusFlags_": "imgui_internal:987", - "ImGuiKey": "imgui:1554", - "ImGuiKeyData": "imgui:2390", - "ImGuiKeyOwnerData": "imgui_internal:1598", - "ImGuiKeyRoutingData": "imgui_internal:1572", - "ImGuiKeyRoutingTable": "imgui_internal:1586", - "ImGuiLastItemData": "imgui_internal:1377", - "ImGuiLayoutType_": "imgui_internal:1124", - "ImGuiListClipper": "imgui:2857", - "ImGuiListClipperData": "imgui_internal:1668", - "ImGuiListClipperFlags_": "imgui:2831", - "ImGuiListClipperRange": "imgui_internal:1655", - "ImGuiLocEntry": "imgui_internal:2046", - "ImGuiLocKey": "imgui_internal:2031", - "ImGuiLogFlags_": "imgui_internal:1131", - "ImGuiMenuColumns": "imgui_internal:1189", - "ImGuiMetricsConfig": "imgui_internal:2115", - "ImGuiMouseButton_": "imgui:1951", - "ImGuiMouseCursor_": "imgui:1961", - "ImGuiMouseSource": "imgui:1982", - "ImGuiMultiSelectFlags_": "imgui:3026", - "ImGuiMultiSelectIO": "imgui:3061", - "ImGuiMultiSelectState": "imgui_internal:1932", - "ImGuiMultiSelectTempData": "imgui_internal:1907", - "ImGuiNavItemData": "imgui_internal:1755", - "ImGuiNavLayer": "imgui_internal:1747", - "ImGuiNavMoveFlags_": "imgui_internal:1725", - "ImGuiNavRenderCursorFlags_": "imgui_internal:1710", - "ImGuiNextItemData": "imgui_internal:1355", - "ImGuiNextItemDataFlags_": "imgui_internal:1344", - "ImGuiNextWindowData": "imgui_internal:1317", - "ImGuiNextWindowDataFlags_": "imgui_internal:1300", - "ImGuiOldColumnData": "imgui_internal:1840", - "ImGuiOldColumnFlags_": "imgui_internal:1820", - "ImGuiOldColumns": "imgui_internal:1850", - "ImGuiOnceUponAFrame": "imgui:2720", - "ImGuiPayload": "imgui:2685", - "ImGuiPlatformIO": "imgui:3984", - "ImGuiPlatformImeData": "imgui:4041", - "ImGuiPlotType": "imgui_internal:1150", - "ImGuiPopupData": "imgui_internal:1472", - "ImGuiPopupFlags_": "imgui:1340", - "ImGuiPopupPositionPolicy": "imgui_internal:1464", - "ImGuiPtrOrIndex": "imgui_internal:1442", - "ImGuiScrollFlags_": "imgui_internal:1696", - "ImGuiSelectableFlagsPrivate_": "imgui_internal:1070", - "ImGuiSelectableFlags_": "imgui:1359", - "ImGuiSelectionBasicStorage": "imgui:3107", - "ImGuiSelectionExternalStorage": "imgui:3130", - "ImGuiSelectionRequest": "imgui:3081", - "ImGuiSelectionRequestType": "imgui:3073", - "ImGuiSeparatorFlags_": "imgui_internal:1092", - "ImGuiSettingsHandler": "imgui_internal:2011", - "ImGuiShrinkWidthItem": "imgui_internal:1435", - "ImGuiSizeCallbackData": "imgui:2676", - "ImGuiSliderFlagsPrivate_": "imgui_internal:1063", - "ImGuiSliderFlags_": "imgui:1934", - "ImGuiSortDirection": "imgui:1541", - "ImGuiStackLevelInfo": "imgui_internal:2133", - "ImGuiStorage": "imgui:2793", - "ImGuiStoragePair": "imgui:2776", - "ImGuiStyle": "imgui:2280", - "ImGuiStyleMod": "imgui_internal:922", - "ImGuiStyleVarInfo": "imgui_internal:906", - "ImGuiStyleVar_": "imgui:1817", - "ImGuiTabBar": "imgui_internal:2823", - "ImGuiTabBarFlagsPrivate_": "imgui_internal:2786", - "ImGuiTabBarFlags_": "imgui:1392", - "ImGuiTabItem": "imgui_internal:2804", - "ImGuiTabItemFlagsPrivate_": "imgui_internal:2794", - "ImGuiTabItemFlags_": "imgui:1416", - "ImGuiTable": "imgui_internal:2969", - "ImGuiTableBgTarget_": "imgui:2134", - "ImGuiTableCellData": "imgui_internal:2937", - "ImGuiTableColumn": "imgui_internal:2877", - "ImGuiTableColumnFlags_": "imgui:2081", - "ImGuiTableColumnSettings": "imgui_internal:3119", - "ImGuiTableColumnSortSpecs": "imgui:2156", - "ImGuiTableFlags_": "imgui:2028", - "ImGuiTableHeaderData": "imgui_internal:2946", - "ImGuiTableInstanceData": "imgui_internal:2956", - "ImGuiTableRowFlags_": "imgui:2119", - "ImGuiTableSettings": "imgui_internal:3143", - "ImGuiTableSortSpecs": "imgui:2146", - "ImGuiTableTempData": "imgui_internal:3095", - "ImGuiTextBuffer": "imgui:2755", - "ImGuiTextFilter": "imgui:2728", - "ImGuiTextFlags_": "imgui_internal:1110", - "ImGuiTextIndex": "imgui_internal:812", - "ImGuiTextRange": "imgui:2738", - "ImGuiTooltipFlags_": "imgui_internal:1116", - "ImGuiTreeNodeFlagsPrivate_": "imgui_internal:1083", - "ImGuiTreeNodeFlags_": "imgui:1301", - "ImGuiTreeNodeStackData": "imgui_internal:1396", - "ImGuiTypingSelectFlags_": "imgui_internal:1783", - "ImGuiTypingSelectRequest": "imgui_internal:1791", - "ImGuiTypingSelectState": "imgui_internal:1802", - "ImGuiViewport": "imgui:3958", - "ImGuiViewportFlags_": "imgui:3943", - "ImGuiViewportP": "imgui_internal:1960", - "ImGuiWindow": "imgui_internal:2651", - "ImGuiWindowBgClickFlags_": "imgui_internal:1294", - "ImGuiWindowFlags_": "imgui:1166", - "ImGuiWindowRefreshFlags_": "imgui_internal:1285", - "ImGuiWindowSettings": "imgui_internal:1997", - "ImGuiWindowStackData": "imgui_internal:1426", - "ImGuiWindowTempData": "imgui_internal:2597", - "ImRect": "imgui_internal:581", - "ImTextureData": "imgui:3510", - "ImTextureFormat": "imgui:3478", - "ImTextureRect": "imgui:3497", + "ImGuiGroupData": "imgui_internal:1177", + "ImGuiHoveredFlagsPrivate_": "imgui_internal:1021", + "ImGuiHoveredFlags_": "imgui:1446", + "ImGuiIDStackTool": "imgui_internal:2169", + "ImGuiIO": "imgui:2401", + "ImGuiInputEvent": "imgui_internal:1554", + "ImGuiInputEventAppFocused": "imgui_internal:1552", + "ImGuiInputEventKey": "imgui_internal:1550", + "ImGuiInputEventMouseButton": "imgui_internal:1549", + "ImGuiInputEventMousePos": "imgui_internal:1547", + "ImGuiInputEventMouseWheel": "imgui_internal:1548", + "ImGuiInputEventText": "imgui_internal:1551", + "ImGuiInputEventType": "imgui_internal:1524", + "ImGuiInputFlagsPrivate_": "imgui_internal:1620", + "ImGuiInputFlags_": "imgui:1684", + "ImGuiInputSource": "imgui_internal:1536", + "ImGuiInputTextCallbackData": "imgui:2642", + "ImGuiInputTextDeactivatedState": "imgui_internal:1215", + "ImGuiInputTextFlagsPrivate_": "imgui_internal:1029", + "ImGuiInputTextFlags_": "imgui:1251", + "ImGuiInputTextState": "imgui_internal:1237", + "ImGuiItemFlagsPrivate_": "imgui_internal:969", + "ImGuiItemFlags_": "imgui:1237", + "ImGuiItemStatusFlags_": "imgui_internal:993", + "ImGuiKey": "imgui:1555", + "ImGuiKeyData": "imgui:2393", + "ImGuiKeyOwnerData": "imgui_internal:1607", + "ImGuiKeyRoutingData": "imgui_internal:1581", + "ImGuiKeyRoutingTable": "imgui_internal:1595", + "ImGuiLastItemData": "imgui_internal:1385", + "ImGuiLayoutType_": "imgui_internal:1131", + "ImGuiListClipper": "imgui:2860", + "ImGuiListClipperData": "imgui_internal:1677", + "ImGuiListClipperFlags_": "imgui:2834", + "ImGuiListClipperRange": "imgui_internal:1664", + "ImGuiLocEntry": "imgui_internal:2057", + "ImGuiLocKey": "imgui_internal:2042", + "ImGuiLogFlags_": "imgui_internal:1138", + "ImGuiMenuColumns": "imgui_internal:1196", + "ImGuiMetricsConfig": "imgui_internal:2126", + "ImGuiMouseButton_": "imgui:1954", + "ImGuiMouseCursor_": "imgui:1964", + "ImGuiMouseSource": "imgui:1985", + "ImGuiMultiSelectFlags_": "imgui:3029", + "ImGuiMultiSelectIO": "imgui:3064", + "ImGuiMultiSelectState": "imgui_internal:1943", + "ImGuiMultiSelectTempData": "imgui_internal:1917", + "ImGuiNavItemData": "imgui_internal:1764", + "ImGuiNavLayer": "imgui_internal:1756", + "ImGuiNavMoveFlags_": "imgui_internal:1734", + "ImGuiNavRenderCursorFlags_": "imgui_internal:1719", + "ImGuiNextItemData": "imgui_internal:1363", + "ImGuiNextItemDataFlags_": "imgui_internal:1352", + "ImGuiNextWindowData": "imgui_internal:1325", + "ImGuiNextWindowDataFlags_": "imgui_internal:1308", + "ImGuiOldColumnData": "imgui_internal:1849", + "ImGuiOldColumnFlags_": "imgui_internal:1829", + "ImGuiOldColumns": "imgui_internal:1859", + "ImGuiOnceUponAFrame": "imgui:2723", + "ImGuiPayload": "imgui:2688", + "ImGuiPlatformIO": "imgui:3993", + "ImGuiPlatformImeData": "imgui:4056", + "ImGuiPlotType": "imgui_internal:1157", + "ImGuiPopupData": "imgui_internal:1481", + "ImGuiPopupFlags_": "imgui:1341", + "ImGuiPopupPositionPolicy": "imgui_internal:1473", + "ImGuiPtrOrIndex": "imgui_internal:1450", + "ImGuiScrollFlags_": "imgui_internal:1705", + "ImGuiSelectableFlagsPrivate_": "imgui_internal:1077", + "ImGuiSelectableFlags_": "imgui:1360", + "ImGuiSelectionBasicStorage": "imgui:3110", + "ImGuiSelectionExternalStorage": "imgui:3133", + "ImGuiSelectionRequest": "imgui:3084", + "ImGuiSelectionRequestType": "imgui:3076", + "ImGuiSeparatorFlags_": "imgui_internal:1099", + "ImGuiSettingsHandler": "imgui_internal:2022", + "ImGuiShrinkWidthItem": "imgui_internal:1443", + "ImGuiSizeCallbackData": "imgui:2679", + "ImGuiSliderFlagsPrivate_": "imgui_internal:1070", + "ImGuiSliderFlags_": "imgui:1937", + "ImGuiSortDirection": "imgui:1542", + "ImGuiStackLevelInfo": "imgui_internal:2144", + "ImGuiStorage": "imgui:2796", + "ImGuiStoragePair": "imgui:2779", + "ImGuiStyle": "imgui:2283", + "ImGuiStyleMod": "imgui_internal:928", + "ImGuiStyleVarInfo": "imgui_internal:912", + "ImGuiStyleVar_": "imgui:1819", + "ImGuiTabBar": "imgui_internal:2835", + "ImGuiTabBarFlagsPrivate_": "imgui_internal:2798", + "ImGuiTabBarFlags_": "imgui:1393", + "ImGuiTabItem": "imgui_internal:2816", + "ImGuiTabItemFlagsPrivate_": "imgui_internal:2806", + "ImGuiTabItemFlags_": "imgui:1417", + "ImGuiTable": "imgui_internal:2981", + "ImGuiTableBgTarget_": "imgui:2137", + "ImGuiTableCellData": "imgui_internal:2949", + "ImGuiTableColumn": "imgui_internal:2889", + "ImGuiTableColumnFlags_": "imgui:2084", + "ImGuiTableColumnSettings": "imgui_internal:3131", + "ImGuiTableColumnSortSpecs": "imgui:2159", + "ImGuiTableFlags_": "imgui:2031", + "ImGuiTableHeaderData": "imgui_internal:2958", + "ImGuiTableInstanceData": "imgui_internal:2968", + "ImGuiTableRowFlags_": "imgui:2122", + "ImGuiTableSettings": "imgui_internal:3155", + "ImGuiTableSortSpecs": "imgui:2149", + "ImGuiTableTempData": "imgui_internal:3107", + "ImGuiTextBuffer": "imgui:2758", + "ImGuiTextFilter": "imgui:2731", + "ImGuiTextFlags_": "imgui_internal:1117", + "ImGuiTextIndex": "imgui_internal:818", + "ImGuiTextRange": "imgui:2741", + "ImGuiTooltipFlags_": "imgui_internal:1123", + "ImGuiTreeNodeFlagsPrivate_": "imgui_internal:1090", + "ImGuiTreeNodeFlags_": "imgui:1302", + "ImGuiTreeNodeStackData": "imgui_internal:1404", + "ImGuiTypingSelectFlags_": "imgui_internal:1792", + "ImGuiTypingSelectRequest": "imgui_internal:1800", + "ImGuiTypingSelectState": "imgui_internal:1811", + "ImGuiViewport": "imgui:3967", + "ImGuiViewportFlags_": "imgui:3952", + "ImGuiViewportP": "imgui_internal:1971", + "ImGuiWindow": "imgui_internal:2663", + "ImGuiWindowBgClickFlags_": "imgui_internal:1302", + "ImGuiWindowFlags_": "imgui:1167", + "ImGuiWindowRefreshFlags_": "imgui_internal:1293", + "ImGuiWindowSettings": "imgui_internal:2008", + "ImGuiWindowStackData": "imgui_internal:1434", + "ImGuiWindowTempData": "imgui_internal:2609", + "ImRect": "imgui_internal:585", + "ImTextureData": "imgui:3517", + "ImTextureFormat": "imgui:3485", + "ImTextureRect": "imgui:3504", "ImTextureRef": "imgui:367", - "ImTextureStatus": "imgui:3485", - "ImVec1": "imgui_internal:555", + "ImTextureStatus": "imgui:3492", + "ImVec1": "imgui_internal:559", "ImVec2": "imgui:295", - "ImVec2i": "imgui_internal:563", - "ImVec2ih": "imgui_internal:571", + "ImVec2i": "imgui_internal:567", + "ImVec2ih": "imgui_internal:575", "ImVec4": "imgui:308", - "ImWcharClass": "imgui_internal:444", - "stbrp_context_opaque": "imgui_internal:3876" + "ImWcharClass": "imgui_internal:447", + "stbrp_context_opaque": "imgui_internal:3891" }, "nonPOD": { "ImBitArray": true, @@ -5362,6 +5387,7 @@ "ImVec2i": true, "ImVec4": true }, + "opaque_structs": [], "structs": { "ImBitVector": [ { @@ -6383,6 +6409,11 @@ "name": "UnclipRect", "type": "ImRect" }, + { + "name": "UnclipRects[2]", + "size": 2, + "type": "ImRect" + }, { "name": "BoxSelectRectPrev", "type": "ImRect" @@ -6519,6 +6550,10 @@ "name": "WithinEndChildID", "type": "ImGuiID" }, + { + "name": "WithinEndPopupID", + "type": "ImGuiID" + }, { "name": "TestEngine", "type": "void*" @@ -9049,10 +9084,6 @@ "name": "BackupCursorMaxPos", "type": "ImVec2" }, - { - "name": "LastSubmittedItem", - "type": "ImGuiSelectionUserData" - }, { "name": "BoxSelectId", "type": "ImGuiID" @@ -9427,6 +9458,18 @@ "name": "Renderer_RenderState", "type": "void*" }, + { + "name": "DrawCallback_ResetRenderState", + "type": "ImDrawCallback" + }, + { + "name": "DrawCallback_SetSamplerLinear", + "type": "ImDrawCallback" + }, + { + "name": "DrawCallback_SetSamplerNearest", + "type": "ImDrawCallback" + }, { "name": "Textures", "template_type": "ImTextureData*", @@ -9929,7 +9972,7 @@ }, { "name": "Colors[ImGuiCol_COUNT]", - "size": 60, + "size": 61, "type": "ImVec4" }, { diff --git a/generator/output/structs_and_enums.lua b/generator/output/structs_and_enums.lua index c626fca..176ac1e 100644 --- a/generator/output/structs_and_enums.lua +++ b/generator/output/structs_and_enums.lua @@ -6,29 +6,29 @@ local t={ name="ImDrawFlags_None", value="0"}, [2]={ - calc_value=1, - name="ImDrawFlags_Closed", - value="1 << 0"}, - [3]={ calc_value=16, name="ImDrawFlags_RoundCornersTopLeft", value="1 << 4"}, - [4]={ + [3]={ calc_value=32, name="ImDrawFlags_RoundCornersTopRight", value="1 << 5"}, - [5]={ + [4]={ calc_value=64, name="ImDrawFlags_RoundCornersBottomLeft", value="1 << 6"}, - [6]={ + [5]={ calc_value=128, name="ImDrawFlags_RoundCornersBottomRight", value="1 << 7"}, - [7]={ + [6]={ calc_value=256, name="ImDrawFlags_RoundCornersNone", value="1 << 8"}, + [7]={ + calc_value=512, + name="ImDrawFlags_Closed", + value="1 << 9"}, [8]={ calc_value=48, name="ImDrawFlags_RoundCornersTop", @@ -56,7 +56,11 @@ local t={ [14]={ calc_value=496, name="ImDrawFlags_RoundCornersMask_", - value="ImDrawFlags_RoundCornersAll | ImDrawFlags_RoundCornersNone"}}, + value="ImDrawFlags_RoundCornersAll | ImDrawFlags_RoundCornersNone"}, + [15]={ + calc_value=2147483663, + name="ImDrawFlags_InvalidMask_", + value="(ImDrawFlags)0x8000000F"}}, ImDrawListFlags_={ [1]={ calc_value=0, @@ -128,7 +132,11 @@ local t={ [4]={ calc_value=8, name="ImFontFlags_LockBakedSizes", - value="1 << 3"}}, + value="1 << 3"}, + [5]={ + calc_value=16, + name="ImFontFlags_ImplicitRefSize", + value="1 << 4"}}, ImGuiActivateFlags_={ [1]={ calc_value=0, @@ -414,172 +422,176 @@ local t={ value="18"}, [20]={ calc_value=19, - name="ImGuiCol_SliderGrab", + name="ImGuiCol_CheckboxSelectedBg", value="19"}, [21]={ calc_value=20, - name="ImGuiCol_SliderGrabActive", + name="ImGuiCol_SliderGrab", value="20"}, [22]={ calc_value=21, - name="ImGuiCol_Button", + name="ImGuiCol_SliderGrabActive", value="21"}, [23]={ calc_value=22, - name="ImGuiCol_ButtonHovered", + name="ImGuiCol_Button", value="22"}, [24]={ calc_value=23, - name="ImGuiCol_ButtonActive", + name="ImGuiCol_ButtonHovered", value="23"}, [25]={ calc_value=24, - name="ImGuiCol_Header", + name="ImGuiCol_ButtonActive", value="24"}, [26]={ calc_value=25, - name="ImGuiCol_HeaderHovered", + name="ImGuiCol_Header", value="25"}, [27]={ calc_value=26, - name="ImGuiCol_HeaderActive", + name="ImGuiCol_HeaderHovered", value="26"}, [28]={ calc_value=27, - name="ImGuiCol_Separator", + name="ImGuiCol_HeaderActive", value="27"}, [29]={ calc_value=28, - name="ImGuiCol_SeparatorHovered", + name="ImGuiCol_Separator", value="28"}, [30]={ calc_value=29, - name="ImGuiCol_SeparatorActive", + name="ImGuiCol_SeparatorHovered", value="29"}, [31]={ calc_value=30, - name="ImGuiCol_ResizeGrip", + name="ImGuiCol_SeparatorActive", value="30"}, [32]={ calc_value=31, - name="ImGuiCol_ResizeGripHovered", + name="ImGuiCol_ResizeGrip", value="31"}, [33]={ calc_value=32, - name="ImGuiCol_ResizeGripActive", + name="ImGuiCol_ResizeGripHovered", value="32"}, [34]={ calc_value=33, - name="ImGuiCol_InputTextCursor", + name="ImGuiCol_ResizeGripActive", value="33"}, [35]={ calc_value=34, - name="ImGuiCol_TabHovered", + name="ImGuiCol_InputTextCursor", value="34"}, [36]={ calc_value=35, - name="ImGuiCol_Tab", + name="ImGuiCol_TabHovered", value="35"}, [37]={ calc_value=36, - name="ImGuiCol_TabSelected", + name="ImGuiCol_Tab", value="36"}, [38]={ calc_value=37, - name="ImGuiCol_TabSelectedOverline", + name="ImGuiCol_TabSelected", value="37"}, [39]={ calc_value=38, - name="ImGuiCol_TabDimmed", + name="ImGuiCol_TabSelectedOverline", value="38"}, [40]={ calc_value=39, - name="ImGuiCol_TabDimmedSelected", + name="ImGuiCol_TabDimmed", value="39"}, [41]={ calc_value=40, - name="ImGuiCol_TabDimmedSelectedOverline", + name="ImGuiCol_TabDimmedSelected", value="40"}, [42]={ calc_value=41, - name="ImGuiCol_PlotLines", + name="ImGuiCol_TabDimmedSelectedOverline", value="41"}, [43]={ calc_value=42, - name="ImGuiCol_PlotLinesHovered", + name="ImGuiCol_PlotLines", value="42"}, [44]={ calc_value=43, - name="ImGuiCol_PlotHistogram", + name="ImGuiCol_PlotLinesHovered", value="43"}, [45]={ calc_value=44, - name="ImGuiCol_PlotHistogramHovered", + name="ImGuiCol_PlotHistogram", value="44"}, [46]={ calc_value=45, - name="ImGuiCol_TableHeaderBg", + name="ImGuiCol_PlotHistogramHovered", value="45"}, [47]={ calc_value=46, - name="ImGuiCol_TableBorderStrong", + name="ImGuiCol_TableHeaderBg", value="46"}, [48]={ calc_value=47, - name="ImGuiCol_TableBorderLight", + name="ImGuiCol_TableBorderStrong", value="47"}, [49]={ calc_value=48, - name="ImGuiCol_TableRowBg", + name="ImGuiCol_TableBorderLight", value="48"}, [50]={ calc_value=49, - name="ImGuiCol_TableRowBgAlt", + name="ImGuiCol_TableRowBg", value="49"}, [51]={ calc_value=50, - name="ImGuiCol_TextLink", + name="ImGuiCol_TableRowBgAlt", value="50"}, [52]={ calc_value=51, - name="ImGuiCol_TextSelectedBg", + name="ImGuiCol_TextLink", value="51"}, [53]={ calc_value=52, - name="ImGuiCol_TreeLines", + name="ImGuiCol_TextSelectedBg", value="52"}, [54]={ calc_value=53, - name="ImGuiCol_DragDropTarget", + name="ImGuiCol_TreeLines", value="53"}, [55]={ calc_value=54, - name="ImGuiCol_DragDropTargetBg", + name="ImGuiCol_DragDropTarget", value="54"}, [56]={ calc_value=55, - name="ImGuiCol_UnsavedMarker", + name="ImGuiCol_DragDropTargetBg", value="55"}, [57]={ calc_value=56, - name="ImGuiCol_NavCursor", + name="ImGuiCol_UnsavedMarker", value="56"}, [58]={ calc_value=57, - name="ImGuiCol_NavWindowingHighlight", + name="ImGuiCol_NavCursor", value="57"}, [59]={ calc_value=58, - name="ImGuiCol_NavWindowingDimBg", + name="ImGuiCol_NavWindowingHighlight", value="58"}, [60]={ calc_value=59, - name="ImGuiCol_ModalWindowDimBg", + name="ImGuiCol_NavWindowingDimBg", value="59"}, [61]={ calc_value=60, + name="ImGuiCol_ModalWindowDimBg", + value="60"}, + [62]={ + calc_value=61, name="ImGuiCol_COUNT", - value="60"}}, + value="61"}}, ImGuiColorEditFlags_={ [1]={ calc_value=0, @@ -1668,7 +1680,11 @@ local t={ [12]={ calc_value=1024, name="ImGuiItemStatusFlags_HasShortcut", - value="1 << 10"}}, + value="1 << 10"}, + [13]={ + calc_value=2048, + name="ImGuiItemStatusFlags_EditedInternal", + value="1 << 11"}}, ImGuiKey={ [1]={ calc_value=0, @@ -3210,32 +3226,36 @@ local t={ value="34"}, [36]={ calc_value=35, - name="ImGuiStyleVar_ButtonTextAlign", + name="ImGuiStyleVar_DragDropTargetRounding", value="35"}, [37]={ calc_value=36, - name="ImGuiStyleVar_SelectableTextAlign", + name="ImGuiStyleVar_ButtonTextAlign", value="36"}, [38]={ calc_value=37, - name="ImGuiStyleVar_SeparatorSize", + name="ImGuiStyleVar_SelectableTextAlign", value="37"}, [39]={ calc_value=38, - name="ImGuiStyleVar_SeparatorTextBorderSize", + name="ImGuiStyleVar_SeparatorSize", value="38"}, [40]={ calc_value=39, - name="ImGuiStyleVar_SeparatorTextAlign", + name="ImGuiStyleVar_SeparatorTextBorderSize", value="39"}, [41]={ calc_value=40, - name="ImGuiStyleVar_SeparatorTextPadding", + name="ImGuiStyleVar_SeparatorTextAlign", value="40"}, [42]={ calc_value=41, + name="ImGuiStyleVar_SeparatorTextPadding", + value="41"}, + [43]={ + calc_value=42, name="ImGuiStyleVar_COUNT", - value="41"}}, + value="42"}}, ImGuiTabBarFlagsPrivate_={ [1]={ calc_value=1048576, @@ -3996,211 +4016,211 @@ local t={ ImGuiMouseSource="int", ImGuiSortDirection="ImU8"}, locations={ - ImBitVector="imgui_internal:659", - ImColor="imgui:2968", - ImDrawChannel="imgui:3224", - ImDrawCmd="imgui:3180", - ImDrawCmdHeader="imgui:3216", - ImDrawData="imgui:3445", - ImDrawDataBuilder="imgui_internal:887", - ImDrawFlags_="imgui:3249", - ImDrawList="imgui:3287", - ImDrawListFlags_="imgui:3269", - ImDrawListSharedData="imgui_internal:860", - ImDrawListSplitter="imgui:3232", - ImDrawTextFlags_="imgui_internal:432", - ImDrawVert="imgui:3201", - ImFont="imgui:3871", - ImFontAtlas="imgui:3672", - ImFontAtlasBuilder="imgui_internal:3879", - ImFontAtlasFlags_="imgui:3645", - ImFontAtlasPostProcessData="imgui_internal:3852", - ImFontAtlasRect="imgui:3635", - ImFontAtlasRectEntry="imgui_internal:3844", - ImFontBaked="imgui:3823", - ImFontConfig="imgui:3554", - ImFontFlags_="imgui:3858", - ImFontGlyph="imgui:3597", - ImFontGlyphRangesBuilder="imgui:3613", - ImFontLoader="imgui_internal:3793", - ImFontStackData="imgui_internal:895", - ImGuiActivateFlags_="imgui_internal:1684", - ImGuiAxis="imgui_internal:1143", - ImGuiBackendFlags_="imgui:1726", - ImGuiBoxSelectState="imgui_internal:1875", - ImGuiButtonFlagsPrivate_="imgui_internal:1031", - ImGuiButtonFlags_="imgui:1865", - ImGuiChildFlags_="imgui:1215", - ImGuiCol_="imgui:1737", - ImGuiColorEditFlags_="imgui:1877", - ImGuiColorMod="imgui_internal:915", - ImGuiComboFlagsPrivate_="imgui_internal:1057", - ImGuiComboFlags_="imgui:1377", - ImGuiComboPreviewData="imgui_internal:1157", - ImGuiCond_="imgui:1993", - ImGuiConfigFlags_="imgui:1707", - ImGuiContext="imgui_internal:2192", - ImGuiContextHook="imgui_internal:2175", - ImGuiContextHookType="imgui_internal:2173", - ImGuiDataTypeInfo="imgui_internal:941", - ImGuiDataTypePrivate_="imgui_internal:950", - ImGuiDataTypeStorage="imgui_internal:935", - ImGuiDataType_="imgui:1512", - ImGuiDeactivatedItemData="imgui_internal:1452", - ImGuiDebugAllocEntry="imgui_internal:2098", - ImGuiDebugAllocInfo="imgui_internal:2105", - ImGuiDebugItemPathQuery="imgui_internal:2144", - ImGuiDebugLogFlags_="imgui_internal:2075", - ImGuiDir="imgui:1530", - ImGuiDragDropFlags_="imgui:1483", - ImGuiErrorRecoveryState="imgui_internal:1408", - ImGuiFocusRequestFlags_="imgui_internal:1103", - ImGuiFocusScopeData="imgui_internal:1772", - ImGuiFocusedFlags_="imgui:1431", + ImBitVector="imgui_internal:665", + ImColor="imgui:2971", + ImDrawChannel="imgui:3221", + ImDrawCmd="imgui:3177", + ImDrawCmdHeader="imgui:3213", + ImDrawData="imgui:3452", + ImDrawDataBuilder="imgui_internal:893", + ImDrawFlags_="imgui:3245", + ImDrawList="imgui:3284", + ImDrawListFlags_="imgui:3266", + ImDrawListSharedData="imgui_internal:866", + ImDrawListSplitter="imgui:3229", + ImDrawTextFlags_="imgui_internal:435", + ImDrawVert="imgui:3198", + ImFont="imgui:3880", + ImFontAtlas="imgui:3680", + ImFontAtlasBuilder="imgui_internal:3894", + ImFontAtlasFlags_="imgui:3653", + ImFontAtlasPostProcessData="imgui_internal:3867", + ImFontAtlasRect="imgui:3643", + ImFontAtlasRectEntry="imgui_internal:3859", + ImFontBaked="imgui:3831", + ImFontConfig="imgui:3562", + ImFontFlags_="imgui:3866", + ImFontGlyph="imgui:3605", + ImFontGlyphRangesBuilder="imgui:3621", + ImFontLoader="imgui_internal:3808", + ImFontStackData="imgui_internal:901", + ImGuiActivateFlags_="imgui_internal:1693", + ImGuiAxis="imgui_internal:1150", + ImGuiBackendFlags_="imgui:1727", + ImGuiBoxSelectState="imgui_internal:1884", + ImGuiButtonFlagsPrivate_="imgui_internal:1038", + ImGuiButtonFlags_="imgui:1868", + ImGuiChildFlags_="imgui:1216", + ImGuiCol_="imgui:1738", + ImGuiColorEditFlags_="imgui:1880", + ImGuiColorMod="imgui_internal:921", + ImGuiComboFlagsPrivate_="imgui_internal:1064", + ImGuiComboFlags_="imgui:1378", + ImGuiComboPreviewData="imgui_internal:1164", + ImGuiCond_="imgui:1996", + ImGuiConfigFlags_="imgui:1708", + ImGuiContext="imgui_internal:2203", + ImGuiContextHook="imgui_internal:2186", + ImGuiContextHookType="imgui_internal:2184", + ImGuiDataTypeInfo="imgui_internal:947", + ImGuiDataTypePrivate_="imgui_internal:956", + ImGuiDataTypeStorage="imgui_internal:941", + ImGuiDataType_="imgui:1513", + ImGuiDeactivatedItemData="imgui_internal:1461", + ImGuiDebugAllocEntry="imgui_internal:2109", + ImGuiDebugAllocInfo="imgui_internal:2116", + ImGuiDebugItemPathQuery="imgui_internal:2155", + ImGuiDebugLogFlags_="imgui_internal:2086", + ImGuiDir="imgui:1531", + ImGuiDragDropFlags_="imgui:1484", + ImGuiErrorRecoveryState="imgui_internal:1416", + ImGuiFocusRequestFlags_="imgui_internal:1110", + ImGuiFocusScopeData="imgui_internal:1781", + ImGuiFocusedFlags_="imgui:1432", ImGuiFreeTypeLoaderFlags_="imgui_freetype:29", - ImGuiGroupData="imgui_internal:1170", - ImGuiHoveredFlagsPrivate_="imgui_internal:1014", - ImGuiHoveredFlags_="imgui:1445", - ImGuiIDStackTool="imgui_internal:2158", - ImGuiIO="imgui:2398", - ImGuiInputEvent="imgui_internal:1545", - ImGuiInputEventAppFocused="imgui_internal:1543", - ImGuiInputEventKey="imgui_internal:1541", - ImGuiInputEventMouseButton="imgui_internal:1540", - ImGuiInputEventMousePos="imgui_internal:1538", - ImGuiInputEventMouseWheel="imgui_internal:1539", - ImGuiInputEventText="imgui_internal:1542", - ImGuiInputEventType="imgui_internal:1515", - ImGuiInputFlagsPrivate_="imgui_internal:1611", - ImGuiInputFlags_="imgui:1683", - ImGuiInputSource="imgui_internal:1527", - ImGuiInputTextCallbackData="imgui:2639", - ImGuiInputTextDeactivatedState="imgui_internal:1207", - ImGuiInputTextFlagsPrivate_="imgui_internal:1022", - ImGuiInputTextFlags_="imgui:1250", - ImGuiInputTextState="imgui_internal:1229", - ImGuiItemFlagsPrivate_="imgui_internal:963", - ImGuiItemFlags_="imgui:1236", - ImGuiItemStatusFlags_="imgui_internal:987", - ImGuiKey="imgui:1554", - ImGuiKeyData="imgui:2390", - ImGuiKeyOwnerData="imgui_internal:1598", - ImGuiKeyRoutingData="imgui_internal:1572", - ImGuiKeyRoutingTable="imgui_internal:1586", - ImGuiLastItemData="imgui_internal:1377", - ImGuiLayoutType_="imgui_internal:1124", - ImGuiListClipper="imgui:2857", - ImGuiListClipperData="imgui_internal:1668", - ImGuiListClipperFlags_="imgui:2831", - ImGuiListClipperRange="imgui_internal:1655", - ImGuiLocEntry="imgui_internal:2046", - ImGuiLocKey="imgui_internal:2031", - ImGuiLogFlags_="imgui_internal:1131", - ImGuiMenuColumns="imgui_internal:1189", - ImGuiMetricsConfig="imgui_internal:2115", - ImGuiMouseButton_="imgui:1951", - ImGuiMouseCursor_="imgui:1961", - ImGuiMouseSource="imgui:1982", - ImGuiMultiSelectFlags_="imgui:3026", - ImGuiMultiSelectIO="imgui:3061", - ImGuiMultiSelectState="imgui_internal:1932", - ImGuiMultiSelectTempData="imgui_internal:1907", - ImGuiNavItemData="imgui_internal:1755", - ImGuiNavLayer="imgui_internal:1747", - ImGuiNavMoveFlags_="imgui_internal:1725", - ImGuiNavRenderCursorFlags_="imgui_internal:1710", - ImGuiNextItemData="imgui_internal:1355", - ImGuiNextItemDataFlags_="imgui_internal:1344", - ImGuiNextWindowData="imgui_internal:1317", - ImGuiNextWindowDataFlags_="imgui_internal:1300", - ImGuiOldColumnData="imgui_internal:1840", - ImGuiOldColumnFlags_="imgui_internal:1820", - ImGuiOldColumns="imgui_internal:1850", - ImGuiOnceUponAFrame="imgui:2720", - ImGuiPayload="imgui:2685", - ImGuiPlatformIO="imgui:3984", - ImGuiPlatformImeData="imgui:4041", - ImGuiPlotType="imgui_internal:1150", - ImGuiPopupData="imgui_internal:1472", - ImGuiPopupFlags_="imgui:1340", - ImGuiPopupPositionPolicy="imgui_internal:1464", - ImGuiPtrOrIndex="imgui_internal:1442", - ImGuiScrollFlags_="imgui_internal:1696", - ImGuiSelectableFlagsPrivate_="imgui_internal:1070", - ImGuiSelectableFlags_="imgui:1359", - ImGuiSelectionBasicStorage="imgui:3107", - ImGuiSelectionExternalStorage="imgui:3130", - ImGuiSelectionRequest="imgui:3081", - ImGuiSelectionRequestType="imgui:3073", - ImGuiSeparatorFlags_="imgui_internal:1092", - ImGuiSettingsHandler="imgui_internal:2011", - ImGuiShrinkWidthItem="imgui_internal:1435", - ImGuiSizeCallbackData="imgui:2676", - ImGuiSliderFlagsPrivate_="imgui_internal:1063", - ImGuiSliderFlags_="imgui:1934", - ImGuiSortDirection="imgui:1541", - ImGuiStackLevelInfo="imgui_internal:2133", - ImGuiStorage="imgui:2793", - ImGuiStoragePair="imgui:2776", - ImGuiStyle="imgui:2280", - ImGuiStyleMod="imgui_internal:922", - ImGuiStyleVarInfo="imgui_internal:906", - ImGuiStyleVar_="imgui:1817", - ImGuiTabBar="imgui_internal:2823", - ImGuiTabBarFlagsPrivate_="imgui_internal:2786", - ImGuiTabBarFlags_="imgui:1392", - ImGuiTabItem="imgui_internal:2804", - ImGuiTabItemFlagsPrivate_="imgui_internal:2794", - ImGuiTabItemFlags_="imgui:1416", - ImGuiTable="imgui_internal:2969", - ImGuiTableBgTarget_="imgui:2134", - ImGuiTableCellData="imgui_internal:2937", - ImGuiTableColumn="imgui_internal:2877", - ImGuiTableColumnFlags_="imgui:2081", - ImGuiTableColumnSettings="imgui_internal:3119", - ImGuiTableColumnSortSpecs="imgui:2156", - ImGuiTableFlags_="imgui:2028", - ImGuiTableHeaderData="imgui_internal:2946", - ImGuiTableInstanceData="imgui_internal:2956", - ImGuiTableRowFlags_="imgui:2119", - ImGuiTableSettings="imgui_internal:3143", - ImGuiTableSortSpecs="imgui:2146", - ImGuiTableTempData="imgui_internal:3095", - ImGuiTextBuffer="imgui:2755", - ImGuiTextFilter="imgui:2728", - ImGuiTextFlags_="imgui_internal:1110", - ImGuiTextIndex="imgui_internal:812", - ImGuiTextRange="imgui:2738", - ImGuiTooltipFlags_="imgui_internal:1116", - ImGuiTreeNodeFlagsPrivate_="imgui_internal:1083", - ImGuiTreeNodeFlags_="imgui:1301", - ImGuiTreeNodeStackData="imgui_internal:1396", - ImGuiTypingSelectFlags_="imgui_internal:1783", - ImGuiTypingSelectRequest="imgui_internal:1791", - ImGuiTypingSelectState="imgui_internal:1802", - ImGuiViewport="imgui:3958", - ImGuiViewportFlags_="imgui:3943", - ImGuiViewportP="imgui_internal:1960", - ImGuiWindow="imgui_internal:2651", - ImGuiWindowBgClickFlags_="imgui_internal:1294", - ImGuiWindowFlags_="imgui:1166", - ImGuiWindowRefreshFlags_="imgui_internal:1285", - ImGuiWindowSettings="imgui_internal:1997", - ImGuiWindowStackData="imgui_internal:1426", - ImGuiWindowTempData="imgui_internal:2597", - ImRect="imgui_internal:581", - ImTextureData="imgui:3510", - ImTextureFormat="imgui:3478", - ImTextureRect="imgui:3497", + ImGuiGroupData="imgui_internal:1177", + ImGuiHoveredFlagsPrivate_="imgui_internal:1021", + ImGuiHoveredFlags_="imgui:1446", + ImGuiIDStackTool="imgui_internal:2169", + ImGuiIO="imgui:2401", + ImGuiInputEvent="imgui_internal:1554", + ImGuiInputEventAppFocused="imgui_internal:1552", + ImGuiInputEventKey="imgui_internal:1550", + ImGuiInputEventMouseButton="imgui_internal:1549", + ImGuiInputEventMousePos="imgui_internal:1547", + ImGuiInputEventMouseWheel="imgui_internal:1548", + ImGuiInputEventText="imgui_internal:1551", + ImGuiInputEventType="imgui_internal:1524", + ImGuiInputFlagsPrivate_="imgui_internal:1620", + ImGuiInputFlags_="imgui:1684", + ImGuiInputSource="imgui_internal:1536", + ImGuiInputTextCallbackData="imgui:2642", + ImGuiInputTextDeactivatedState="imgui_internal:1215", + ImGuiInputTextFlagsPrivate_="imgui_internal:1029", + ImGuiInputTextFlags_="imgui:1251", + ImGuiInputTextState="imgui_internal:1237", + ImGuiItemFlagsPrivate_="imgui_internal:969", + ImGuiItemFlags_="imgui:1237", + ImGuiItemStatusFlags_="imgui_internal:993", + ImGuiKey="imgui:1555", + ImGuiKeyData="imgui:2393", + ImGuiKeyOwnerData="imgui_internal:1607", + ImGuiKeyRoutingData="imgui_internal:1581", + ImGuiKeyRoutingTable="imgui_internal:1595", + ImGuiLastItemData="imgui_internal:1385", + ImGuiLayoutType_="imgui_internal:1131", + ImGuiListClipper="imgui:2860", + ImGuiListClipperData="imgui_internal:1677", + ImGuiListClipperFlags_="imgui:2834", + ImGuiListClipperRange="imgui_internal:1664", + ImGuiLocEntry="imgui_internal:2057", + ImGuiLocKey="imgui_internal:2042", + ImGuiLogFlags_="imgui_internal:1138", + ImGuiMenuColumns="imgui_internal:1196", + ImGuiMetricsConfig="imgui_internal:2126", + ImGuiMouseButton_="imgui:1954", + ImGuiMouseCursor_="imgui:1964", + ImGuiMouseSource="imgui:1985", + ImGuiMultiSelectFlags_="imgui:3029", + ImGuiMultiSelectIO="imgui:3064", + ImGuiMultiSelectState="imgui_internal:1943", + ImGuiMultiSelectTempData="imgui_internal:1917", + ImGuiNavItemData="imgui_internal:1764", + ImGuiNavLayer="imgui_internal:1756", + ImGuiNavMoveFlags_="imgui_internal:1734", + ImGuiNavRenderCursorFlags_="imgui_internal:1719", + ImGuiNextItemData="imgui_internal:1363", + ImGuiNextItemDataFlags_="imgui_internal:1352", + ImGuiNextWindowData="imgui_internal:1325", + ImGuiNextWindowDataFlags_="imgui_internal:1308", + ImGuiOldColumnData="imgui_internal:1849", + ImGuiOldColumnFlags_="imgui_internal:1829", + ImGuiOldColumns="imgui_internal:1859", + ImGuiOnceUponAFrame="imgui:2723", + ImGuiPayload="imgui:2688", + ImGuiPlatformIO="imgui:3993", + ImGuiPlatformImeData="imgui:4056", + ImGuiPlotType="imgui_internal:1157", + ImGuiPopupData="imgui_internal:1481", + ImGuiPopupFlags_="imgui:1341", + ImGuiPopupPositionPolicy="imgui_internal:1473", + ImGuiPtrOrIndex="imgui_internal:1450", + ImGuiScrollFlags_="imgui_internal:1705", + ImGuiSelectableFlagsPrivate_="imgui_internal:1077", + ImGuiSelectableFlags_="imgui:1360", + ImGuiSelectionBasicStorage="imgui:3110", + ImGuiSelectionExternalStorage="imgui:3133", + ImGuiSelectionRequest="imgui:3084", + ImGuiSelectionRequestType="imgui:3076", + ImGuiSeparatorFlags_="imgui_internal:1099", + ImGuiSettingsHandler="imgui_internal:2022", + ImGuiShrinkWidthItem="imgui_internal:1443", + ImGuiSizeCallbackData="imgui:2679", + ImGuiSliderFlagsPrivate_="imgui_internal:1070", + ImGuiSliderFlags_="imgui:1937", + ImGuiSortDirection="imgui:1542", + ImGuiStackLevelInfo="imgui_internal:2144", + ImGuiStorage="imgui:2796", + ImGuiStoragePair="imgui:2779", + ImGuiStyle="imgui:2283", + ImGuiStyleMod="imgui_internal:928", + ImGuiStyleVarInfo="imgui_internal:912", + ImGuiStyleVar_="imgui:1819", + ImGuiTabBar="imgui_internal:2835", + ImGuiTabBarFlagsPrivate_="imgui_internal:2798", + ImGuiTabBarFlags_="imgui:1393", + ImGuiTabItem="imgui_internal:2816", + ImGuiTabItemFlagsPrivate_="imgui_internal:2806", + ImGuiTabItemFlags_="imgui:1417", + ImGuiTable="imgui_internal:2981", + ImGuiTableBgTarget_="imgui:2137", + ImGuiTableCellData="imgui_internal:2949", + ImGuiTableColumn="imgui_internal:2889", + ImGuiTableColumnFlags_="imgui:2084", + ImGuiTableColumnSettings="imgui_internal:3131", + ImGuiTableColumnSortSpecs="imgui:2159", + ImGuiTableFlags_="imgui:2031", + ImGuiTableHeaderData="imgui_internal:2958", + ImGuiTableInstanceData="imgui_internal:2968", + ImGuiTableRowFlags_="imgui:2122", + ImGuiTableSettings="imgui_internal:3155", + ImGuiTableSortSpecs="imgui:2149", + ImGuiTableTempData="imgui_internal:3107", + ImGuiTextBuffer="imgui:2758", + ImGuiTextFilter="imgui:2731", + ImGuiTextFlags_="imgui_internal:1117", + ImGuiTextIndex="imgui_internal:818", + ImGuiTextRange="imgui:2741", + ImGuiTooltipFlags_="imgui_internal:1123", + ImGuiTreeNodeFlagsPrivate_="imgui_internal:1090", + ImGuiTreeNodeFlags_="imgui:1302", + ImGuiTreeNodeStackData="imgui_internal:1404", + ImGuiTypingSelectFlags_="imgui_internal:1792", + ImGuiTypingSelectRequest="imgui_internal:1800", + ImGuiTypingSelectState="imgui_internal:1811", + ImGuiViewport="imgui:3967", + ImGuiViewportFlags_="imgui:3952", + ImGuiViewportP="imgui_internal:1971", + ImGuiWindow="imgui_internal:2663", + ImGuiWindowBgClickFlags_="imgui_internal:1302", + ImGuiWindowFlags_="imgui:1167", + ImGuiWindowRefreshFlags_="imgui_internal:1293", + ImGuiWindowSettings="imgui_internal:2008", + ImGuiWindowStackData="imgui_internal:1434", + ImGuiWindowTempData="imgui_internal:2609", + ImRect="imgui_internal:585", + ImTextureData="imgui:3517", + ImTextureFormat="imgui:3485", + ImTextureRect="imgui:3504", ImTextureRef="imgui:367", - ImTextureStatus="imgui:3485", - ImVec1="imgui_internal:555", + ImTextureStatus="imgui:3492", + ImVec1="imgui_internal:559", ImVec2="imgui:295", - ImVec2i="imgui_internal:563", - ImVec2ih="imgui_internal:571", + ImVec2i="imgui_internal:567", + ImVec2ih="imgui_internal:575", ImVec4="imgui:308", - ImWcharClass="imgui_internal:444", - stbrp_context_opaque="imgui_internal:3876"}, + ImWcharClass="imgui_internal:447", + stbrp_context_opaque="imgui_internal:3891"}, nonPOD={ ImBitArray=true, ImColor=true, @@ -4297,6 +4317,7 @@ local t={ ImVec2=true, ImVec2i=true, ImVec4=true}, + opaque_structs={}, structs={ ImBitVector={ [1]={ @@ -5065,9 +5086,13 @@ local t={ name="UnclipRect", type="ImRect"}, [14]={ - name="BoxSelectRectPrev", + name="UnclipRects[2]", + size=2, type="ImRect"}, [15]={ + name="BoxSelectRectPrev", + type="ImRect"}, + [16]={ name="BoxSelectRectCurr", type="ImRect"}}, ImGuiColorMod={ @@ -5166,919 +5191,922 @@ local t={ name="WithinEndChildID", type="ImGuiID"}, [23]={ + name="WithinEndPopupID", + type="ImGuiID"}, + [24]={ name="TestEngine", type="void*"}, - [24]={ + [25]={ name="InputEventsQueue", template_type="ImGuiInputEvent", type="ImVector_ImGuiInputEvent"}, - [25]={ + [26]={ name="InputEventsTrail", template_type="ImGuiInputEvent", type="ImVector_ImGuiInputEvent"}, - [26]={ + [27]={ name="InputEventsNextMouseSource", type="ImGuiMouseSource"}, - [27]={ + [28]={ name="InputEventsNextEventId", type="ImU32"}, - [28]={ + [29]={ name="Windows", template_type="ImGuiWindow*", type="ImVector_ImGuiWindowPtr"}, - [29]={ + [30]={ name="WindowsFocusOrder", template_type="ImGuiWindow*", type="ImVector_ImGuiWindowPtr"}, - [30]={ + [31]={ name="WindowsTempSortBuffer", template_type="ImGuiWindow*", type="ImVector_ImGuiWindowPtr"}, - [31]={ + [32]={ name="CurrentWindowStack", template_type="ImGuiWindowStackData", type="ImVector_ImGuiWindowStackData"}, - [32]={ + [33]={ name="WindowsById", type="ImGuiStorage"}, - [33]={ + [34]={ name="WindowsActiveCount", type="int"}, - [34]={ + [35]={ name="WindowsBorderHoverPadding", type="float"}, - [35]={ + [36]={ name="DebugBreakInWindow", type="ImGuiID"}, - [36]={ + [37]={ name="CurrentWindow", type="ImGuiWindow*"}, - [37]={ + [38]={ name="HoveredWindow", type="ImGuiWindow*"}, - [38]={ + [39]={ name="HoveredWindowUnderMovingWindow", type="ImGuiWindow*"}, - [39]={ + [40]={ name="HoveredWindowBeforeClear", type="ImGuiWindow*"}, - [40]={ + [41]={ name="MovingWindow", type="ImGuiWindow*"}, - [41]={ + [42]={ name="WheelingWindow", type="ImGuiWindow*"}, - [42]={ + [43]={ name="WheelingWindowRefMousePos", type="ImVec2"}, - [43]={ + [44]={ name="WheelingWindowStartFrame", type="int"}, - [44]={ + [45]={ name="WheelingWindowScrolledFrame", type="int"}, - [45]={ + [46]={ name="WheelingWindowReleaseTimer", type="float"}, - [46]={ + [47]={ name="WheelingWindowWheelRemainder", type="ImVec2"}, - [47]={ + [48]={ name="WheelingAxisAvg", type="ImVec2"}, - [48]={ + [49]={ name="DebugDrawIdConflictsId", type="ImGuiID"}, - [49]={ + [50]={ name="DebugHookIdInfoId", type="ImGuiID"}, - [50]={ + [51]={ name="HoveredId", type="ImGuiID"}, - [51]={ + [52]={ name="HoveredIdPreviousFrame", type="ImGuiID"}, - [52]={ + [53]={ name="HoveredIdPreviousFrameItemCount", type="int"}, - [53]={ + [54]={ name="HoveredIdTimer", type="float"}, - [54]={ + [55]={ name="HoveredIdNotActiveTimer", type="float"}, - [55]={ + [56]={ name="HoveredIdAllowOverlap", type="bool"}, - [56]={ + [57]={ name="HoveredIdIsDisabled", type="bool"}, - [57]={ + [58]={ name="ItemUnclipByLog", type="bool"}, - [58]={ + [59]={ name="ActiveId", type="ImGuiID"}, - [59]={ + [60]={ name="ActiveIdIsAlive", type="ImGuiID"}, - [60]={ + [61]={ name="ActiveIdTimer", type="float"}, - [61]={ + [62]={ name="ActiveIdIsJustActivated", type="bool"}, - [62]={ + [63]={ name="ActiveIdAllowOverlap", type="bool"}, - [63]={ + [64]={ name="ActiveIdNoClearOnFocusLoss", type="bool"}, - [64]={ + [65]={ name="ActiveIdHasBeenPressedBefore", type="bool"}, - [65]={ + [66]={ name="ActiveIdHasBeenEditedBefore", type="bool"}, - [66]={ + [67]={ name="ActiveIdHasBeenEditedThisFrame", type="bool"}, - [67]={ + [68]={ name="ActiveIdFromShortcut", type="bool"}, - [68]={ + [69]={ name="ActiveIdMouseButton", type="ImS8"}, - [69]={ + [70]={ name="ActiveIdDisabledId", type="ImGuiID"}, - [70]={ + [71]={ name="ActiveIdClickOffset", type="ImVec2"}, - [71]={ + [72]={ name="ActiveIdSource", type="ImGuiInputSource"}, - [72]={ + [73]={ name="ActiveIdWindow", type="ImGuiWindow*"}, - [73]={ + [74]={ name="ActiveIdPreviousFrame", type="ImGuiID"}, - [74]={ + [75]={ name="DeactivatedItemData", type="ImGuiDeactivatedItemData"}, - [75]={ + [76]={ name="ActiveIdValueOnActivation", type="ImGuiDataTypeStorage"}, - [76]={ + [77]={ name="LastActiveId", type="ImGuiID"}, - [77]={ + [78]={ name="LastActiveIdTimer", type="float"}, - [78]={ + [79]={ name="LastKeyModsChangeTime", type="double"}, - [79]={ + [80]={ name="LastKeyModsChangeFromNoneTime", type="double"}, - [80]={ + [81]={ name="LastKeyboardKeyPressTime", type="double"}, - [81]={ + [82]={ name="KeysMayBeCharInput", type="ImBitArrayForNamedKeys"}, - [82]={ + [83]={ name="KeysOwnerData[ImGuiKey_NamedKey_COUNT]", size=155, type="ImGuiKeyOwnerData"}, - [83]={ + [84]={ name="KeysRoutingTable", type="ImGuiKeyRoutingTable"}, - [84]={ + [85]={ name="ActiveIdUsingNavDirMask", type="ImU32"}, - [85]={ + [86]={ name="ActiveIdUsingAllKeyboardKeys", type="bool"}, - [86]={ + [87]={ name="DebugBreakInShortcutRouting", type="ImGuiKeyChord"}, - [87]={ + [88]={ name="CurrentFocusScopeId", type="ImGuiID"}, - [88]={ + [89]={ name="CurrentItemFlags", type="ImGuiItemFlags"}, - [89]={ + [90]={ name="DebugLocateId", type="ImGuiID"}, - [90]={ + [91]={ name="NextItemData", type="ImGuiNextItemData"}, - [91]={ + [92]={ name="LastItemData", type="ImGuiLastItemData"}, - [92]={ + [93]={ name="NextWindowData", type="ImGuiNextWindowData"}, - [93]={ + [94]={ name="DebugShowGroupRects", type="bool"}, - [94]={ + [95]={ name="GcCompactAll", type="bool"}, - [95]={ + [96]={ name="DebugFlashStyleColorIdx", type="ImGuiCol"}, - [96]={ + [97]={ name="ColorStack", template_type="ImGuiColorMod", type="ImVector_ImGuiColorMod"}, - [97]={ + [98]={ name="StyleVarStack", template_type="ImGuiStyleMod", type="ImVector_ImGuiStyleMod"}, - [98]={ + [99]={ name="FontStack", template_type="ImFontStackData", type="ImVector_ImFontStackData"}, - [99]={ + [100]={ name="FocusScopeStack", template_type="ImGuiFocusScopeData", type="ImVector_ImGuiFocusScopeData"}, - [100]={ + [101]={ name="ItemFlagsStack", template_type="ImGuiItemFlags", type="ImVector_ImGuiItemFlags"}, - [101]={ + [102]={ name="GroupStack", template_type="ImGuiGroupData", type="ImVector_ImGuiGroupData"}, - [102]={ + [103]={ name="OpenPopupStack", template_type="ImGuiPopupData", type="ImVector_ImGuiPopupData"}, - [103]={ + [104]={ name="BeginPopupStack", template_type="ImGuiPopupData", type="ImVector_ImGuiPopupData"}, - [104]={ + [105]={ name="TreeNodeStack", template_type="ImGuiTreeNodeStackData", type="ImVector_ImGuiTreeNodeStackData"}, - [105]={ + [106]={ name="Viewports", template_type="ImGuiViewportP*", type="ImVector_ImGuiViewportPPtr"}, - [106]={ + [107]={ name="NavCursorVisible", type="bool"}, - [107]={ + [108]={ name="NavHighlightItemUnderNav", type="bool"}, - [108]={ + [109]={ name="NavMousePosDirty", type="bool"}, - [109]={ + [110]={ name="NavIdIsAlive", type="bool"}, - [110]={ + [111]={ name="NavId", type="ImGuiID"}, - [111]={ + [112]={ name="NavWindow", type="ImGuiWindow*"}, - [112]={ + [113]={ name="NavFocusScopeId", type="ImGuiID"}, - [113]={ + [114]={ name="NavLayer", type="ImGuiNavLayer"}, - [114]={ + [115]={ name="NavIdItemFlags", type="ImGuiItemFlags"}, - [115]={ + [116]={ name="NavActivateId", type="ImGuiID"}, - [116]={ + [117]={ name="NavActivateDownId", type="ImGuiID"}, - [117]={ + [118]={ name="NavActivatePressedId", type="ImGuiID"}, - [118]={ + [119]={ name="NavActivateFlags", type="ImGuiActivateFlags"}, - [119]={ + [120]={ name="NavFocusRoute", template_type="ImGuiFocusScopeData", type="ImVector_ImGuiFocusScopeData"}, - [120]={ + [121]={ name="NavHighlightActivatedId", type="ImGuiID"}, - [121]={ + [122]={ name="NavHighlightActivatedTimer", type="float"}, - [122]={ + [123]={ name="NavOpenContextMenuItemId", type="ImGuiID"}, - [123]={ + [124]={ name="NavOpenContextMenuWindowId", type="ImGuiID"}, - [124]={ + [125]={ name="NavNextActivateId", type="ImGuiID"}, - [125]={ + [126]={ name="NavNextActivateFlags", type="ImGuiActivateFlags"}, - [126]={ + [127]={ name="NavInputSource", type="ImGuiInputSource"}, - [127]={ + [128]={ name="NavLastValidSelectionUserData", type="ImGuiSelectionUserData"}, - [128]={ + [129]={ name="NavCursorHideFrames", type="ImS8"}, - [129]={ + [130]={ name="NavAnyRequest", type="bool"}, - [130]={ + [131]={ name="NavInitRequest", type="bool"}, - [131]={ + [132]={ name="NavInitRequestFromMove", type="bool"}, - [132]={ + [133]={ name="NavInitResult", type="ImGuiNavItemData"}, - [133]={ + [134]={ name="NavMoveSubmitted", type="bool"}, - [134]={ + [135]={ name="NavMoveScoringItems", type="bool"}, - [135]={ + [136]={ name="NavMoveForwardToNextFrame", type="bool"}, - [136]={ + [137]={ name="NavMoveFlags", type="ImGuiNavMoveFlags"}, - [137]={ + [138]={ name="NavMoveScrollFlags", type="ImGuiScrollFlags"}, - [138]={ + [139]={ name="NavMoveKeyMods", type="ImGuiKeyChord"}, - [139]={ + [140]={ name="NavMoveDir", type="ImGuiDir"}, - [140]={ + [141]={ name="NavMoveDirForDebug", type="ImGuiDir"}, - [141]={ + [142]={ name="NavMoveClipDir", type="ImGuiDir"}, - [142]={ + [143]={ name="NavScoringRect", type="ImRect"}, - [143]={ + [144]={ name="NavScoringNoClipRect", type="ImRect"}, - [144]={ + [145]={ name="NavScoringDebugCount", type="int"}, - [145]={ + [146]={ name="NavTabbingDir", type="int"}, - [146]={ + [147]={ name="NavTabbingCounter", type="int"}, - [147]={ + [148]={ name="NavMoveResultLocal", type="ImGuiNavItemData"}, - [148]={ + [149]={ name="NavMoveResultLocalVisible", type="ImGuiNavItemData"}, - [149]={ + [150]={ name="NavMoveResultOther", type="ImGuiNavItemData"}, - [150]={ + [151]={ name="NavTabbingResultFirst", type="ImGuiNavItemData"}, - [151]={ + [152]={ name="NavJustMovedFromFocusScopeId", type="ImGuiID"}, - [152]={ + [153]={ name="NavJustMovedToId", type="ImGuiID"}, - [153]={ + [154]={ name="NavJustMovedToFocusScopeId", type="ImGuiID"}, - [154]={ + [155]={ name="NavJustMovedToKeyMods", type="ImGuiKeyChord"}, - [155]={ + [156]={ name="NavJustMovedToIsTabbing", type="bool"}, - [156]={ + [157]={ name="NavJustMovedToHasSelectionData", type="bool"}, - [157]={ + [158]={ name="ConfigNavEnableTabbing", type="bool"}, - [158]={ + [159]={ name="ConfigNavWindowingWithGamepad", type="bool"}, - [159]={ + [160]={ name="ConfigNavWindowingKeyNext", type="ImGuiKeyChord"}, - [160]={ + [161]={ name="ConfigNavWindowingKeyPrev", type="ImGuiKeyChord"}, - [161]={ + [162]={ name="NavWindowingTarget", type="ImGuiWindow*"}, - [162]={ + [163]={ name="NavWindowingTargetAnim", type="ImGuiWindow*"}, - [163]={ + [164]={ name="NavWindowingListWindow", type="ImGuiWindow*"}, - [164]={ + [165]={ name="NavWindowingTimer", type="float"}, - [165]={ + [166]={ name="NavWindowingHighlightAlpha", type="float"}, - [166]={ + [167]={ name="NavWindowingInputSource", type="ImGuiInputSource"}, - [167]={ + [168]={ name="NavWindowingToggleLayer", type="bool"}, - [168]={ + [169]={ name="NavWindowingToggleKey", type="ImGuiKey"}, - [169]={ + [170]={ name="NavWindowingAccumDeltaPos", type="ImVec2"}, - [170]={ + [171]={ name="NavWindowingAccumDeltaSize", type="ImVec2"}, - [171]={ + [172]={ name="DimBgRatio", type="float"}, - [172]={ + [173]={ name="DragDropActive", type="bool"}, - [173]={ + [174]={ name="DragDropWithinSource", type="bool"}, - [174]={ + [175]={ name="DragDropWithinTarget", type="bool"}, - [175]={ + [176]={ name="DragDropSourceFlags", type="ImGuiDragDropFlags"}, - [176]={ + [177]={ name="DragDropSourceFrameCount", type="int"}, - [177]={ + [178]={ name="DragDropMouseButton", type="int"}, - [178]={ + [179]={ name="DragDropPayload", type="ImGuiPayload"}, - [179]={ + [180]={ name="DragDropTargetRect", type="ImRect"}, - [180]={ + [181]={ name="DragDropTargetClipRect", type="ImRect"}, - [181]={ + [182]={ name="DragDropTargetId", type="ImGuiID"}, - [182]={ + [183]={ name="DragDropTargetFullViewport", type="ImGuiID"}, - [183]={ + [184]={ name="DragDropAcceptFlagsCurr", type="ImGuiDragDropFlags"}, - [184]={ + [185]={ name="DragDropAcceptFlagsPrev", type="ImGuiDragDropFlags"}, - [185]={ + [186]={ name="DragDropAcceptIdCurrRectSurface", type="float"}, - [186]={ + [187]={ name="DragDropAcceptIdCurr", type="ImGuiID"}, - [187]={ + [188]={ name="DragDropAcceptIdPrev", type="ImGuiID"}, - [188]={ + [189]={ name="DragDropAcceptFrameCount", type="int"}, - [189]={ + [190]={ name="DragDropHoldJustPressedId", type="ImGuiID"}, - [190]={ + [191]={ name="DragDropPayloadBufHeap", template_type="unsigned char", type="ImVector_unsigned_char"}, - [191]={ + [192]={ name="DragDropPayloadBufLocal[16]", size=16, type="unsigned char"}, - [192]={ + [193]={ name="ClipperTempDataStacked", type="int"}, - [193]={ + [194]={ name="ClipperTempData", template_type="ImGuiListClipperData", type="ImVector_ImGuiListClipperData"}, - [194]={ + [195]={ name="CurrentTable", type="ImGuiTable*"}, - [195]={ + [196]={ name="DebugBreakInTable", type="ImGuiID"}, - [196]={ + [197]={ name="TablesTempDataStacked", type="int"}, - [197]={ + [198]={ name="TablesTempData", template_type="ImGuiTableTempData", type="ImVector_ImGuiTableTempData"}, - [198]={ + [199]={ name="Tables", template_type="ImGuiTable", type="ImPool_ImGuiTable"}, - [199]={ + [200]={ name="TablesLastTimeActive", template_type="float", type="ImVector_float"}, - [200]={ + [201]={ name="DrawChannelsTempMergeBuffer", template_type="ImDrawChannel", type="ImVector_ImDrawChannel"}, - [201]={ + [202]={ name="CurrentTabBar", type="ImGuiTabBar*"}, - [202]={ + [203]={ name="TabBars", template_type="ImGuiTabBar", type="ImPool_ImGuiTabBar"}, - [203]={ + [204]={ name="CurrentTabBarStack", template_type="ImGuiPtrOrIndex", type="ImVector_ImGuiPtrOrIndex"}, - [204]={ + [205]={ name="ShrinkWidthBuffer", template_type="ImGuiShrinkWidthItem", type="ImVector_ImGuiShrinkWidthItem"}, - [205]={ + [206]={ name="BoxSelectState", type="ImGuiBoxSelectState"}, - [206]={ + [207]={ name="CurrentMultiSelect", type="ImGuiMultiSelectTempData*"}, - [207]={ + [208]={ name="MultiSelectTempDataStacked", type="int"}, - [208]={ + [209]={ name="MultiSelectTempData", template_type="ImGuiMultiSelectTempData", type="ImVector_ImGuiMultiSelectTempData"}, - [209]={ + [210]={ name="MultiSelectStorage", template_type="ImGuiMultiSelectState", type="ImPool_ImGuiMultiSelectState"}, - [210]={ + [211]={ name="HoverItemDelayId", type="ImGuiID"}, - [211]={ + [212]={ name="HoverItemDelayIdPreviousFrame", type="ImGuiID"}, - [212]={ + [213]={ name="HoverItemDelayTimer", type="float"}, - [213]={ + [214]={ name="HoverItemDelayClearTimer", type="float"}, - [214]={ + [215]={ name="HoverItemUnlockedStationaryId", type="ImGuiID"}, - [215]={ + [216]={ name="HoverWindowUnlockedStationaryId", type="ImGuiID"}, - [216]={ + [217]={ name="MouseCursor", type="ImGuiMouseCursor"}, - [217]={ + [218]={ name="MouseStationaryTimer", type="float"}, - [218]={ + [219]={ name="MouseLastValidPos", type="ImVec2"}, - [219]={ + [220]={ name="InputTextState", type="ImGuiInputTextState"}, - [220]={ + [221]={ name="InputTextLineIndex", type="ImGuiTextIndex"}, - [221]={ + [222]={ name="InputTextDeactivatedState", type="ImGuiInputTextDeactivatedState"}, - [222]={ + [223]={ name="InputTextPasswordFontBackupBaked", type="ImFontBaked"}, - [223]={ + [224]={ name="InputTextPasswordFontBackupFlags", type="ImFontFlags"}, - [224]={ + [225]={ name="InputTextReactivateId", type="ImGuiID"}, - [225]={ + [226]={ name="TempInputId", type="ImGuiID"}, - [226]={ + [227]={ name="DataTypeZeroValue", type="ImGuiDataTypeStorage"}, - [227]={ + [228]={ name="BeginMenuDepth", type="int"}, - [228]={ + [229]={ name="BeginComboDepth", type="int"}, - [229]={ + [230]={ name="ColorEditOptions", type="ImGuiColorEditFlags"}, - [230]={ + [231]={ name="ColorEditCurrentID", type="ImGuiID"}, - [231]={ + [232]={ name="ColorEditSavedID", type="ImGuiID"}, - [232]={ + [233]={ name="ColorEditSavedHue", type="float"}, - [233]={ + [234]={ name="ColorEditSavedSat", type="float"}, - [234]={ + [235]={ name="ColorEditSavedColor", type="ImU32"}, - [235]={ + [236]={ name="ColorPickerRef", type="ImVec4"}, - [236]={ + [237]={ name="ComboPreviewData", type="ImGuiComboPreviewData"}, - [237]={ + [238]={ name="WindowResizeBorderExpectedRect", type="ImRect"}, - [238]={ + [239]={ name="WindowResizeRelativeMode", type="bool"}, - [239]={ + [240]={ name="ScrollbarSeekMode", type="short"}, - [240]={ + [241]={ name="ScrollbarClickDeltaToGrabCenter", type="float"}, - [241]={ + [242]={ name="SliderGrabClickOffset", type="float"}, - [242]={ + [243]={ name="SliderCurrentAccum", type="float"}, - [243]={ + [244]={ name="SliderCurrentAccumDirty", type="bool"}, - [244]={ + [245]={ name="DragCurrentAccumDirty", type="bool"}, - [245]={ + [246]={ name="DragCurrentAccum", type="float"}, - [246]={ + [247]={ name="DragSpeedDefaultRatio", type="float"}, - [247]={ + [248]={ name="DisabledAlphaBackup", type="float"}, - [248]={ + [249]={ name="DisabledStackSize", type="short"}, - [249]={ + [250]={ name="TooltipOverrideCount", type="short"}, - [250]={ + [251]={ name="TooltipPreviousWindow", type="ImGuiWindow*"}, - [251]={ + [252]={ name="ClipboardHandlerData", template_type="char", type="ImVector_char"}, - [252]={ + [253]={ name="MenusIdSubmittedThisFrame", template_type="ImGuiID", type="ImVector_ImGuiID"}, - [253]={ + [254]={ name="TypingSelectState", type="ImGuiTypingSelectState"}, - [254]={ + [255]={ name="PlatformImeData", type="ImGuiPlatformImeData"}, - [255]={ + [256]={ name="PlatformImeDataPrev", type="ImGuiPlatformImeData"}, - [256]={ + [257]={ name="UserTextures", template_type="ImTextureData*", type="ImVector_ImTextureDataPtr"}, - [257]={ + [258]={ name="SettingsLoaded", type="bool"}, - [258]={ + [259]={ name="SettingsDirtyTimer", type="float"}, - [259]={ + [260]={ name="SettingsIniData", type="ImGuiTextBuffer"}, - [260]={ + [261]={ name="SettingsHandlers", template_type="ImGuiSettingsHandler", type="ImVector_ImGuiSettingsHandler"}, - [261]={ + [262]={ name="SettingsWindows", template_type="ImGuiWindowSettings", type="ImChunkStream_ImGuiWindowSettings"}, - [262]={ + [263]={ name="SettingsTables", template_type="ImGuiTableSettings", type="ImChunkStream_ImGuiTableSettings"}, - [263]={ + [264]={ name="Hooks", template_type="ImGuiContextHook", type="ImVector_ImGuiContextHook"}, - [264]={ + [265]={ name="HookIdNext", type="ImGuiID"}, - [265]={ + [266]={ name="DemoMarkerCallback", type="ImGuiDemoMarkerCallback"}, - [266]={ + [267]={ name="LocalizationTable[ImGuiLocKey_COUNT]", size=10, type="const char*"}, - [267]={ + [268]={ name="LogEnabled", type="bool"}, - [268]={ + [269]={ name="LogLineFirstItem", type="bool"}, - [269]={ + [270]={ name="LogFlags", type="ImGuiLogFlags"}, - [270]={ + [271]={ name="LogWindow", type="ImGuiWindow*"}, - [271]={ + [272]={ name="LogFile", type="ImFileHandle"}, - [272]={ + [273]={ name="LogBuffer", type="ImGuiTextBuffer"}, - [273]={ + [274]={ name="LogNextPrefix", type="const char*"}, - [274]={ + [275]={ name="LogNextSuffix", type="const char*"}, - [275]={ + [276]={ name="LogLinePosY", type="float"}, - [276]={ + [277]={ name="LogDepthRef", type="int"}, - [277]={ + [278]={ name="LogDepthToExpand", type="int"}, - [278]={ + [279]={ name="LogDepthToExpandDefault", type="int"}, - [279]={ + [280]={ name="ErrorCallback", type="ImGuiErrorCallback"}, - [280]={ + [281]={ name="ErrorCallbackUserData", type="void*"}, - [281]={ + [282]={ name="ErrorTooltipLockedPos", type="ImVec2"}, - [282]={ + [283]={ name="ErrorFirst", type="bool"}, - [283]={ + [284]={ name="ErrorCountCurrentFrame", type="int"}, - [284]={ + [285]={ name="StackSizesInNewFrame", type="ImGuiErrorRecoveryState"}, - [285]={ + [286]={ name="StackSizesInBeginForCurrentWindow", type="ImGuiErrorRecoveryState*"}, - [286]={ + [287]={ name="DebugDrawIdConflictsCount", type="int"}, - [287]={ + [288]={ name="DebugLogFlags", type="ImGuiDebugLogFlags"}, - [288]={ + [289]={ name="DebugLogBuf", type="ImGuiTextBuffer"}, - [289]={ + [290]={ name="DebugLogIndex", type="ImGuiTextIndex"}, - [290]={ + [291]={ name="DebugLogSkippedErrors", type="int"}, - [291]={ + [292]={ name="DebugLogAutoDisableFlags", type="ImGuiDebugLogFlags"}, - [292]={ + [293]={ name="DebugLogAutoDisableFrames", type="ImU8"}, - [293]={ + [294]={ name="DebugLocateFrames", type="ImU8"}, - [294]={ + [295]={ name="DebugBreakInLocateId", type="bool"}, - [295]={ + [296]={ name="DebugBreakKeyChord", type="ImGuiKeyChord"}, - [296]={ + [297]={ name="DebugBeginReturnValueCullDepth", type="ImS8"}, - [297]={ + [298]={ name="DebugItemPickerActive", type="bool"}, - [298]={ + [299]={ name="DebugItemPickerMouseButton", type="ImU8"}, - [299]={ + [300]={ name="DebugItemPickerBreakId", type="ImGuiID"}, - [300]={ + [301]={ name="DebugFlashStyleColorTime", type="float"}, - [301]={ + [302]={ name="DebugFlashStyleColorBackup", type="ImVec4"}, - [302]={ + [303]={ name="DebugMetricsConfig", type="ImGuiMetricsConfig"}, - [303]={ + [304]={ name="DebugItemPathQuery", type="ImGuiDebugItemPathQuery"}, - [304]={ + [305]={ name="DebugIDStackTool", type="ImGuiIDStackTool"}, - [305]={ + [306]={ name="DebugAllocInfo", type="ImGuiDebugAllocInfo"}, - [306]={ + [307]={ name="FramerateSecPerFrame[60]", size=60, type="float"}, - [307]={ + [308]={ name="FramerateSecPerFrameIdx", type="int"}, - [308]={ + [309]={ name="FramerateSecPerFrameCount", type="int"}, - [309]={ + [310]={ name="FramerateSecPerFrameAccum", type="float"}, - [310]={ + [311]={ name="WantCaptureMouseNextFrame", type="int"}, - [311]={ + [312]={ name="WantCaptureKeyboardNextFrame", type="int"}, - [312]={ + [313]={ name="WantTextInputNextFrame", type="int"}, - [313]={ + [314]={ name="TempBuffer", template_type="char", type="ImVector_char"}, - [314]={ + [315]={ name="TempKeychordName[64]", size=64, type="char"}}, @@ -7063,33 +7091,30 @@ local t={ name="BackupCursorMaxPos", type="ImVec2"}, [7]={ - name="LastSubmittedItem", - type="ImGuiSelectionUserData"}, - [8]={ name="BoxSelectId", type="ImGuiID"}, - [9]={ + [8]={ name="KeyMods", type="ImGuiKeyChord"}, - [10]={ + [9]={ name="LoopRequestSetAll", type="ImS8"}, - [11]={ + [10]={ name="IsEndIO", type="bool"}, - [12]={ + [11]={ name="IsFocused", type="bool"}, - [13]={ + [12]={ name="IsKeyboardSetRange", type="bool"}, - [14]={ + [13]={ name="NavIdPassedBy", type="bool"}, - [15]={ + [14]={ name="RangeSrcPassedBy", type="bool"}, - [16]={ + [15]={ name="RangeDstPassedBy", type="bool"}}, ImGuiNavItemData={ @@ -7343,6 +7368,15 @@ local t={ name="Renderer_RenderState", type="void*"}, [12]={ + name="DrawCallback_ResetRenderState", + type="ImDrawCallback"}, + [13]={ + name="DrawCallback_SetSamplerLinear", + type="ImDrawCallback"}, + [14]={ + name="DrawCallback_SetSamplerNearest", + type="ImDrawCallback"}, + [15]={ name="Textures", template_type="ImTextureData*", type="ImVector_ImTextureDataPtr"}}, @@ -7713,7 +7747,7 @@ local t={ type="float"}, [66]={ name="Colors[ImGuiCol_COUNT]", - size=60, + size=61, type="ImVec4"}, [67]={ name="HoverStationaryDelay", diff --git a/imgui b/imgui index dac0719..8936b58 160000 --- a/imgui +++ b/imgui @@ -1 +1 @@ -Subproject commit dac07199cfd761113d966eb8ad739254e10df2fe +Subproject commit 8936b58fe26e8c3da834b8f60b06511d537b4c63