pull imgui docking 1.92.4 and generate

This commit is contained in:
sonoro1234
2025-10-23 19:46:22 +02:00
parent 207fca2d36
commit 2d91c9d211
13 changed files with 2738 additions and 2459 deletions

View File

@@ -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.3" 19230 from Dear ImGui https://github.com/ocornut/imgui
//based on imgui.h file version "1.92.4" 19240 from Dear ImGui https://github.com/ocornut/imgui
//with imgui_internal.h api
//with imgui_freetype.h api
//docking branch
@@ -2912,6 +2912,14 @@ CIMGUI_API void ImGuiPlatformIO_destroy(ImGuiPlatformIO* self)
{
IM_DELETE(self);
}
CIMGUI_API void ImGuiPlatformIO_ClearPlatformHandlers(ImGuiPlatformIO* self)
{
return self->ClearPlatformHandlers();
}
CIMGUI_API void ImGuiPlatformIO_ClearRendererHandlers(ImGuiPlatformIO* self)
{
return self->ClearRendererHandlers();
}
CIMGUI_API ImGuiPlatformMonitor* ImGuiPlatformMonitor_ImGuiPlatformMonitor(void)
{
return IM_NEW(ImGuiPlatformMonitor)();
@@ -5171,6 +5179,10 @@ CIMGUI_API bool igBeginDragDropTargetCustom(const ImRect bb,ImGuiID id)
{
return ImGui::BeginDragDropTargetCustom(bb,id);
}
CIMGUI_API bool igBeginDragDropTargetViewport(ImGuiViewport* viewport,const ImRect* p_bb)
{
return ImGui::BeginDragDropTargetViewport(viewport,p_bb);
}
CIMGUI_API void igClearDragDrop()
{
return ImGui::ClearDragDrop();
@@ -5179,9 +5191,13 @@ CIMGUI_API bool igIsDragDropPayloadBeingAccepted()
{
return ImGui::IsDragDropPayloadBeingAccepted();
}
CIMGUI_API void igRenderDragDropTargetRect(const ImRect bb,const ImRect item_clip_rect)
CIMGUI_API void igRenderDragDropTargetRectForItem(const ImRect bb)
{
return ImGui::RenderDragDropTargetRect(bb,item_clip_rect);
return ImGui::RenderDragDropTargetRectForItem(bb);
}
CIMGUI_API void igRenderDragDropTargetRectEx(ImDrawList* draw_list,const ImRect bb)
{
return ImGui::RenderDragDropTargetRectEx(draw_list,bb);
}
CIMGUI_API ImGuiTypingSelectRequest* igGetTypingSelectRequest(ImGuiTypingSelectFlags flags)
{