mirror of
https://github.com/cimgui/cimgui.git
synced 2025-11-30 21:51:40 +00:00
pull imgui docking 1.92.4 and generate
This commit is contained in:
22
cimgui.cpp
22
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.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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user